/proc/self/task/7/cwd/_libs/@tanstack
This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.
import { i as __toESM, r as __require, t as __commonJSMin } from "../../_runtime.mjs";import { r as parseHref } from "../tanstack__history.mjs";import { PassThrough, Readable } from "node:stream";import { ReadableStream as ReadableStream$1 } from "node:stream/web";//#region node_modules/react/cjs/react.production.js/*** @license React* react.production.js** Copyright (c) Meta Platforms, Inc. and affiliates.** This source code is licensed under the MIT license found in the* LICENSE file in the root directory of this source tree.*/var require_react_production = /* @__PURE__ */ __commonJSMin(((exports) => { var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), MAYBE_ITERATOR_SYMBOL = Symbol.iterator; function getIteratorFn(maybeIterable) { if (null === maybeIterable || "object" !== typeof maybeIterable) return null; maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"]; return "function" === typeof maybeIterable ? maybeIterable : null; } var ReactNoopUpdateQueue = { isMounted: function() { return !1; }, enqueueForceUpdate: function() {}, enqueueReplaceState: function() {}, enqueueSetState: function() {} }, assign = Object.assign, emptyObject = {}; function Component(props, context, updater) { this.props = props; this.context = context; this.refs = emptyObject; this.updater = updater || ReactNoopUpdateQueue; } Component.prototype.isReactComponent = {}; Component.prototype.setState = function(partialState, callback) { if ("object" !== typeof partialState && "function" !== typeof partialState && null != partialState) throw Error("takes an object of state variables to update or a function which returns an object of state variables."); this.updater.enqueueSetState(this, partialState, callback, "setState"); }; Component.prototype.forceUpdate = function(callback) { this.updater.enqueueForceUpdate(this, callback, "forceUpdate"); }; function ComponentDummy() {} ComponentDummy.prototype = Component.prototype; function PureComponent(props, context, updater) { this.props = props; this.context = context; this.refs = emptyObject; this.updater = updater || ReactNoopUpdateQueue; } var pureComponentPrototype = PureComponent.prototype = new ComponentDummy(); pureComponentPrototype.constructor = PureComponent; assign(pureComponentPrototype, Component.prototype); pureComponentPrototype.isPureReactComponent = !0; var isArrayImpl = Array.isArray; function noop() {} var ReactSharedInternals = { H: null, A: null, T: null, S: null }, hasOwnProperty = Object.prototype.hasOwnProperty; function ReactElement(type, key, props) { var refProp = props.ref; return { $$typeof: REACT_ELEMENT_TYPE, type, key, ref: void 0 !== refProp ? refProp : null, props }; } function cloneAndReplaceKey(oldElement, newKey) { return ReactElement(oldElement.type, newKey, oldElement.props); } function isValidElement(object) { return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE; } function escape(key) { var escaperLookup = { "=": "=0", ":": "=2" }; return "$" + key.replace(/[=:]/g, function(match) { return escaperLookup[match]; }); } var userProvidedKeyEscapeRegex = /\/+/g; function getElementKey(element, index) { return "object" === typeof element && null !== element && null != element.key ? escape("" + element.key) : index.toString(36); } function resolveThenable(thenable) { switch (thenable.status) { case "fulfilled": return thenable.value; case "rejected": throw thenable.reason; default: switch ("string" === typeof thenable.status ? thenable.then(noop, noop) : (thenable.status = "pending", thenable.then(function(fulfilledValue) { "pending" === thenable.status && (thenable.status = "fulfilled", thenable.value = fulfilledValue); }, function(error) { "pending" === thenable.status && (thenable.status = "rejected", thenable.reason = error); })), thenable.status) { case "fulfilled": return thenable.value; case "rejected": throw thenable.reason; } } throw thenable; } function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) { var type = typeof children; if ("undefined" === type || "boolean" === type) children = null; var invokeCallback = !1; if (null === children) invokeCallback = !0; else switch (type) { case "bigint": case "string": case "number": invokeCallback = !0; break; case "object": switch (children.$$typeof) { case REACT_ELEMENT_TYPE: case REACT_PORTAL_TYPE: invokeCallback = !0; break; case REACT_LAZY_TYPE: return invokeCallback = children._init, mapIntoArray(invokeCallback(children._payload), array, escapedPrefix, nameSoFar, callback); } } if (invokeCallback) return callback = callback(children), invokeCallback = "" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar, isArrayImpl(callback) ? (escapedPrefix = "", null != invokeCallback && (escapedPrefix = invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"), mapIntoArray(callback, array, escapedPrefix, "", function(c) { return c; })) : null != callback && (isValidElement(callback) && (callback = cloneAndReplaceKey(callback, escapedPrefix + (null == callback.key || children && children.key === callback.key ? "" : ("" + callback.key).replace(userProvidedKeyEscapeRegex, "$&/") + "/") + invokeCallback)), array.push(callback)), 1; invokeCallback = 0; var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":"; if (isArrayImpl(children)) for (var i = 0; i < children.length; i++) nameSoFar = children[i], type = nextNamePrefix + getElementKey(nameSoFar, i), invokeCallback += mapIntoArray(nameSoFar, array, escapedPrefix, type, callback); else if (i = getIteratorFn(children), "function" === typeof i) for (children = i.call(children), i = 0; !(nameSoFar = children.next()).done;) nameSoFar = nameSoFar.value, type = nextNamePrefix + getElementKey(nameSoFar, i++), invokeCallback += mapIntoArray(nameSoFar, array, escapedPrefix, type, callback); else if ("object" === type) { if ("function" === typeof children.then) return mapIntoArray(resolveThenable(children), array, escapedPrefix, nameSoFar, callback); array = String(children); throw Error("Objects are not valid as a React child (found: " + ("[object Object]" === array ? "object with keys {" + Object.keys(children).join(", ") + "}" : array) + "). If you meant to render a collection of children, use an array instead."); } return invokeCallback; } function mapChildren(children, func, context) { if (null == children) return children; var result = [], count = 0; mapIntoArray(children, result, "", "", function(child) { return func.call(context, child, count++); }); return result; } function lazyInitializer(payload) { if (-1 === payload._status) { var ctor = payload._result; ctor = ctor(); ctor.then(function(moduleObject) { if (0 === payload._status || -1 === payload._status) payload._status = 1, payload._result = moduleObject; }, function(error) { if (0 === payload._status || -1 === payload._status) payload._status = 2, payload._result = error; }); -1 === payload._status && (payload._status = 0, payload._result = ctor); } if (1 === payload._status) return payload._result.default; throw payload._result; } var reportGlobalError = "function" === typeof reportError ? reportError : function(error) { if ("object" === typeof window && "function" === typeof window.ErrorEvent) { var event = new window.ErrorEvent("error", { bubbles: !0, cancelable: !0, message: "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error), error }); if (!window.dispatchEvent(event)) return; } else if ("object" === typeof process && "function" === typeof process.emit) { process.emit("uncaughtException", error); return; } console.error(error); }, Children = { map: mapChildren, forEach: function(children, forEachFunc, forEachContext) { mapChildren(children, function() { forEachFunc.apply(this, arguments); }, forEachContext); }, count: function(children) { var n = 0; mapChildren(children, function() { n++; }); return n; }, toArray: function(children) { return mapChildren(children, function(child) { return child; }) || []; }, only: function(children) { if (!isValidElement(children)) throw Error("React.Children.only expected to receive a single React element child."); return children; } }; exports.Activity = REACT_ACTIVITY_TYPE; exports.Children = Children; exports.Component = Component; exports.Fragment = REACT_FRAGMENT_TYPE; exports.Profiler = REACT_PROFILER_TYPE; exports.PureComponent = PureComponent; exports.StrictMode = REACT_STRICT_MODE_TYPE; exports.Suspense = REACT_SUSPENSE_TYPE; exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = ReactSharedInternals; exports.__COMPILER_RUNTIME = { __proto__: null, c: function(size) { return ReactSharedInternals.H.useMemoCache(size); } }; exports.cache = function(fn) { return function() { return fn.apply(null, arguments); }; }; exports.cacheSignal = function() { return null; }; exports.cloneElement = function(element, config, children) { if (null === element || void 0 === element) throw Error("The argument must be a React element, but you passed " + element + "."); var props = assign({}, element.props), key = element.key; if (null != config) for (propName in void 0 !== config.key && (key = "" + config.key), config) !hasOwnProperty.call(config, propName) || "key" === propName || "__self" === propName || "__source" === propName || "ref" === propName && void 0 === config.ref || (props[propName] = config[propName]); var propName = arguments.length - 2; if (1 === propName) props.children = children; else if (1 < propName) { for (var childArray = Array(propName), i = 0; i < propName; i++) childArray[i] = arguments[i + 2]; props.children = childArray; } return ReactElement(element.type, key, props); }; exports.createContext = function(defaultValue) { defaultValue = { $$typeof: REACT_CONTEXT_TYPE, _currentValue: defaultValue, _currentValue2: defaultValue, _threadCount: 0, Provider: null, Consumer: null }; defaultValue.Provider = defaultValue; defaultValue.Consumer = { $$typeof: REACT_CONSUMER_TYPE, _context: defaultValue }; return defaultValue; }; exports.createElement = function(type, config, children) { var propName, props = {}, key = null; if (null != config) for (propName in void 0 !== config.key && (key = "" + config.key), config) hasOwnProperty.call(config, propName) && "key" !== propName && "__self" !== propName && "__source" !== propName && (props[propName] = config[propName]); var childrenLength = arguments.length - 2; if (1 === childrenLength) props.children = children; else if (1 < childrenLength) { for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++) childArray[i] = arguments[i + 2]; props.children = childArray; } if (type && type.defaultProps) for (propName in childrenLength = type.defaultProps, childrenLength) void 0 === props[propName] && (props[propName] = childrenLength[propName]); return ReactElement(type, key, props); }; exports.createRef = function() { return { current: null }; }; exports.forwardRef = function(render) { return { $$typeof: REACT_FORWARD_REF_TYPE, render }; }; exports.isValidElement = isValidElement; exports.lazy = function(ctor) { return { $$typeof: REACT_LAZY_TYPE, _payload: { _status: -1, _result: ctor }, _init: lazyInitializer }; }; exports.memo = function(type, compare) { return { $$typeof: REACT_MEMO_TYPE, type, compare: void 0 === compare ? null : compare }; }; exports.startTransition = function(scope) { var prevTransition = ReactSharedInternals.T, currentTransition = {}; ReactSharedInternals.T = currentTransition; try { var returnValue = scope(), onStartTransitionFinish = ReactSharedInternals.S; null !== onStartTransitionFinish && onStartTransitionFinish(currentTransition, returnValue); "object" === typeof returnValue && null !== returnValue && "function" === typeof returnValue.then && returnValue.then(noop, reportGlobalError); } catch (error) { reportGlobalError(error); } finally { null !== prevTransition && null !== currentTransition.types && (prevTransition.types = currentTransition.types), ReactSharedInternals.T = prevTransition; } }; exports.unstable_useCacheRefresh = function() { return ReactSharedInternals.H.useCacheRefresh(); }; exports.use = function(usable) { return ReactSharedInternals.H.use(usable); }; exports.useActionState = function(action, initialState, permalink) { return ReactSharedInternals.H.useActionState(action, initialState, permalink); }; exports.useCallback = function(callback, deps) { return ReactSharedInternals.H.useCallback(callback, deps); }; exports.useContext = function(Context) { return ReactSharedInternals.H.useContext(Context); }; exports.useDebugValue = function() {}; exports.useDeferredValue = function(value, initialValue) { return ReactSharedInternals.H.useDeferredValue(value, initialValue); }; exports.useEffect = function(create, deps) { return ReactSharedInternals.H.useEffect(create, deps); }; exports.useEffectEvent = function(callback) { return ReactSharedInternals.H.useEffectEvent(callback); }; exports.useId = function() { return ReactSharedInternals.H.useId(); }; exports.useImperativeHandle = function(ref, create, deps) { return ReactSharedInternals.H.useImperativeHandle(ref, create, deps); }; exports.useInsertionEffect = function(create, deps) { return ReactSharedInternals.H.useInsertionEffect(create, deps); }; exports.useLayoutEffect = function(create, deps) { return ReactSharedInternals.H.useLayoutEffect(create, deps); }; exports.useMemo = function(create, deps) { return ReactSharedInternals.H.useMemo(create, deps); }; exports.useOptimistic = function(passthrough, reducer) { return ReactSharedInternals.H.useOptimistic(passthrough, reducer); }; exports.useReducer = function(reducer, initialArg, init) { return ReactSharedInternals.H.useReducer(reducer, initialArg, init); }; exports.useRef = function(initialValue) { return ReactSharedInternals.H.useRef(initialValue); }; exports.useState = function(initialState) { return ReactSharedInternals.H.useState(initialState); }; exports.useSyncExternalStore = function(subscribe, getSnapshot, getServerSnapshot) { return ReactSharedInternals.H.useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot); }; exports.useTransition = function() { return ReactSharedInternals.H.useTransition(); }; exports.version = "19.2.7";}));//#endregion//#region node_modules/react/index.jsvar require_react = /* @__PURE__ */ __commonJSMin(((exports, module) => { module.exports = require_react_production();}));//#endregion//#region node_modules/@tanstack/react-router/dist/esm/utils.jsvar import_react = /* @__PURE__ */ __toESM(require_react(), 1);/*** React.use if available (React 19+), undefined otherwise.* Use dynamic lookup to avoid Webpack compilation errors with React 18.*/var reactUse = import_react.use;typeof window !== "undefined" ? import_react.useLayoutEffect : import_react.useEffect;/*** React hook to wrap `IntersectionObserver`.** This hook will create an `IntersectionObserver` and observe the ref passed to it.** When the intersection changes, the callback will be called with the `IntersectionObserverEntry`.** @param ref - The ref to observe* @param intersectionObserverOptions - The options to pass to the IntersectionObserver* @param options - The options to pass to the hook* @param callback - The callback to call when the intersection changes* @returns The IntersectionObserver instance* @example* ```tsx* const MyComponent = () => {* const ref = React.useRef<HTMLDivElement>(null)* useIntersectionObserver(* ref,* (entry) => { doSomething(entry) },* { rootMargin: '10px' },* { disabled: false }* )* return <div ref={ref} />* ```*/function useIntersectionObserver(ref, callback, intersectionObserverOptions = {}, options = {}) { import_react.useEffect(() => { if (!ref.current || options.disabled || typeof IntersectionObserver !== "function") return; const observer = new IntersectionObserver(([entry]) => { callback(entry); }, intersectionObserverOptions); observer.observe(ref.current); return () => { observer.disconnect(); }; }, [ callback, intersectionObserverOptions, options.disabled, ref ]);}/*** React hook to take a `React.ForwardedRef` and returns a `ref` that can be used on a DOM element.** @param ref - The forwarded ref* @returns The inner ref returned by `useRef`* @example* ```tsx* const MyComponent = React.forwardRef((props, ref) => {* const innerRef = useForwardedRef(ref)* return <div ref={innerRef} />* })* ```*/function useForwardedRef(ref) { const innerRef = import_react.useRef(null); import_react.useImperativeHandle(ref, () => innerRef.current, []); return innerRef;}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/utils.js/*** Return the last element of an array.* Intended for non-empty arrays used within router internals.*/function last(arr) { return arr[arr.length - 1];}function isFunction(d) { return typeof d === "function";}/*** Apply a value-or-updater to a previous value.* Accepts either a literal value or a function of the previous value.*/function functionalUpdate(updater, previous) { if (isFunction(updater)) return updater(previous); return updater;}var hasOwn = Object.prototype.hasOwnProperty;function hasKeys(obj) { for (const key in obj) if (hasOwn.call(obj, key)) return true; return false;}var createNull = () => Object.create(null);var nullReplaceEqualDeep = (prev, next) => replaceEqualDeep(prev, next, createNull);/*** This function returns `prev` if `_next` is deeply equal.* If not, it will replace any deeply equal children of `b` with those of `a`.* This can be used for structural sharing between immutable JSON values for example.* Do not use this with signals*/function replaceEqualDeep(prev, _next, _makeObj = () => ({}), _depth = 0) { return _next;}function isPlainObject(o) { if (!hasObjectPrototype(o)) return false; const ctor = o.constructor; if (typeof ctor === "undefined") return true; const prot = ctor.prototype; if (!hasObjectPrototype(prot)) return false; if (!prot.hasOwnProperty("isPrototypeOf")) return false; return true;}function hasObjectPrototype(o) { return Object.prototype.toString.call(o) === "[object Object]";}/*** Perform a deep equality check with options for partial comparison and* ignoring `undefined` values. Optimized for router state comparisons.*/function deepEqual(a, b, opts) { if (a === b) return true; if (typeof a !== typeof b) return false; if (Array.isArray(a) && Array.isArray(b)) { if (a.length !== b.length) return false; for (let i = 0, l = a.length; i < l; i++) if (!deepEqual(a[i], b[i], opts)) return false; return true; } if (isPlainObject(a) && isPlainObject(b)) { const ignoreUndefined = opts?.ignoreUndefined ?? true; if (opts?.partial) { for (const k in b) if (!ignoreUndefined || b[k] !== void 0) { if (!deepEqual(a[k], b[k], opts)) return false; } return true; } let aCount = 0; if (!ignoreUndefined) aCount = Object.keys(a).length; else for (const k in a) if (a[k] !== void 0) aCount++; let bCount = 0; for (const k in b) if (!ignoreUndefined || b[k] !== void 0) { bCount++; if (bCount > aCount || !deepEqual(a[k], b[k], opts)) return false; } return aCount === bCount; } return false;}/*** Create a promise with exposed resolve/reject and status fields.* Useful for coordinating async router lifecycle operations.*/function createControlledPromise(onResolve) { let resolveLoadPromise; let rejectLoadPromise; const controlledPromise = new Promise((resolve, reject) => { resolveLoadPromise = resolve; rejectLoadPromise = reject; }); controlledPromise.status = "pending"; controlledPromise.resolve = (value) => { controlledPromise.status = "resolved"; controlledPromise.value = value; resolveLoadPromise(value); onResolve?.(value); }; controlledPromise.reject = (e) => { controlledPromise.status = "rejected"; rejectLoadPromise(e); }; return controlledPromise;}/*** Heuristically detect dynamic import "module not found" errors* across major browsers for lazy route component handling.*/function isModuleNotFoundError(error) { if (typeof error?.message !== "string") return false; return error.message.startsWith("Failed to fetch dynamically imported module") || error.message.startsWith("error loading dynamically imported module") || error.message.startsWith("Importing a module script failed");}function isPromise(value) { return Boolean(value && typeof value === "object" && typeof value.then === "function");}/*** Remove control characters that can cause open redirect vulnerabilities.* Characters like \r (CR) and \n (LF) can trick URL parsers into interpreting* paths like "/\r/evil.com" as "http://evil.com".*/function sanitizePathSegment(segment) { return segment.replace(/[\x00-\x1f\x7f]/g, "");}function decodeSegment(segment) { let decoded; try { decoded = decodeURI(segment); } catch { decoded = segment.replaceAll(/%[0-9A-F]{2}/gi, (match) => { try { return decodeURI(match); } catch { return match; } }); } return sanitizePathSegment(decoded);}/*** Default list of URL protocols to allow in links, redirects, and navigation.* Any absolute URL protocol not in this list is treated as dangerous by default.*/var DEFAULT_PROTOCOL_ALLOWLIST = [ "http:", "https:", "mailto:", "tel:"];/*** Check if a URL string uses a protocol that is not in the allowlist.* Returns true for blocked protocols like javascript:, blob:, data:, etc.** The URL constructor correctly normalizes:* - Mixed case (JavaScript: → javascript:)* - Whitespace/control characters (java\nscript: → javascript:)* - Leading whitespace** For relative URLs (no protocol), returns false (safe).** @param url - The URL string to check* @param allowlist - Set of protocols to allow* @returns true if the URL uses a protocol that is not allowed*/function isDangerousProtocol(url, allowlist) { if (!url) return false; try { const parsed = new URL(url); return !allowlist.has(parsed.protocol); } catch { return false; }}var HTML_ESCAPE_LOOKUP = { "&": "\\u0026", ">": "\\u003e", "<": "\\u003c", "\u2028": "\\u2028", "\u2029": "\\u2029"};var HTML_ESCAPE_REGEX = /[&><\u2028\u2029]/g;/*** Escape HTML special characters in a string to prevent XSS attacks* when embedding strings in script tags during SSR.** This is essential for preventing XSS vulnerabilities when user-controlled* content is embedded in inline scripts.*/function escapeHtml(str) { return str.replace(HTML_ESCAPE_REGEX, (match) => HTML_ESCAPE_LOOKUP[match]);}function decodePath(path) { if (!path) return { path, handledProtocolRelativeURL: false }; if (!/[%\\\x00-\x1f\x7f]/.test(path) && !path.startsWith("//")) return { path, handledProtocolRelativeURL: false }; const re = /%25|%5C/gi; let cursor = 0; let result = ""; let match; while (null !== (match = re.exec(path))) { result += decodeSegment(path.slice(cursor, match.index)) + match[0]; cursor = re.lastIndex; } result = result + decodeSegment(cursor ? path.slice(cursor) : path); let handledProtocolRelativeURL = false; if (result.startsWith("//")) { handledProtocolRelativeURL = true; result = "/" + result.replace(/^\/+/, ""); } return { path: result, handledProtocolRelativeURL };}/*** Encodes a path the same way `new URL()` would, but without the overhead of full URL parsing.** This function encodes:* - Whitespace characters (spaces → %20, tabs → %09, etc.)* - Non-ASCII/Unicode characters (emojis, accented characters, etc.)** It preserves:* - Already percent-encoded sequences (won't double-encode %2F, %25, etc.)* - ASCII special characters valid in URL paths (@, $, &, +, etc.)* - Forward slashes as path separators** Used to generate proper href values for SSR without constructing URL objects.** @example* encodePathLikeUrl('/path/file name.pdf') // '/path/file%20name.pdf'* encodePathLikeUrl('/path/日本語') // '/path/%E6%97%A5%E6%9C%AC%E8%AA%9E'* encodePathLikeUrl('/path/already%20encoded') // '/path/already%20encoded' (preserved)*/function encodePathLikeUrl(path) { if (!/\s|[^\u0000-\u007F]/.test(path)) return path; return path.replace(/\s|[^\u0000-\u007F]/gu, encodeURIComponent);}function arraysEqual(a, b) { if (a === b) return true; if (a.length !== b.length) return false; for (let i = 0; i < a.length; i++) if (a[i] !== b[i]) return false; return true;}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/invariant.jsfunction invariant() { throw new Error("Invariant failed");}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/lru-cache.jsfunction createLRUCache(max) { const cache = /* @__PURE__ */ new Map(); let oldest; let newest; const touch = (entry) => { if (!entry.next) return; if (!entry.prev) { entry.next.prev = void 0; oldest = entry.next; entry.next = void 0; if (newest) { entry.prev = newest; newest.next = entry; } } else { entry.prev.next = entry.next; entry.next.prev = entry.prev; entry.next = void 0; if (newest) { newest.next = entry; entry.prev = newest; } } newest = entry; }; return { get(key) { const entry = cache.get(key); if (!entry) return void 0; touch(entry); return entry.value; }, set(key, value) { if (cache.size >= max && oldest) { const toDelete = oldest; cache.delete(toDelete.key); if (toDelete.next) { oldest = toDelete.next; toDelete.next.prev = void 0; } if (toDelete === newest) newest = void 0; } const existing = cache.get(key); if (existing) { existing.value = value; touch(existing); } else { const entry = { key, value, prev: newest }; if (newest) newest.next = entry; newest = entry; if (!oldest) oldest = entry; cache.set(key, entry); } }, clear() { cache.clear(); oldest = void 0; newest = void 0; } };}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/new-process-route-tree.jsvar SEGMENT_TYPE_INDEX = 4;var SEGMENT_TYPE_PATHLESS = 5;function getOpenAndCloseBraces(part) { const openBrace = part.indexOf("{"); if (openBrace === -1) return null; const closeBrace = part.indexOf("}", openBrace); if (closeBrace === -1) return null; if (openBrace + 1 >= part.length) return null; return [openBrace, closeBrace];}/*** Populates the `output` array with the parsed representation of the given `segment` string.** Usage:* ```ts* let output* let cursor = 0* while (cursor < path.length) {* output = parseSegment(path, cursor, output)* const end = output[5]* cursor = end + 1* ```** `output` is stored outside to avoid allocations during repeated calls. It doesn't need to be typed* or initialized, it will be done automatically.*/function parseSegment(path, start, output = new Uint16Array(6)) { const next = path.indexOf("/", start); const end = next === -1 ? path.length : next; const part = path.substring(start, end); if (!part || !part.includes("$")) { output[0] = 0; output[1] = start; output[2] = start; output[3] = end; output[4] = end; output[5] = end; return output; } if (part === "$") { const total = path.length; output[0] = 2; output[1] = start; output[2] = start; output[3] = total; output[4] = total; output[5] = total; return output; } if (part.charCodeAt(0) === 36) { output[0] = 1; output[1] = start; output[2] = start + 1; output[3] = end; output[4] = end; output[5] = end; return output; } const braces = getOpenAndCloseBraces(part); if (braces) { const [openBrace, closeBrace] = braces; const firstChar = part.charCodeAt(openBrace + 1); if (firstChar === 45) { if (openBrace + 2 < part.length && part.charCodeAt(openBrace + 2) === 36) { const paramStart = openBrace + 3; const paramEnd = closeBrace; if (paramStart < paramEnd) { output[0] = 3; output[1] = start + openBrace; output[2] = start + paramStart; output[3] = start + paramEnd; output[4] = start + closeBrace + 1; output[5] = end; return output; } } } else if (firstChar === 36) { const dollarPos = openBrace + 1; const afterDollar = openBrace + 2; if (afterDollar === closeBrace) { output[0] = 2; output[1] = start + openBrace; output[2] = start + dollarPos; output[3] = start + afterDollar; output[4] = start + closeBrace + 1; output[5] = path.length; return output; } output[0] = 1; output[1] = start + openBrace; output[2] = start + afterDollar; output[3] = start + closeBrace; output[4] = start + closeBrace + 1; output[5] = end; return output; } } output[0] = 0; output[1] = start; output[2] = start; output[3] = end; output[4] = end; output[5] = end; return output;}/*** Recursively parses the segments of the given route tree and populates a segment trie.** @param data A reusable Uint16Array for parsing segments. (non important, we're just avoiding allocations)* @param route The current route to parse.* @param start The starting index for parsing within the route's full path.* @param node The current segment node in the trie to populate.* @param onRoute Callback invoked for each route processed.*/function parseSegments(defaultCaseSensitive, data, route, start, node, depth, onRoute) { onRoute?.(route); let cursor = start; { const path = route.fullPath ?? route.from; const length = path.length; const caseSensitive = route.options?.caseSensitive ?? defaultCaseSensitive; const parseParams = route.options?.params?.parse ?? route.options?.parseParams; while (cursor < length) { const segment = parseSegment(path, cursor, data); let nextNode; const start = cursor; const end = segment[5]; cursor = end + 1; depth++; switch (segment[0]) { case 0: { const value = path.substring(segment[2], segment[3]); if (caseSensitive) { const existingNode = node.static?.get(value); if (existingNode) nextNode = existingNode; else { node.static ??= /* @__PURE__ */ new Map(); const next = createStaticNode(route.fullPath ?? route.from); next.parent = node; next.depth = depth; nextNode = next; node.static.set(value, next); } } else { const name = value.toLowerCase(); const existingNode = node.staticInsensitive?.get(name); if (existingNode) nextNode = existingNode; else { node.staticInsensitive ??= /* @__PURE__ */ new Map(); const next = createStaticNode(route.fullPath ?? route.from); next.parent = node; next.depth = depth; nextNode = next; node.staticInsensitive.set(name, next); } } break; } case 1: { const prefix_raw = path.substring(start, segment[1]); const suffix_raw = path.substring(segment[4], end); const actuallyCaseSensitive = caseSensitive && !!(prefix_raw || suffix_raw); const prefix = !prefix_raw ? void 0 : actuallyCaseSensitive ? prefix_raw : prefix_raw.toLowerCase(); const suffix = !suffix_raw ? void 0 : actuallyCaseSensitive ? suffix_raw : suffix_raw.toLowerCase(); const existingNode = !parseParams && node.dynamic?.find((s) => !s.parse && s.caseSensitive === actuallyCaseSensitive && s.prefix === prefix && s.suffix === suffix); if (existingNode) nextNode = existingNode; else { const next = createDynamicNode(1, route.fullPath ?? route.from, actuallyCaseSensitive, prefix, suffix); nextNode = next; next.depth = depth; next.parent = node; node.dynamic ??= []; node.dynamic.push(next); } break; } case 3: { const prefix_raw = path.substring(start, segment[1]); const suffix_raw = path.substring(segment[4], end); const actuallyCaseSensitive = caseSensitive && !!(prefix_raw || suffix_raw); const prefix = !prefix_raw ? void 0 : actuallyCaseSensitive ? prefix_raw : prefix_raw.toLowerCase(); const suffix = !suffix_raw ? void 0 : actuallyCaseSensitive ? suffix_raw : suffix_raw.toLowerCase(); const existingNode = !parseParams && node.optional?.find((s) => !s.parse && s.caseSensitive === actuallyCaseSensitive && s.prefix === prefix && s.suffix === suffix); if (existingNode) nextNode = existingNode; else { const next = createDynamicNode(3, route.fullPath ?? route.from, actuallyCaseSensitive, prefix, suffix); nextNode = next; next.parent = node; next.depth = depth; node.optional ??= []; node.optional.push(next); } break; } case 2: { const prefix_raw = path.substring(start, segment[1]); const suffix_raw = path.substring(segment[4], end); const actuallyCaseSensitive = caseSensitive && !!(prefix_raw || suffix_raw); const prefix = !prefix_raw ? void 0 : actuallyCaseSensitive ? prefix_raw : prefix_raw.toLowerCase(); const suffix = !suffix_raw ? void 0 : actuallyCaseSensitive ? suffix_raw : suffix_raw.toLowerCase(); const next = createDynamicNode(2, route.fullPath ?? route.from, actuallyCaseSensitive, prefix, suffix); nextNode = next; next.parent = node; next.depth = depth; node.wildcard ??= []; node.wildcard.push(next); } } node = nextNode; } if (parseParams && route.children && !route.isRoot && route.id && route.id.charCodeAt(route.id.lastIndexOf("/") + 1) === 95) { const pathlessNode = createStaticNode(route.fullPath ?? route.from); pathlessNode.kind = SEGMENT_TYPE_PATHLESS; pathlessNode.parent = node; depth++; pathlessNode.depth = depth; node.pathless ??= []; node.pathless.push(pathlessNode); node = pathlessNode; } const isLeaf = (route.path || !route.children) && !route.isRoot; if (isLeaf && path.endsWith("/")) { const indexNode = createStaticNode(route.fullPath ?? route.from); indexNode.kind = SEGMENT_TYPE_INDEX; indexNode.parent = node; depth++; indexNode.depth = depth; node.index = indexNode; node = indexNode; } node.parse = parseParams ?? null; node.priority = route.options?.params?.priority ?? 0; if (isLeaf && !node.route) { node.route = route; node.fullPath = route.fullPath ?? route.from; } } if (route.children) for (const child of route.children) parseSegments(defaultCaseSensitive, data, child, cursor, node, depth, onRoute);}function sortDynamic(a, b) { if (a.parse && !b.parse) return -1; if (!a.parse && b.parse) return 1; if (a.parse && b.parse && (a.priority || b.priority)) return b.priority - a.priority; if (a.prefix && b.prefix && a.prefix !== b.prefix) { if (a.prefix.startsWith(b.prefix)) return -1; if (b.prefix.startsWith(a.prefix)) return 1; } if (a.suffix && b.suffix && a.suffix !== b.suffix) { if (a.suffix.endsWith(b.suffix)) return -1; if (b.suffix.endsWith(a.suffix)) return 1; } if (a.prefix && !b.prefix) return -1; if (!a.prefix && b.prefix) return 1; if (a.suffix && !b.suffix) return -1; if (!a.suffix && b.suffix) return 1; if (a.caseSensitive && !b.caseSensitive) return -1; if (!a.caseSensitive && b.caseSensitive) return 1; return 0;}function sortTreeNodes(node) { if (node.pathless) for (const child of node.pathless) sortTreeNodes(child); if (node.static) for (const child of node.static.values()) sortTreeNodes(child); if (node.staticInsensitive) for (const child of node.staticInsensitive.values()) sortTreeNodes(child); if (node.dynamic?.length) { node.dynamic.sort(sortDynamic); for (const child of node.dynamic) sortTreeNodes(child); } if (node.optional?.length) { node.optional.sort(sortDynamic); for (const child of node.optional) sortTreeNodes(child); } if (node.wildcard?.length) { node.wildcard.sort(sortDynamic); for (const child of node.wildcard) sortTreeNodes(child); }}function createStaticNode(fullPath) { return { kind: 0, depth: 0, pathless: null, index: null, static: null, staticInsensitive: null, dynamic: null, optional: null, wildcard: null, route: null, fullPath, parent: null, parse: null, priority: 0 };}/*** Keys must be declared in the same order as in `SegmentNode` type,* to ensure they are represented as the same object class in the engine.*/function createDynamicNode(kind, fullPath, caseSensitive, prefix, suffix) { return { kind, depth: 0, pathless: null, index: null, static: null, staticInsensitive: null, dynamic: null, optional: null, wildcard: null, route: null, fullPath, parent: null, parse: null, priority: 0, caseSensitive, prefix, suffix };}function processRouteMasks(routeList, processedTree) { const segmentTree = createStaticNode("/"); const data = new Uint16Array(6); for (const route of routeList) parseSegments(false, data, route, 1, segmentTree, 0); sortTreeNodes(segmentTree); processedTree.masksTree = segmentTree; processedTree.flatCache = createLRUCache(1e3);}/*** Take an arbitrary list of routes, create a tree from them (if it hasn't been created already), and match a path against it.*/function findFlatMatch(path, processedTree) { path ||= "/"; const cached = processedTree.flatCache.get(path); if (cached) return cached; const result = findMatch(path, processedTree.masksTree); processedTree.flatCache.set(path, result); return result;}/*** @deprecated keep until v2 so that `router.matchRoute` can keep not caring about the actual route tree*/function findSingleMatch(from, caseSensitive, fuzzy, path, processedTree) { from ||= "/"; path ||= "/"; const key = caseSensitive ? `case\0${from}` : from; let tree = processedTree.singleCache.get(key); if (!tree) { tree = createStaticNode("/"); parseSegments(caseSensitive, new Uint16Array(6), { from }, 1, tree, 0); processedTree.singleCache.set(key, tree); } return findMatch(path, tree, fuzzy);}function findRouteMatch(path, processedTree, fuzzy = false) { const key = fuzzy ? path : `nofuzz\0${path}`; const cached = processedTree.matchCache.get(key); if (cached !== void 0) return cached; path ||= "/"; let result; try { result = findMatch(path, processedTree.segmentTree, fuzzy); } catch (err) { if (err instanceof URIError) result = null; else throw err; } if (result) result.branch = buildRouteBranch(result.route); processedTree.matchCache.set(key, result); return result;}/** Trim trailing slashes (except preserving root '/'). */function trimPathRight$1(path) { return path === "/" ? path : path.replace(/\/{1,}$/, "");}/*** Processes a route tree into a segment trie for efficient path matching.* Also builds lookup maps for routes by ID and by trimmed full path.*/function processRouteTree(routeTree, caseSensitive = false, initRoute) { const segmentTree = createStaticNode(routeTree.fullPath); const data = new Uint16Array(6); const routesById = {}; const routesByPath = {}; let index = 0; parseSegments(caseSensitive, data, routeTree, 1, segmentTree, 0, (route) => { initRoute?.(route, index); if (route.id in routesById) invariant(); routesById[route.id] = route; if (index !== 0 && route.path) { const trimmedFullPath = trimPathRight$1(route.fullPath); if (!routesByPath[trimmedFullPath] || route.fullPath.endsWith("/")) routesByPath[trimmedFullPath] = route; } index++; }); sortTreeNodes(segmentTree); return { processedTree: { segmentTree, singleCache: createLRUCache(1e3), matchCache: createLRUCache(1e3), flatCache: null, masksTree: null }, routesById, routesByPath };}function findMatch(path, segmentTree, fuzzy = false) { const parts = path.split("/"); const leaf = getNodeMatch(path, parts, segmentTree, fuzzy); if (!leaf) return null; const [rawParams] = extractParams(path, parts, leaf); return { route: leaf.node.route, rawParams };}/*** This function is "resumable":* - the `leaf` input can contain `extract` and `rawParams` properties from a previous `extractParams` call* - the returned `state` can be passed back as `extract` in a future call to continue extracting params from where we left off** Inputs are *not* mutated.*/function extractParams(path, parts, leaf) { const list = buildBranch(leaf.node); let nodeParts = null; const rawParams = Object.create(null); /** which segment of the path we're currently processing */ let partIndex = leaf.extract?.part ?? 0; /** which node of the route tree branch we're currently processing */ let nodeIndex = leaf.extract?.node ?? 0; /** index of the 1st character of the segment we're processing in the path string */ let pathIndex = leaf.extract?.path ?? 0; /** which fullPath segment we're currently processing */ let segmentCount = leaf.extract?.segment ?? 0; for (; nodeIndex < list.length; partIndex++, nodeIndex++, pathIndex++, segmentCount++) { const node = list[nodeIndex]; if (node.kind === SEGMENT_TYPE_INDEX) break; if (node.kind === SEGMENT_TYPE_PATHLESS) { segmentCount--; partIndex--; pathIndex--; continue; } const part = parts[partIndex]; const currentPathIndex = pathIndex; if (part) pathIndex += part.length; if (node.kind === 1) { nodeParts ??= leaf.node.fullPath.split("/"); const nodePart = nodeParts[segmentCount]; const preLength = node.prefix?.length ?? 0; if (nodePart.charCodeAt(preLength) === 123) { const sufLength = node.suffix?.length ?? 0; const name = nodePart.substring(preLength + 2, nodePart.length - sufLength - 1); const value = part.substring(preLength, part.length - sufLength); rawParams[name] = decodeURIComponent(value); } else { const name = nodePart.substring(1); rawParams[name] = decodeURIComponent(part); } } else if (node.kind === 3) { if (leaf.skipped & 1 << nodeIndex) { partIndex--; pathIndex = currentPathIndex - 1; continue; } nodeParts ??= leaf.node.fullPath.split("/"); const nodePart = nodeParts[segmentCount]; const preLength = node.prefix?.length ?? 0; const sufLength = node.suffix?.length ?? 0; const name = nodePart.substring(preLength + 3, nodePart.length - sufLength - 1); const value = node.suffix || node.prefix ? part.substring(preLength, part.length - sufLength) : part; if (value) rawParams[name] = decodeURIComponent(value); } else if (node.kind === 2) { const n = node; const value = path.substring(currentPathIndex + (n.prefix?.length ?? 0), path.length - (n.suffix?.length ?? 0)); const splat = decodeURIComponent(value); rawParams["*"] = splat; rawParams._splat = splat; break; } } if (leaf.rawParams) Object.assign(rawParams, leaf.rawParams); return [rawParams, { part: partIndex, node: nodeIndex, path: pathIndex, segment: segmentCount }];}function buildRouteBranch(route) { const list = [route]; while (route.parentRoute) { route = route.parentRoute; list.push(route); } list.reverse(); return list;}function buildBranch(node) { const list = Array(node.depth + 1); do { list[node.depth] = node; node = node.parent; } while (node); return list;}function getNodeMatch(path, parts, segmentTree, fuzzy) { if (path === "/" && segmentTree.index) return { node: segmentTree.index, skipped: 0 }; const trailingSlash = !last(parts); const pathIsIndex = trailingSlash && path !== "/"; const partsLength = parts.length - (trailingSlash ? 1 : 0); const stack = [{ node: segmentTree, index: 1, skipped: 0, depth: 1, statics: 0, dynamics: 0, optionals: 0 }]; let bestFuzzy = null; let bestMatch = null; while (stack.length) { const frame = stack.pop(); const { node, index, skipped, depth, statics, dynamics, optionals } = frame; let { extract, rawParams } = frame; if (node.kind === 2 && node.route && !isFrameMoreSpecific(bestMatch, frame)) continue; if (node.parse) { if (!validateParseParams(path, parts, frame)) continue; rawParams = frame.rawParams; extract = frame.extract; } if (fuzzy && node.route && node.kind !== SEGMENT_TYPE_INDEX && isFrameMoreSpecific(bestFuzzy, frame)) bestFuzzy = frame; const isBeyondPath = index === partsLength; if (isBeyondPath) { if (node.route && (!pathIsIndex || node.kind === SEGMENT_TYPE_INDEX || node.kind === 2) && isFrameMoreSpecific(bestMatch, frame)) bestMatch = frame; if (!node.optional && !node.wildcard && !node.index && !node.pathless) continue; } const part = isBeyondPath ? void 0 : parts[index]; let lowerPart; if (isBeyondPath && node.index) { const indexFrame = { node: node.index, index, skipped, depth: depth + 1, statics, dynamics, optionals, extract, rawParams }; let indexValid = true; if (node.index.parse) { if (!validateParseParams(path, parts, indexFrame)) indexValid = false; } if (indexValid) { if (!dynamics && !optionals && !skipped && isPerfectStaticMatch(statics, partsLength)) return indexFrame; if (isFrameMoreSpecific(bestMatch, indexFrame)) bestMatch = indexFrame; } } if (node.wildcard) for (let i = node.wildcard.length - 1; i >= 0; i--) { const segment = node.wildcard[i]; const { prefix, suffix } = segment; if (prefix) { if (isBeyondPath) continue; if (!(segment.caseSensitive ? part : lowerPart ??= part.toLowerCase()).startsWith(prefix)) continue; } if (suffix) { if (isBeyondPath) continue; const end = parts.slice(index).join("/").slice(-suffix.length); if ((segment.caseSensitive ? end : end.toLowerCase()) !== suffix) continue; } stack.push({ node: segment, index: partsLength, skipped, depth: depth + 1, statics, dynamics, optionals, extract, rawParams }); } if (node.optional) { const nextSkipped = skipped | 1 << depth; const nextDepth = depth + 1; for (let i = node.optional.length - 1; i >= 0; i--) { const segment = node.optional[i]; stack.push({ node: segment, index, skipped: nextSkipped, depth: nextDepth, statics, dynamics, optionals, extract, rawParams }); } if (!isBeyondPath) for (let i = node.optional.length - 1; i >= 0; i--) { const segment = node.optional[i]; const { prefix, suffix } = segment; if (prefix || suffix) { const casePart = segment.caseSensitive ? part : lowerPart ??= part.toLowerCase(); if (prefix && !casePart.startsWith(prefix)) continue; if (suffix && !casePart.endsWith(suffix)) continue; } stack.push({ node: segment, index: index + 1, skipped, depth: nextDepth, statics, dynamics, optionals: optionals + segmentScore(partsLength, index), extract, rawParams }); } } if (!isBeyondPath && node.dynamic && part) for (let i = node.dynamic.length - 1; i >= 0; i--) { const segment = node.dynamic[i]; const { prefix, suffix } = segment; if (prefix || suffix) { const casePart = segment.caseSensitive ? part : lowerPart ??= part.toLowerCase(); if (prefix && !casePart.startsWith(prefix)) continue; if (suffix && !casePart.endsWith(suffix)) continue; } stack.push({ node: segment, index: index + 1, skipped, depth: depth + 1, statics, dynamics: dynamics + segmentScore(partsLength, index), optionals, extract, rawParams }); } if (!isBeyondPath && node.staticInsensitive) { const match = node.staticInsensitive.get(lowerPart ??= part.toLowerCase()); if (match) stack.push({ node: match, index: index + 1, skipped, depth: depth + 1, statics: statics + segmentScore(partsLength, index), dynamics, optionals, extract, rawParams }); } if (!isBeyondPath && node.static) { const match = node.static.get(part); if (match) stack.push({ node: match, index: index + 1, skipped, depth: depth + 1, statics: statics + segmentScore(partsLength, index), dynamics, optionals, extract, rawParams }); } if (node.pathless) { const nextDepth = depth + 1; for (let i = node.pathless.length - 1; i >= 0; i--) { const segment = node.pathless[i]; stack.push({ node: segment, index, skipped, depth: nextDepth, statics, dynamics, optionals, extract, rawParams }); } } } if (bestMatch) return bestMatch; if (fuzzy && bestFuzzy) { let sliceIndex = bestFuzzy.index; for (let i = 0; i < bestFuzzy.index; i++) sliceIndex += parts[i].length; const splat = sliceIndex === path.length ? "/" : path.slice(sliceIndex); bestFuzzy.rawParams ??= Object.create(null); bestFuzzy.rawParams["**"] = decodeURIComponent(splat); return bestFuzzy; } return null;}function segmentScore(partsLength, index) { return 2 ** (partsLength - index - 1);}function isPerfectStaticMatch(statics, partsLength) { return statics === 2 ** (partsLength - 1) - 1;}function validateParseParams(path, parts, frame) { let rawParams; let state; try { [rawParams, state] = extractParams(path, parts, frame); } catch { return null; } frame.rawParams = rawParams; frame.extract = state; if (!frame.node.parse) return true; try { if (frame.node.parse(rawParams) === false) return null; } catch {} return true;}function isFrameMoreSpecific(prev, next) { if (!prev) return true; return next.statics > prev.statics || next.statics === prev.statics && (next.dynamics > prev.dynamics || next.dynamics === prev.dynamics && (next.optionals > prev.optionals || next.optionals === prev.optionals && ((next.node.kind === SEGMENT_TYPE_INDEX) > (prev.node.kind === SEGMENT_TYPE_INDEX) || next.node.kind === SEGMENT_TYPE_INDEX === (prev.node.kind === SEGMENT_TYPE_INDEX) && next.depth > prev.depth)));}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/path.js/** Join path segments, cleaning duplicate slashes between parts. */function joinPaths(paths) { return cleanPath(paths.filter((val) => { return val !== void 0; }).join("/"));}/** Remove repeated slashes from a path string. */function cleanPath(path) { return path.replace(/\/{2,}/g, "/");}/** Trim leading slashes (except preserving root '/'). */function trimPathLeft(path) { return path === "/" ? path : path.replace(/^\/{1,}/, "");}/** Trim trailing slashes (except preserving root '/'). */function trimPathRight(path) { const len = path.length; return len > 1 && path[len - 1] === "/" ? path.replace(/\/{1,}$/, "") : path;}/** Trim both leading and trailing slashes. */function trimPath(path) { return trimPathRight(trimPathLeft(path));}/** Remove a trailing slash from value when appropriate for comparisons. */function removeTrailingSlash(value, basepath) { if (value?.endsWith("/") && value !== "/" && value !== `${basepath}/`) return value.slice(0, -1); return value;}/*** Compare two pathnames for exact equality after normalizing trailing slashes* relative to the provided `basepath`.*/function exactPathTest(pathName1, pathName2, basepath) { return removeTrailingSlash(pathName1, basepath) === removeTrailingSlash(pathName2, basepath);}/*** Resolve a destination path against a base, honoring trailing-slash policy* and supporting relative segments (`.`/`..`) and absolute `to` values.*/function resolvePath({ base, to, trailingSlash = "never", cache }) { const isAbsolute = to.startsWith("/"); const isBase = !isAbsolute && to === "."; let key; if (cache) { key = isAbsolute ? to : isBase ? base : base + "\0" + to; const cached = cache.get(key); if (cached) return cached; } let baseSegments; if (isBase) baseSegments = base.split("/"); else if (isAbsolute) baseSegments = to.split("/"); else { baseSegments = base.split("/"); while (baseSegments.length > 1 && last(baseSegments) === "") baseSegments.pop(); const toSegments = to.split("/"); for (let index = 0, length = toSegments.length; index < length; index++) { const value = toSegments[index]; if (value === "") { if (!index) baseSegments = [value]; else if (index === length - 1) baseSegments.push(value); } else if (value === "..") baseSegments.pop(); else if (value === ".") {} else baseSegments.push(value); } } if (baseSegments.length > 1) { if (last(baseSegments) === "") { if (trailingSlash === "never") baseSegments.pop(); } else if (trailingSlash === "always") baseSegments.push(""); } const result = cleanPath(baseSegments.join("/")) || "/"; if (key && cache) cache.set(key, result); return result;}/*** Create a pre-compiled decode config from allowed characters.* This should be called once at router initialization.*/function compileDecodeCharMap(pathParamsAllowedCharacters) { const charMap = new Map(pathParamsAllowedCharacters.map((char) => [encodeURIComponent(char), char])); const pattern = Array.from(charMap.keys()).map((key) => key.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")).join("|"); const regex = new RegExp(pattern, "g"); return (encoded) => encoded.replace(regex, (match) => charMap.get(match) ?? match);}function encodeParam(key, params, decoder) { const value = params[key]; if (typeof value !== "string") return value; if (key === "_splat") { if (/^[a-zA-Z0-9\-._~!/]*$/.test(value)) return value; return value.split("/").map((segment) => encodePathParam(segment, decoder)).join("/"); } else return encodePathParam(value, decoder);}/*** Interpolate params and wildcards into a route path template.** - Encodes params safely (configurable allowed characters)* - Supports `{-$optional}` segments, `{prefix{$id}suffix}` and `{$}` wildcards*/function interpolatePath({ path, params, decoder, ...rest }) { let isMissingParams = false; const usedParams = Object.create(null); if (!path || path === "/") return { interpolatedPath: "/", usedParams, isMissingParams }; if (!path.includes("$")) return { interpolatedPath: path, usedParams, isMissingParams }; if (path.indexOf("{") === -1) { const length = path.length; let cursor = 0; let joined = ""; while (cursor < length) { while (cursor < length && path.charCodeAt(cursor) === 47) cursor++; if (cursor >= length) break; const start = cursor; let end = path.indexOf("/", cursor); if (end === -1) end = length; cursor = end; const part = path.substring(start, end); if (!part) continue; if (part.charCodeAt(0) === 36) if (part.length === 1) { const splat = params._splat; usedParams._splat = splat; usedParams["*"] = splat; if (!splat) { isMissingParams = true; continue; } const value = encodeParam("_splat", params, decoder); joined += "/" + value; } else { const key = part.substring(1); if (!isMissingParams && !(key in params)) isMissingParams = true; usedParams[key] = params[key]; const value = encodeParam(key, params, decoder) ?? "undefined"; joined += "/" + value; } else joined += "/" + part; } if (path.endsWith("/")) joined += "/"; return { usedParams, interpolatedPath: joined || "/", isMissingParams }; } const length = path.length; let cursor = 0; let segment; let joined = ""; while (cursor < length) { const start = cursor; segment = parseSegment(path, start, segment); const end = segment[5]; cursor = end + 1; if (start === end) continue; const kind = segment[0]; if (kind === 0) { joined += "/" + path.substring(start, end); continue; } if (kind === 2) { const splat = params._splat; usedParams._splat = splat; usedParams["*"] = splat; const prefix = path.substring(start, segment[1]); const suffix = path.substring(segment[4], end); if (!splat) { isMissingParams = true; if (prefix || suffix) joined += "/" + prefix + suffix; continue; } const value = encodeParam("_splat", params, decoder); joined += "/" + prefix + value + suffix; continue; } if (kind === 1) { const key = path.substring(segment[2], segment[3]); if (!isMissingParams && !(key in params)) isMissingParams = true; usedParams[key] = params[key]; const prefix = path.substring(start, segment[1]); const suffix = path.substring(segment[4], end); const value = encodeParam(key, params, decoder) ?? "undefined"; joined += "/" + prefix + value + suffix; continue; } if (kind === 3) { const key = path.substring(segment[2], segment[3]); const valueRaw = params[key]; if (valueRaw == null) continue; usedParams[key] = valueRaw; const prefix = path.substring(start, segment[1]); const suffix = path.substring(segment[4], end); const value = encodeParam(key, params, decoder) ?? ""; joined += "/" + prefix + value + suffix; continue; } } if (path.endsWith("/")) joined += "/"; return { usedParams, interpolatedPath: joined || "/", isMissingParams };}function encodePathParam(value, decoder) { const encoded = encodeURIComponent(value); return decoder?.(encoded) ?? encoded;}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/not-found.js/** Determine if a value is a TanStack Router not-found error. */function isNotFound(obj) { return obj?.isNotFound === true;}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/qss.js/*** Program is a reimplementation of the `qss` package:* Copyright (c) Luke Edwards luke.edwards05@gmail.com, MIT License* https://github.com/lukeed/qss/blob/master/license.md** This reimplementation uses modern browser APIs* (namely URLSearchParams) and TypeScript while still* maintaining the original functionality and interface.** Update: this implementation has also been mangled to* fit exactly our use-case (single value per key in encoding).*//*** Encodes an object into a query string.* @param obj - The object to encode into a query string.* @param stringify - An optional custom stringify function.* @returns The encoded query string.* @example* ```* // Example input: encode({ token: 'foo', key: 'value' })* // Expected output: "token=foo&key=value"* ```*/function encode(obj, stringify = String) { const result = new URLSearchParams(); for (const key in obj) { const val = obj[key]; if (val !== void 0) result.set(key, stringify(val)); } return result.toString();}/*** Converts a string value to its appropriate type (string, number, boolean).* @param mix - The string value to convert.* @returns The converted value.* @example* // Example input: toValue("123")* // Expected output: 123*/function toValue(str) { if (!str) return ""; if (str === "false") return false; if (str === "true") return true; return +str * 0 === 0 && +str + "" === str ? +str : str;}/*** Decodes a query string into an object.* @param str - The query string to decode.* @returns The decoded key-value pairs in an object format.* @example* // Example input: decode("token=foo&key=value")* // Expected output: { "token": "foo", "key": "value" }*/function decode(str) { const searchParams = new URLSearchParams(str); const result = Object.create(null); for (const [key, value] of searchParams.entries()) { const previousValue = result[key]; if (previousValue == null) result[key] = toValue(value); else if (Array.isArray(previousValue)) previousValue.push(toValue(value)); else result[key] = [previousValue, toValue(value)]; } return result;}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/searchParams.js/** Default `parseSearch` that strips leading '?' and JSON-parses values. */var defaultParseSearch = parseSearchWith(JSON.parse);/** Default `stringifySearch` using JSON.stringify for complex values. */var defaultStringifySearch = stringifySearchWith(JSON.stringify, JSON.parse);/*** Build a `parseSearch` function using a provided JSON-like parser.** The returned function strips a leading `?`, decodes values, and attempts to* JSON-parse string values using the given `parser`.** @param parser Function to parse a string value (e.g. `JSON.parse`).* @returns A `parseSearch` function compatible with `Router` options.* @link https://tanstack.com/router/latest/docs/framework/react/guide/custom-search-param-serialization*/function parseSearchWith(parser) { return (searchStr) => { if (searchStr[0] === "?") searchStr = searchStr.substring(1); const query = decode(searchStr); for (const key in query) { const value = query[key]; if (typeof value === "string") try { query[key] = parser(value); } catch (_err) {} } return query; };}/*** Build a `stringifySearch` function using a provided serializer.** Non-primitive values are serialized with `stringify`. If a `parser` is* supplied, string values that are parseable are re-serialized to ensure* symmetry with `parseSearch`.** @param stringify Function to serialize a value (e.g. `JSON.stringify`).* @param parser Optional parser to detect parseable strings.* @returns A `stringifySearch` function compatible with `Router` options.* @link https://tanstack.com/router/latest/docs/framework/react/guide/custom-search-param-serialization*/function stringifySearchWith(stringify, parser) { const hasParser = typeof parser === "function"; function stringifyValue(val) { if (typeof val === "object" && val !== null) try { return stringify(val); } catch (_err) {} else if (hasParser && typeof val === "string") try { parser(val); return stringify(val); } catch (_err) {} return val; } return (search) => { const searchStr = encode(search, stringifyValue); return searchStr ? `?${searchStr}` : ""; };}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/root.js/** Stable identifier used for the root route in a route tree. */var rootRouteId = "__root__";//#endregion//#region node_modules/@tanstack/router-core/dist/esm/redirect.js/*** Create a redirect Response understood by TanStack Router.** Use from route `loader`/`beforeLoad` or server functions to trigger a* navigation. If `throw: true` is set, the redirect is thrown instead of* returned. When an absolute `href` is supplied and `reloadDocument` is not* set, a full-document navigation is inferred.** @param opts Options for the redirect. Common fields:* - `href`: absolute URL for external redirects; infers `reloadDocument`.* - `statusCode`: HTTP status code to use (defaults to 307).* - `headers`: additional headers to include on the Response.* - Standard navigation options like `to`, `params`, `search`, `replace`,* and `reloadDocument` for internal redirects.* @returns A Response augmented with router navigation options.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/redirectFunction*/function redirect(opts) { opts.statusCode = opts.statusCode || opts.code || 307; if (!opts._builtLocation && !opts.reloadDocument && typeof opts.href === "string") try { new URL(opts.href); opts.reloadDocument = true; } catch {} const headers = new Headers(opts.headers); if (opts.href && headers.get("Location") === null) headers.set("Location", opts.href); const response = new Response(null, { status: opts.statusCode, headers }); response.options = opts; if (opts.throw) throw response; return response;}/** Check whether a value is a TanStack Router redirect Response. *//** Check whether a value is a TanStack Router redirect Response. */function isRedirect(obj) { return obj instanceof Response && !!obj.options;}/** True if value is a redirect with a resolved `href` location. *//** True if value is a redirect with a resolved `href` location. */function isResolvedRedirect(obj) { return isRedirect(obj) && !!obj.options.href;}/** Parse a serialized redirect object back into a redirect Response. *//** Parse a serialized redirect object back into a redirect Response. */function parseRedirect(obj) { if (obj !== null && typeof obj === "object" && obj.isSerializedRedirect) return redirect(obj);}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/load-matches.jsvar triggerOnReady = (inner) => { if (!inner.rendered) { inner.rendered = true; return inner.onReady?.(); }};var resolvePreload = (inner, matchId) => { return !!(inner.preload && !inner.router.stores.matchStores.has(matchId));};/*** Builds the accumulated context from router options and all matches up to (and optionally including) the given index.* Merges __routeContext and __beforeLoadContext from each match.*/var buildMatchContext = (inner, index, includeCurrentMatch = true) => { const context = { ...inner.router.options.context ?? {} }; const end = includeCurrentMatch ? index : index - 1; for (let i = 0; i <= end; i++) { const innerMatch = inner.matches[i]; if (!innerMatch) continue; const m = inner.router.getMatch(innerMatch.id); if (!m) continue; Object.assign(context, m.__routeContext, m.__beforeLoadContext); } return context;};var getNotFoundBoundaryIndex = (inner, err) => { if (!inner.matches.length) return; const requestedRouteId = err.routeId; const matchedRootIndex = inner.matches.findIndex((m) => m.routeId === inner.router.routeTree.id); const rootIndex = matchedRootIndex >= 0 ? matchedRootIndex : 0; let startIndex = requestedRouteId ? inner.matches.findIndex((match) => match.routeId === requestedRouteId) : inner.firstBadMatchIndex ?? inner.matches.length - 1; if (startIndex < 0) startIndex = rootIndex; for (let i = startIndex; i >= 0; i--) { const match = inner.matches[i]; if (inner.router.looseRoutesById[match.routeId].options.notFoundComponent) return i; } return requestedRouteId ? startIndex : rootIndex;};var handleRedirectAndNotFound = (inner, match, err) => { if (!isRedirect(err) && !isNotFound(err)) return; if (isRedirect(err) && err.redirectHandled && !err.options.reloadDocument) throw err; if (match) { match._nonReactive.beforeLoadPromise?.resolve(); match._nonReactive.loaderPromise?.resolve(); match._nonReactive.beforeLoadPromise = void 0; match._nonReactive.loaderPromise = void 0; match._nonReactive.error = err; inner.updateMatch(match.id, (prev) => ({ ...prev, status: isRedirect(err) ? "redirected" : isNotFound(err) ? "notFound" : prev.status === "pending" ? "success" : prev.status, context: buildMatchContext(inner, match.index), isFetching: false, error: err })); if (isNotFound(err) && !err.routeId) err.routeId = match.routeId; match._nonReactive.loadPromise?.resolve(); } if (isRedirect(err)) { inner.rendered = true; err.options._fromLocation = inner.location; err.redirectHandled = true; err = inner.router.resolveRedirect(err); } throw err;};var shouldSkipLoader = (inner, matchId) => { const match = inner.router.getMatch(matchId); if (!match) return true; if (match.ssr === false) return true; return false;};var syncMatchContext = (inner, matchId, index) => { const nextContext = buildMatchContext(inner, index); inner.updateMatch(matchId, (prev) => { return { ...prev, context: nextContext }; });};var handleSerialError = (inner, index, err) => { const { id: matchId, routeId } = inner.matches[index]; const route = inner.router.looseRoutesById[routeId]; if (err instanceof Promise) throw err; inner.firstBadMatchIndex ??= index; handleRedirectAndNotFound(inner, inner.router.getMatch(matchId), err); try { route.options.onError?.(err); } catch (errorHandlerErr) { err = errorHandlerErr; handleRedirectAndNotFound(inner, inner.router.getMatch(matchId), err); } inner.updateMatch(matchId, (prev) => { prev._nonReactive.beforeLoadPromise?.resolve(); prev._nonReactive.beforeLoadPromise = void 0; prev._nonReactive.loadPromise?.resolve(); return { ...prev, error: err, status: "error", isFetching: false, updatedAt: Date.now(), abortController: new AbortController() }; }); if (!inner.preload && !isRedirect(err) && !isNotFound(err)) inner.serialError ??= err;};var isBeforeLoadSsr = (inner, matchId, index, route) => { const existingMatch = inner.router.getMatch(matchId); const parentMatchId = inner.matches[index - 1]?.id; const parentMatch = parentMatchId ? inner.router.getMatch(parentMatchId) : void 0; if (inner.router.isShell()) { existingMatch.ssr = route.id === rootRouteId; return; } if (parentMatch?.ssr === false) { existingMatch.ssr = false; return; } const parentOverride = (tempSsr) => { if (tempSsr === true && parentMatch?.ssr === "data-only") return "data-only"; return tempSsr; }; const defaultSsr = inner.router.options.defaultSsr ?? true; if (route.options.ssr === void 0) { existingMatch.ssr = parentOverride(defaultSsr); return; } if (typeof route.options.ssr !== "function") { existingMatch.ssr = parentOverride(route.options.ssr); return; } const { search, params } = existingMatch; const ssrFnContext = { search: makeMaybe(search, existingMatch.searchError), params: makeMaybe(params, existingMatch.paramsError), location: inner.location, matches: inner.matches.map((match) => ({ index: match.index, pathname: match.pathname, fullPath: match.fullPath, staticData: match.staticData, id: match.id, routeId: match.routeId, search: makeMaybe(match.search, match.searchError), params: makeMaybe(match.params, match.paramsError), ssr: match.ssr })) }; const tempSsr = route.options.ssr(ssrFnContext); if (isPromise(tempSsr)) return tempSsr.then((ssr) => { existingMatch.ssr = parentOverride(ssr ?? defaultSsr); }); existingMatch.ssr = parentOverride(tempSsr ?? defaultSsr);};var setupPendingTimeout = (inner, matchId, route, match) => { if (match._nonReactive.pendingTimeout !== void 0) return; route.options.pendingMs ?? inner.router.options.defaultPendingMs; if (!!(inner.onReady && false));};var preBeforeLoadSetup = (inner, matchId, route) => { const existingMatch = inner.router.getMatch(matchId); if (!existingMatch._nonReactive.beforeLoadPromise && !existingMatch._nonReactive.loaderPromise) return; setupPendingTimeout(inner, matchId, route, existingMatch); const then = () => { const match = inner.router.getMatch(matchId); if (match.preload && (match.status === "redirected" || match.status === "notFound")) handleRedirectAndNotFound(inner, match, match.error); }; return existingMatch._nonReactive.beforeLoadPromise ? existingMatch._nonReactive.beforeLoadPromise.then(then) : then();};var executeBeforeLoad = (inner, matchId, index, route) => { const match = inner.router.getMatch(matchId); let prevLoadPromise = match._nonReactive.loadPromise; match._nonReactive.loadPromise = createControlledPromise(() => { prevLoadPromise?.resolve(); prevLoadPromise = void 0; }); const { paramsError, searchError } = match; if (paramsError) handleSerialError(inner, index, paramsError); if (searchError) handleSerialError(inner, index, searchError); setupPendingTimeout(inner, matchId, route, match); const abortController = new AbortController(); let isPending = false; const pending = () => { if (isPending) return; isPending = true; inner.updateMatch(matchId, (prev) => ({ ...prev, isFetching: "beforeLoad", fetchCount: prev.fetchCount + 1, abortController })); }; const resolve = () => { match._nonReactive.beforeLoadPromise?.resolve(); match._nonReactive.beforeLoadPromise = void 0; inner.updateMatch(matchId, (prev) => ({ ...prev, isFetching: false })); }; if (!route.options.beforeLoad) { inner.router.batch(() => { pending(); resolve(); }); return; } match._nonReactive.beforeLoadPromise = createControlledPromise(); const context = { ...buildMatchContext(inner, index, false), ...match.__routeContext }; const { search, params, cause } = match; const preload = resolvePreload(inner, matchId); const beforeLoadFnContext = { search, abortController, params, preload, context, location: inner.location, navigate: (opts) => inner.router.navigate({ ...opts, _fromLocation: inner.location }), buildLocation: inner.router.buildLocation, cause: preload ? "preload" : cause, matches: inner.matches, routeId: route.id, ...inner.router.options.additionalContext }; const updateContext = (beforeLoadContext) => { if (beforeLoadContext === void 0) { inner.router.batch(() => { pending(); resolve(); }); return; } if (isRedirect(beforeLoadContext) || isNotFound(beforeLoadContext)) { pending(); handleSerialError(inner, index, beforeLoadContext); } inner.router.batch(() => { pending(); inner.updateMatch(matchId, (prev) => ({ ...prev, __beforeLoadContext: beforeLoadContext })); resolve(); }); }; let beforeLoadContext; try { beforeLoadContext = route.options.beforeLoad(beforeLoadFnContext); if (isPromise(beforeLoadContext)) { pending(); return beforeLoadContext.catch((err) => { handleSerialError(inner, index, err); }).then(updateContext); } } catch (err) { pending(); handleSerialError(inner, index, err); } updateContext(beforeLoadContext);};var handleBeforeLoad = (inner, index) => { const { id: matchId, routeId } = inner.matches[index]; const route = inner.router.looseRoutesById[routeId]; const serverSsr = () => { { const maybePromise = isBeforeLoadSsr(inner, matchId, index, route); if (isPromise(maybePromise)) return maybePromise.then(queueExecution); } return queueExecution(); }; const execute = () => executeBeforeLoad(inner, matchId, index, route); const queueExecution = () => { if (shouldSkipLoader(inner, matchId)) return; const result = preBeforeLoadSetup(inner, matchId, route); return isPromise(result) ? result.then(execute) : execute(); }; return serverSsr();};var executeHead = (inner, matchId, route) => { const match = inner.router.getMatch(matchId); if (!match) return; if (!route.options.head && !route.options.scripts && !route.options.headers) return; const assetContext = { ssr: inner.router.options.ssr, matches: inner.matches, match, params: match.params, loaderData: match.loaderData }; return Promise.all([ route.options.head?.(assetContext), route.options.scripts?.(assetContext), route.options.headers?.(assetContext) ]).then(([headFnContent, scripts, headers]) => { return { meta: headFnContent?.meta, links: headFnContent?.links, headScripts: headFnContent?.scripts, headers, scripts, styles: headFnContent?.styles }; });};var getLoaderContext = (inner, matchPromises, matchId, index, route) => { const parentMatchPromise = matchPromises[index - 1]; const { params, loaderDeps, abortController, cause } = inner.router.getMatch(matchId); const context = buildMatchContext(inner, index); const preload = resolvePreload(inner, matchId); return { params, deps: loaderDeps, preload: !!preload, parentMatchPromise, abortController, context, location: inner.location, navigate: (opts) => inner.router.navigate({ ...opts, _fromLocation: inner.location }), cause: preload ? "preload" : cause, route, ...inner.router.options.additionalContext };};var runLoader = async (inner, matchPromises, matchId, index, route) => { try { const match = inner.router.getMatch(matchId); try { if (match.ssr === true) loadRouteChunk(route); const routeLoader = route.options.loader; const loader = typeof routeLoader === "function" ? routeLoader : routeLoader?.handler; const loaderResult = loader?.(getLoaderContext(inner, matchPromises, matchId, index, route)); const loaderResultIsPromise = !!loader && isPromise(loaderResult); if (!!(loaderResultIsPromise || route._lazyPromise || route._componentsPromise || route.options.head || route.options.scripts || route.options.headers || match._nonReactive.minPendingPromise)) inner.updateMatch(matchId, (prev) => ({ ...prev, isFetching: "loader" })); if (loader) { const loaderData = loaderResultIsPromise ? await loaderResult : loaderResult; handleRedirectAndNotFound(inner, inner.router.getMatch(matchId), loaderData); if (loaderData !== void 0) inner.updateMatch(matchId, (prev) => ({ ...prev, loaderData })); } if (route._lazyPromise) await route._lazyPromise; const pendingPromise = match._nonReactive.minPendingPromise; if (pendingPromise) await pendingPromise; if (route._componentsPromise) await route._componentsPromise; inner.updateMatch(matchId, (prev) => ({ ...prev, error: void 0, context: buildMatchContext(inner, index), status: "success", isFetching: false, updatedAt: Date.now() })); } catch (e) { let error = e; if (error?.name === "AbortError") { if (match.abortController.signal.aborted) { match._nonReactive.loaderPromise?.resolve(); match._nonReactive.loaderPromise = void 0; return; } inner.updateMatch(matchId, (prev) => ({ ...prev, status: prev.status === "pending" ? "success" : prev.status, isFetching: false, context: buildMatchContext(inner, index) })); return; } const pendingPromise = match._nonReactive.minPendingPromise; if (pendingPromise) await pendingPromise; if (isNotFound(e)) await route.options.notFoundComponent?.preload?.(); handleRedirectAndNotFound(inner, inner.router.getMatch(matchId), e); try { route.options.onError?.(e); } catch (onErrorError) { error = onErrorError; handleRedirectAndNotFound(inner, inner.router.getMatch(matchId), onErrorError); } if (!isRedirect(error) && !isNotFound(error)) await loadRouteChunk(route, ["errorComponent"]); inner.updateMatch(matchId, (prev) => ({ ...prev, error, context: buildMatchContext(inner, index), status: "error", isFetching: false })); } } catch (err) { const match = inner.router.getMatch(matchId); if (match) match._nonReactive.loaderPromise = void 0; handleRedirectAndNotFound(inner, match, err); }};var loadRouteMatch = async (inner, matchPromises, index) => { async function handleLoader(preload, prevMatch, previousRouteMatchId, match, route) { const age = Date.now() - prevMatch.updatedAt; const staleAge = preload ? route.options.preloadStaleTime ?? inner.router.options.defaultPreloadStaleTime ?? 3e4 : route.options.staleTime ?? inner.router.options.defaultStaleTime ?? 0; const shouldReloadOption = route.options.shouldReload; const shouldReload = typeof shouldReloadOption === "function" ? shouldReloadOption(getLoaderContext(inner, matchPromises, matchId, index, route)) : shouldReloadOption; const { status, invalid } = match; const staleMatchShouldReload = age >= staleAge && (!!inner.forceStaleReload || match.cause === "enter" || previousRouteMatchId !== void 0 && previousRouteMatchId !== match.id); loaderShouldRunAsync = status === "success" && (invalid || (shouldReload ?? staleMatchShouldReload)); if (preload && route.options.preload === false) {} else if (loaderShouldRunAsync && !inner.sync && shouldReloadInBackground) { loaderIsRunningAsync = true; (async () => { try { await runLoader(inner, matchPromises, matchId, index, route); const match = inner.router.getMatch(matchId); match._nonReactive.loaderPromise?.resolve(); match._nonReactive.loadPromise?.resolve(); match._nonReactive.loaderPromise = void 0; match._nonReactive.loadPromise = void 0; } catch (err) { if (isRedirect(err)) await inner.router.navigate(err.options); } })(); } else if (status !== "success" || loaderShouldRunAsync) await runLoader(inner, matchPromises, matchId, index, route); else syncMatchContext(inner, matchId, index); } const { id: matchId, routeId } = inner.matches[index]; let loaderShouldRunAsync = false; let loaderIsRunningAsync = false; const route = inner.router.looseRoutesById[routeId]; const routeLoader = route.options.loader; const shouldReloadInBackground = ((typeof routeLoader === "function" ? void 0 : routeLoader?.staleReloadMode) ?? inner.router.options.defaultStaleReloadMode) !== "blocking"; if (shouldSkipLoader(inner, matchId)) { if (!inner.router.getMatch(matchId)) return inner.matches[index]; syncMatchContext(inner, matchId, index); return inner.router.getMatch(matchId); } else { const prevMatch = inner.router.getMatch(matchId); const activeIdAtIndex = inner.router.stores.matchesId.get()[index]; const previousRouteMatchId = (activeIdAtIndex && inner.router.stores.matchStores.get(activeIdAtIndex) || null)?.routeId === routeId ? activeIdAtIndex : inner.router.stores.matches.get().find((d) => d.routeId === routeId)?.id; const preload = resolvePreload(inner, matchId); if (prevMatch._nonReactive.loaderPromise) { if (prevMatch.status === "success" && !inner.sync && !prevMatch.preload && shouldReloadInBackground) return prevMatch; await prevMatch._nonReactive.loaderPromise; const match = inner.router.getMatch(matchId); const error = match._nonReactive.error || match.error; if (error) handleRedirectAndNotFound(inner, match, error); if (match.status === "pending") await handleLoader(preload, prevMatch, previousRouteMatchId, match, route); } else { const nextPreload = preload && !inner.router.stores.matchStores.has(matchId); const match = inner.router.getMatch(matchId); match._nonReactive.loaderPromise = createControlledPromise(); if (nextPreload !== match.preload) inner.updateMatch(matchId, (prev) => ({ ...prev, preload: nextPreload })); await handleLoader(preload, prevMatch, previousRouteMatchId, match, route); } } const match = inner.router.getMatch(matchId); if (!loaderIsRunningAsync) { match._nonReactive.loaderPromise?.resolve(); match._nonReactive.loadPromise?.resolve(); match._nonReactive.loadPromise = void 0; } clearTimeout(match._nonReactive.pendingTimeout); match._nonReactive.pendingTimeout = void 0; if (!loaderIsRunningAsync) match._nonReactive.loaderPromise = void 0; match._nonReactive.dehydrated = void 0; const nextIsFetching = loaderIsRunningAsync ? match.isFetching : false; if (nextIsFetching !== match.isFetching || match.invalid !== false) { inner.updateMatch(matchId, (prev) => ({ ...prev, isFetching: nextIsFetching, invalid: false })); return inner.router.getMatch(matchId); } else return match;};async function loadMatches(arg) { const inner = arg; const matchPromises = []; let beforeLoadNotFound; for (let i = 0; i < inner.matches.length; i++) { try { const beforeLoad = handleBeforeLoad(inner, i); if (isPromise(beforeLoad)) await beforeLoad; } catch (err) { if (isRedirect(err)) throw err; if (isNotFound(err)) beforeLoadNotFound = err; else if (!inner.preload) throw err; break; } if (inner.serialError || inner.firstBadMatchIndex != null) break; } const baseMaxIndexExclusive = inner.firstBadMatchIndex ?? inner.matches.length; const boundaryIndex = beforeLoadNotFound && !inner.preload ? getNotFoundBoundaryIndex(inner, beforeLoadNotFound) : void 0; const maxIndexExclusive = beforeLoadNotFound && inner.preload ? 0 : boundaryIndex !== void 0 ? Math.min(boundaryIndex + 1, baseMaxIndexExclusive) : baseMaxIndexExclusive; let firstNotFound; let firstUnhandledRejection; for (let i = 0; i < maxIndexExclusive; i++) matchPromises.push(loadRouteMatch(inner, matchPromises, i)); try { await Promise.all(matchPromises); } catch { const settled = await Promise.allSettled(matchPromises); for (const result of settled) { if (result.status !== "rejected") continue; const reason = result.reason; if (isRedirect(reason)) throw reason; if (isNotFound(reason)) firstNotFound ??= reason; else firstUnhandledRejection ??= reason; } if (firstUnhandledRejection !== void 0) throw firstUnhandledRejection; } const notFoundToThrow = firstNotFound ?? (beforeLoadNotFound && !inner.preload ? beforeLoadNotFound : void 0); let headMaxIndex = inner.firstBadMatchIndex !== void 0 ? inner.firstBadMatchIndex : inner.matches.length - 1; if (!notFoundToThrow && beforeLoadNotFound && inner.preload) return inner.matches; if (notFoundToThrow) { const renderedBoundaryIndex = getNotFoundBoundaryIndex(inner, notFoundToThrow); if (renderedBoundaryIndex === void 0) invariant(); const boundaryMatch = inner.matches[renderedBoundaryIndex]; const boundaryRoute = inner.router.looseRoutesById[boundaryMatch.routeId]; const defaultNotFoundComponent = inner.router.options?.defaultNotFoundComponent; if (!boundaryRoute.options.notFoundComponent && defaultNotFoundComponent) boundaryRoute.options.notFoundComponent = defaultNotFoundComponent; notFoundToThrow.routeId = boundaryMatch.routeId; const boundaryIsRoot = boundaryMatch.routeId === inner.router.routeTree.id; inner.updateMatch(boundaryMatch.id, (prev) => ({ ...prev, ...boundaryIsRoot ? { status: "success", globalNotFound: true, error: void 0 } : { status: "notFound", error: notFoundToThrow }, isFetching: false })); headMaxIndex = renderedBoundaryIndex; await loadRouteChunk(boundaryRoute, ["notFoundComponent"]); } else if (!inner.preload) { const rootMatch = inner.matches[0]; if (!rootMatch.globalNotFound) { if (inner.router.getMatch(rootMatch.id)?.globalNotFound) inner.updateMatch(rootMatch.id, (prev) => ({ ...prev, globalNotFound: false, error: void 0 })); } } if (inner.serialError && inner.firstBadMatchIndex !== void 0) { const errorRoute = inner.router.looseRoutesById[inner.matches[inner.firstBadMatchIndex].routeId]; await loadRouteChunk(errorRoute, ["errorComponent"]); } for (let i = 0; i <= headMaxIndex; i++) { const { id: matchId, routeId } = inner.matches[i]; const route = inner.router.looseRoutesById[routeId]; try { const headResult = executeHead(inner, matchId, route); if (headResult) { const head = await headResult; inner.updateMatch(matchId, (prev) => ({ ...prev, ...head })); } } catch (err) { console.error(`Error executing head for route ${routeId}:`, err); } } const readyPromise = triggerOnReady(inner); if (isPromise(readyPromise)) await readyPromise; if (notFoundToThrow) throw notFoundToThrow; if (inner.serialError && !inner.preload && !inner.onReady) throw inner.serialError; return inner.matches;}function preloadRouteComponents(route, componentTypesToLoad) { const preloads = componentTypesToLoad.map((type) => route.options[type]?.preload?.()).filter(Boolean); if (preloads.length === 0) return void 0; return Promise.all(preloads);}function loadRouteChunk(route, componentTypesToLoad = componentTypes) { if (!route._lazyLoaded && route._lazyPromise === void 0) if (route.lazyFn) route._lazyPromise = route.lazyFn().then((lazyRoute) => { const { id: _id, ...options } = lazyRoute.options; Object.assign(route.options, options); route._lazyLoaded = true; route._lazyPromise = void 0; }); else route._lazyLoaded = true; const runAfterLazy = () => route._componentsLoaded ? void 0 : componentTypesToLoad === componentTypes ? (() => { if (route._componentsPromise === void 0) { const componentsPromise = preloadRouteComponents(route, componentTypes); if (componentsPromise) route._componentsPromise = componentsPromise.then(() => { route._componentsLoaded = true; route._componentsPromise = void 0; }); else route._componentsLoaded = true; } return route._componentsPromise; })() : preloadRouteComponents(route, componentTypesToLoad); return route._lazyPromise ? route._lazyPromise.then(runAfterLazy) : runAfterLazy();}function makeMaybe(value, error) { if (error) return { status: "error", error }; return { status: "success", value };}function routeNeedsPreload(route) { for (const componentType of componentTypes) if (route.options[componentType]?.preload) return true; return false;}var componentTypes = [ "component", "errorComponent", "pendingComponent", "notFoundComponent"];//#endregion//#region node_modules/@tanstack/router-core/dist/esm/rewrite.js/** Compose multiple rewrite pairs into a single in/out rewrite. */function composeRewrites(rewrites) { return { input: ({ url }) => { for (const rewrite of rewrites) url = executeRewriteInput(rewrite, url); return url; }, output: ({ url }) => { for (let i = rewrites.length - 1; i >= 0; i--) url = executeRewriteOutput(rewrites[i], url); return url; } };}/** Create a rewrite pair that strips/adds a basepath on input/output. */function rewriteBasepath(opts) { const trimmedBasepath = trimPath(opts.basepath); const normalizedBasepath = `/${trimmedBasepath}`; const checkBasepath = opts.caseSensitive ? normalizedBasepath : normalizedBasepath.toLowerCase(); const checkBasepathWithSlash = `${checkBasepath}/`; return { input: ({ url }) => { const pathname = opts.caseSensitive ? url.pathname : url.pathname.toLowerCase(); if (pathname === checkBasepath) url.pathname = "/"; else if (pathname.startsWith(checkBasepathWithSlash)) url.pathname = url.pathname.slice(normalizedBasepath.length); return url; }, output: ({ url }) => { url.pathname = joinPaths([ "/", trimmedBasepath, url.pathname ]); return url; } };}/** Execute a location input rewrite if provided. */function executeRewriteInput(rewrite, url) { const res = rewrite?.input?.({ url }); if (res) { if (typeof res === "string") return new URL(res); else if (res instanceof URL) return res; } return url;}/** Execute a location output rewrite if provided. */function executeRewriteOutput(rewrite, url) { const res = rewrite?.output?.({ url }); if (res) { if (typeof res === "string") return new URL(res); else if (res instanceof URL) return res; } return url;}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/stores.js/** SSR non-reactive createMutableStore */function createNonReactiveMutableStore(initialValue) { let value = initialValue; return { get() { return value; }, set(nextOrUpdater) { value = functionalUpdate(nextOrUpdater, value); } };}/** SSR non-reactive createReadonlyStore */function createNonReactiveReadonlyStore(read) { return { get() { return read(); } };}function createRouterStores(initialState, config) { const { createMutableStore, createReadonlyStore, batch, init } = config; const matchStores = /* @__PURE__ */ new Map(); const pendingMatchStores = /* @__PURE__ */ new Map(); const cachedMatchStores = /* @__PURE__ */ new Map(); const status = createMutableStore(initialState.status); const loadedAt = createMutableStore(initialState.loadedAt); const isLoading = createMutableStore(initialState.isLoading); const isTransitioning = createMutableStore(initialState.isTransitioning); const location = createMutableStore(initialState.location); const resolvedLocation = createMutableStore(initialState.resolvedLocation); const statusCode = createMutableStore(initialState.statusCode); const redirect = createMutableStore(initialState.redirect); const matchesId = createMutableStore([]); const pendingIds = createMutableStore([]); const cachedIds = createMutableStore([]); const matches = createReadonlyStore(() => readPoolMatches(matchStores, matchesId.get())); const pendingMatches = createReadonlyStore(() => readPoolMatches(pendingMatchStores, pendingIds.get())); const cachedMatches = createReadonlyStore(() => readPoolMatches(cachedMatchStores, cachedIds.get())); const firstId = createReadonlyStore(() => matchesId.get()[0]); const hasPending = createReadonlyStore(() => matchesId.get().some((matchId) => { return matchStores.get(matchId)?.get().status === "pending"; })); const matchRouteDeps = createReadonlyStore(() => ({ locationHref: location.get().href, resolvedLocationHref: resolvedLocation.get()?.href, status: status.get() })); const __store = createReadonlyStore(() => ({ status: status.get(), loadedAt: loadedAt.get(), isLoading: isLoading.get(), isTransitioning: isTransitioning.get(), matches: matches.get(), location: location.get(), resolvedLocation: resolvedLocation.get(), statusCode: statusCode.get(), redirect: redirect.get() })); const matchStoreByRouteIdCache = createLRUCache(64); function getRouteMatchStore(routeId) { let cached = matchStoreByRouteIdCache.get(routeId); if (!cached) { cached = createReadonlyStore(() => { const ids = matchesId.get(); for (const id of ids) { const matchStore = matchStores.get(id); if (matchStore && matchStore.routeId === routeId) return matchStore.get(); } }); matchStoreByRouteIdCache.set(routeId, cached); } return cached; } const store = { status, loadedAt, isLoading, isTransitioning, location, resolvedLocation, statusCode, redirect, matchesId, pendingIds, cachedIds, matches, pendingMatches, cachedMatches, firstId, hasPending, matchRouteDeps, matchStores, pendingMatchStores, cachedMatchStores, __store, getRouteMatchStore, setMatches, setPending, setCached }; setMatches(initialState.matches); init?.(store); function setMatches(nextMatches) { reconcileMatchPool(nextMatches, matchStores, matchesId, createMutableStore, batch); } function setPending(nextMatches) { reconcileMatchPool(nextMatches, pendingMatchStores, pendingIds, createMutableStore, batch); } function setCached(nextMatches) { reconcileMatchPool(nextMatches, cachedMatchStores, cachedIds, createMutableStore, batch); } return store;}function readPoolMatches(pool, ids) { const matches = []; for (const id of ids) { const matchStore = pool.get(id); if (matchStore) matches.push(matchStore.get()); } return matches;}function reconcileMatchPool(nextMatches, pool, idStore, createMutableStore, batch) { const nextIds = nextMatches.map((d) => d.id); const nextIdSet = new Set(nextIds); batch(() => { for (const id of pool.keys()) if (!nextIdSet.has(id)) pool.delete(id); for (const nextMatch of nextMatches) { const existing = pool.get(nextMatch.id); if (!existing) { const matchStore = createMutableStore(nextMatch); matchStore.routeId = nextMatch.routeId; pool.set(nextMatch.id, matchStore); continue; } existing.routeId = nextMatch.routeId; if (existing.get() !== nextMatch) existing.set(nextMatch); } if (!arraysEqual(idStore.get(), nextIds)) idStore.set(nextIds); });}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/router.js/*** Compute whether path, href or hash changed between previous and current* resolved locations.*/function getLocationChangeInfo(location, resolvedLocation) { const fromLocation = resolvedLocation; const toLocation = location; return { fromLocation, toLocation, pathChanged: fromLocation?.pathname !== toLocation.pathname, hrefChanged: fromLocation?.href !== toLocation.href, hashChanged: fromLocation?.hash !== toLocation.hash };}var locationHistoryActions = /* @__PURE__ */ new WeakMap();/*** Core, framework-agnostic router engine that powers TanStack Router.** Provides navigation, matching, loading, preloading, caching and event APIs* used by framework adapters (React/Solid). Prefer framework helpers like* `createRouter` in app code.** @link https://tanstack.com/router/latest/docs/framework/react/api/router/RouterType*/var RouterCore = class { /** * @deprecated Use the `createRouter` function instead */ constructor(options, getStoreConfig) { this.tempLocationKey = `${Math.round(Math.random() * 1e7)}`; this._scroll = { next: true }; this.shouldViewTransition = void 0; this.isViewTransitionTypesSupported = void 0; this.subscribers = /* @__PURE__ */ new Set(); this.routeBranchCache = /* @__PURE__ */ new WeakMap(); this.startTransition = (fn) => fn(); this.update = (newOptions) => { const prevOptions = this.options; const prevBasepath = this.basepath ?? prevOptions?.basepath ?? "/"; const basepathWasUnset = this.basepath === void 0; const prevRewriteOption = prevOptions?.rewrite; this.options = { ...prevOptions, ...newOptions }; this.isServer = this.options.isServer ?? typeof document === "undefined"; this.protocolAllowlist = new Set(this.options.protocolAllowlist); if (this.options.pathParamsAllowedCharacters) this.pathParamsDecoder = compileDecodeCharMap(this.options.pathParamsAllowedCharacters); if (!this.history || this.options.history && this.options.history !== this.history) if (!this.options.history) {} else this.history = this.options.history; this.origin = this.options.origin; if (!this.origin) this.origin = "http://localhost"; if (this.history) this.updateLatestLocation(); if (this.options.routeTree !== this.routeTree) { this.routeTree = this.options.routeTree; let processRouteTreeResult; if (globalThis.__TSR_CACHE__ && globalThis.__TSR_CACHE__.routeTree === this.routeTree) { const cached = globalThis.__TSR_CACHE__; this.resolvePathCache = cached.resolvePathCache; processRouteTreeResult = cached.processRouteTreeResult; } else { this.resolvePathCache = createLRUCache(1e3); processRouteTreeResult = this.buildRouteTree(); if (globalThis.__TSR_CACHE__ === void 0) globalThis.__TSR_CACHE__ = { routeTree: this.routeTree, processRouteTreeResult, resolvePathCache: this.resolvePathCache }; } this.setRoutes(processRouteTreeResult); } if (!this.stores && this.latestLocation) { const config = this.getStoreConfig(this); this.batch = config.batch; this.stores = createRouterStores(getInitialRouterState(this.latestLocation), config); } let needsLocationUpdate = false; const nextBasepath = this.options.basepath ?? "/"; const nextRewriteOption = this.options.rewrite; if (basepathWasUnset || prevBasepath !== nextBasepath || prevRewriteOption !== nextRewriteOption) { this.basepath = nextBasepath; const rewrites = []; const trimmed = trimPath(nextBasepath); if (trimmed && trimmed !== "/") rewrites.push(rewriteBasepath({ basepath: nextBasepath })); if (nextRewriteOption) rewrites.push(nextRewriteOption); this.rewrite = rewrites.length === 0 ? void 0 : rewrites.length === 1 ? rewrites[0] : composeRewrites(rewrites); if (this.history) this.updateLatestLocation(); needsLocationUpdate = true; } if (needsLocationUpdate && this.stores) this.stores.location.set(this.latestLocation); if (typeof window !== "undefined" && "CSS" in window && typeof window.CSS?.supports === "function") this.isViewTransitionTypesSupported = window.CSS.supports("selector(:active-view-transition-type(a))"); }; this.updateLatestLocation = () => { this.latestLocation = this.parseLocation(this.history.location, this.latestLocation); }; this.buildRouteTree = () => { const result = processRouteTree(this.routeTree, this.options.caseSensitive, (route, i) => { route.init({ originalIndex: i }); }); if (this.options.routeMasks) processRouteMasks(this.options.routeMasks, result.processedTree); return result; }; this.subscribe = (eventType, fn) => { const listener = { eventType, fn }; this.subscribers.add(listener); return () => { this.subscribers.delete(listener); }; }; this.emit = (routerEvent) => { this.subscribers.forEach((listener) => { if (listener.eventType === routerEvent.type) listener.fn(routerEvent); }); }; this.parseLocation = (locationToParse, previousLocation) => { const parse = ({ pathname, search, hash, href, state }) => { if (!this.rewrite && !/[ \x00-\x1f\x7f\u0080-\uffff]/.test(pathname)) { const parsedSearch = this.options.parseSearch(search); const searchStr = this.options.stringifySearch(parsedSearch); return { href: pathname + searchStr + hash, publicHref: pathname + searchStr + hash, pathname: decodePath(pathname).path, external: false, searchStr, search: nullReplaceEqualDeep(previousLocation?.search, parsedSearch), hash: decodePath(hash.slice(1)).path, state: replaceEqualDeep(previousLocation?.state, state) }; } const fullUrl = new URL(href, this.origin); const url = executeRewriteInput(this.rewrite, fullUrl); const parsedSearch = this.options.parseSearch(url.search); const searchStr = this.options.stringifySearch(parsedSearch); url.search = searchStr; return { href: url.href.replace(url.origin, ""), publicHref: href, pathname: decodePath(url.pathname).path, external: !!this.rewrite && url.origin !== this.origin, searchStr, search: nullReplaceEqualDeep(previousLocation?.search, parsedSearch), hash: decodePath(url.hash.slice(1)).path, state: replaceEqualDeep(previousLocation?.state, state) }; }; const location = parse(locationToParse); const { __tempLocation, __tempKey } = location.state; if (__tempLocation && (!__tempKey || __tempKey === this.tempLocationKey)) { const parsedTempLocation = parse(__tempLocation); parsedTempLocation.state.key = location.state.key; parsedTempLocation.state.__TSR_key = location.state.__TSR_key; delete parsedTempLocation.state.__tempLocation; return { ...parsedTempLocation, maskedLocation: location }; } return location; }; this.resolvePathWithBase = (from, path) => { return resolvePath({ base: from, to: path.includes("//") ? cleanPath(path) : path, trailingSlash: this.options.trailingSlash, cache: this.resolvePathCache }); }; this.matchRoutes = (pathnameOrNext, locationSearchOrOpts, opts) => { if (typeof pathnameOrNext === "string") return this.matchRoutesInternal({ pathname: pathnameOrNext, search: locationSearchOrOpts }, opts); return this.matchRoutesInternal(pathnameOrNext, locationSearchOrOpts); }; this.getMatchedRoutes = (pathname) => { return getMatchedRoutes({ pathname, routesById: this.routesById, processedTree: this.processedTree }); }; this.cancelMatch = (id) => { const match = this.getMatch(id); if (!match) return; match.abortController.abort(); clearTimeout(match._nonReactive.pendingTimeout); match._nonReactive.pendingTimeout = void 0; }; this.cancelMatches = () => { this.stores.pendingIds.get().forEach((matchId) => { this.cancelMatch(matchId); }); this.stores.matchesId.get().forEach((matchId) => { if (this.stores.pendingMatchStores.has(matchId)) return; const match = this.stores.matchStores.get(matchId)?.get(); if (!match) return; if (match.status === "pending" || match.isFetching === "loader") this.cancelMatch(matchId); }); }; this.buildLocation = (opts) => { const build = (dest = {}) => { const currentLocation = dest._fromLocation || this.pendingBuiltLocation || this.latestLocation; const lightweightResult = this.matchRoutesLightweight(currentLocation); if (dest.from && false); const defaultedFromPath = dest.unsafeRelative === "path" ? currentLocation.pathname : dest.from ?? lightweightResult.fullPath; const destTo = dest.to ? `${dest.to}` : void 0; const fromSearch = lightweightResult.search; const fromParams = Object.assign(Object.create(null), lightweightResult.params); const sourcePath = destTo?.charCodeAt(0) === 47 ? "/" : this.resolvePathWithBase(defaultedFromPath, "."); const nextTo = destTo ? this.resolvePathWithBase(sourcePath, destTo) : sourcePath; const nextParams = dest.params === false || dest.params === null ? Object.create(null) : (dest.params ?? true) === true ? fromParams : Object.assign(fromParams, functionalUpdate(dest.params, fromParams)); const destRoute = this.routesByPath[trimPathRight(nextTo)]; let destRoutes; if (destRoute) destRoutes = this.getRouteBranch(destRoute); else if (nextTo.includes("$")) destRoutes = []; else { const destMatchResult = this.getMatchedRoutes(nextTo); destRoutes = destMatchResult.matchedRoutes; if (this.options.notFoundRoute && (!destMatchResult.foundRoute || destMatchResult.foundRoute.path !== "/" && destMatchResult.routeParams["**"])) destRoutes = [...destRoutes, this.options.notFoundRoute]; } if (destRoutes.length && hasKeys(nextParams)) for (const route of destRoutes) { const fn = route.options.params?.stringify ?? route.options.stringifyParams; if (fn) try { Object.assign(nextParams, fn(nextParams)); } catch {} } const nextPathname = opts.leaveParams ? nextTo : decodePath(interpolatePath({ path: nextTo, params: nextParams, decoder: this.pathParamsDecoder, server: this.isServer }).interpolatedPath).path; let nextSearch = fromSearch; if (opts._includeValidateSearch && this.options.search?.strict) { const validatedSearch = {}; destRoutes.forEach((route) => { if (route.options.validateSearch) try { Object.assign(validatedSearch, validateSearch(route.options.validateSearch, { ...validatedSearch, ...nextSearch })); } catch {} }); nextSearch = validatedSearch; } nextSearch = applySearchMiddleware({ search: nextSearch, dest, destRoutes, _includeValidateSearch: opts._includeValidateSearch }); nextSearch = nullReplaceEqualDeep(fromSearch, nextSearch); const searchStr = this.options.stringifySearch(nextSearch); const hash = dest.hash === true ? currentLocation.hash : dest.hash ? functionalUpdate(dest.hash, currentLocation.hash) : void 0; const hashStr = hash ? `#${hash}` : ""; let nextState = dest.state === true ? currentLocation.state : dest.state ? functionalUpdate(dest.state, currentLocation.state) : {}; nextState = replaceEqualDeep(currentLocation.state, nextState); const fullPath = `${nextPathname}${searchStr}${hashStr}`; let href; let publicHref; let external = false; if (this.rewrite) { const url = new URL(fullPath, this.origin); const rewrittenUrl = executeRewriteOutput(this.rewrite, url); href = url.href.replace(url.origin, ""); if (rewrittenUrl.origin !== this.origin) { publicHref = rewrittenUrl.href; external = true; } else publicHref = rewrittenUrl.pathname + rewrittenUrl.search + rewrittenUrl.hash; } else { href = encodePathLikeUrl(fullPath); publicHref = href; } return { publicHref, href, pathname: nextPathname, search: nextSearch, searchStr, state: nextState, hash: hash ?? "", external, unmaskOnReload: dest.unmaskOnReload }; }; const buildWithMatches = (dest = {}, maskedDest) => { const next = build(dest); let maskedNext = maskedDest ? build(maskedDest) : void 0; if (!maskedNext) { const params = Object.create(null); if (this.options.routeMasks) { const match = findFlatMatch(next.pathname, this.processedTree); if (match) { Object.assign(params, match.rawParams); const { from: _from, params: maskParams, ...maskProps } = match.route; const nextParams = maskParams === false || maskParams === null ? Object.create(null) : (maskParams ?? true) === true ? params : Object.assign(params, functionalUpdate(maskParams, params)); maskedDest = { from: opts.from, ...maskProps, params: nextParams }; maskedNext = build(maskedDest); } } } if (maskedNext) next.maskedLocation = maskedNext; return next; }; if (opts.mask) return buildWithMatches(opts, { from: opts.from, ...opts.mask }); return buildWithMatches(opts); }; this.commitLocation = async ({ viewTransition, ignoreBlocker, ...next }) => { let historyAction; const isSameState = () => { const ignoredProps = [ "key", "__TSR_key", "__TSR_index", "__hashScrollIntoViewOptions" ]; ignoredProps.forEach((prop) => { next.state[prop] = this.latestLocation.state[prop]; }); const isEqual = deepEqual(next.state, this.latestLocation.state); ignoredProps.forEach((prop) => { delete next.state[prop]; }); return isEqual; }; const isSameUrl = trimPathRight(this.latestLocation.href) === trimPathRight(next.href); let previousCommitPromise = this.commitLocationPromise; this.commitLocationPromise = createControlledPromise(() => { previousCommitPromise?.resolve(); previousCommitPromise = void 0; }); if (isSameUrl && isSameState()) this.load(); else { let { maskedLocation, hashScrollIntoView, ...nextHistory } = next; if (maskedLocation) { nextHistory = { ...maskedLocation, state: { ...maskedLocation.state, __tempKey: void 0, __tempLocation: { ...nextHistory, search: nextHistory.searchStr, state: { ...nextHistory.state, __tempKey: void 0, __tempLocation: void 0, __TSR_key: void 0, key: void 0 } } } }; if (nextHistory.unmaskOnReload ?? this.options.unmaskOnReload ?? false) nextHistory.state.__tempKey = this.tempLocationKey; } nextHistory.state.__hashScrollIntoViewOptions = hashScrollIntoView ?? this.options.defaultHashScrollIntoView ?? true; this.shouldViewTransition = viewTransition; historyAction = next.replace ? "REPLACE" : "PUSH"; this.history[historyAction === "REPLACE" ? "replace" : "push"](nextHistory.publicHref, nextHistory.state, { ignoreBlocker }); } this._scroll.next = next.resetScroll ?? true; if (!this.history.subscribers.size) this.load(historyAction ? { action: { type: historyAction } } : void 0); return this.commitLocationPromise; }; this.buildAndCommitLocation = ({ replace, resetScroll, hashScrollIntoView, viewTransition, ignoreBlocker, href, ...rest } = {}) => { if (href) { const currentIndex = this.history.location.state.__TSR_index; const parsed = parseHref(href, { __TSR_index: replace ? currentIndex : currentIndex + 1 }); const hrefUrl = new URL(parsed.pathname, this.origin); rest.to = executeRewriteInput(this.rewrite, hrefUrl).pathname; rest.search = this.options.parseSearch(parsed.search); rest.hash = parsed.hash.slice(1); } const location = this.buildLocation({ ...rest, _includeValidateSearch: true }); this.pendingBuiltLocation = location; const commitPromise = this.commitLocation({ ...location, viewTransition, replace, resetScroll, hashScrollIntoView, ignoreBlocker }); Promise.resolve().then(() => { if (this.pendingBuiltLocation === location) this.pendingBuiltLocation = void 0; }); return commitPromise; }; this.navigate = async ({ to, reloadDocument, href, publicHref, ...rest }) => { let hrefIsUrl = false; if (href) try { new URL(`${href}`); hrefIsUrl = true; } catch {} if (hrefIsUrl && !reloadDocument) reloadDocument = true; if (reloadDocument) { if (to !== void 0 || !href) { const location = this.buildLocation({ to, ...rest }); href = href ?? location.publicHref; publicHref = publicHref ?? location.publicHref; } const reloadHref = !hrefIsUrl && publicHref ? publicHref : href; if (isDangerousProtocol(reloadHref, this.protocolAllowlist)) return Promise.resolve(); if (!rest.ignoreBlocker) { const blockers = this.history.getBlockers?.() ?? []; for (const blocker of blockers) if (blocker?.blockerFn) { if (await blocker.blockerFn({ currentLocation: this.latestLocation, nextLocation: this.latestLocation, action: "PUSH" })) return Promise.resolve(); } } if (rest.replace) window.location.replace(reloadHref); else window.location.href = reloadHref; return Promise.resolve(); } return this.buildAndCommitLocation({ ...rest, href, to, _isNavigate: true }); }; this.beforeLoad = () => { this.cancelMatches(); this.updateLatestLocation(); { const nextLocation = this.buildLocation({ to: this.latestLocation.pathname, search: true, params: true, hash: true, state: true, _includeValidateSearch: true }); if (this.latestLocation.publicHref !== nextLocation.publicHref) { const href = this.getParsedLocationHref(nextLocation); if (nextLocation.external) throw redirect({ href }); else throw redirect({ href, _builtLocation: nextLocation }); } } const pendingMatches = this.matchRoutes(this.latestLocation); const nextCachedMatches = this.stores.cachedMatches.get().filter((d) => !pendingMatches.some((e) => e.id === d.id)); this.batch(() => { this.stores.status.set("pending"); this.stores.statusCode.set(200); this.stores.isLoading.set(true); this.stores.location.set(this.latestLocation); this.stores.setPending(pendingMatches); this.stores.setCached(nextCachedMatches); }); }; this.load = async (opts) => { const historyAction = opts?.action?.type; let redirect; let notFound; let loadPromise; const previousLocation = this.stores.resolvedLocation.get() ?? this.stores.location.get(); loadPromise = new Promise((resolve) => { this.startTransition(async () => { try { this.beforeLoad(); if (historyAction) locationHistoryActions.set(this.latestLocation, historyAction); else locationHistoryActions.delete(this.latestLocation); const next = this.latestLocation; const locationChangeInfo = getLocationChangeInfo(next, this.stores.resolvedLocation.get()); if (!this.stores.redirect.get()) this.emit({ type: "onBeforeNavigate", ...locationChangeInfo }); this.emit({ type: "onBeforeLoad", ...locationChangeInfo }); await loadMatches({ router: this, sync: opts?.sync, forceStaleReload: previousLocation.href === next.href, matches: this.stores.pendingMatches.get(), location: next, updateMatch: this.updateMatch, onReady: async () => { this.startTransition(() => { this.startViewTransition(async () => { let exitingMatches = null; let hookExitingMatches = null; let hookEnteringMatches = null; let hookStayingMatches = null; this.batch(() => { const pendingMatches = this.stores.pendingMatches.get(); const mountPending = pendingMatches.length; const currentMatches = this.stores.matches.get(); exitingMatches = mountPending ? currentMatches.filter((match) => !this.stores.pendingMatchStores.has(match.id)) : null; const pendingRouteIds = /* @__PURE__ */ new Set(); for (const s of this.stores.pendingMatchStores.values()) if (s.routeId) pendingRouteIds.add(s.routeId); const activeRouteIds = /* @__PURE__ */ new Set(); for (const s of this.stores.matchStores.values()) if (s.routeId) activeRouteIds.add(s.routeId); hookExitingMatches = mountPending ? currentMatches.filter((match) => !pendingRouteIds.has(match.routeId)) : null; hookEnteringMatches = mountPending ? pendingMatches.filter((match) => !activeRouteIds.has(match.routeId)) : null; hookStayingMatches = mountPending ? pendingMatches.filter((match) => activeRouteIds.has(match.routeId)) : currentMatches; this.stores.isLoading.set(false); this.stores.loadedAt.set(Date.now()); /** * When committing new matches, cache any exiting matches that are still usable. * Routes that resolved with `status: 'error'` or `status: 'notFound'` are * deliberately excluded from `cachedMatches` so that subsequent invalidations * or reloads re-run their loaders instead of reusing the failed/not-found data. */ if (mountPending) { this.stores.setMatches(pendingMatches); this.stores.setPending([]); this.stores.setCached([...this.stores.cachedMatches.get(), ...exitingMatches.filter((d) => d.status !== "error" && d.status !== "notFound" && d.status !== "redirected")]); this.clearExpiredCache(); } }); for (const [matches, hook] of [ [hookExitingMatches, "onLeave"], [hookEnteringMatches, "onEnter"], [hookStayingMatches, "onStay"] ]) { if (!matches) continue; for (const match of matches) this.looseRoutesById[match.routeId].options[hook]?.(match); } }); }); } }); } catch (err) { if (isRedirect(err)) redirect = err; else if (isNotFound(err)) notFound = err; const nextStatusCode = redirect ? redirect.status : notFound ? 404 : this.stores.matches.get().some((d) => d.status === "error") ? 500 : 200; this.batch(() => { this.stores.statusCode.set(nextStatusCode); this.stores.redirect.set(redirect); }); } if (this.latestLoadPromise === loadPromise) { this.commitLocationPromise?.resolve(); this.latestLoadPromise = void 0; this.commitLocationPromise = void 0; } resolve(); }); }); this.latestLoadPromise = loadPromise; await loadPromise; while (this.latestLoadPromise && loadPromise !== this.latestLoadPromise) await this.latestLoadPromise; let newStatusCode = void 0; if (this.hasNotFoundMatch()) newStatusCode = 404; else if (this.stores.matches.get().some((d) => d.status === "error")) newStatusCode = 500; if (newStatusCode !== void 0) this.stores.statusCode.set(newStatusCode); }; this.startViewTransition = (fn) => { const shouldViewTransition = this.shouldViewTransition ?? this.options.defaultViewTransition; this.shouldViewTransition = void 0; if (shouldViewTransition && typeof document !== "undefined" && "startViewTransition" in document && typeof document.startViewTransition === "function") { let startViewTransitionParams; if (typeof shouldViewTransition === "object" && this.isViewTransitionTypesSupported) { const next = this.latestLocation; const prevLocation = this.stores.resolvedLocation.get(); const resolvedViewTransitionTypes = typeof shouldViewTransition.types === "function" ? shouldViewTransition.types(getLocationChangeInfo(next, prevLocation)) : shouldViewTransition.types; if (resolvedViewTransitionTypes === false) { fn(); return; } startViewTransitionParams = { update: fn, types: resolvedViewTransitionTypes }; } else startViewTransitionParams = fn; document.startViewTransition(startViewTransitionParams); } else fn(); }; this.updateMatch = (id, updater) => { this.startTransition(() => { const pendingMatch = this.stores.pendingMatchStores.get(id); if (pendingMatch) { pendingMatch.set(updater); return; } const activeMatch = this.stores.matchStores.get(id); if (activeMatch) { activeMatch.set(updater); return; } const cachedMatch = this.stores.cachedMatchStores.get(id); if (cachedMatch) { const next = updater(cachedMatch.get()); if (next.status === "redirected") { if (this.stores.cachedMatchStores.delete(id)) this.stores.cachedIds.set((prev) => prev.filter((matchId) => matchId !== id)); } else cachedMatch.set(next); } }); }; this.getMatch = (matchId) => { return this.stores.cachedMatchStores.get(matchId)?.get() ?? this.stores.pendingMatchStores.get(matchId)?.get() ?? this.stores.matchStores.get(matchId)?.get(); }; this.invalidate = (opts) => { const invalidate = (d) => { if (opts?.filter?.(d) ?? true) return { ...d, invalid: true, ...opts?.forcePending || d.status === "error" || d.status === "notFound" ? { status: "pending", error: void 0 } : void 0 }; return d; }; this.batch(() => { this.stores.setMatches(this.stores.matches.get().map(invalidate)); this.stores.setCached(this.stores.cachedMatches.get().map(invalidate)); this.stores.setPending(this.stores.pendingMatches.get().map(invalidate)); }); this.shouldViewTransition = false; return this.load({ sync: opts?.sync }); }; this.getParsedLocationHref = (location) => { return location.publicHref || "/"; }; this.resolveRedirect = (redirect) => { const locationHeader = redirect.headers.get("Location"); if (!redirect.options.href || redirect.options._builtLocation) { const location = redirect.options._builtLocation ?? this.buildLocation(redirect.options); const href = this.getParsedLocationHref(location); redirect.options.href = href; redirect.headers.set("Location", href); } else if (locationHeader) try { const url = new URL(locationHeader); if (this.origin && url.origin === this.origin) { const href = url.pathname + url.search + url.hash; redirect.options.href = href; redirect.headers.set("Location", href); } } catch {} if (redirect.options.href && !redirect.options._builtLocation && isDangerousProtocol(redirect.options.href, this.protocolAllowlist)) throw new Error("Redirect blocked: unsafe protocol"); if (!redirect.headers.get("Location")) redirect.headers.set("Location", redirect.options.href); return redirect; }; this.clearCache = (opts) => { const filter = opts?.filter; if (filter !== void 0) this.stores.setCached(this.stores.cachedMatches.get().filter((m) => !filter(m))); else this.stores.setCached([]); }; this.clearExpiredCache = () => { const now = Date.now(); const filter = (d) => { const route = this.looseRoutesById[d.routeId]; if (!route.options.loader) return true; const gcTime = (d.preload ? route.options.preloadGcTime ?? this.options.defaultPreloadGcTime : route.options.gcTime ?? this.options.defaultGcTime) ?? 300 * 1e3; if (d.status === "error") return true; return now - d.updatedAt >= gcTime; }; this.clearCache({ filter }); }; this.loadRouteChunk = loadRouteChunk; this.preloadRoute = async (opts) => { const next = opts._builtLocation ?? this.buildLocation(opts); let matches = this.matchRoutes(next, { throwOnError: true, preload: true, dest: opts }); const activeMatchIds = new Set([...this.stores.matchesId.get(), ...this.stores.pendingIds.get()]); const loadedMatchIds = new Set([...activeMatchIds, ...this.stores.cachedIds.get()]); const matchesToCache = matches.filter((match) => !loadedMatchIds.has(match.id)); if (matchesToCache.length) { const cachedMatches = this.stores.cachedMatches.get(); this.stores.setCached([...cachedMatches, ...matchesToCache]); } try { matches = await loadMatches({ router: this, matches, location: next, preload: true, updateMatch: (id, updater) => { if (activeMatchIds.has(id)) matches = matches.map((d) => d.id === id ? updater(d) : d); else this.updateMatch(id, updater); } }); return matches; } catch (err) { if (isRedirect(err)) { if (err.options.reloadDocument) return; return await this.preloadRoute({ ...err.options, _fromLocation: next }); } if (!isNotFound(err)) console.error(err); return; } }; this.matchRoute = (location, opts) => { const matchLocation = { ...location, to: location.to ? this.resolvePathWithBase(location.from || "", location.to) : void 0, params: location.params || {}, leaveParams: true }; const next = this.buildLocation(matchLocation); if (opts?.pending && this.stores.status.get() !== "pending") return false; const baseLocation = (opts?.pending === void 0 ? !this.stores.isLoading.get() : opts.pending) ? this.latestLocation : this.stores.resolvedLocation.get() || this.stores.location.get(); const match = findSingleMatch(next.pathname, opts?.caseSensitive ?? false, opts?.fuzzy ?? false, baseLocation.pathname, this.processedTree); if (!match) return false; if (location.params) { if (!deepEqual(match.rawParams, location.params, { partial: true })) return false; } if (opts?.includeSearch ?? true) return deepEqual(baseLocation.search, next.search, { partial: true }) ? match.rawParams : false; return match.rawParams; }; this.hasNotFoundMatch = () => { return this.stores.matches.get().some((d) => d.status === "notFound" || d.globalNotFound); }; this.getStoreConfig = getStoreConfig; this.update({ defaultPreloadDelay: 50, defaultPendingMs: 1e3, defaultPendingMinMs: 500, context: void 0, ...options, caseSensitive: options.caseSensitive ?? false, notFoundMode: options.notFoundMode ?? "fuzzy", stringifySearch: options.stringifySearch ?? defaultStringifySearch, parseSearch: options.parseSearch ?? defaultParseSearch, protocolAllowlist: options.protocolAllowlist ?? DEFAULT_PROTOCOL_ALLOWLIST }); if (typeof document !== "undefined") self.__TSR_ROUTER__ = this; } isShell() { return !!this.options.isShell; } isPrerendering() { return !!this.options.isPrerendering; } get state() { return this.stores.__store.get(); } setRoutes({ routesById, routesByPath, processedTree }) { this.routesById = routesById; this.routesByPath = routesByPath; this.processedTree = processedTree; const notFoundRoute = this.options.notFoundRoute; if (notFoundRoute) { notFoundRoute.init({ originalIndex: 99999999999 }); this.routesById[notFoundRoute.id] = notFoundRoute; } } getRouteBranch(route) { let branch = this.routeBranchCache.get(route); if (!branch) { branch = buildRouteBranch(route); this.routeBranchCache.set(route, branch); } return branch; } get looseRoutesById() { return this.routesById; } getParentContext(parentMatch) { return !parentMatch?.id ? this.options.context ?? void 0 : parentMatch.context ?? this.options.context ?? void 0; } matchRoutesInternal(next, opts) { const matchedRoutesResult = this.getMatchedRoutes(next.pathname); const { foundRoute, routeParams } = matchedRoutesResult; let { matchedRoutes } = matchedRoutesResult; let isGlobalNotFound = false; if (foundRoute ? foundRoute.path !== "/" && routeParams["**"] : trimPathRight(next.pathname)) if (this.options.notFoundRoute) matchedRoutes = [...matchedRoutes, this.options.notFoundRoute]; else isGlobalNotFound = true; const globalNotFoundRouteId = isGlobalNotFound ? findGlobalNotFoundRouteId(this.options.notFoundMode, matchedRoutes) : void 0; const matches = new Array(matchedRoutes.length); const previousActiveMatchesByRouteId = /* @__PURE__ */ new Map(); for (const store of this.stores.matchStores.values()) if (store.routeId) previousActiveMatchesByRouteId.set(store.routeId, store.get()); for (let index = 0; index < matchedRoutes.length; index++) { const route = matchedRoutes[index]; const parentMatch = matches[index - 1]; let preMatchSearch; let strictMatchSearch; let searchError; { const parentSearch = parentMatch?.search ?? next.search; const parentStrictSearch = parentMatch?._strictSearch ?? void 0; try { const strictSearch = validateSearch(route.options.validateSearch, { ...parentSearch }) ?? void 0; preMatchSearch = { ...parentSearch, ...strictSearch }; strictMatchSearch = { ...parentStrictSearch, ...strictSearch }; searchError = void 0; } catch (err) { let searchParamError = err; if (!(err instanceof SearchParamError)) searchParamError = new SearchParamError(err.message, { cause: err }); if (opts?.throwOnError) throw searchParamError; preMatchSearch = parentSearch; strictMatchSearch = {}; searchError = searchParamError; } } const loaderDeps = route.options.loaderDeps?.({ search: preMatchSearch }) ?? ""; const loaderDepsHash = loaderDeps ? JSON.stringify(loaderDeps) : ""; const { interpolatedPath, usedParams } = interpolatePath({ path: route.fullPath, params: routeParams, decoder: this.pathParamsDecoder, server: this.isServer }); const matchId = route.id + interpolatedPath + loaderDepsHash; const existingMatch = this.getMatch(matchId); const previousMatch = previousActiveMatchesByRouteId.get(route.id); const strictParams = existingMatch?._strictParams ?? usedParams; let paramsError = void 0; if (!existingMatch) try { extractStrictParams(route, strictParams); } catch (err) { if (isNotFound(err) || isRedirect(err)) paramsError = err; else paramsError = new PathParamError(err.message, { cause: err }); if (opts?.throwOnError) throw paramsError; } Object.assign(routeParams, strictParams); const cause = previousMatch ? "stay" : "enter"; let match; if (existingMatch) match = { ...existingMatch, cause, params: previousMatch?.params ?? routeParams, _strictParams: strictParams, search: previousMatch ? nullReplaceEqualDeep(previousMatch.search, preMatchSearch) : nullReplaceEqualDeep(existingMatch.search, preMatchSearch), _strictSearch: strictMatchSearch }; else { const status = route.options.loader || route.options.beforeLoad || route.lazyFn || routeNeedsPreload(route) ? "pending" : "success"; match = { id: matchId, ssr: void 0, index, routeId: route.id, params: previousMatch?.params ?? routeParams, _strictParams: strictParams, pathname: interpolatedPath, updatedAt: Date.now(), search: previousMatch ? nullReplaceEqualDeep(previousMatch.search, preMatchSearch) : preMatchSearch, _strictSearch: strictMatchSearch, searchError: void 0, status, isFetching: false, error: void 0, paramsError, __routeContext: void 0, _nonReactive: { loadPromise: createControlledPromise() }, __beforeLoadContext: void 0, context: {}, abortController: new AbortController(), fetchCount: 0, cause, loaderDeps: previousMatch ? replaceEqualDeep(previousMatch.loaderDeps, loaderDeps) : loaderDeps, invalid: false, preload: false, links: void 0, scripts: void 0, headScripts: void 0, meta: void 0, staticData: route.options.staticData || {}, fullPath: route.fullPath }; } if (!opts?.preload) match.globalNotFound = globalNotFoundRouteId === route.id; match.searchError = searchError; const parentContext = this.getParentContext(parentMatch); match.context = { ...parentContext, ...match.__routeContext, ...match.__beforeLoadContext }; matches[index] = match; } for (let index = 0; index < matches.length; index++) { const match = matches[index]; const route = this.looseRoutesById[match.routeId]; const existingMatch = this.getMatch(match.id); const previousMatch = previousActiveMatchesByRouteId.get(match.routeId); match.params = previousMatch ? nullReplaceEqualDeep(previousMatch.params, routeParams) : routeParams; if (!existingMatch) { const parentMatch = matches[index - 1]; const parentContext = this.getParentContext(parentMatch); if (route.options.context) { const contextFnContext = { deps: match.loaderDeps, params: match.params, context: parentContext ?? {}, location: next, navigate: (opts) => this.navigate({ ...opts, _fromLocation: next }), buildLocation: this.buildLocation, cause: match.cause, abortController: match.abortController, preload: !!match.preload, matches, routeId: route.id }; match.__routeContext = route.options.context(contextFnContext) ?? void 0; } match.context = { ...parentContext, ...match.__routeContext, ...match.__beforeLoadContext }; } } return matches; } /** * Lightweight route matching for buildLocation. * Only computes fullPath, accumulated search, and params - skipping expensive * operations like AbortController, ControlledPromise, loaderDeps, and full match objects. */ matchRoutesLightweight(location) { const { matchedRoutes, routeParams } = this.getMatchedRoutes(location.pathname); const lastRoute = last(matchedRoutes); const accumulatedSearch = { ...location.search }; for (const route of matchedRoutes) try { Object.assign(accumulatedSearch, validateSearch(route.options.validateSearch, accumulatedSearch)); } catch {} const lastStateMatchId = last(this.stores.matchesId.get()); const lastStateMatch = lastStateMatchId && this.stores.matchStores.get(lastStateMatchId)?.get(); const canReuseParams = lastStateMatch && lastStateMatch.routeId === lastRoute.id && lastStateMatch.pathname === location.pathname; let params; if (canReuseParams) params = lastStateMatch.params; else { const strictParams = Object.assign(Object.create(null), routeParams); for (const route of matchedRoutes) try { extractStrictParams(route, strictParams); } catch {} params = strictParams; } return { matchedRoutes, fullPath: lastRoute.fullPath, search: accumulatedSearch, params }; }};/** Error thrown when search parameter validation fails. */var SearchParamError = class extends Error {};/** Error thrown when path parameter parsing/validation fails. */var PathParamError = class extends Error {};/** Create an initial RouterState from a parsed location. */function getInitialRouterState(location) { return { loadedAt: 0, isLoading: false, isTransitioning: false, status: "idle", resolvedLocation: void 0, location, matches: [], statusCode: 200 };}function validateSearch(validateSearch, input) { if (validateSearch == null) return {}; if ("~standard" in validateSearch) { const result = validateSearch["~standard"].validate(input); if (result instanceof Promise) throw new SearchParamError("Async validation not supported"); if (result.issues) throw new SearchParamError(JSON.stringify(result.issues, void 0, 2), { cause: result }); return result.value; } if ("parse" in validateSearch) return validateSearch.parse(input); if (typeof validateSearch === "function") return validateSearch(input); return {};}/*** Build the matched route chain and extract params for a pathname.* Falls back to the root route if no specific route is found.*/function getMatchedRoutes({ pathname, routesById, processedTree }) { const routeParams = Object.create(null); const trimmedPath = trimPathRight(pathname); let foundRoute = void 0; const match = findRouteMatch(trimmedPath, processedTree, true); if (match) { foundRoute = match.route; Object.assign(routeParams, match.rawParams); } return { matchedRoutes: match?.branch || [routesById["__root__"]], routeParams, foundRoute };}/*** TODO: once caches are persisted across requests on the server,* we can cache the built middleware chain using `last(destRoutes)` as the key*/function applySearchMiddleware({ search, dest, destRoutes, _includeValidateSearch }) { return buildMiddlewareChain(destRoutes)(search, dest, _includeValidateSearch ?? false);}function buildMiddlewareChain(destRoutes) { let dest; let includeValidateSearch; const middlewares = []; for (const route of destRoutes) { const routeOptions = route.options; if ("search" in routeOptions) { if (routeOptions.search?.middlewares) middlewares.push(...routeOptions.search.middlewares); } else if (routeOptions.preSearchFilters || routeOptions.postSearchFilters) { const legacyMiddleware = ({ search, next }) => { const result = next(routeOptions.preSearchFilters ? routeOptions.preSearchFilters.reduce((prev, next) => next(prev), search) : search); return routeOptions.postSearchFilters ? routeOptions.postSearchFilters.reduce((prev, next) => next(prev), result) : result; }; middlewares.push(legacyMiddleware); } const routeValidateSearch = routeOptions.validateSearch; if (routeValidateSearch) { const validate = ({ search, next, meta }) => { const result = next(search); if (includeValidateSearch) try { const validated = validateSearch(routeValidateSearch, result); if (meta && validated) { for (const key in validated) if (!(key in result)) (meta.defaulted ||= /* @__PURE__ */ new Map()).set(key, validated[key]); } return { ...result, ...validated }; } catch {} return result; }; middlewares.push(validate); } } const applyNext = (index, currentSearch, meta) => { if (index >= middlewares.length) { if (!dest.search) return {}; if (dest.search === true) return currentSearch; const result = functionalUpdate(dest.search, currentSearch); if (meta) meta.explicit = result; return result; } const next = (newSearch, collectMeta) => { if (collectMeta) { const nextMeta = meta || {}; return { search: applyNext(index + 1, newSearch, nextMeta), meta: nextMeta }; } return applyNext(index + 1, newSearch, meta); }; return middlewares[index]({ search: currentSearch, next, meta }); }; return function middleware(search, nextDest, _includeValidateSearch) { dest = nextDest; includeValidateSearch = _includeValidateSearch; return applyNext(0, search); };}function findGlobalNotFoundRouteId(notFoundMode, routes) { if (notFoundMode !== "root") for (let i = routes.length - 1; i >= 0; i--) { const route = routes[i]; if (route.children) return route.id; } return rootRouteId;}function extractStrictParams(route, accumulatedParams) { const parseParams = route.options.params?.parse ?? route.options.parseParams; if (parseParams) { const result = parseParams(accumulatedParams); if (result === false) throw new Error("Route params.parse returned false for a matched route"); Object.assign(accumulatedParams, result); }}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/scroll-restoration.jsfunction getSafeSessionStorage() { try { return sessionStorage; } catch { return; }}var storageKey = "tsr-scroll-restoration-v1_3";getSafeSessionStorage();/*** The default `getKey` function for `useScrollRestoration`.* It returns the `key` from the location state or the `href` of the location.** The `location.href` is used as a fallback to support the use case where the location state is not available like the initial render.*/var defaultGetScrollRestorationKey = (location) => { return location.state.__TSR_key || location.href;};//#endregion//#region node_modules/@tanstack/router-core/dist/esm/link.jsvar preloadWarning = "Error preloading route! ☝️";//#endregion//#region node_modules/@tanstack/router-core/dist/esm/manifest.jsfunction getAssetCrossOrigin(assetCrossOrigin, kind) { if (!assetCrossOrigin) return; if (typeof assetCrossOrigin === "string") return assetCrossOrigin; return assetCrossOrigin[kind];}function getManifestScriptFormat(manifest) { return manifest?.scriptFormat ?? "module";}function getScriptPreloadAttrs(manifest, link, assetCrossOrigin) { const preloadLink = resolveManifestAssetLink(link); const crossOrigin = getAssetCrossOrigin(assetCrossOrigin, "script") ?? preloadLink.crossOrigin; return { ...getManifestScriptFormat(manifest) === "iife" ? { rel: "preload", as: "script" } : { rel: "modulepreload" }, href: preloadLink.href, ...crossOrigin ? { crossOrigin } : {} };}function resolveManifestAssetLink(link) { if (typeof link === "string") return { href: link, crossOrigin: void 0 }; return link;}function appendUniqueUserTags(target, tags) { if (tags.length === 0) return; if (tags.length === 1) { target.push(tags[0]); return; } const seen = /* @__PURE__ */ new Set(); for (const tag of tags) { const key = JSON.stringify(tag); if (seen.has(key)) continue; seen.add(key); target.push(tag); }}function getStylesheetHref(asset) { return resolveManifestCssLink(asset).href;}function resolveManifestCssLink(link) { if (typeof link === "string") return { href: link, crossOrigin: void 0 }; return link;}function createInlineCssStyleAsset(css) { return { attrs: { suppressHydrationWarning: true }, children: css };}function createInlineCssPlaceholderAsset() { return { attrs: { suppressHydrationWarning: true } };}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/route.jsvar BaseRoute = class { get to() { return this._to; } get id() { return this._id; } get path() { return this._path; } get fullPath() { return this._fullPath; } constructor(options) { this.init = (opts) => { this.originalIndex = opts.originalIndex; const options = this.options; const isRoot = !options?.path && !options?.id; this.parentRoute = this.options.getParentRoute?.(); if (isRoot) this._path = rootRouteId; else if (!this.parentRoute) invariant(); let path = isRoot ? rootRouteId : options?.path; if (path && path !== "/") path = trimPathLeft(path); const customId = options?.id || path; let id = isRoot ? rootRouteId : joinPaths([this.parentRoute.id === "__root__" ? "" : this.parentRoute.id, customId]); if (path === "__root__") path = "/"; if (id !== "__root__") id = joinPaths(["/", id]); const fullPath = id === "__root__" ? "/" : joinPaths([this.parentRoute.fullPath, path]); this._path = path; this._id = id; this._fullPath = fullPath; this._to = trimPathRight(fullPath); }; this.addChildren = (children) => { return this._addFileChildren(children); }; this._addFileChildren = (children) => { if (Array.isArray(children)) this.children = children; if (typeof children === "object" && children !== null) this.children = Object.values(children); return this; }; this._addFileTypes = () => { return this; }; this.updateLoader = (options) => { Object.assign(this.options, options); return this; }; this.update = (options) => { Object.assign(this.options, options); return this; }; this.lazy = (lazyFn) => { this.lazyFn = lazyFn; return this; }; this.redirect = (opts) => redirect({ from: this.fullPath, ...opts }); this.options = options || {}; this.isRoot = !options?.getParentRoute; if (options?.id && options?.path) throw new Error(`Route cannot have both an 'id' and a 'path' option.`); }};var BaseRootRoute = class extends BaseRoute { constructor(options) { super(options); }};//#endregion//#region node_modules/@tanstack/router-core/dist/esm/ssr/constants.jsvar GLOBAL_TSR = "$_TSR";var TSR_SCRIPT_BARRIER_ID = "$tsr-stream-barrier";//#endregion//#region node_modules/react/cjs/react-jsx-runtime.production.js/*** @license React* react-jsx-runtime.production.js** Copyright (c) Meta Platforms, Inc. and affiliates.** This source code is licensed under the MIT license found in the* LICENSE file in the root directory of this source tree.*/var require_react_jsx_runtime_production = /* @__PURE__ */ __commonJSMin(((exports) => { var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"); function jsxProd(type, config, maybeKey) { var key = null; void 0 !== maybeKey && (key = "" + maybeKey); void 0 !== config.key && (key = "" + config.key); if ("key" in config) { maybeKey = {}; for (var propName in config) "key" !== propName && (maybeKey[propName] = config[propName]); } else maybeKey = config; config = maybeKey.ref; return { $$typeof: REACT_ELEMENT_TYPE, type, key, ref: void 0 !== config ? config : null, props: maybeKey }; } exports.Fragment = REACT_FRAGMENT_TYPE; exports.jsx = jsxProd; exports.jsxs = jsxProd;}));//#endregion//#region node_modules/react/jsx-runtime.jsvar require_jsx_runtime = /* @__PURE__ */ __commonJSMin(((exports, module) => { module.exports = require_react_jsx_runtime_production();}));//#endregion//#region node_modules/@tanstack/react-router/dist/esm/CatchBoundary.jsvar import_jsx_runtime = require_jsx_runtime();function CatchBoundary(props) { const errorComponent = props.errorComponent ?? ErrorComponent; return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(CatchBoundaryImpl, { getResetKey: props.getResetKey, onCatch: props.onCatch, children: ({ error, reset }) => { if (error) return import_react.createElement(errorComponent, { error, reset }); return props.children; } });}var CatchBoundaryImpl = class extends import_react.Component { constructor(..._args) { super(..._args); this.state = { error: null }; } static getDerivedStateFromProps(props, state) { const resetKey = props.getResetKey(); if (state.error && state.resetKey !== resetKey) return { resetKey, error: null }; return { resetKey }; } static getDerivedStateFromError(error) { return { error }; } reset() { this.setState({ error: null }); } componentDidCatch(error, errorInfo) { if (this.props.onCatch) this.props.onCatch(error, errorInfo); } render() { return this.props.children({ error: this.state.error, reset: () => { this.reset(); } }); }};function ErrorComponent({ error }) { const [show, setShow] = import_react.useState(false); return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { style: { padding: ".5rem", maxWidth: "100%" }, children: [ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: ".5rem" }, children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("strong", { style: { fontSize: "1rem" }, children: "Something went wrong!" }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", { style: { appearance: "none", fontSize: ".6em", border: "1px solid currentColor", padding: ".1rem .2rem", fontWeight: "bold", borderRadius: ".25rem" }, onClick: () => setShow((d) => !d), children: show ? "Hide Error" : "Show Error" })] }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { style: { height: ".25rem" } }), show ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("pre", { style: { fontSize: ".7em", border: "1px solid red", borderRadius: ".25rem", padding: ".3rem", color: "red", overflow: "auto" }, children: error.message ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("code", { children: error.message }) : null }) }) : null ] });}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/ClientOnly.js/*** Render the children only after the JS has loaded client-side. Use an optional* fallback component if the JS is not yet loaded.** @example* Render a Chart component if JS loads, renders a simple FakeChart* component server-side or if there is no JS. The FakeChart can have only the* UI without the behavior or be a loading spinner or skeleton.** ```tsx* return (* <ClientOnly fallback={<FakeChart />}>* <Chart />* </ClientOnly>* )* ```*/function ClientOnly({ children, fallback = null }) { return useHydrated() ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react.Fragment, { children }) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react.Fragment, { children: fallback });}/*** Return a boolean indicating if the JS has been hydrated already.* When doing Server-Side Rendering, the result will always be false.* When doing Client-Side Rendering, the result will always be false on the* first render and true from then on. Even if a new component renders it will* always start with true.** @example* ```tsx* // Disable a button that needs JS to work.* let hydrated = useHydrated()* return (* <button type="button" disabled={!hydrated} onClick={doSomethingCustom}>* Click me* </button>* )* ```* @returns True if the JS has been hydrated already, false otherwise.*/function useHydrated() { return import_react.useSyncExternalStore(subscribe, () => true, () => false);}function subscribe() { return () => {};}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/routerContext.jsvar routerContext = import_react.createContext(null);//#endregion//#region node_modules/@tanstack/react-router/dist/esm/useRouter.js/*** Access the current TanStack Router instance from React context.* Must be used within a `RouterProvider`.** Options:* - `warn`: Log a warning if no router context is found (default: true).** @returns The registered router instance.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/useRouterHook*/function useRouter(opts) { return import_react.useContext(routerContext);}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/matchContext.jsvar matchContext = import_react.createContext(void 0);var dummyMatchContext = import_react.createContext(void 0);//#endregion//#region node_modules/@tanstack/store/dist/esm/alien.jsvar ReactiveFlags = /* @__PURE__ */ ((ReactiveFlags2) => { ReactiveFlags2[ReactiveFlags2["None"] = 0] = "None"; ReactiveFlags2[ReactiveFlags2["Mutable"] = 1] = "Mutable"; ReactiveFlags2[ReactiveFlags2["Watching"] = 2] = "Watching"; ReactiveFlags2[ReactiveFlags2["RecursedCheck"] = 4] = "RecursedCheck"; ReactiveFlags2[ReactiveFlags2["Recursed"] = 8] = "Recursed"; ReactiveFlags2[ReactiveFlags2["Dirty"] = 16] = "Dirty"; ReactiveFlags2[ReactiveFlags2["Pending"] = 32] = "Pending"; return ReactiveFlags2;})(ReactiveFlags || {});// @__NO_SIDE_EFFECTS__function createReactiveSystem({ update, notify, unwatched }) { return { link, unlink, propagate, checkDirty, shallowPropagate }; function link(dep, sub, version) { const prevDep = sub.depsTail; if (prevDep !== void 0 && prevDep.dep === dep) return; const nextDep = prevDep !== void 0 ? prevDep.nextDep : sub.deps; if (nextDep !== void 0 && nextDep.dep === dep) { nextDep.version = version; sub.depsTail = nextDep; return; } const prevSub = dep.subsTail; if (prevSub !== void 0 && prevSub.version === version && prevSub.sub === sub) return; const newLink = sub.depsTail = dep.subsTail = { version, dep, sub, prevDep, nextDep, prevSub, nextSub: void 0 }; if (nextDep !== void 0) nextDep.prevDep = newLink; if (prevDep !== void 0) prevDep.nextDep = newLink; else sub.deps = newLink; if (prevSub !== void 0) prevSub.nextSub = newLink; else dep.subs = newLink; } function unlink(link2, sub = link2.sub) { const dep = link2.dep; const prevDep = link2.prevDep; const nextDep = link2.nextDep; const nextSub = link2.nextSub; const prevSub = link2.prevSub; if (nextDep !== void 0) nextDep.prevDep = prevDep; else sub.depsTail = prevDep; if (prevDep !== void 0) prevDep.nextDep = nextDep; else sub.deps = nextDep; if (nextSub !== void 0) nextSub.prevSub = prevSub; else dep.subsTail = prevSub; if (prevSub !== void 0) prevSub.nextSub = nextSub; else if ((dep.subs = nextSub) === void 0) unwatched(dep); return nextDep; } function propagate(link2) { let next = link2.nextSub; let stack; top: do { const sub = link2.sub; let flags = sub.flags; if (!(flags & 60)) sub.flags = flags | 32; else if (!(flags & 12)) flags = 0; else if (!(flags & 4)) sub.flags = flags & -9 | 32; else if (!(flags & 48) && isValidLink(link2, sub)) { sub.flags = flags | 40; flags &= 1; } else flags = 0; if (flags & 2) notify(sub); if (flags & 1) { const subSubs = sub.subs; if (subSubs !== void 0) { const nextSub = (link2 = subSubs).nextSub; if (nextSub !== void 0) { stack = { value: next, prev: stack }; next = nextSub; } continue; } } if ((link2 = next) !== void 0) { next = link2.nextSub; continue; } while (stack !== void 0) { link2 = stack.value; stack = stack.prev; if (link2 !== void 0) { next = link2.nextSub; continue top; } } break; } while (true); } function checkDirty(link2, sub) { let stack; let checkDepth = 0; let dirty = false; top: do { const dep = link2.dep; const flags = dep.flags; if (sub.flags & 16) dirty = true; else if ((flags & 17) === 17) { if (update(dep)) { const subs = dep.subs; if (subs.nextSub !== void 0) shallowPropagate(subs); dirty = true; } } else if ((flags & 33) === 33) { if (link2.nextSub !== void 0 || link2.prevSub !== void 0) stack = { value: link2, prev: stack }; link2 = dep.deps; sub = dep; ++checkDepth; continue; } if (!dirty) { const nextDep = link2.nextDep; if (nextDep !== void 0) { link2 = nextDep; continue; } } while (checkDepth--) { const firstSub = sub.subs; const hasMultipleSubs = firstSub.nextSub !== void 0; if (hasMultipleSubs) { link2 = stack.value; stack = stack.prev; } else link2 = firstSub; if (dirty) { if (update(sub)) { if (hasMultipleSubs) shallowPropagate(firstSub); sub = link2.sub; continue; } dirty = false; } else sub.flags &= -33; sub = link2.sub; const nextDep = link2.nextDep; if (nextDep !== void 0) { link2 = nextDep; continue top; } } return dirty; } while (true); } function shallowPropagate(link2) { do { const sub = link2.sub; const flags = sub.flags; if ((flags & 48) === 32) { sub.flags = flags | 16; if ((flags & 6) === 2) notify(sub); } } while ((link2 = link2.nextSub) !== void 0); } function isValidLink(checkLink, sub) { let link2 = sub.depsTail; while (link2 !== void 0) { if (link2 === checkLink) return true; link2 = link2.prevDep; } return false; }}var queuedEffects = [];var { link, unlink, propagate, checkDirty, shallowPropagate } = /* @__PURE__ */ createReactiveSystem({ update(atom) { return atom._update(); }, notify(effect2) { queuedEffects[queuedEffectsLength++] = effect2; effect2.flags &= ~ReactiveFlags.Watching; }, unwatched(atom) { if (atom.depsTail !== void 0) { atom.depsTail = void 0; atom.flags = ReactiveFlags.Mutable | ReactiveFlags.Dirty; purgeDeps(atom); } }});var queuedEffectsLength = 0;function purgeDeps(sub) { const depsTail = sub.depsTail; let dep = depsTail !== void 0 ? depsTail.nextDep : sub.deps; while (dep !== void 0) dep = unlink(dep, sub);}//#endregion//#region node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js/*** @license React* use-sync-external-store-shim.production.js** Copyright (c) Meta Platforms, Inc. and affiliates.** This source code is licensed under the MIT license found in the* LICENSE file in the root directory of this source tree.*/var require_use_sync_external_store_shim_production = /* @__PURE__ */ __commonJSMin(((exports) => { var React = require_react(); function is(x, y) { return x === y && (0 !== x || 1 / x === 1 / y) || x !== x && y !== y; } var objectIs = "function" === typeof Object.is ? Object.is : is, useState = React.useState, useEffect = React.useEffect, useLayoutEffect = React.useLayoutEffect, useDebugValue = React.useDebugValue; function useSyncExternalStore$2(subscribe, getSnapshot) { var value = getSnapshot(), _useState = useState({ inst: { value, getSnapshot } }), inst = _useState[0].inst, forceUpdate = _useState[1]; useLayoutEffect(function() { inst.value = value; inst.getSnapshot = getSnapshot; checkIfSnapshotChanged(inst) && forceUpdate({ inst }); }, [ subscribe, value, getSnapshot ]); useEffect(function() { checkIfSnapshotChanged(inst) && forceUpdate({ inst }); return subscribe(function() { checkIfSnapshotChanged(inst) && forceUpdate({ inst }); }); }, [subscribe]); useDebugValue(value); return value; } function checkIfSnapshotChanged(inst) { var latestGetSnapshot = inst.getSnapshot; inst = inst.value; try { var nextValue = latestGetSnapshot(); return !objectIs(inst, nextValue); } catch (error) { return !0; } } function useSyncExternalStore$1(subscribe, getSnapshot) { return getSnapshot(); } var shim = "undefined" === typeof window || "undefined" === typeof window.document || "undefined" === typeof window.document.createElement ? useSyncExternalStore$1 : useSyncExternalStore$2; exports.useSyncExternalStore = void 0 !== React.useSyncExternalStore ? React.useSyncExternalStore : shim;}));//#endregion//#region node_modules/use-sync-external-store/shim/index.jsvar require_shim = /* @__PURE__ */ __commonJSMin(((exports, module) => { module.exports = require_use_sync_external_store_shim_production();}));//#endregion//#region node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.js/*** @license React* use-sync-external-store-shim/with-selector.production.js** Copyright (c) Meta Platforms, Inc. and affiliates.** This source code is licensed under the MIT license found in the* LICENSE file in the root directory of this source tree.*/var require_with_selector_production = /* @__PURE__ */ __commonJSMin(((exports) => { var React = require_react(), shim = require_shim(); function is(x, y) { return x === y && (0 !== x || 1 / x === 1 / y) || x !== x && y !== y; } var objectIs = "function" === typeof Object.is ? Object.is : is, useSyncExternalStore = shim.useSyncExternalStore, useRef = React.useRef, useEffect = React.useEffect, useMemo = React.useMemo, useDebugValue = React.useDebugValue; exports.useSyncExternalStoreWithSelector = function(subscribe, getSnapshot, getServerSnapshot, selector, isEqual) { var instRef = useRef(null); if (null === instRef.current) { var inst = { hasValue: !1, value: null }; instRef.current = inst; } else inst = instRef.current; instRef = useMemo(function() { function memoizedSelector(nextSnapshot) { if (!hasMemo) { hasMemo = !0; memoizedSnapshot = nextSnapshot; nextSnapshot = selector(nextSnapshot); if (void 0 !== isEqual && inst.hasValue) { var currentSelection = inst.value; if (isEqual(currentSelection, nextSnapshot)) return memoizedSelection = currentSelection; } return memoizedSelection = nextSnapshot; } currentSelection = memoizedSelection; if (objectIs(memoizedSnapshot, nextSnapshot)) return currentSelection; var nextSelection = selector(nextSnapshot); if (void 0 !== isEqual && isEqual(currentSelection, nextSelection)) return memoizedSnapshot = nextSnapshot, currentSelection; memoizedSnapshot = nextSnapshot; return memoizedSelection = nextSelection; } var hasMemo = !1, memoizedSnapshot, memoizedSelection, maybeGetServerSnapshot = void 0 === getServerSnapshot ? null : getServerSnapshot; return [function() { return memoizedSelector(getSnapshot()); }, null === maybeGetServerSnapshot ? void 0 : function() { return memoizedSelector(maybeGetServerSnapshot()); }]; }, [ getSnapshot, getServerSnapshot, selector, isEqual ]); var value = useSyncExternalStore(subscribe, instRef[0], instRef[1]); useEffect(function() { inst.hasValue = !0; inst.value = value; }, [value]); useDebugValue(value); return value; };}));//#endregion//#region node_modules/@tanstack/react-store/dist/esm/useStore.jsvar import_with_selector = (/* @__PURE__ */ __commonJSMin(((exports, module) => { module.exports = require_with_selector_production();})))();function defaultCompare(a, b) { return a === b;}function useStore(atom, selector, compare = defaultCompare) { const subscribe = (0, import_react.useCallback)((handleStoreChange) => { if (!atom) return () => {}; const { unsubscribe } = atom.subscribe(handleStoreChange); return unsubscribe; }, [atom]); const boundGetSnapshot = (0, import_react.useCallback)(() => atom?.get(), [atom]); return (0, import_with_selector.useSyncExternalStoreWithSelector)(subscribe, boundGetSnapshot, boundGetSnapshot, selector, compare);}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/useMatch.jsvar dummyStore = { get() {}, subscribe() { return { unsubscribe() {} }; }};function useStructuralSharing(opts, router) { const previousResult = import_react.useRef(); return (slice) => { const selected = opts?.select ? opts.select(slice) : slice; if (opts?.structuralSharing ?? router.options.defaultStructuralSharing) return previousResult.current = replaceEqualDeep(previousResult.current, selected); return selected; };}/*** Read and select the nearest or targeted route match.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/useMatchHook*/function useMatch(opts) { const router = useRouter(); const nearestMatchId = import_react.useContext(opts.from ? dummyMatchContext : matchContext); const matchStore = opts.from ? router.stores.getRouteMatchStore(opts.from) : router.stores.matchStores.get(nearestMatchId); { const match = matchStore?.get(); if (!match) { if (opts.shouldThrow ?? true) invariant(); return; } return opts.select ? opts.select(match) : match; } const selector = useStructuralSharing(opts, router); const matchSelection = useStore(matchStore ?? dummyStore, (match) => match ? selector(match) : dummyStore); if (matchSelection !== dummyStore) return matchSelection; if (opts.shouldThrow ?? true) invariant();}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/useLoaderData.js/*** Read and select the current route's loader data with type‑safety.** Options:* - `from`/`strict`: Choose which route's data to read and strictness* - `select`: Map the loader data to a derived value* - `structuralSharing`: Enable structural sharing for stable references** @returns The loader data (or selected value) for the matched route.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/useLoaderDataHook*/function useLoaderData(opts) { return useMatch({ from: opts.from, strict: opts.strict, structuralSharing: opts.structuralSharing, select: (match) => { return opts.select ? opts.select(match.loaderData) : match.loaderData; } });}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/useLoaderDeps.js/*** Read and select the current route's loader dependencies object.** Options:* - `from`: Choose which route's loader deps to read* - `select`: Map the deps to a derived value* - `structuralSharing`: Enable structural sharing for stable references** @returns The loader deps (or selected value) for the matched route.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/useLoaderDepsHook*/function useLoaderDeps(opts) { const { select, ...rest } = opts; return useMatch({ ...rest, select: (match) => { return select ? select(match.loaderDeps) : match.loaderDeps; } });}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/useParams.js/*** Access the current route's path parameters with type-safety.** Options:* - `from`/`strict`: Specify the matched route and whether to enforce strict typing* - `select`: Project the params object to a derived value for memoized renders* - `structuralSharing`: Enable structural sharing for stable references* - `shouldThrow`: Throw if the route is not found in strict contexts** @returns The params object (or selected value) for the matched route.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/useParamsHook*/function useParams(opts) { return useMatch({ from: opts.from, shouldThrow: opts.shouldThrow, structuralSharing: opts.structuralSharing, strict: opts.strict, select: (match) => { const params = opts.strict === false ? match.params : match._strictParams; return opts.select ? opts.select(params) : params; } });}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/useSearch.js/*** Read and select the current route's search parameters with type-safety.** Options:* - `from`/`strict`: Control which route's search is read and how strictly it's typed* - `select`: Map the search object to a derived value for render optimization* - `structuralSharing`: Enable structural sharing for stable references* - `shouldThrow`: Throw when the route is not found (strict contexts)** @returns The search object (or selected value) for the matched route.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/useSearchHook*/function useSearch(opts) { return useMatch({ from: opts.from, strict: opts.strict, shouldThrow: opts.shouldThrow, structuralSharing: opts.structuralSharing, select: (match) => { return opts.select ? opts.select(match.search) : match.search; } });}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/useNavigate.js/*** Imperative navigation hook.** Returns a stable `navigate(options)` function to change the current location* programmatically. Prefer the `Link` component for user-initiated navigation,* and use this hook from effects, callbacks, or handlers where imperative* navigation is required.** Options:* - `from`: Optional route base used to resolve relative `to` paths.** @returns A function that accepts `NavigateOptions`.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/useNavigateHook*/function useNavigate(_defaultOpts) { const router = useRouter(); return import_react.useCallback((options) => { return router.navigate({ ...options, from: options.from ?? _defaultOpts?.from }); }, [_defaultOpts?.from, router]);}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/useRouteContext.jsfunction useRouteContext(opts) { return useMatch({ ...opts, select: (match) => opts.select ? opts.select(match.context) : match.context });}//#endregion//#region node_modules/react-dom/cjs/react-dom.production.js/*** @license React* react-dom.production.js** Copyright (c) Meta Platforms, Inc. and affiliates.** This source code is licensed under the MIT license found in the* LICENSE file in the root directory of this source tree.*/var require_react_dom_production = /* @__PURE__ */ __commonJSMin(((exports) => { var React = require_react(); function formatProdErrorMessage(code) { var url = "https://react.dev/errors/" + code; if (1 < arguments.length) { url += "?args[]=" + encodeURIComponent(arguments[1]); for (var i = 2; i < arguments.length; i++) url += "&args[]=" + encodeURIComponent(arguments[i]); } return "Minified React error #" + code + "; visit " + url + " for the full message or use the non-minified dev environment for full errors and additional helpful warnings."; } function noop() {} var Internals = { d: { f: noop, r: function() { throw Error(formatProdErrorMessage(522)); }, D: noop, C: noop, L: noop, m: noop, X: noop, S: noop, M: noop }, p: 0, findDOMNode: null }, REACT_PORTAL_TYPE = Symbol.for("react.portal"); function createPortal$1(children, containerInfo, implementation) { var key = 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null; return { $$typeof: REACT_PORTAL_TYPE, key: null == key ? null : "" + key, children, containerInfo, implementation }; } var ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE; function getCrossOriginStringAs(as, input) { if ("font" === as) return ""; if ("string" === typeof input) return "use-credentials" === input ? input : ""; } exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = Internals; exports.createPortal = function(children, container) { var key = 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null; if (!container || 1 !== container.nodeType && 9 !== container.nodeType && 11 !== container.nodeType) throw Error(formatProdErrorMessage(299)); return createPortal$1(children, container, null, key); }; exports.flushSync = function(fn) { var previousTransition = ReactSharedInternals.T, previousUpdatePriority = Internals.p; try { if (ReactSharedInternals.T = null, Internals.p = 2, fn) return fn(); } finally { ReactSharedInternals.T = previousTransition, Internals.p = previousUpdatePriority, Internals.d.f(); } }; exports.preconnect = function(href, options) { "string" === typeof href && (options ? (options = options.crossOrigin, options = "string" === typeof options ? "use-credentials" === options ? options : "" : void 0) : options = null, Internals.d.C(href, options)); }; exports.prefetchDNS = function(href) { "string" === typeof href && Internals.d.D(href); }; exports.preinit = function(href, options) { if ("string" === typeof href && options && "string" === typeof options.as) { var as = options.as, crossOrigin = getCrossOriginStringAs(as, options.crossOrigin), integrity = "string" === typeof options.integrity ? options.integrity : void 0, fetchPriority = "string" === typeof options.fetchPriority ? options.fetchPriority : void 0; "style" === as ? Internals.d.S(href, "string" === typeof options.precedence ? options.precedence : void 0, { crossOrigin, integrity, fetchPriority }) : "script" === as && Internals.d.X(href, { crossOrigin, integrity, fetchPriority, nonce: "string" === typeof options.nonce ? options.nonce : void 0 }); } }; exports.preinitModule = function(href, options) { if ("string" === typeof href) if ("object" === typeof options && null !== options) { if (null == options.as || "script" === options.as) { var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin); Internals.d.M(href, { crossOrigin, integrity: "string" === typeof options.integrity ? options.integrity : void 0, nonce: "string" === typeof options.nonce ? options.nonce : void 0 }); } } else options ?? Internals.d.M(href); }; exports.preload = function(href, options) { if ("string" === typeof href && "object" === typeof options && null !== options && "string" === typeof options.as) { var as = options.as, crossOrigin = getCrossOriginStringAs(as, options.crossOrigin); Internals.d.L(href, as, { crossOrigin, integrity: "string" === typeof options.integrity ? options.integrity : void 0, nonce: "string" === typeof options.nonce ? options.nonce : void 0, type: "string" === typeof options.type ? options.type : void 0, fetchPriority: "string" === typeof options.fetchPriority ? options.fetchPriority : void 0, referrerPolicy: "string" === typeof options.referrerPolicy ? options.referrerPolicy : void 0, imageSrcSet: "string" === typeof options.imageSrcSet ? options.imageSrcSet : void 0, imageSizes: "string" === typeof options.imageSizes ? options.imageSizes : void 0, media: "string" === typeof options.media ? options.media : void 0 }); } }; exports.preloadModule = function(href, options) { if ("string" === typeof href) if (options) { var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin); Internals.d.m(href, { as: "string" === typeof options.as && "script" !== options.as ? options.as : void 0, crossOrigin, integrity: "string" === typeof options.integrity ? options.integrity : void 0 }); } else Internals.d.m(href); }; exports.requestFormReset = function(form) { Internals.d.r(form); }; exports.unstable_batchedUpdates = function(fn, a) { return fn(a); }; exports.useFormState = function(action, initialState, permalink) { return ReactSharedInternals.H.useFormState(action, initialState, permalink); }; exports.useFormStatus = function() { return ReactSharedInternals.H.useHostTransitionStatus(); }; exports.version = "19.2.7";}));//#endregion//#region node_modules/react-dom/index.jsvar require_react_dom = /* @__PURE__ */ __commonJSMin(((exports, module) => { function checkDCE() { if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === "undefined" || typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== "function") return; try { __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE); } catch (err) { console.error(err); } } checkDCE(); module.exports = require_react_dom_production();}));//#endregion//#region node_modules/@tanstack/react-router/dist/esm/link.jsvar import_react_dom = require_react_dom();/*** Build anchor-like props for declarative navigation and preloading.** Returns stable `href`, event handlers and accessibility props derived from* router options and active state. Used internally by `Link` and custom links.** Options cover `to`, `params`, `search`, `hash`, `state`, `preload`,* `activeProps`, `inactiveProps`, and more.** @returns React anchor props suitable for `<a>` or custom components.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/useLinkPropsHook*/function useLinkProps(options, forwardedRef) { const router = useRouter(); const innerRef = useForwardedRef(forwardedRef); const { activeProps, inactiveProps, activeOptions, to, preload: userPreload, preloadDelay: userPreloadDelay, preloadIntentProximity: _preloadIntentProximity, hashScrollIntoView, replace, startTransition, resetScroll, viewTransition, children, target, disabled, style, className, onClick, onBlur, onFocus, onMouseEnter, onMouseLeave, onTouchStart, ignoreBlocker, params: _params, search: _search, hash: _hash, state: _state, mask: _mask, reloadDocument: _reloadDocument, unsafeRelative: _unsafeRelative, from: _from, _fromLocation, ...propsSafeToSpread } = options; { const safeInternal = isSafeInternal(to); if (typeof to === "string" && !safeInternal && to.indexOf(":") > -1) try { new URL(to); if (isDangerousProtocol(to, router.protocolAllowlist)) return { ...propsSafeToSpread, ref: innerRef, href: void 0, ...children && { children }, ...target && { target }, ...disabled && { disabled }, ...style && { style }, ...className && { className } }; return { ...propsSafeToSpread, ref: innerRef, href: to, ...children && { children }, ...target && { target }, ...disabled && { disabled }, ...style && { style }, ...className && { className } }; } catch {} const next = router.buildLocation({ ...options, from: options.from }); const hrefOption = getHrefOption(next.maskedLocation ? next.maskedLocation.publicHref : next.publicHref, next.maskedLocation ? next.maskedLocation.external : next.external, router.history, disabled); const externalLink = (() => { if (hrefOption?.external) { if (isDangerousProtocol(hrefOption.href, router.protocolAllowlist)) return; return hrefOption.href; } if (safeInternal) return void 0; if (typeof to === "string" && to.indexOf(":") > -1) try { new URL(to); if (isDangerousProtocol(to, router.protocolAllowlist)) return; return to; } catch {} })(); const isActive = (() => { if (externalLink) return false; const currentLocation = router.stores.location.get(); const exact = activeOptions?.exact ?? false; if (exact) { if (!exactPathTest(currentLocation.pathname, next.pathname, router.basepath)) return false; } else { const currentPathSplit = removeTrailingSlash(currentLocation.pathname, router.basepath); const nextPathSplit = removeTrailingSlash(next.pathname, router.basepath); if (!(currentPathSplit.startsWith(nextPathSplit) && (currentPathSplit.length === nextPathSplit.length || currentPathSplit[nextPathSplit.length] === "/"))) return false; } if (activeOptions?.includeSearch ?? true) { if (currentLocation.search !== next.search) { const currentSearchEmpty = !currentLocation.search || typeof currentLocation.search === "object" && !hasKeys(currentLocation.search); const nextSearchEmpty = !next.search || typeof next.search === "object" && !hasKeys(next.search); if (!(currentSearchEmpty && nextSearchEmpty)) { if (!deepEqual(currentLocation.search, next.search, { partial: !exact, ignoreUndefined: !activeOptions?.explicitUndefined })) return false; } } } if (activeOptions?.includeHash) return false; return true; })(); if (externalLink) return { ...propsSafeToSpread, ref: innerRef, href: externalLink, ...children && { children }, ...target && { target }, ...disabled && { disabled }, ...style && { style }, ...className && { className } }; const resolvedActiveProps = isActive ? functionalUpdate(activeProps, {}) ?? STATIC_ACTIVE_OBJECT : STATIC_EMPTY_OBJECT; const resolvedInactiveProps = isActive ? STATIC_EMPTY_OBJECT : functionalUpdate(inactiveProps, {}) ?? STATIC_EMPTY_OBJECT; const resolvedStyle = (() => { const baseStyle = style; const activeStyle = resolvedActiveProps.style; const inactiveStyle = resolvedInactiveProps.style; if (!baseStyle && !activeStyle && !inactiveStyle) return; if (baseStyle && !activeStyle && !inactiveStyle) return baseStyle; if (!baseStyle && activeStyle && !inactiveStyle) return activeStyle; if (!baseStyle && !activeStyle && inactiveStyle) return inactiveStyle; return { ...baseStyle, ...activeStyle, ...inactiveStyle }; })(); const resolvedClassName = (() => { const baseClassName = className; const activeClassName = resolvedActiveProps.className; const inactiveClassName = resolvedInactiveProps.className; if (!baseClassName && !activeClassName && !inactiveClassName) return ""; let out = ""; if (baseClassName) out = baseClassName; if (activeClassName) out = out ? `${out} ${activeClassName}` : activeClassName; if (inactiveClassName) out = out ? `${out} ${inactiveClassName}` : inactiveClassName; return out; })(); return { ...propsSafeToSpread, ...resolvedActiveProps, ...resolvedInactiveProps, href: hrefOption?.href, ref: innerRef, disabled: !!disabled, target, ...resolvedStyle && { style: resolvedStyle }, ...resolvedClassName && { className: resolvedClassName }, ...disabled && STATIC_DISABLED_PROPS, ...isActive && STATIC_ACTIVE_PROPS }; } const isHydrated = useHydrated(); const _options = import_react.useMemo(() => options, [ router, options.from, options._fromLocation, options.hash, options.to, options.search, options.params, options.state, options.mask, options.unsafeRelative ]); const currentLocation = useStore(router.stores.location, (l) => l, (prev, next) => prev.href === next.href); const next = import_react.useMemo(() => { const opts = { _fromLocation: currentLocation, ..._options }; return router.buildLocation(opts); }, [ router, currentLocation, _options ]); const hrefOptionPublicHref = next.maskedLocation ? next.maskedLocation.publicHref : next.publicHref; const hrefOptionExternal = next.maskedLocation ? next.maskedLocation.external : next.external; const hrefOption = import_react.useMemo(() => getHrefOption(hrefOptionPublicHref, hrefOptionExternal, router.history, disabled), [ disabled, hrefOptionExternal, hrefOptionPublicHref, router.history ]); const externalLink = import_react.useMemo(() => { if (hrefOption?.external) { if (isDangerousProtocol(hrefOption.href, router.protocolAllowlist)) return; return hrefOption.href; } if (isSafeInternal(to)) return void 0; if (typeof to !== "string" || to.indexOf(":") === -1) return void 0; try { new URL(to); if (isDangerousProtocol(to, router.protocolAllowlist)) return; return to; } catch {} }, [ to, hrefOption, router.protocolAllowlist ]); const isActive = import_react.useMemo(() => { if (externalLink) return false; if (activeOptions?.exact) { if (!exactPathTest(currentLocation.pathname, next.pathname, router.basepath)) return false; } else { const currentPathSplit = removeTrailingSlash(currentLocation.pathname, router.basepath); const nextPathSplit = removeTrailingSlash(next.pathname, router.basepath); if (!(currentPathSplit.startsWith(nextPathSplit) && (currentPathSplit.length === nextPathSplit.length || currentPathSplit[nextPathSplit.length] === "/"))) return false; } if (activeOptions?.includeSearch ?? true) { if (!deepEqual(currentLocation.search, next.search, { partial: !activeOptions?.exact, ignoreUndefined: !activeOptions?.explicitUndefined })) return false; } if (activeOptions?.includeHash) return isHydrated && currentLocation.hash === next.hash; return true; }, [ activeOptions?.exact, activeOptions?.explicitUndefined, activeOptions?.includeHash, activeOptions?.includeSearch, currentLocation, externalLink, isHydrated, next.hash, next.pathname, next.search, router.basepath ]); const resolvedActiveProps = isActive ? functionalUpdate(activeProps, {}) ?? STATIC_ACTIVE_OBJECT : STATIC_EMPTY_OBJECT; const resolvedInactiveProps = isActive ? STATIC_EMPTY_OBJECT : functionalUpdate(inactiveProps, {}) ?? STATIC_EMPTY_OBJECT; const resolvedClassName = [ className, resolvedActiveProps.className, resolvedInactiveProps.className ].filter(Boolean).join(" "); const resolvedStyle = (style || resolvedActiveProps.style || resolvedInactiveProps.style) && { ...style, ...resolvedActiveProps.style, ...resolvedInactiveProps.style }; const [isTransitioning, setIsTransitioning] = import_react.useState(false); const hasRenderFetched = import_react.useRef(false); const preload = options.reloadDocument || externalLink ? false : userPreload ?? router.options.defaultPreload; const preloadDelay = userPreloadDelay ?? router.options.defaultPreloadDelay ?? 0; const doPreload = import_react.useCallback(() => { router.preloadRoute({ ..._options, _builtLocation: next }).catch((err) => { console.warn(err); console.warn(preloadWarning); }); }, [ router, _options, next ]); useIntersectionObserver(innerRef, import_react.useCallback((entry) => { if (entry?.isIntersecting) doPreload(); }, [doPreload]), intersectionObserverOptions, { disabled: !!disabled || !(preload === "viewport") }); import_react.useEffect(() => { if (hasRenderFetched.current) return; if (!disabled && preload === "render") { doPreload(); hasRenderFetched.current = true; } }, [ disabled, doPreload, preload ]); const handleClick = (e) => { const elementTarget = e.currentTarget.getAttribute("target"); const effectiveTarget = target !== void 0 ? target : elementTarget; if (!disabled && !isCtrlEvent(e) && !e.defaultPrevented && (!effectiveTarget || effectiveTarget === "_self") && e.button === 0) { e.preventDefault(); (0, import_react_dom.flushSync)(() => { setIsTransitioning(true); }); const unsub = router.subscribe("onResolved", () => { unsub(); setIsTransitioning(false); }); router.navigate({ ..._options, replace, resetScroll, hashScrollIntoView, startTransition, viewTransition, ignoreBlocker }); } }; if (externalLink) return { ...propsSafeToSpread, ref: innerRef, href: externalLink, ...children && { children }, ...target && { target }, ...disabled && { disabled }, ...style && { style }, ...className && { className }, ...onClick && { onClick }, ...onBlur && { onBlur }, ...onFocus && { onFocus }, ...onMouseEnter && { onMouseEnter }, ...onMouseLeave && { onMouseLeave }, ...onTouchStart && { onTouchStart } }; const enqueueIntentPreload = (e) => { if (disabled || preload !== "intent") return; if (!preloadDelay) { doPreload(); return; } const eventTarget = e.currentTarget; if (timeoutMap.has(eventTarget)) return; const id = setTimeout(() => { timeoutMap.delete(eventTarget); doPreload(); }, preloadDelay); timeoutMap.set(eventTarget, id); }; const handleTouchStart = (_) => { if (disabled || preload !== "intent") return; doPreload(); }; const handleLeave = (e) => { if (disabled || !preload || !preloadDelay) return; const eventTarget = e.currentTarget; const id = timeoutMap.get(eventTarget); if (id) { clearTimeout(id); timeoutMap.delete(eventTarget); } }; return { ...propsSafeToSpread, ...resolvedActiveProps, ...resolvedInactiveProps, href: hrefOption?.href, ref: innerRef, onClick: composeHandlers([onClick, handleClick]), onBlur: composeHandlers([onBlur, handleLeave]), onFocus: composeHandlers([onFocus, enqueueIntentPreload]), onMouseEnter: composeHandlers([onMouseEnter, enqueueIntentPreload]), onMouseLeave: composeHandlers([onMouseLeave, handleLeave]), onTouchStart: composeHandlers([onTouchStart, handleTouchStart]), disabled: !!disabled, target, ...resolvedStyle && { style: resolvedStyle }, ...resolvedClassName && { className: resolvedClassName }, ...disabled && STATIC_DISABLED_PROPS, ...isActive && STATIC_ACTIVE_PROPS, ...isHydrated && isTransitioning && STATIC_TRANSITIONING_PROPS };}var STATIC_EMPTY_OBJECT = {};var STATIC_ACTIVE_OBJECT = { className: "active" };var STATIC_DISABLED_PROPS = { role: "link", "aria-disabled": true};var STATIC_ACTIVE_PROPS = { "data-status": "active", "aria-current": "page"};var STATIC_TRANSITIONING_PROPS = { "data-transitioning": "transitioning" };var timeoutMap = /* @__PURE__ */ new WeakMap();var intersectionObserverOptions = { rootMargin: "100px" };var composeHandlers = (handlers) => (e) => { for (const handler of handlers) { if (!handler) continue; if (e.defaultPrevented) return; handler(e); }};function getHrefOption(publicHref, external, history, disabled) { if (disabled) return void 0; if (external) return { href: publicHref, external: true }; return { href: history.createHref(publicHref) || "/", external: false };}function isSafeInternal(to) { if (typeof to !== "string") return false; const zero = to.charCodeAt(0); if (zero === 47) return to.charCodeAt(1) !== 47; return zero === 46;}/*** A strongly-typed anchor component for declarative navigation.* Handles path, search, hash and state updates with optional route preloading* and active-state styling.** Props:* - `preload`: Controls route preloading (eg. 'intent', 'render', 'viewport', true/false)* - `preloadDelay`: Delay in ms before preloading on hover* - `activeProps`/`inactiveProps`: Additional props merged when link is active/inactive* - `resetScroll`/`hashScrollIntoView`: Control scroll behavior on navigation* - `viewTransition`/`startTransition`: Use View Transitions/React transitions for navigation* - `ignoreBlocker`: Bypass registered blockers** @returns An anchor-like element that navigates without full page reloads.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/linkComponent*/var Link = import_react.forwardRef((props, ref) => { const { _asChild, ...rest } = props; const { type: _type, ...linkProps } = useLinkProps(rest, ref); const children = typeof rest.children === "function" ? rest.children({ isActive: linkProps["data-status"] === "active" }) : rest.children; if (!_asChild) { const { disabled: _, ...rest } = linkProps; return import_react.createElement("a", rest, children); } return import_react.createElement(_asChild, linkProps, children);});function isCtrlEvent(e) { return !!(e.metaKey || e.altKey || e.ctrlKey || e.shiftKey);}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/route.jsvar Route = class extends BaseRoute { /** * @deprecated Use the `createRoute` function instead. */ constructor(options) { super(options); this.useMatch = (opts) => { return useMatch({ select: opts?.select, from: this.id, structuralSharing: opts?.structuralSharing }); }; this.useRouteContext = (opts) => { return useRouteContext({ ...opts, from: this.id }); }; this.useSearch = (opts) => { return useSearch({ select: opts?.select, structuralSharing: opts?.structuralSharing, from: this.id }); }; this.useParams = (opts) => { return useParams({ select: opts?.select, structuralSharing: opts?.structuralSharing, from: this.id }); }; this.useLoaderDeps = (opts) => { return useLoaderDeps({ ...opts, from: this.id }); }; this.useLoaderData = (opts) => { return useLoaderData({ ...opts, from: this.id }); }; this.useNavigate = () => { return useNavigate({ from: this.fullPath }); }; this.Link = import_react.forwardRef((props, ref) => { return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Link, { ref, from: this.fullPath, ...props }); }); }};/*** Creates a non-root Route instance for code-based routing.** Use this to define a route that will be composed into a route tree* (typically via a parent route's `addChildren`). If you're using file-based* routing, prefer `createFileRoute`.** @param options Route options (path, component, loader, context, etc.).* @returns A Route instance to be attached to the route tree.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/createRouteFunction*/function createRoute(options) { return new Route(options);}var RootRoute = class extends BaseRootRoute { /** * @deprecated `RootRoute` is now an internal implementation detail. Use `createRootRoute()` instead. */ constructor(options) { super(options); this.useMatch = (opts) => { return useMatch({ select: opts?.select, from: this.id, structuralSharing: opts?.structuralSharing }); }; this.useRouteContext = (opts) => { return useRouteContext({ ...opts, from: this.id }); }; this.useSearch = (opts) => { return useSearch({ select: opts?.select, structuralSharing: opts?.structuralSharing, from: this.id }); }; this.useParams = (opts) => { return useParams({ select: opts?.select, structuralSharing: opts?.structuralSharing, from: this.id }); }; this.useLoaderDeps = (opts) => { return useLoaderDeps({ ...opts, from: this.id }); }; this.useLoaderData = (opts) => { return useLoaderData({ ...opts, from: this.id }); }; this.useNavigate = () => { return useNavigate({ from: this.fullPath }); }; this.Link = import_react.forwardRef((props, ref) => { return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Link, { ref, from: this.fullPath, ...props }); }); }};/*** Creates a root Route instance used to build your route tree.** Typically paired with `createRouter({ routeTree })`. If you need to require* a typed router context, use `createRootRouteWithContext` instead.** @param options Root route options (component, error, pending, etc.).* @returns A root route instance.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/createRootRouteFunction*/function createRootRoute(options) { return new RootRoute(options);}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/fileRoute.js/*** Creates a file-based Route factory for a given path.** Used by TanStack Router's file-based routing to associate a file with a* route. The returned function accepts standard route options. In normal usage* the `path` string is inserted and maintained by the `tsr` generator.** @param path File path literal for the route (usually auto-generated).* @returns A function that accepts Route options and returns a Route instance.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/createFileRouteFunction*/function createFileRoute(path) { return new FileRoute(path, { silent: true }).createRoute;}/** @deprecated It's no longer recommended to use the `FileRoute` class directly.Instead, use `createFileRoute('/path/to/file')(options)` to create a file route.*/var FileRoute = class { constructor(path, _opts) { this.path = path; this.createRoute = (options) => { const route = createRoute(options); route.isRoot = false; return route; }; this.silent = _opts?.silent; }};//#endregion//#region node_modules/@tanstack/react-router/dist/esm/lazyRouteComponent.js/*** Wrap a dynamic import to create a route component that supports* `.preload()` and friendly reload-on-module-missing behavior.** @param importer Function returning a module promise* @param exportName Named export to use (default: `default`)* @returns A lazy route component compatible with TanStack Router* @link https://tanstack.com/router/latest/docs/framework/react/api/router/lazyRouteComponentFunction*/function lazyRouteComponent(importer, exportName) { let loadPromise; let comp; let error; let reload; const load = () => { if (!loadPromise) loadPromise = importer().then((res) => { loadPromise = void 0; comp = res[exportName ?? "default"]; }).catch((err) => { error = err; if (isModuleNotFoundError(error)) { if (error instanceof Error && typeof window !== "undefined" && typeof sessionStorage !== "undefined") { const storageKey = `tanstack_router_reload:${error.message}`; if (!sessionStorage.getItem(storageKey)) { sessionStorage.setItem(storageKey, "1"); reload = true; } } } }); return loadPromise; }; const lazyComp = function Lazy(props) { if (reload) { window.location.reload(); throw new Promise(() => {}); } if (error) throw error; if (!comp) if (reactUse) reactUse(load()); else throw load(); return import_react.createElement(comp, props); }; lazyComp.preload = load; return lazyComp;}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/not-found.jsfunction CatchNotFound(props) { const router = useRouter(); { const resetKey = `not-found-${router.stores.location.get().pathname}-${router.stores.status.get()}`; return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(CatchBoundary, { getResetKey: () => resetKey, onCatch: (error, errorInfo) => { if (isNotFound(error)) props.onCatch?.(error, errorInfo); else throw error; }, errorComponent: ({ error }) => { if (isNotFound(error)) return props.fallback?.(error); else throw error; }, children: props.children }); } const resetKey = `not-found-${useStore(router.stores.location, (location) => location.pathname)}-${useStore(router.stores.status, (status) => status)}`; return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(CatchBoundary, { getResetKey: () => resetKey, onCatch: (error, errorInfo) => { if (isNotFound(error)) props.onCatch?.(error, errorInfo); else throw error; }, errorComponent: ({ error }) => { if (isNotFound(error)) return props.fallback?.(error); else throw error; }, children: props.children });}function DefaultGlobalNotFound() { return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("p", { children: "Not Found" });}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/ScriptOnce.js/*** Server-only helper to emit a script tag exactly once during SSR.*/function ScriptOnce({ children }) { const router = useRouter(); return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("script", { nonce: router.options.ssr?.nonce, dangerouslySetInnerHTML: { __html: children + ";document.currentScript.remove()" } });}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/SafeFragment.jsfunction SafeFragment(props) { return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: props.children });}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/renderRouteNotFound.js/*** Renders a not found component for a route when no matching route is found.** @param router - The router instance containing the route configuration* @param route - The route that triggered the not found state* @param data - Additional data to pass to the not found component* @returns The rendered not found component or a default fallback component*/function renderRouteNotFound(router, route, data) { if (!route.options.notFoundComponent) { if (router.options.defaultNotFoundComponent) return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(router.options.defaultNotFoundComponent, { ...data }); return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(DefaultGlobalNotFound, {}); } return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(route.options.notFoundComponent, { ...data });}//#endregion//#region node_modules/@tanstack/router-core/dist/esm/scroll-restoration-inline.jsvar scroll_restoration_inline_default = "function(a,f){let l;try{l=JSON.parse(sessionStorage.getItem(a)||\"{}\")}catch{return}const n=l?.[f||history.state?.__TSR_key];let c=!1;for(const t in n){const e=n[t],o=e?.scrollX,s=e?.scrollY;if(Number.isFinite(o)&&Number.isFinite(s)){if(t===\"window\")scrollTo(o,s),c=!0;else if(t)try{const r=document.querySelector(t);r&&(r.scrollLeft=o,r.scrollTop=s)}catch{}}}if(c)return;const i=location.hash.slice(1);if(i){const t=history.state?.__hashScrollIntoViewOptions??!0;if(t){const e=document.getElementById(i);e&&e.scrollIntoView(t)}return}scrollTo(0,0)}";//#endregion//#region node_modules/@tanstack/router-core/dist/esm/scroll-restoration-script/server.jsvar defaultInlineScrollRestorationScript = `(${scroll_restoration_inline_default})(${escapeHtml(JSON.stringify(storageKey))})`;function getScrollRestorationScript(key) { if (key === void 0) return defaultInlineScrollRestorationScript; return `(${scroll_restoration_inline_default})(${escapeHtml(JSON.stringify(storageKey))},${escapeHtml(JSON.stringify(key))})`;}function getScrollRestorationScriptForRouter(router) { if (typeof router.options.scrollRestoration === "function" && !router.options.scrollRestoration({ location: router.latestLocation })) return null; const getKey = router.options.getScrollRestorationKey; if (!getKey) return defaultInlineScrollRestorationScript; const location = router.latestLocation; const userKey = getKey(location); if (userKey === defaultGetScrollRestorationKey(location)) return defaultInlineScrollRestorationScript; return getScrollRestorationScript(userKey);}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/scroll-restoration.jsfunction ScrollRestoration() { const script = getScrollRestorationScriptForRouter(useRouter()); if (!script) return null; return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ScriptOnce, { children: script });}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/Match.jsvar matchViewFieldsEqual = (a, b) => a.routeId === b.routeId && a._displayPending === b._displayPending;var Match = import_react.memo(function MatchImpl({ matchId }) { const router = useRouter(); { const match = router.stores.matchStores.get(matchId)?.get(); if (!match) invariant(); const routeId = match.routeId; const parentRouteId = router.routesById[routeId].parentRoute?.id; return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(MatchView, { router, matchId, resetKey: router.stores.loadedAt.get(), matchState: { routeId, ssr: match.ssr, _displayPending: match._displayPending, parentRouteId } }); } const matchStore = router.stores.matchStores.get(matchId); if (!matchStore) invariant(); const resetKey = useStore(router.stores.loadedAt, (loadedAt) => loadedAt); const match = useStore(matchStore, (value) => value, matchViewFieldsEqual); return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(MatchView, { router, matchId, resetKey, matchState: import_react.useMemo(() => { const routeId = match.routeId; const parentRouteId = router.routesById[routeId].parentRoute?.id; return { routeId, ssr: match.ssr, _displayPending: match._displayPending, parentRouteId }; }, [ match._displayPending, match.routeId, match.ssr, router.routesById ]) });});function MatchView({ router, matchId, resetKey, matchState }) { const route = router.routesById[matchState.routeId]; const PendingComponent = route.options.pendingComponent ?? router.options.defaultPendingComponent; const pendingElement = PendingComponent ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(PendingComponent, {}) : null; const routeErrorComponent = route.options.errorComponent ?? router.options.defaultErrorComponent; const routeOnCatch = route.options.onCatch ?? router.options.defaultOnCatch; const routeNotFoundComponent = route.isRoot ? route.options.notFoundComponent ?? router.options.notFoundRoute?.options.component : route.options.notFoundComponent; const resolvedNoSsr = matchState.ssr === false || matchState.ssr === "data-only"; const ResolvedSuspenseBoundary = (!route.isRoot || route.options.wrapInSuspense || resolvedNoSsr) && (route.options.wrapInSuspense ?? PendingComponent ?? (route.options.errorComponent?.preload || resolvedNoSsr)) ? import_react.Suspense : SafeFragment; const ResolvedCatchBoundary = routeErrorComponent ? CatchBoundary : SafeFragment; const ResolvedNotFoundBoundary = routeNotFoundComponent ? CatchNotFound : SafeFragment; return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(route.isRoot ? route.options.shellComponent ?? SafeFragment : SafeFragment, { children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)(matchContext.Provider, { value: matchId, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ResolvedSuspenseBoundary, { fallback: pendingElement, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ResolvedCatchBoundary, { getResetKey: () => resetKey, errorComponent: routeErrorComponent || ErrorComponent, onCatch: (error, errorInfo) => { if (isNotFound(error)) { error.routeId ??= matchState.routeId; throw error; } routeOnCatch?.(error, errorInfo); }, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ResolvedNotFoundBoundary, { fallback: (error) => { error.routeId ??= matchState.routeId; if (!routeNotFoundComponent || error.routeId && error.routeId !== matchState.routeId || !error.routeId && !route.isRoot) throw error; return import_react.createElement(routeNotFoundComponent, error); }, children: resolvedNoSsr || matchState._displayPending ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ClientOnly, { fallback: pendingElement, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(MatchInner, { matchId }) }) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(MatchInner, { matchId }) }) }) }) }), matchState.parentRouteId === "__root__" ? /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)(OnRendered, {}), router.options.scrollRestoration && true ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ScrollRestoration, {}) : null] }) : null] });}function OnRendered() { useRouter(); return null;}var MatchInner = import_react.memo(function MatchInnerImpl({ matchId }) { const router = useRouter(); const getMatchPromise = (match, key) => { return router.getMatch(match.id)?._nonReactive[key] ?? match._nonReactive[key]; }; { const match = router.stores.matchStores.get(matchId)?.get(); if (!match) invariant(); const routeId = match.routeId; const route = router.routesById[routeId]; const remountDeps = (router.routesById[routeId].options.remountDeps ?? router.options.defaultRemountDeps)?.({ routeId, loaderDeps: match.loaderDeps, params: match._strictParams, search: match._strictSearch }); const key = remountDeps ? JSON.stringify(remountDeps) : void 0; const Comp = route.options.component ?? router.options.defaultComponent; const out = Comp ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Comp, {}, key) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Outlet, {}); if (match._displayPending) throw getMatchPromise(match, "displayPendingPromise"); if (match._forcePending) throw getMatchPromise(match, "minPendingPromise"); if (match.status === "pending") throw getMatchPromise(match, "loadPromise"); if (match.status === "notFound") { if (!isNotFound(match.error)) invariant(); return renderRouteNotFound(router, route, match.error); } if (match.status === "redirected") { if (!isRedirect(match.error)) invariant(); throw getMatchPromise(match, "loadPromise"); } if (match.status === "error") return /* @__PURE__ */ (0, import_jsx_runtime.jsx)((route.options.errorComponent ?? router.options.defaultErrorComponent) || ErrorComponent, { error: match.error, reset: void 0, info: { componentStack: "" } }); return out; } const matchStore = router.stores.matchStores.get(matchId); if (!matchStore) invariant(); const match = useStore(matchStore, (value) => value); const routeId = match.routeId; const route = router.routesById[routeId]; const key = import_react.useMemo(() => { const remountDeps = (router.routesById[routeId].options.remountDeps ?? router.options.defaultRemountDeps)?.({ routeId, loaderDeps: match.loaderDeps, params: match._strictParams, search: match._strictSearch }); return remountDeps ? JSON.stringify(remountDeps) : void 0; }, [ routeId, match.loaderDeps, match._strictParams, match._strictSearch, router.options.defaultRemountDeps, router.routesById ]); const out = import_react.useMemo(() => { const Comp = route.options.component ?? router.options.defaultComponent; if (Comp) return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Comp, {}, key); return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Outlet, {}); }, [ key, route.options.component, router.options.defaultComponent ]); if (match._displayPending) throw getMatchPromise(match, "displayPendingPromise"); if (match._forcePending) throw getMatchPromise(match, "minPendingPromise"); if (match.status === "pending") { if (route.options.pendingMinMs ?? router.options.defaultPendingMinMs) { const routerMatch = router.getMatch(match.id); if (routerMatch && !routerMatch._nonReactive.minPendingPromise) {} } throw getMatchPromise(match, "loadPromise"); } if (match.status === "notFound") { if (!isNotFound(match.error)) invariant(); return renderRouteNotFound(router, route, match.error); } if (match.status === "redirected") { if (!isRedirect(match.error)) invariant(); throw getMatchPromise(match, "loadPromise"); } if (match.status === "error") return /* @__PURE__ */ (0, import_jsx_runtime.jsx)((route.options.errorComponent ?? router.options.defaultErrorComponent) || ErrorComponent, { error: match.error, reset: void 0, info: { componentStack: "" } }); return out;});/*** Render the next child match in the route tree. Typically used inside* a route component to render nested routes.** @link https://tanstack.com/router/latest/docs/framework/react/api/router/outletComponent*/var Outlet = import_react.memo(function OutletImpl() { const router = useRouter(); const matchId = import_react.useContext(matchContext); let routeId; let parentGlobalNotFound = false; let childMatchId; { const matches = router.stores.matches.get(); const parentIndex = matchId ? matches.findIndex((match) => match.id === matchId) : -1; const parentMatch = parentIndex >= 0 ? matches[parentIndex] : void 0; routeId = parentMatch?.routeId; parentGlobalNotFound = parentMatch?.globalNotFound ?? false; childMatchId = parentIndex >= 0 ? matches[parentIndex + 1]?.id : void 0; } const route = routeId ? router.routesById[routeId] : void 0; const pendingElement = router.options.defaultPendingComponent ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(router.options.defaultPendingComponent, {}) : null; if (parentGlobalNotFound) { if (!route) invariant(); return renderRouteNotFound(router, route, void 0); } if (!childMatchId) return null; const nextMatch = /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Match, { matchId: childMatchId }); if (routeId === "__root__") return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react.Suspense, { fallback: pendingElement, children: nextMatch }); return nextMatch;});//#endregion//#region node_modules/@tanstack/react-router/dist/esm/Matches.js/*** Internal component that renders the router's active match tree with* suspense, error, and not-found boundaries. Rendered by `RouterProvider`.*/function Matches() { const router = useRouter(); const PendingComponent = router.routesById["__root__"].options.pendingComponent ?? router.options.defaultPendingComponent; const pendingElement = PendingComponent ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(PendingComponent, {}) : null; const inner = /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SafeFragment, { fallback: pendingElement, children: [false, /* @__PURE__ */ (0, import_jsx_runtime.jsx)(MatchesInner, {})] }); return router.options.InnerWrap ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(router.options.InnerWrap, { children: inner }) : inner;}function MatchesInner() { const router = useRouter(); const matchId = router.stores.firstId.get(); const resetKey = router.stores.loadedAt.get(); const matchComponent = matchId ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Match, { matchId }) : null; return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(matchContext.Provider, { value: matchId, children: router.options.disableGlobalCatchBoundary ? matchComponent : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(CatchBoundary, { getResetKey: () => resetKey, errorComponent: ErrorComponent, onCatch: void 0, children: matchComponent }) });}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/routerStores.jsvar getStoreFactory = (opts) => { return { createMutableStore: createNonReactiveMutableStore, createReadonlyStore: createNonReactiveReadonlyStore, batch: (fn) => fn() };};//#endregion//#region node_modules/@tanstack/react-router/dist/esm/router.js/*** Creates a new Router instance for React.** Pass the returned router to `RouterProvider` to enable routing.* Notable options: `routeTree` (your route definitions) and `context`* (required if the root route was created with `createRootRouteWithContext`).** @param options Router options used to configure the router.* @returns A Router instance to be provided to `RouterProvider`.* @link https://tanstack.com/router/latest/docs/framework/react/api/router/createRouterFunction*/var createRouter = (options) => { return new Router(options);};var Router = class extends RouterCore { constructor(options) { super(options, getStoreFactory); }};//#endregion//#region node_modules/@tanstack/react-router/dist/esm/RouterProvider.js/*** Low-level provider that places the router into React context and optionally* updates router options from props. Most apps should use `RouterProvider`.*/function RouterContextProvider({ router, children, ...rest }) { if (hasKeys(rest)) router.update({ ...router.options, ...rest, context: { ...router.options.context, ...rest.context } }); const provider = /* @__PURE__ */ (0, import_jsx_runtime.jsx)(routerContext.Provider, { value: router, children }); if (router.options.Wrap) return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(router.options.Wrap, { children: provider }); return provider;}/*** Top-level component that renders the active route matches and provides the* router to the React tree via context.** Accepts the same options as `createRouter` via props to update the router* instance after creation.** @link https://tanstack.com/router/latest/docs/framework/react/api/router/createRouterFunction*/function RouterProvider({ router, ...rest }) { return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(RouterContextProvider, { router, ...rest, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Matches, {}) });}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/Asset.jsvar noopScriptHandler = () => {};function setScriptAttrs(script, attrs) { if (!attrs) return; for (const [key, value] of Object.entries(attrs)) if (key !== "suppressHydrationWarning" && value !== void 0 && value !== false) script.setAttribute(key, typeof value === "boolean" ? "" : String(value));}function Asset(asset) { const { attrs, children, nonce, preventScriptHoist } = asset; switch (asset.tag) { case "title": return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { ...attrs, suppressHydrationWarning: true, children }); case "meta": return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("meta", { ...attrs, suppressHydrationWarning: true }); case "link": return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("link", { ...attrs, precedence: attrs?.precedence ?? (attrs?.rel === "stylesheet" ? "default" : void 0), nonce, suppressHydrationWarning: true }); case "style": if (asset.inlineCss && false); return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("style", { ...attrs, dangerouslySetInnerHTML: { __html: children }, nonce }); case "script": return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Script, { attrs, preventScriptHoist, children }); default: return null; }}function Script({ attrs, children, preventScriptHoist }) { useRouter(); useHydrated(); const dataScript = typeof attrs?.type === "string" && attrs.type !== "" && attrs.type !== "text/javascript" && attrs.type !== "module"; import_react.useEffect(() => { if (dataScript) return; if (attrs?.src) { const normSrc = (() => { try { const base = document.baseURI || window.location.href; return new URL(attrs.src, base).href; } catch { return attrs.src; } })(); for (const el of document.querySelectorAll("script[src]")) if (el.src === normSrc) return; const script = document.createElement("script"); setScriptAttrs(script, attrs); document.head.appendChild(script); return () => script.remove(); } if (typeof children === "string") { const typeAttr = typeof attrs?.type === "string" ? attrs.type : "text/javascript"; const nonceAttr = typeof attrs?.nonce === "string" ? attrs.nonce : void 0; for (const el of document.querySelectorAll("script:not([src])")) { if (!(el instanceof HTMLScriptElement)) continue; const sType = el.getAttribute("type") ?? "text/javascript"; const sNonce = el.getAttribute("nonce") ?? void 0; if (el.textContent === children && sType === typeAttr && sNonce === nonceAttr) return; } const script = document.createElement("script"); script.textContent = children; setScriptAttrs(script, attrs); document.head.appendChild(script); return () => script.remove(); } }, [ attrs, children, dataScript ]); if (attrs?.src) { if (!preventScriptHoist) return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("script", { ...attrs, suppressHydrationWarning: true }); return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("script", { ...attrs, onLoad: noopScriptHandler, suppressHydrationWarning: true }); } if (typeof children === "string") return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("script", { ...attrs, dangerouslySetInnerHTML: { __html: children }, suppressHydrationWarning: true }); return null;}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/headContentUtils.jsfunction buildTagsFromMatches(router, nonce, matches, assetCrossOrigin) { const routeMeta = matches.map((match) => match.meta).filter((meta) => meta !== void 0); const resultMeta = []; const metaByAttribute = {}; let title; for (let i = routeMeta.length - 1; i >= 0; i--) { const metas = routeMeta[i]; for (let j = metas.length - 1; j >= 0; j--) { const m = metas[j]; if (!m) continue; if (m.title) { if (!title) title = { tag: "title", children: m.title }; } else if ("script:ld+json" in m) try { const json = JSON.stringify(m["script:ld+json"]); resultMeta.push({ tag: "script", attrs: { type: "application/ld+json" }, children: escapeHtml(json) }); } catch {} else { const attribute = m.name ?? m.property; if (attribute) if (metaByAttribute[attribute]) continue; else metaByAttribute[attribute] = true; resultMeta.push({ tag: "meta", attrs: { ...m, nonce } }); } } } if (title) resultMeta.push(title); if (nonce) resultMeta.push({ tag: "meta", attrs: { property: "csp-nonce", content: nonce } }); resultMeta.reverse(); const constructedLinks = matches.flatMap((match) => match.links ?? []).filter((link) => link !== void 0).map((link) => ({ tag: "link", attrs: { ...link, nonce } })); const manifest = router.ssr?.manifest; const manifestCssTags = []; if (manifest) { matches.forEach((match) => { (manifest.routes[match.routeId]?.css)?.forEach((link) => { const resolvedLink = resolveManifestCssLink(link); manifestCssTags.push({ tag: "link", attrs: { rel: "stylesheet", ...resolvedLink, crossOrigin: getAssetCrossOrigin(assetCrossOrigin, "stylesheet") ?? resolvedLink.crossOrigin, suppressHydrationWarning: true, nonce } }); }); }); if (manifest.inlineStyle) manifestCssTags.push({ tag: "style", attrs: { ...manifest.inlineStyle.attrs, nonce }, children: manifest.inlineStyle.children, inlineCss: true }); } const preloadLinks = []; if (manifest) matches.forEach((match) => { manifest.routes[match.routeId]?.preloads?.forEach((preload) => { preloadLinks.push({ tag: "link", attrs: { ...getScriptPreloadAttrs(manifest, preload, assetCrossOrigin), nonce } }); }); }); const styles = matches.flatMap((match) => match.styles ?? []).filter((style) => style !== void 0).map(({ children, ...attrs }) => ({ tag: "style", attrs: { ...attrs, nonce }, children })); const headScripts = matches.flatMap((match) => match.headScripts ?? []).filter((script) => script !== void 0).map(({ children, ...script }) => ({ tag: "script", attrs: { ...script, nonce }, children })); const tags = []; appendUniqueUserTags(tags, resultMeta); tags.push(...preloadLinks); appendUniqueUserTags(tags, constructedLinks); tags.push(...manifestCssTags); appendUniqueUserTags(tags, styles); appendUniqueUserTags(tags, headScripts); return tags;}/*** Build the list of head/link/meta/script tags to render for active matches.* Used internally by `HeadContent`.*/var useTags = (assetCrossOrigin) => { const router = useRouter(); const nonce = router.options.ssr?.nonce; return buildTagsFromMatches(router, nonce, router.stores.matches.get(), assetCrossOrigin);};//#endregion//#region node_modules/@tanstack/react-router/dist/esm/HeadContent.js/*** Render route-managed head tags (title, meta, links, styles, head scripts).* Place inside the document head of your app shell.* @link https://tanstack.com/router/latest/docs/framework/react/guide/document-head-management*/function HeadContent(props) { const tags = useTags(props.assetCrossOrigin); const nonce = useRouter().options.ssr?.nonce; return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: tags.map((tag) => /* @__PURE__ */ (0, import_react.createElement)(Asset, { ...tag, key: `tsr-meta-${JSON.stringify(tag)}`, nonce })) });}//#endregion//#region node_modules/@tanstack/react-router/dist/esm/Scripts.js/*** Render body script tags collected from route matches and SSR manifests.* Should be placed near the end of the document body.*/var Scripts = () => { const router = useRouter(); const nonce = router.options.ssr?.nonce; const getAssetScripts = (matches) => { const assetScripts = []; const manifest = router.ssr?.manifest; if (!manifest) return []; for (const match of matches) { const scripts = manifest.routes[match.routeId]?.scripts; if (!scripts) continue; for (const asset of scripts) assetScripts.push({ tag: "script", attrs: { ...asset.attrs, nonce }, children: asset.children, ...typeof asset.attrs?.src === "string" ? { preventScriptHoist: true } : {} }); } return assetScripts; }; const getScripts = (matches) => matches.map((match) => match.scripts).flat(1).filter(Boolean).map(({ children, ...script }) => ({ tag: "script", attrs: { ...script, suppressHydrationWarning: true, nonce }, children })); { const activeMatches = router.stores.matches.get(); const assetScripts = getAssetScripts(activeMatches); return renderScripts(router, getScripts(activeMatches), assetScripts); } const assetScripts = useStore(router.stores.matches, getAssetScripts, deepEqual); return renderScripts(router, useStore(router.stores.matches, getScripts, deepEqual), assetScripts);};function renderScripts(router, scripts, assetScripts) { const allScripts = [...scripts, ...assetScripts]; if (router.serverSsr) { const serverBufferedScript = router.serverSsr.takeBufferedScripts(); if (serverBufferedScript) allScripts.unshift(serverBufferedScript); } return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: allScripts.map((asset, i) => /* @__PURE__ */ (0, import_react.createElement)(Asset, { ...asset, key: `tsr-scripts-${asset.tag}-${i}` })) });}//#endregion//#region node_modules/react-dom/cjs/react-dom-server-legacy.node.production.js/*** @license React* react-dom-server-legacy.node.production.js** Copyright (c) Meta Platforms, Inc. and affiliates.** This source code is licensed under the MIT license found in the* LICENSE file in the root directory of this source tree.*/var require_react_dom_server_legacy_node_production = /* @__PURE__ */ __commonJSMin(((exports) => { var React = require_react(), ReactDOM = require_react_dom(), REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_SCOPE_TYPE = Symbol.for("react.scope"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"), REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"), REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"), MAYBE_ITERATOR_SYMBOL = Symbol.iterator; function getIteratorFn(maybeIterable) { if (null === maybeIterable || "object" !== typeof maybeIterable) return null; maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"]; return "function" === typeof maybeIterable ? maybeIterable : null; } var isArrayImpl = Array.isArray; function murmurhash3_32_gc(key, seed) { var remainder = key.length & 3; var bytes = key.length - remainder; var h1 = seed; for (seed = 0; seed < bytes;) { var k1 = key.charCodeAt(seed) & 255 | (key.charCodeAt(++seed) & 255) << 8 | (key.charCodeAt(++seed) & 255) << 16 | (key.charCodeAt(++seed) & 255) << 24; ++seed; k1 = 3432918353 * (k1 & 65535) + ((3432918353 * (k1 >>> 16) & 65535) << 16) & 4294967295; k1 = k1 << 15 | k1 >>> 17; k1 = 461845907 * (k1 & 65535) + ((461845907 * (k1 >>> 16) & 65535) << 16) & 4294967295; h1 ^= k1; h1 = h1 << 13 | h1 >>> 19; h1 = 5 * (h1 & 65535) + ((5 * (h1 >>> 16) & 65535) << 16) & 4294967295; h1 = (h1 & 65535) + 27492 + (((h1 >>> 16) + 58964 & 65535) << 16); } k1 = 0; switch (remainder) { case 3: k1 ^= (key.charCodeAt(seed + 2) & 255) << 16; case 2: k1 ^= (key.charCodeAt(seed + 1) & 255) << 8; case 1: k1 ^= key.charCodeAt(seed) & 255, k1 = 3432918353 * (k1 & 65535) + ((3432918353 * (k1 >>> 16) & 65535) << 16) & 4294967295, k1 = k1 << 15 | k1 >>> 17, h1 ^= 461845907 * (k1 & 65535) + ((461845907 * (k1 >>> 16) & 65535) << 16) & 4294967295; } h1 ^= key.length; h1 ^= h1 >>> 16; h1 = 2246822507 * (h1 & 65535) + ((2246822507 * (h1 >>> 16) & 65535) << 16) & 4294967295; h1 ^= h1 >>> 13; h1 = 3266489909 * (h1 & 65535) + ((3266489909 * (h1 >>> 16) & 65535) << 16) & 4294967295; return (h1 ^ h1 >>> 16) >>> 0; } var assign = Object.assign, hasOwnProperty = Object.prototype.hasOwnProperty, VALID_ATTRIBUTE_NAME_REGEX = RegExp("^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"), illegalAttributeNameCache = {}, validatedAttributeNameCache = {}; function isAttributeNameSafe(attributeName) { if (hasOwnProperty.call(validatedAttributeNameCache, attributeName)) return !0; if (hasOwnProperty.call(illegalAttributeNameCache, attributeName)) return !1; if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName)) return validatedAttributeNameCache[attributeName] = !0; illegalAttributeNameCache[attributeName] = !0; return !1; } var unitlessNumbers = new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" ")), aliases = new Map([ ["acceptCharset", "accept-charset"], ["htmlFor", "for"], ["httpEquiv", "http-equiv"], ["crossOrigin", "crossorigin"], ["accentHeight", "accent-height"], ["alignmentBaseline", "alignment-baseline"], ["arabicForm", "arabic-form"], ["baselineShift", "baseline-shift"], ["capHeight", "cap-height"], ["clipPath", "clip-path"], ["clipRule", "clip-rule"], ["colorInterpolation", "color-interpolation"], ["colorInterpolationFilters", "color-interpolation-filters"], ["colorProfile", "color-profile"], ["colorRendering", "color-rendering"], ["dominantBaseline", "dominant-baseline"], ["enableBackground", "enable-background"], ["fillOpacity", "fill-opacity"], ["fillRule", "fill-rule"], ["floodColor", "flood-color"], ["floodOpacity", "flood-opacity"], ["fontFamily", "font-family"], ["fontSize", "font-size"], ["fontSizeAdjust", "font-size-adjust"], ["fontStretch", "font-stretch"], ["fontStyle", "font-style"], ["fontVariant", "font-variant"], ["fontWeight", "font-weight"], ["glyphName", "glyph-name"], ["glyphOrientationHorizontal", "glyph-orientation-horizontal"], ["glyphOrientationVertical", "glyph-orientation-vertical"], ["horizAdvX", "horiz-adv-x"], ["horizOriginX", "horiz-origin-x"], ["imageRendering", "image-rendering"], ["letterSpacing", "letter-spacing"], ["lightingColor", "lighting-color"], ["markerEnd", "marker-end"], ["markerMid", "marker-mid"], ["markerStart", "marker-start"], ["overlinePosition", "overline-position"], ["overlineThickness", "overline-thickness"], ["paintOrder", "paint-order"], ["panose-1", "panose-1"], ["pointerEvents", "pointer-events"], ["renderingIntent", "rendering-intent"], ["shapeRendering", "shape-rendering"], ["stopColor", "stop-color"], ["stopOpacity", "stop-opacity"], ["strikethroughPosition", "strikethrough-position"], ["strikethroughThickness", "strikethrough-thickness"], ["strokeDasharray", "stroke-dasharray"], ["strokeDashoffset", "stroke-dashoffset"], ["strokeLinecap", "stroke-linecap"], ["strokeLinejoin", "stroke-linejoin"], ["strokeMiterlimit", "stroke-miterlimit"], ["strokeOpacity", "stroke-opacity"], ["strokeWidth", "stroke-width"], ["textAnchor", "text-anchor"], ["textDecoration", "text-decoration"], ["textRendering", "text-rendering"], ["transformOrigin", "transform-origin"], ["underlinePosition", "underline-position"], ["underlineThickness", "underline-thickness"], ["unicodeBidi", "unicode-bidi"], ["unicodeRange", "unicode-range"], ["unitsPerEm", "units-per-em"], ["vAlphabetic", "v-alphabetic"], ["vHanging", "v-hanging"], ["vIdeographic", "v-ideographic"], ["vMathematical", "v-mathematical"], ["vectorEffect", "vector-effect"], ["vertAdvY", "vert-adv-y"], ["vertOriginX", "vert-origin-x"], ["vertOriginY", "vert-origin-y"], ["wordSpacing", "word-spacing"], ["writingMode", "writing-mode"], ["xmlnsXlink", "xmlns:xlink"], ["xHeight", "x-height"] ]), matchHtmlRegExp = /["'&<>]/; function escapeTextForBrowser(text) { if ("boolean" === typeof text || "number" === typeof text || "bigint" === typeof text) return "" + text; text = "" + text; var match = matchHtmlRegExp.exec(text); if (match) { var html = "", index, lastIndex = 0; for (index = match.index; index < text.length; index++) { switch (text.charCodeAt(index)) { case 34: match = """; break; case 38: match = "&"; break; case 39: match = "'"; break; case 60: match = "<"; break; case 62: match = ">"; break; default: continue; } lastIndex !== index && (html += text.slice(lastIndex, index)); lastIndex = index + 1; html += match; } text = lastIndex !== index ? html + text.slice(lastIndex, index) : html; } return text; } var uppercasePattern = /([A-Z])/g, msPattern = /^ms-/, isJavaScriptProtocol = /^[\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 sanitizeURL(url) { return isJavaScriptProtocol.test("" + url) ? "javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')" : url; } var ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, ReactDOMSharedInternals = ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, sharedNotPendingObject = { pending: !1, data: null, method: null, action: null }, previousDispatcher = ReactDOMSharedInternals.d; ReactDOMSharedInternals.d = { f: previousDispatcher.f, r: previousDispatcher.r, D: prefetchDNS, C: preconnect, L: preload, m: preloadModule, X: preinitScript, S: preinitStyle, M: preinitModuleScript }; var PRELOAD_NO_CREDS = [], currentlyFlushingRenderState = null, scriptRegex = /(<\/|<)(s)(cript)/gi; function scriptReplacer(match, prefix, s, suffix) { return "" + prefix + ("s" === s ? "\\u0073" : "\\u0053") + suffix; } function createResumableState(identifierPrefix, externalRuntimeConfig, bootstrapScriptContent, bootstrapScripts, bootstrapModules) { return { idPrefix: void 0 === identifierPrefix ? "" : identifierPrefix, nextFormID: 0, streamingFormat: 0, bootstrapScriptContent, bootstrapScripts, bootstrapModules, instructions: 0, hasBody: !1, hasHtml: !1, unknownResources: {}, dnsResources: {}, connectResources: { default: {}, anonymous: {}, credentials: {} }, imageResources: {}, styleResources: {}, scriptResources: {}, moduleUnknownResources: {}, moduleScriptResources: {} }; } function createFormatContext(insertionMode, selectedValue, tagScope, viewTransition) { return { insertionMode, selectedValue, tagScope, viewTransition }; } function getChildFormatContext(parentContext, type, props) { var subtreeScope = parentContext.tagScope & -25; switch (type) { case "noscript": return createFormatContext(2, null, subtreeScope | 1, null); case "select": return createFormatContext(2, null != props.value ? props.value : props.defaultValue, subtreeScope, null); case "svg": return createFormatContext(4, null, subtreeScope, null); case "picture": return createFormatContext(2, null, subtreeScope | 2, null); case "math": return createFormatContext(5, null, subtreeScope, null); case "foreignObject": return createFormatContext(2, null, subtreeScope, null); case "table": return createFormatContext(6, null, subtreeScope, null); case "thead": case "tbody": case "tfoot": return createFormatContext(7, null, subtreeScope, null); case "colgroup": return createFormatContext(9, null, subtreeScope, null); case "tr": return createFormatContext(8, null, subtreeScope, null); case "head": if (2 > parentContext.insertionMode) return createFormatContext(3, null, subtreeScope, null); break; case "html": if (0 === parentContext.insertionMode) return createFormatContext(1, null, subtreeScope, null); } return 6 <= parentContext.insertionMode || 2 > parentContext.insertionMode ? createFormatContext(2, null, subtreeScope, null) : parentContext.tagScope !== subtreeScope ? createFormatContext(parentContext.insertionMode, parentContext.selectedValue, subtreeScope, null) : parentContext; } function getSuspenseViewTransition(parentViewTransition) { return null === parentViewTransition ? null : { update: parentViewTransition.update, enter: "none", exit: "none", share: parentViewTransition.update, name: parentViewTransition.autoName, autoName: parentViewTransition.autoName, nameIdx: 0 }; } function getSuspenseFallbackFormatContext(resumableState, parentContext) { parentContext.tagScope & 32 && (resumableState.instructions |= 128); return createFormatContext(parentContext.insertionMode, parentContext.selectedValue, parentContext.tagScope | 12, getSuspenseViewTransition(parentContext.viewTransition)); } function getSuspenseContentFormatContext(resumableState, parentContext) { resumableState = getSuspenseViewTransition(parentContext.viewTransition); var subtreeScope = parentContext.tagScope | 16; null !== resumableState && "none" !== resumableState.share && (subtreeScope |= 64); return createFormatContext(parentContext.insertionMode, parentContext.selectedValue, subtreeScope, resumableState); } var styleNameCache = /* @__PURE__ */ new Map(); function pushStyleAttribute(target, style) { if ("object" !== typeof style) throw Error("The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX."); var isFirst = !0, styleName; for (styleName in style) if (hasOwnProperty.call(style, styleName)) { var styleValue = style[styleName]; if (null != styleValue && "boolean" !== typeof styleValue && "" !== styleValue) { if (0 === styleName.indexOf("--")) { var nameChunk = escapeTextForBrowser(styleName); styleValue = escapeTextForBrowser(("" + styleValue).trim()); } else nameChunk = styleNameCache.get(styleName), void 0 === nameChunk && (nameChunk = escapeTextForBrowser(styleName.replace(uppercasePattern, "-$1").toLowerCase().replace(msPattern, "-ms-")), styleNameCache.set(styleName, nameChunk)), styleValue = "number" === typeof styleValue ? 0 === styleValue || unitlessNumbers.has(styleName) ? "" + styleValue : styleValue + "px" : escapeTextForBrowser(("" + styleValue).trim()); isFirst ? (isFirst = !1, target.push(" style=\"", nameChunk, ":", styleValue)) : target.push(";", nameChunk, ":", styleValue); } } isFirst || target.push("\""); } function pushBooleanAttribute(target, name, value) { value && "function" !== typeof value && "symbol" !== typeof value && target.push(" ", name, "=\"\""); } function pushStringAttribute(target, name, value) { "function" !== typeof value && "symbol" !== typeof value && "boolean" !== typeof value && target.push(" ", name, "=\"", escapeTextForBrowser(value), "\""); } var actionJavaScriptURL = escapeTextForBrowser("javascript:throw new Error('React form unexpectedly submitted.')"); function pushAdditionalFormField(value, key) { this.push("<input type=\"hidden\""); validateAdditionalFormField(value); pushStringAttribute(this, "name", key); pushStringAttribute(this, "value", value); this.push("/>"); } function validateAdditionalFormField(value) { if ("string" !== typeof value) throw Error("File/Blob fields are not yet supported in progressive forms. Will fallback to client hydration."); } function getCustomFormFields(resumableState, formAction) { if ("function" === typeof formAction.$$FORM_ACTION) { var id = resumableState.nextFormID++; resumableState = resumableState.idPrefix + id; try { var customFields = formAction.$$FORM_ACTION(resumableState); if (customFields) customFields.data?.forEach(validateAdditionalFormField); return customFields; } catch (x) { if ("object" === typeof x && null !== x && "function" === typeof x.then) throw x; } } return null; } function pushFormActionAttribute(target, resumableState, renderState, formAction, formEncType, formMethod, formTarget, name) { var formData = null; if ("function" === typeof formAction) { var customFields = getCustomFormFields(resumableState, formAction); null !== customFields ? (name = customFields.name, formAction = customFields.action || "", formEncType = customFields.encType, formMethod = customFields.method, formTarget = customFields.target, formData = customFields.data) : (target.push(" ", "formAction", "=\"", actionJavaScriptURL, "\""), formTarget = formMethod = formEncType = formAction = name = null, injectFormReplayingRuntime(resumableState, renderState)); } null != name && pushAttribute(target, "name", name); null != formAction && pushAttribute(target, "formAction", formAction); null != formEncType && pushAttribute(target, "formEncType", formEncType); null != formMethod && pushAttribute(target, "formMethod", formMethod); null != formTarget && pushAttribute(target, "formTarget", formTarget); return formData; } function pushAttribute(target, name, value) { switch (name) { case "className": pushStringAttribute(target, "class", value); break; case "tabIndex": pushStringAttribute(target, "tabindex", value); break; case "dir": case "role": case "viewBox": case "width": case "height": pushStringAttribute(target, name, value); break; case "style": pushStyleAttribute(target, value); break; case "src": case "href": if ("" === value) break; case "action": case "formAction": if (null == value || "function" === typeof value || "symbol" === typeof value || "boolean" === typeof value) break; value = sanitizeURL("" + value); target.push(" ", name, "=\"", escapeTextForBrowser(value), "\""); break; case "defaultValue": case "defaultChecked": case "innerHTML": case "suppressContentEditableWarning": case "suppressHydrationWarning": case "ref": break; case "autoFocus": case "multiple": case "muted": pushBooleanAttribute(target, name.toLowerCase(), value); break; case "xlinkHref": if ("function" === typeof value || "symbol" === typeof value || "boolean" === typeof value) break; value = sanitizeURL("" + value); target.push(" ", "xlink:href", "=\"", escapeTextForBrowser(value), "\""); break; case "contentEditable": case "spellCheck": case "draggable": case "value": case "autoReverse": case "externalResourcesRequired": case "focusable": case "preserveAlpha": "function" !== typeof value && "symbol" !== typeof value && target.push(" ", name, "=\"", escapeTextForBrowser(value), "\""); break; case "inert": case "allowFullScreen": case "async": case "autoPlay": case "controls": case "default": case "defer": case "disabled": case "disablePictureInPicture": case "disableRemotePlayback": case "formNoValidate": case "hidden": case "loop": case "noModule": case "noValidate": case "open": case "playsInline": case "readOnly": case "required": case "reversed": case "scoped": case "seamless": case "itemScope": value && "function" !== typeof value && "symbol" !== typeof value && target.push(" ", name, "=\"\""); break; case "capture": case "download": !0 === value ? target.push(" ", name, "=\"\"") : !1 !== value && "function" !== typeof value && "symbol" !== typeof value && target.push(" ", name, "=\"", escapeTextForBrowser(value), "\""); break; case "cols": case "rows": case "size": case "span": "function" !== typeof value && "symbol" !== typeof value && !isNaN(value) && 1 <= value && target.push(" ", name, "=\"", escapeTextForBrowser(value), "\""); break; case "rowSpan": case "start": "function" === typeof value || "symbol" === typeof value || isNaN(value) || target.push(" ", name, "=\"", escapeTextForBrowser(value), "\""); break; case "xlinkActuate": pushStringAttribute(target, "xlink:actuate", value); break; case "xlinkArcrole": pushStringAttribute(target, "xlink:arcrole", value); break; case "xlinkRole": pushStringAttribute(target, "xlink:role", value); break; case "xlinkShow": pushStringAttribute(target, "xlink:show", value); break; case "xlinkTitle": pushStringAttribute(target, "xlink:title", value); break; case "xlinkType": pushStringAttribute(target, "xlink:type", value); break; case "xmlBase": pushStringAttribute(target, "xml:base", value); break; case "xmlLang": pushStringAttribute(target, "xml:lang", value); break; case "xmlSpace": pushStringAttribute(target, "xml:space", value); break; default: if (!(2 < name.length) || "o" !== name[0] && "O" !== name[0] || "n" !== name[1] && "N" !== name[1]) { if (name = aliases.get(name) || name, isAttributeNameSafe(name)) { switch (typeof value) { case "function": case "symbol": return; case "boolean": var prefix$8 = name.toLowerCase().slice(0, 5); if ("data-" !== prefix$8 && "aria-" !== prefix$8) return; } target.push(" ", name, "=\"", escapeTextForBrowser(value), "\""); } } } } function pushInnerHTML(target, innerHTML, children) { if (null != innerHTML) { if (null != children) throw Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`."); if ("object" !== typeof innerHTML || !("__html" in innerHTML)) throw Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information."); innerHTML = innerHTML.__html; null !== innerHTML && void 0 !== innerHTML && target.push("" + innerHTML); } } function flattenOptionChildren(children) { var content = ""; React.Children.forEach(children, function(child) { null != child && (content += child); }); return content; } function injectFormReplayingRuntime(resumableState, renderState) { if (0 === (resumableState.instructions & 16)) { resumableState.instructions |= 16; var preamble = renderState.preamble, bootstrapChunks = renderState.bootstrapChunks; (preamble.htmlChunks || preamble.headChunks) && 0 === bootstrapChunks.length ? (bootstrapChunks.push(renderState.startInlineScript), pushCompletedShellIdAttribute(bootstrapChunks, resumableState), bootstrapChunks.push(">", "addEventListener(\"submit\",function(a){if(!a.defaultPrevented){var c=a.target,d=a.submitter,e=c.action,b=d;if(d){var f=d.getAttribute(\"formAction\");null!=f&&(e=f,b=null)}\"javascript:throw new Error('React form unexpectedly submitted.')\"===e&&(a.preventDefault(),b?(a=document.createElement(\"input\"),a.name=b.name,a.value=b.value,b.parentNode.insertBefore(a,b),b=new FormData(c),a.parentNode.removeChild(a)):b=new FormData(c),a=c.ownerDocument||c,(a.$$reactFormReplay=a.$$reactFormReplay||[]).push(c,d,b))}});", "<\/script>")) : bootstrapChunks.unshift(renderState.startInlineScript, ">", "addEventListener(\"submit\",function(a){if(!a.defaultPrevented){var c=a.target,d=a.submitter,e=c.action,b=d;if(d){var f=d.getAttribute(\"formAction\");null!=f&&(e=f,b=null)}\"javascript:throw new Error('React form unexpectedly submitted.')\"===e&&(a.preventDefault(),b?(a=document.createElement(\"input\"),a.name=b.name,a.value=b.value,b.parentNode.insertBefore(a,b),b=new FormData(c),a.parentNode.removeChild(a)):b=new FormData(c),a=c.ownerDocument||c,(a.$$reactFormReplay=a.$$reactFormReplay||[]).push(c,d,b))}});", "<\/script>"); } } function pushLinkImpl(target, props) { target.push(startChunkForTag("link")); for (var propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": case "dangerouslySetInnerHTML": throw Error("link is a self-closing tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); default: pushAttribute(target, propKey, propValue); } } target.push("/>"); return null; } var styleRegex = /(<\/|<)(s)(tyle)/gi; function styleReplacer(match, prefix, s, suffix) { return "" + prefix + ("s" === s ? "\\73 " : "\\53 ") + suffix; } function pushSelfClosing(target, props, tag) { target.push(startChunkForTag(tag)); for (var propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": case "dangerouslySetInnerHTML": throw Error(tag + " is a self-closing tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); default: pushAttribute(target, propKey, propValue); } } target.push("/>"); return null; } function pushTitleImpl(target, props) { target.push(startChunkForTag("title")); var children = null, innerHTML = null, propKey; for (propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": children = propValue; break; case "dangerouslySetInnerHTML": innerHTML = propValue; break; default: pushAttribute(target, propKey, propValue); } } target.push(">"); props = Array.isArray(children) ? 2 > children.length ? children[0] : null : children; "function" !== typeof props && "symbol" !== typeof props && null !== props && void 0 !== props && target.push(escapeTextForBrowser("" + props)); pushInnerHTML(target, innerHTML, children); target.push(endChunkForTag("title")); return null; } function pushScriptImpl(target, props) { target.push(startChunkForTag("script")); var children = null, innerHTML = null, propKey; for (propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": children = propValue; break; case "dangerouslySetInnerHTML": innerHTML = propValue; break; default: pushAttribute(target, propKey, propValue); } } target.push(">"); pushInnerHTML(target, innerHTML, children); "string" === typeof children && target.push(("" + children).replace(scriptRegex, scriptReplacer)); target.push(endChunkForTag("script")); return null; } function pushStartSingletonElement(target, props, tag) { target.push(startChunkForTag(tag)); var innerHTML = tag = null, propKey; for (propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": tag = propValue; break; case "dangerouslySetInnerHTML": innerHTML = propValue; break; default: pushAttribute(target, propKey, propValue); } } target.push(">"); pushInnerHTML(target, innerHTML, tag); return tag; } function pushStartGenericElement(target, props, tag) { target.push(startChunkForTag(tag)); var innerHTML = tag = null, propKey; for (propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": tag = propValue; break; case "dangerouslySetInnerHTML": innerHTML = propValue; break; default: pushAttribute(target, propKey, propValue); } } target.push(">"); pushInnerHTML(target, innerHTML, tag); return "string" === typeof tag ? (target.push(escapeTextForBrowser(tag)), null) : tag; } var VALID_TAG_REGEX = /^[a-zA-Z][a-zA-Z:_\.\-\d]*$/, validatedTagCache = /* @__PURE__ */ new Map(); function startChunkForTag(tag) { var tagStartChunk = validatedTagCache.get(tag); if (void 0 === tagStartChunk) { if (!VALID_TAG_REGEX.test(tag)) throw Error("Invalid tag: " + tag); tagStartChunk = "<" + tag; validatedTagCache.set(tag, tagStartChunk); } return tagStartChunk; } function pushStartInstance(target$jscomp$0, type, props, resumableState, renderState, preambleState, hoistableState, formatContext, textEmbedded) { switch (type) { case "div": case "span": case "svg": case "path": break; case "a": target$jscomp$0.push(startChunkForTag("a")); var children = null, innerHTML = null, propKey; for (propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": children = propValue; break; case "dangerouslySetInnerHTML": innerHTML = propValue; break; case "href": "" === propValue ? pushStringAttribute(target$jscomp$0, "href", "") : pushAttribute(target$jscomp$0, propKey, propValue); break; default: pushAttribute(target$jscomp$0, propKey, propValue); } } target$jscomp$0.push(">"); pushInnerHTML(target$jscomp$0, innerHTML, children); if ("string" === typeof children) { target$jscomp$0.push(escapeTextForBrowser(children)); var JSCompiler_inline_result = null; } else JSCompiler_inline_result = children; return JSCompiler_inline_result; case "g": case "p": case "li": break; case "select": target$jscomp$0.push(startChunkForTag("select")); var children$jscomp$0 = null, innerHTML$jscomp$0 = null, propKey$jscomp$0; for (propKey$jscomp$0 in props) if (hasOwnProperty.call(props, propKey$jscomp$0)) { var propValue$jscomp$0 = props[propKey$jscomp$0]; if (null != propValue$jscomp$0) switch (propKey$jscomp$0) { case "children": children$jscomp$0 = propValue$jscomp$0; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$0 = propValue$jscomp$0; break; case "defaultValue": case "value": break; default: pushAttribute(target$jscomp$0, propKey$jscomp$0, propValue$jscomp$0); } } target$jscomp$0.push(">"); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$0, children$jscomp$0); return children$jscomp$0; case "option": var selectedValue = formatContext.selectedValue; target$jscomp$0.push(startChunkForTag("option")); var children$jscomp$1 = null, value = null, selected = null, innerHTML$jscomp$1 = null, propKey$jscomp$1; for (propKey$jscomp$1 in props) if (hasOwnProperty.call(props, propKey$jscomp$1)) { var propValue$jscomp$1 = props[propKey$jscomp$1]; if (null != propValue$jscomp$1) switch (propKey$jscomp$1) { case "children": children$jscomp$1 = propValue$jscomp$1; break; case "selected": selected = propValue$jscomp$1; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$1 = propValue$jscomp$1; break; case "value": value = propValue$jscomp$1; default: pushAttribute(target$jscomp$0, propKey$jscomp$1, propValue$jscomp$1); } } if (null != selectedValue) { var stringValue = null !== value ? "" + value : flattenOptionChildren(children$jscomp$1); if (isArrayImpl(selectedValue)) { for (var i = 0; i < selectedValue.length; i++) if ("" + selectedValue[i] === stringValue) { target$jscomp$0.push(" selected=\"\""); break; } } else "" + selectedValue === stringValue && target$jscomp$0.push(" selected=\"\""); } else selected && target$jscomp$0.push(" selected=\"\""); target$jscomp$0.push(">"); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$1, children$jscomp$1); return children$jscomp$1; case "textarea": target$jscomp$0.push(startChunkForTag("textarea")); var value$jscomp$0 = null, defaultValue = null, children$jscomp$2 = null, propKey$jscomp$2; for (propKey$jscomp$2 in props) if (hasOwnProperty.call(props, propKey$jscomp$2)) { var propValue$jscomp$2 = props[propKey$jscomp$2]; if (null != propValue$jscomp$2) switch (propKey$jscomp$2) { case "children": children$jscomp$2 = propValue$jscomp$2; break; case "value": value$jscomp$0 = propValue$jscomp$2; break; case "defaultValue": defaultValue = propValue$jscomp$2; break; case "dangerouslySetInnerHTML": throw Error("`dangerouslySetInnerHTML` does not make sense on <textarea>."); default: pushAttribute(target$jscomp$0, propKey$jscomp$2, propValue$jscomp$2); } } null === value$jscomp$0 && null !== defaultValue && (value$jscomp$0 = defaultValue); target$jscomp$0.push(">"); if (null != children$jscomp$2) { if (null != value$jscomp$0) throw Error("If you supply `defaultValue` on a <textarea>, do not pass children."); if (isArrayImpl(children$jscomp$2)) { if (1 < children$jscomp$2.length) throw Error("<textarea> can only have at most one child."); value$jscomp$0 = "" + children$jscomp$2[0]; } value$jscomp$0 = "" + children$jscomp$2; } "string" === typeof value$jscomp$0 && "\n" === value$jscomp$0[0] && target$jscomp$0.push("\n"); null !== value$jscomp$0 && target$jscomp$0.push(escapeTextForBrowser("" + value$jscomp$0)); return null; case "input": target$jscomp$0.push(startChunkForTag("input")); var name = null, formAction = null, formEncType = null, formMethod = null, formTarget = null, value$jscomp$1 = null, defaultValue$jscomp$0 = null, checked = null, defaultChecked = null, propKey$jscomp$3; for (propKey$jscomp$3 in props) if (hasOwnProperty.call(props, propKey$jscomp$3)) { var propValue$jscomp$3 = props[propKey$jscomp$3]; if (null != propValue$jscomp$3) switch (propKey$jscomp$3) { case "children": case "dangerouslySetInnerHTML": throw Error("input is a self-closing tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); case "name": name = propValue$jscomp$3; break; case "formAction": formAction = propValue$jscomp$3; break; case "formEncType": formEncType = propValue$jscomp$3; break; case "formMethod": formMethod = propValue$jscomp$3; break; case "formTarget": formTarget = propValue$jscomp$3; break; case "defaultChecked": defaultChecked = propValue$jscomp$3; break; case "defaultValue": defaultValue$jscomp$0 = propValue$jscomp$3; break; case "checked": checked = propValue$jscomp$3; break; case "value": value$jscomp$1 = propValue$jscomp$3; break; default: pushAttribute(target$jscomp$0, propKey$jscomp$3, propValue$jscomp$3); } } var formData = pushFormActionAttribute(target$jscomp$0, resumableState, renderState, formAction, formEncType, formMethod, formTarget, name); null !== checked ? pushBooleanAttribute(target$jscomp$0, "checked", checked) : null !== defaultChecked && pushBooleanAttribute(target$jscomp$0, "checked", defaultChecked); null !== value$jscomp$1 ? pushAttribute(target$jscomp$0, "value", value$jscomp$1) : null !== defaultValue$jscomp$0 && pushAttribute(target$jscomp$0, "value", defaultValue$jscomp$0); target$jscomp$0.push("/>"); formData?.forEach(pushAdditionalFormField, target$jscomp$0); return null; case "button": target$jscomp$0.push(startChunkForTag("button")); var children$jscomp$3 = null, innerHTML$jscomp$2 = null, name$jscomp$0 = null, formAction$jscomp$0 = null, formEncType$jscomp$0 = null, formMethod$jscomp$0 = null, formTarget$jscomp$0 = null, propKey$jscomp$4; for (propKey$jscomp$4 in props) if (hasOwnProperty.call(props, propKey$jscomp$4)) { var propValue$jscomp$4 = props[propKey$jscomp$4]; if (null != propValue$jscomp$4) switch (propKey$jscomp$4) { case "children": children$jscomp$3 = propValue$jscomp$4; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$2 = propValue$jscomp$4; break; case "name": name$jscomp$0 = propValue$jscomp$4; break; case "formAction": formAction$jscomp$0 = propValue$jscomp$4; break; case "formEncType": formEncType$jscomp$0 = propValue$jscomp$4; break; case "formMethod": formMethod$jscomp$0 = propValue$jscomp$4; break; case "formTarget": formTarget$jscomp$0 = propValue$jscomp$4; break; default: pushAttribute(target$jscomp$0, propKey$jscomp$4, propValue$jscomp$4); } } var formData$jscomp$0 = pushFormActionAttribute(target$jscomp$0, resumableState, renderState, formAction$jscomp$0, formEncType$jscomp$0, formMethod$jscomp$0, formTarget$jscomp$0, name$jscomp$0); target$jscomp$0.push(">"); formData$jscomp$0?.forEach(pushAdditionalFormField, target$jscomp$0); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$2, children$jscomp$3); if ("string" === typeof children$jscomp$3) { target$jscomp$0.push(escapeTextForBrowser(children$jscomp$3)); var JSCompiler_inline_result$jscomp$0 = null; } else JSCompiler_inline_result$jscomp$0 = children$jscomp$3; return JSCompiler_inline_result$jscomp$0; case "form": target$jscomp$0.push(startChunkForTag("form")); var children$jscomp$4 = null, innerHTML$jscomp$3 = null, formAction$jscomp$1 = null, formEncType$jscomp$1 = null, formMethod$jscomp$1 = null, formTarget$jscomp$1 = null, propKey$jscomp$5; for (propKey$jscomp$5 in props) if (hasOwnProperty.call(props, propKey$jscomp$5)) { var propValue$jscomp$5 = props[propKey$jscomp$5]; if (null != propValue$jscomp$5) switch (propKey$jscomp$5) { case "children": children$jscomp$4 = propValue$jscomp$5; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$3 = propValue$jscomp$5; break; case "action": formAction$jscomp$1 = propValue$jscomp$5; break; case "encType": formEncType$jscomp$1 = propValue$jscomp$5; break; case "method": formMethod$jscomp$1 = propValue$jscomp$5; break; case "target": formTarget$jscomp$1 = propValue$jscomp$5; break; default: pushAttribute(target$jscomp$0, propKey$jscomp$5, propValue$jscomp$5); } } var formData$jscomp$1 = null, formActionName = null; if ("function" === typeof formAction$jscomp$1) { var customFields = getCustomFormFields(resumableState, formAction$jscomp$1); null !== customFields ? (formAction$jscomp$1 = customFields.action || "", formEncType$jscomp$1 = customFields.encType, formMethod$jscomp$1 = customFields.method, formTarget$jscomp$1 = customFields.target, formData$jscomp$1 = customFields.data, formActionName = customFields.name) : (target$jscomp$0.push(" ", "action", "=\"", actionJavaScriptURL, "\""), formTarget$jscomp$1 = formMethod$jscomp$1 = formEncType$jscomp$1 = formAction$jscomp$1 = null, injectFormReplayingRuntime(resumableState, renderState)); } null != formAction$jscomp$1 && pushAttribute(target$jscomp$0, "action", formAction$jscomp$1); null != formEncType$jscomp$1 && pushAttribute(target$jscomp$0, "encType", formEncType$jscomp$1); null != formMethod$jscomp$1 && pushAttribute(target$jscomp$0, "method", formMethod$jscomp$1); null != formTarget$jscomp$1 && pushAttribute(target$jscomp$0, "target", formTarget$jscomp$1); target$jscomp$0.push(">"); null !== formActionName && (target$jscomp$0.push("<input type=\"hidden\""), pushStringAttribute(target$jscomp$0, "name", formActionName), target$jscomp$0.push("/>"), formData$jscomp$1?.forEach(pushAdditionalFormField, target$jscomp$0)); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$3, children$jscomp$4); if ("string" === typeof children$jscomp$4) { target$jscomp$0.push(escapeTextForBrowser(children$jscomp$4)); var JSCompiler_inline_result$jscomp$1 = null; } else JSCompiler_inline_result$jscomp$1 = children$jscomp$4; return JSCompiler_inline_result$jscomp$1; case "menuitem": target$jscomp$0.push(startChunkForTag("menuitem")); for (var propKey$jscomp$6 in props) if (hasOwnProperty.call(props, propKey$jscomp$6)) { var propValue$jscomp$6 = props[propKey$jscomp$6]; if (null != propValue$jscomp$6) switch (propKey$jscomp$6) { case "children": case "dangerouslySetInnerHTML": throw Error("menuitems cannot have `children` nor `dangerouslySetInnerHTML`."); default: pushAttribute(target$jscomp$0, propKey$jscomp$6, propValue$jscomp$6); } } target$jscomp$0.push(">"); return null; case "object": target$jscomp$0.push(startChunkForTag("object")); var children$jscomp$5 = null, innerHTML$jscomp$4 = null, propKey$jscomp$7; for (propKey$jscomp$7 in props) if (hasOwnProperty.call(props, propKey$jscomp$7)) { var propValue$jscomp$7 = props[propKey$jscomp$7]; if (null != propValue$jscomp$7) switch (propKey$jscomp$7) { case "children": children$jscomp$5 = propValue$jscomp$7; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$4 = propValue$jscomp$7; break; case "data": var sanitizedValue = sanitizeURL("" + propValue$jscomp$7); if ("" === sanitizedValue) break; target$jscomp$0.push(" ", "data", "=\"", escapeTextForBrowser(sanitizedValue), "\""); break; default: pushAttribute(target$jscomp$0, propKey$jscomp$7, propValue$jscomp$7); } } target$jscomp$0.push(">"); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$4, children$jscomp$5); if ("string" === typeof children$jscomp$5) { target$jscomp$0.push(escapeTextForBrowser(children$jscomp$5)); var JSCompiler_inline_result$jscomp$2 = null; } else JSCompiler_inline_result$jscomp$2 = children$jscomp$5; return JSCompiler_inline_result$jscomp$2; case "title": var noscriptTagInScope = formatContext.tagScope & 1, isFallback = formatContext.tagScope & 4; if (4 === formatContext.insertionMode || noscriptTagInScope || null != props.itemProp) var JSCompiler_inline_result$jscomp$3 = pushTitleImpl(target$jscomp$0, props); else isFallback ? JSCompiler_inline_result$jscomp$3 = null : (pushTitleImpl(renderState.hoistableChunks, props), JSCompiler_inline_result$jscomp$3 = void 0); return JSCompiler_inline_result$jscomp$3; case "link": var noscriptTagInScope$jscomp$0 = formatContext.tagScope & 1, isFallback$jscomp$0 = formatContext.tagScope & 4, rel = props.rel, href = props.href, precedence = props.precedence; if (4 === formatContext.insertionMode || noscriptTagInScope$jscomp$0 || null != props.itemProp || "string" !== typeof rel || "string" !== typeof href || "" === href) { pushLinkImpl(target$jscomp$0, props); var JSCompiler_inline_result$jscomp$4 = null; } else if ("stylesheet" === props.rel) if ("string" !== typeof precedence || null != props.disabled || props.onLoad || props.onError) JSCompiler_inline_result$jscomp$4 = pushLinkImpl(target$jscomp$0, props); else { var styleQueue = renderState.styles.get(precedence), resourceState = resumableState.styleResources.hasOwnProperty(href) ? resumableState.styleResources[href] : void 0; if (null !== resourceState) { resumableState.styleResources[href] = null; styleQueue || (styleQueue = { precedence: escapeTextForBrowser(precedence), rules: [], hrefs: [], sheets: /* @__PURE__ */ new Map() }, renderState.styles.set(precedence, styleQueue)); var resource = { state: 0, props: assign({}, props, { "data-precedence": props.precedence, precedence: null }) }; if (resourceState) { 2 === resourceState.length && adoptPreloadCredentials(resource.props, resourceState); var preloadResource = renderState.preloads.stylesheets.get(href); preloadResource && 0 < preloadResource.length ? preloadResource.length = 0 : resource.state = 1; } styleQueue.sheets.set(href, resource); hoistableState && hoistableState.stylesheets.add(resource); } else if (styleQueue) { var resource$9 = styleQueue.sheets.get(href); resource$9 && hoistableState && hoistableState.stylesheets.add(resource$9); } textEmbedded && target$jscomp$0.push("<!-- -->"); JSCompiler_inline_result$jscomp$4 = null; } else props.onLoad || props.onError ? JSCompiler_inline_result$jscomp$4 = pushLinkImpl(target$jscomp$0, props) : (textEmbedded && target$jscomp$0.push("<!-- -->"), JSCompiler_inline_result$jscomp$4 = isFallback$jscomp$0 ? null : pushLinkImpl(renderState.hoistableChunks, props)); return JSCompiler_inline_result$jscomp$4; case "script": var noscriptTagInScope$jscomp$1 = formatContext.tagScope & 1, asyncProp = props.async; if ("string" !== typeof props.src || !props.src || !asyncProp || "function" === typeof asyncProp || "symbol" === typeof asyncProp || props.onLoad || props.onError || 4 === formatContext.insertionMode || noscriptTagInScope$jscomp$1 || null != props.itemProp) var JSCompiler_inline_result$jscomp$5 = pushScriptImpl(target$jscomp$0, props); else { var key = props.src; if ("module" === props.type) { var resources = resumableState.moduleScriptResources; var preloads = renderState.preloads.moduleScripts; } else resources = resumableState.scriptResources, preloads = renderState.preloads.scripts; var resourceState$jscomp$0 = resources.hasOwnProperty(key) ? resources[key] : void 0; if (null !== resourceState$jscomp$0) { resources[key] = null; var scriptProps = props; if (resourceState$jscomp$0) { 2 === resourceState$jscomp$0.length && (scriptProps = assign({}, props), adoptPreloadCredentials(scriptProps, resourceState$jscomp$0)); var preloadResource$jscomp$0 = preloads.get(key); preloadResource$jscomp$0 && (preloadResource$jscomp$0.length = 0); } var resource$jscomp$0 = []; renderState.scripts.add(resource$jscomp$0); pushScriptImpl(resource$jscomp$0, scriptProps); } textEmbedded && target$jscomp$0.push("<!-- -->"); JSCompiler_inline_result$jscomp$5 = null; } return JSCompiler_inline_result$jscomp$5; case "style": var noscriptTagInScope$jscomp$2 = formatContext.tagScope & 1, precedence$jscomp$0 = props.precedence, href$jscomp$0 = props.href, nonce = props.nonce; if (4 === formatContext.insertionMode || noscriptTagInScope$jscomp$2 || null != props.itemProp || "string" !== typeof precedence$jscomp$0 || "string" !== typeof href$jscomp$0 || "" === href$jscomp$0) { target$jscomp$0.push(startChunkForTag("style")); var children$jscomp$6 = null, innerHTML$jscomp$5 = null, propKey$jscomp$8; for (propKey$jscomp$8 in props) if (hasOwnProperty.call(props, propKey$jscomp$8)) { var propValue$jscomp$8 = props[propKey$jscomp$8]; if (null != propValue$jscomp$8) switch (propKey$jscomp$8) { case "children": children$jscomp$6 = propValue$jscomp$8; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$5 = propValue$jscomp$8; break; default: pushAttribute(target$jscomp$0, propKey$jscomp$8, propValue$jscomp$8); } } target$jscomp$0.push(">"); var child = Array.isArray(children$jscomp$6) ? 2 > children$jscomp$6.length ? children$jscomp$6[0] : null : children$jscomp$6; "function" !== typeof child && "symbol" !== typeof child && null !== child && void 0 !== child && target$jscomp$0.push(("" + child).replace(styleRegex, styleReplacer)); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$5, children$jscomp$6); target$jscomp$0.push(endChunkForTag("style")); var JSCompiler_inline_result$jscomp$6 = null; } else { var styleQueue$jscomp$0 = renderState.styles.get(precedence$jscomp$0); if (null !== (resumableState.styleResources.hasOwnProperty(href$jscomp$0) ? resumableState.styleResources[href$jscomp$0] : void 0)) { resumableState.styleResources[href$jscomp$0] = null; styleQueue$jscomp$0 || (styleQueue$jscomp$0 = { precedence: escapeTextForBrowser(precedence$jscomp$0), rules: [], hrefs: [], sheets: /* @__PURE__ */ new Map() }, renderState.styles.set(precedence$jscomp$0, styleQueue$jscomp$0)); var nonceStyle = renderState.nonce.style; if (!nonceStyle || nonceStyle === nonce) { styleQueue$jscomp$0.hrefs.push(escapeTextForBrowser(href$jscomp$0)); var target = styleQueue$jscomp$0.rules, children$jscomp$7 = null, innerHTML$jscomp$6 = null, propKey$jscomp$9; for (propKey$jscomp$9 in props) if (hasOwnProperty.call(props, propKey$jscomp$9)) { var propValue$jscomp$9 = props[propKey$jscomp$9]; if (null != propValue$jscomp$9) switch (propKey$jscomp$9) { case "children": children$jscomp$7 = propValue$jscomp$9; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$6 = propValue$jscomp$9; } } var child$jscomp$0 = Array.isArray(children$jscomp$7) ? 2 > children$jscomp$7.length ? children$jscomp$7[0] : null : children$jscomp$7; "function" !== typeof child$jscomp$0 && "symbol" !== typeof child$jscomp$0 && null !== child$jscomp$0 && void 0 !== child$jscomp$0 && target.push(("" + child$jscomp$0).replace(styleRegex, styleReplacer)); pushInnerHTML(target, innerHTML$jscomp$6, children$jscomp$7); } } styleQueue$jscomp$0 && hoistableState && hoistableState.styles.add(styleQueue$jscomp$0); textEmbedded && target$jscomp$0.push("<!-- -->"); JSCompiler_inline_result$jscomp$6 = void 0; } return JSCompiler_inline_result$jscomp$6; case "meta": var noscriptTagInScope$jscomp$3 = formatContext.tagScope & 1, isFallback$jscomp$1 = formatContext.tagScope & 4; if (4 === formatContext.insertionMode || noscriptTagInScope$jscomp$3 || null != props.itemProp) var JSCompiler_inline_result$jscomp$7 = pushSelfClosing(target$jscomp$0, props, "meta"); else textEmbedded && target$jscomp$0.push("<!-- -->"), JSCompiler_inline_result$jscomp$7 = isFallback$jscomp$1 ? null : "string" === typeof props.charSet ? pushSelfClosing(renderState.charsetChunks, props, "meta") : "viewport" === props.name ? pushSelfClosing(renderState.viewportChunks, props, "meta") : pushSelfClosing(renderState.hoistableChunks, props, "meta"); return JSCompiler_inline_result$jscomp$7; case "listing": case "pre": target$jscomp$0.push(startChunkForTag(type)); var children$jscomp$8 = null, innerHTML$jscomp$7 = null, propKey$jscomp$10; for (propKey$jscomp$10 in props) if (hasOwnProperty.call(props, propKey$jscomp$10)) { var propValue$jscomp$10 = props[propKey$jscomp$10]; if (null != propValue$jscomp$10) switch (propKey$jscomp$10) { case "children": children$jscomp$8 = propValue$jscomp$10; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$7 = propValue$jscomp$10; break; default: pushAttribute(target$jscomp$0, propKey$jscomp$10, propValue$jscomp$10); } } target$jscomp$0.push(">"); if (null != innerHTML$jscomp$7) { if (null != children$jscomp$8) throw Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`."); if ("object" !== typeof innerHTML$jscomp$7 || !("__html" in innerHTML$jscomp$7)) throw Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information."); var html = innerHTML$jscomp$7.__html; null !== html && void 0 !== html && ("string" === typeof html && 0 < html.length && "\n" === html[0] ? target$jscomp$0.push("\n", html) : target$jscomp$0.push("" + html)); } "string" === typeof children$jscomp$8 && "\n" === children$jscomp$8[0] && target$jscomp$0.push("\n"); return children$jscomp$8; case "img": var pictureOrNoScriptTagInScope = formatContext.tagScope & 3, src = props.src, srcSet = props.srcSet; if (!("lazy" === props.loading || !src && !srcSet || "string" !== typeof src && null != src || "string" !== typeof srcSet && null != srcSet || "low" === props.fetchPriority || pictureOrNoScriptTagInScope) && ("string" !== typeof src || ":" !== src[4] || "d" !== src[0] && "D" !== src[0] || "a" !== src[1] && "A" !== src[1] || "t" !== src[2] && "T" !== src[2] || "a" !== src[3] && "A" !== src[3]) && ("string" !== typeof srcSet || ":" !== srcSet[4] || "d" !== srcSet[0] && "D" !== srcSet[0] || "a" !== srcSet[1] && "A" !== srcSet[1] || "t" !== srcSet[2] && "T" !== srcSet[2] || "a" !== srcSet[3] && "A" !== srcSet[3])) { null !== hoistableState && formatContext.tagScope & 64 && (hoistableState.suspenseyImages = !0); var sizes = "string" === typeof props.sizes ? props.sizes : void 0, key$jscomp$0 = srcSet ? srcSet + "\n" + (sizes || "") : src, promotablePreloads = renderState.preloads.images, resource$jscomp$1 = promotablePreloads.get(key$jscomp$0); if (resource$jscomp$1) { if ("high" === props.fetchPriority || 10 > renderState.highImagePreloads.size) promotablePreloads.delete(key$jscomp$0), renderState.highImagePreloads.add(resource$jscomp$1); } else if (!resumableState.imageResources.hasOwnProperty(key$jscomp$0)) { resumableState.imageResources[key$jscomp$0] = PRELOAD_NO_CREDS; var input = props.crossOrigin; var JSCompiler_inline_result$jscomp$8 = "string" === typeof input ? "use-credentials" === input ? input : "" : void 0; var headers = renderState.headers, header; headers && 0 < headers.remainingCapacity && "string" !== typeof props.srcSet && ("high" === props.fetchPriority || 500 > headers.highImagePreloads.length) && (header = getPreloadAsHeader(src, "image", { imageSrcSet: props.srcSet, imageSizes: props.sizes, crossOrigin: JSCompiler_inline_result$jscomp$8, integrity: props.integrity, nonce: props.nonce, type: props.type, fetchPriority: props.fetchPriority, referrerPolicy: props.refererPolicy }), 0 <= (headers.remainingCapacity -= header.length + 2)) ? (renderState.resets.image[key$jscomp$0] = PRELOAD_NO_CREDS, headers.highImagePreloads && (headers.highImagePreloads += ", "), headers.highImagePreloads += header) : (resource$jscomp$1 = [], pushLinkImpl(resource$jscomp$1, { rel: "preload", as: "image", href: srcSet ? void 0 : src, imageSrcSet: srcSet, imageSizes: sizes, crossOrigin: JSCompiler_inline_result$jscomp$8, integrity: props.integrity, type: props.type, fetchPriority: props.fetchPriority, referrerPolicy: props.referrerPolicy }), "high" === props.fetchPriority || 10 > renderState.highImagePreloads.size ? renderState.highImagePreloads.add(resource$jscomp$1) : (renderState.bulkPreloads.add(resource$jscomp$1), promotablePreloads.set(key$jscomp$0, resource$jscomp$1))); } } return pushSelfClosing(target$jscomp$0, props, "img"); case "base": case "area": case "br": case "col": case "embed": case "hr": case "keygen": case "param": case "source": case "track": case "wbr": return pushSelfClosing(target$jscomp$0, props, type); case "annotation-xml": case "color-profile": case "font-face": case "font-face-src": case "font-face-uri": case "font-face-format": case "font-face-name": case "missing-glyph": break; case "head": if (2 > formatContext.insertionMode) { var preamble = preambleState || renderState.preamble; if (preamble.headChunks) throw Error("The `<head>` tag may only be rendered once."); null !== preambleState && target$jscomp$0.push("<!--head-->"); preamble.headChunks = []; var JSCompiler_inline_result$jscomp$9 = pushStartSingletonElement(preamble.headChunks, props, "head"); } else JSCompiler_inline_result$jscomp$9 = pushStartGenericElement(target$jscomp$0, props, "head"); return JSCompiler_inline_result$jscomp$9; case "body": if (2 > formatContext.insertionMode) { var preamble$jscomp$0 = preambleState || renderState.preamble; if (preamble$jscomp$0.bodyChunks) throw Error("The `<body>` tag may only be rendered once."); null !== preambleState && target$jscomp$0.push("<!--body-->"); preamble$jscomp$0.bodyChunks = []; var JSCompiler_inline_result$jscomp$10 = pushStartSingletonElement(preamble$jscomp$0.bodyChunks, props, "body"); } else JSCompiler_inline_result$jscomp$10 = pushStartGenericElement(target$jscomp$0, props, "body"); return JSCompiler_inline_result$jscomp$10; case "html": if (0 === formatContext.insertionMode) { var preamble$jscomp$1 = preambleState || renderState.preamble; if (preamble$jscomp$1.htmlChunks) throw Error("The `<html>` tag may only be rendered once."); null !== preambleState && target$jscomp$0.push("<!--html-->"); preamble$jscomp$1.htmlChunks = [""]; var JSCompiler_inline_result$jscomp$11 = pushStartSingletonElement(preamble$jscomp$1.htmlChunks, props, "html"); } else JSCompiler_inline_result$jscomp$11 = pushStartGenericElement(target$jscomp$0, props, "html"); return JSCompiler_inline_result$jscomp$11; default: if (-1 !== type.indexOf("-")) { target$jscomp$0.push(startChunkForTag(type)); var children$jscomp$9 = null, innerHTML$jscomp$8 = null, propKey$jscomp$11; for (propKey$jscomp$11 in props) if (hasOwnProperty.call(props, propKey$jscomp$11)) { var propValue$jscomp$11 = props[propKey$jscomp$11]; if (null != propValue$jscomp$11) { var attributeName = propKey$jscomp$11; switch (propKey$jscomp$11) { case "children": children$jscomp$9 = propValue$jscomp$11; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$8 = propValue$jscomp$11; break; case "style": pushStyleAttribute(target$jscomp$0, propValue$jscomp$11); break; case "suppressContentEditableWarning": case "suppressHydrationWarning": case "ref": break; case "className": attributeName = "class"; default: if (isAttributeNameSafe(propKey$jscomp$11) && "function" !== typeof propValue$jscomp$11 && "symbol" !== typeof propValue$jscomp$11 && !1 !== propValue$jscomp$11) { if (!0 === propValue$jscomp$11) propValue$jscomp$11 = ""; else if ("object" === typeof propValue$jscomp$11) continue; target$jscomp$0.push(" ", attributeName, "=\"", escapeTextForBrowser(propValue$jscomp$11), "\""); } } } } target$jscomp$0.push(">"); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$8, children$jscomp$9); return children$jscomp$9; } } return pushStartGenericElement(target$jscomp$0, props, type); } var endTagCache = /* @__PURE__ */ new Map(); function endChunkForTag(tag) { var chunk = endTagCache.get(tag); void 0 === chunk && (chunk = "</" + tag + ">", endTagCache.set(tag, chunk)); return chunk; } function hoistPreambleState(renderState, preambleState) { renderState = renderState.preamble; null === renderState.htmlChunks && preambleState.htmlChunks && (renderState.htmlChunks = preambleState.htmlChunks); null === renderState.headChunks && preambleState.headChunks && (renderState.headChunks = preambleState.headChunks); null === renderState.bodyChunks && preambleState.bodyChunks && (renderState.bodyChunks = preambleState.bodyChunks); } function writeBootstrap(destination, renderState) { renderState = renderState.bootstrapChunks; for (var i = 0; i < renderState.length - 1; i++) destination.push(renderState[i]); return i < renderState.length ? (i = renderState[i], renderState.length = 0, destination.push(i)) : !0; } function writeStartPendingSuspenseBoundary(destination, renderState, id) { destination.push("<!--$?--><template id=\""); if (null === id) throw Error("An ID must have been assigned before we can complete the boundary."); destination.push(renderState.boundaryPrefix); renderState = id.toString(16); destination.push(renderState); return destination.push("\"></template>"); } function writeStartSegment(destination, renderState, formatContext, id) { switch (formatContext.insertionMode) { case 0: case 1: case 3: case 2: return destination.push("<div hidden id=\""), destination.push(renderState.segmentPrefix), renderState = id.toString(16), destination.push(renderState), destination.push("\">"); case 4: return destination.push("<svg aria-hidden=\"true\" style=\"display:none\" id=\""), destination.push(renderState.segmentPrefix), renderState = id.toString(16), destination.push(renderState), destination.push("\">"); case 5: return destination.push("<math aria-hidden=\"true\" style=\"display:none\" id=\""), destination.push(renderState.segmentPrefix), renderState = id.toString(16), destination.push(renderState), destination.push("\">"); case 6: return destination.push("<table hidden id=\""), destination.push(renderState.segmentPrefix), renderState = id.toString(16), destination.push(renderState), destination.push("\">"); case 7: return destination.push("<table hidden><tbody id=\""), destination.push(renderState.segmentPrefix), renderState = id.toString(16), destination.push(renderState), destination.push("\">"); case 8: return destination.push("<table hidden><tr id=\""), destination.push(renderState.segmentPrefix), renderState = id.toString(16), destination.push(renderState), destination.push("\">"); case 9: return destination.push("<table hidden><colgroup id=\""), destination.push(renderState.segmentPrefix), renderState = id.toString(16), destination.push(renderState), destination.push("\">"); default: throw Error("Unknown insertion mode. This is a bug in React."); } } function writeEndSegment(destination, formatContext) { switch (formatContext.insertionMode) { case 0: case 1: case 3: case 2: return destination.push("</div>"); case 4: return destination.push("</svg>"); case 5: return destination.push("</math>"); case 6: return destination.push("</table>"); case 7: return destination.push("</tbody></table>"); case 8: return destination.push("</tr></table>"); case 9: return destination.push("</colgroup></table>"); default: throw Error("Unknown insertion mode. This is a bug in React."); } } var regexForJSStringsInInstructionScripts = /[<\u2028\u2029]/g; function escapeJSStringsForInstructionScripts(input) { return JSON.stringify(input).replace(regexForJSStringsInInstructionScripts, function(match) { switch (match) { case "<": return "\\u003c"; case "\u2028": return "\\u2028"; case "\u2029": return "\\u2029"; default: throw Error("escapeJSStringsForInstructionScripts encountered a match it does not know how to replace. this means the match regex and the replacement characters are no longer in sync. This is a bug in React"); } }); } var regexForJSStringsInScripts = /[&><\u2028\u2029]/g; function escapeJSObjectForInstructionScripts(input) { return JSON.stringify(input).replace(regexForJSStringsInScripts, function(match) { switch (match) { case "&": return "\\u0026"; case ">": return "\\u003e"; case "<": return "\\u003c"; case "\u2028": return "\\u2028"; case "\u2029": return "\\u2029"; default: throw Error("escapeJSObjectForInstructionScripts encountered a match it does not know how to replace. this means the match regex and the replacement characters are no longer in sync. This is a bug in React"); } }); } var currentlyRenderingBoundaryHasStylesToHoist = !1, destinationHasCapacity = !0; function flushStyleTagsLateForBoundary(styleQueue) { var rules = styleQueue.rules, hrefs = styleQueue.hrefs, i = 0; if (hrefs.length) { this.push(currentlyFlushingRenderState.startInlineStyle); this.push(" media=\"not all\" data-precedence=\""); this.push(styleQueue.precedence); for (this.push("\" data-href=\""); i < hrefs.length - 1; i++) this.push(hrefs[i]), this.push(" "); this.push(hrefs[i]); this.push("\">"); for (i = 0; i < rules.length; i++) this.push(rules[i]); destinationHasCapacity = this.push("</style>"); currentlyRenderingBoundaryHasStylesToHoist = !0; rules.length = 0; hrefs.length = 0; } } function hasStylesToHoist(stylesheet) { return 2 !== stylesheet.state ? currentlyRenderingBoundaryHasStylesToHoist = !0 : !1; } function writeHoistablesForBoundary(destination, hoistableState, renderState) { currentlyRenderingBoundaryHasStylesToHoist = !1; destinationHasCapacity = !0; currentlyFlushingRenderState = renderState; hoistableState.styles.forEach(flushStyleTagsLateForBoundary, destination); currentlyFlushingRenderState = null; hoistableState.stylesheets.forEach(hasStylesToHoist); currentlyRenderingBoundaryHasStylesToHoist && (renderState.stylesToHoist = !0); return destinationHasCapacity; } function flushResource(resource) { for (var i = 0; i < resource.length; i++) this.push(resource[i]); resource.length = 0; } var stylesheetFlushingQueue = []; function flushStyleInPreamble(stylesheet) { pushLinkImpl(stylesheetFlushingQueue, stylesheet.props); for (var i = 0; i < stylesheetFlushingQueue.length; i++) this.push(stylesheetFlushingQueue[i]); stylesheetFlushingQueue.length = 0; stylesheet.state = 2; } function flushStylesInPreamble(styleQueue) { var hasStylesheets = 0 < styleQueue.sheets.size; styleQueue.sheets.forEach(flushStyleInPreamble, this); styleQueue.sheets.clear(); var rules = styleQueue.rules, hrefs = styleQueue.hrefs; if (!hasStylesheets || hrefs.length) { this.push(currentlyFlushingRenderState.startInlineStyle); this.push(" data-precedence=\""); this.push(styleQueue.precedence); styleQueue = 0; if (hrefs.length) { for (this.push("\" data-href=\""); styleQueue < hrefs.length - 1; styleQueue++) this.push(hrefs[styleQueue]), this.push(" "); this.push(hrefs[styleQueue]); } this.push("\">"); for (styleQueue = 0; styleQueue < rules.length; styleQueue++) this.push(rules[styleQueue]); this.push("</style>"); rules.length = 0; hrefs.length = 0; } } function preloadLateStyle(stylesheet) { if (0 === stylesheet.state) { stylesheet.state = 1; var props = stylesheet.props; pushLinkImpl(stylesheetFlushingQueue, { rel: "preload", as: "style", href: stylesheet.props.href, crossOrigin: props.crossOrigin, fetchPriority: props.fetchPriority, integrity: props.integrity, media: props.media, hrefLang: props.hrefLang, referrerPolicy: props.referrerPolicy }); for (stylesheet = 0; stylesheet < stylesheetFlushingQueue.length; stylesheet++) this.push(stylesheetFlushingQueue[stylesheet]); stylesheetFlushingQueue.length = 0; } } function preloadLateStyles(styleQueue) { styleQueue.sheets.forEach(preloadLateStyle, this); styleQueue.sheets.clear(); } function pushCompletedShellIdAttribute(target, resumableState) { 0 === (resumableState.instructions & 32) && (resumableState.instructions |= 32, target.push(" id=\"", escapeTextForBrowser("_" + resumableState.idPrefix + "R_"), "\"")); } function writeStyleResourceDependenciesInJS(destination, hoistableState) { destination.push("["); var nextArrayOpenBrackChunk = "["; hoistableState.stylesheets.forEach(function(resource) { if (2 !== resource.state) if (3 === resource.state) destination.push(nextArrayOpenBrackChunk), resource = escapeJSObjectForInstructionScripts("" + resource.props.href), destination.push(resource), destination.push("]"), nextArrayOpenBrackChunk = ",["; else { destination.push(nextArrayOpenBrackChunk); var precedence = resource.props["data-precedence"], props = resource.props, coercedHref = sanitizeURL("" + resource.props.href); coercedHref = escapeJSObjectForInstructionScripts(coercedHref); destination.push(coercedHref); precedence = "" + precedence; destination.push(","); precedence = escapeJSObjectForInstructionScripts(precedence); destination.push(precedence); for (var propKey in props) if (hasOwnProperty.call(props, propKey) && (precedence = props[propKey], null != precedence)) switch (propKey) { case "href": case "rel": case "precedence": case "data-precedence": break; case "children": case "dangerouslySetInnerHTML": throw Error("link is a self-closing tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); default: writeStyleResourceAttributeInJS(destination, propKey, precedence); } destination.push("]"); nextArrayOpenBrackChunk = ",["; resource.state = 3; } }); destination.push("]"); } function writeStyleResourceAttributeInJS(destination, name, value) { var attributeName = name.toLowerCase(); switch (typeof value) { case "function": case "symbol": return; } switch (name) { case "innerHTML": case "dangerouslySetInnerHTML": case "suppressContentEditableWarning": case "suppressHydrationWarning": case "style": case "ref": return; case "className": attributeName = "class"; name = "" + value; break; case "hidden": if (!1 === value) return; name = ""; break; case "src": case "href": value = sanitizeURL(value); name = "" + value; break; default: if (2 < name.length && ("o" === name[0] || "O" === name[0]) && ("n" === name[1] || "N" === name[1]) || !isAttributeNameSafe(name)) return; name = "" + value; } destination.push(","); attributeName = escapeJSObjectForInstructionScripts(attributeName); destination.push(attributeName); destination.push(","); attributeName = escapeJSObjectForInstructionScripts(name); destination.push(attributeName); } function createHoistableState() { return { styles: /* @__PURE__ */ new Set(), stylesheets: /* @__PURE__ */ new Set(), suspenseyImages: !1 }; } function prefetchDNS(href) { var request = currentRequest ? currentRequest : null; if (request) { var resumableState = request.resumableState, renderState = request.renderState; if ("string" === typeof href && href) { if (!resumableState.dnsResources.hasOwnProperty(href)) { resumableState.dnsResources[href] = null; resumableState = renderState.headers; var header, JSCompiler_temp; if (JSCompiler_temp = resumableState && 0 < resumableState.remainingCapacity) JSCompiler_temp = (header = "<" + ("" + href).replace(regexForHrefInLinkHeaderURLContext, escapeHrefForLinkHeaderURLContextReplacer) + ">; rel=dns-prefetch", 0 <= (resumableState.remainingCapacity -= header.length + 2)); JSCompiler_temp ? (renderState.resets.dns[href] = null, resumableState.preconnects && (resumableState.preconnects += ", "), resumableState.preconnects += header) : (header = [], pushLinkImpl(header, { href, rel: "dns-prefetch" }), renderState.preconnects.add(header)); } enqueueFlush(request); } } else previousDispatcher.D(href); } function preconnect(href, crossOrigin) { var request = currentRequest ? currentRequest : null; if (request) { var resumableState = request.resumableState, renderState = request.renderState; if ("string" === typeof href && href) { var bucket = "use-credentials" === crossOrigin ? "credentials" : "string" === typeof crossOrigin ? "anonymous" : "default"; if (!resumableState.connectResources[bucket].hasOwnProperty(href)) { resumableState.connectResources[bucket][href] = null; resumableState = renderState.headers; var header, JSCompiler_temp; if (JSCompiler_temp = resumableState && 0 < resumableState.remainingCapacity) { JSCompiler_temp = "<" + ("" + href).replace(regexForHrefInLinkHeaderURLContext, escapeHrefForLinkHeaderURLContextReplacer) + ">; rel=preconnect"; if ("string" === typeof crossOrigin) { var escapedCrossOrigin = ("" + crossOrigin).replace(regexForLinkHeaderQuotedParamValueContext, escapeStringForLinkHeaderQuotedParamValueContextReplacer); JSCompiler_temp += "; crossorigin=\"" + escapedCrossOrigin + "\""; } JSCompiler_temp = (header = JSCompiler_temp, 0 <= (resumableState.remainingCapacity -= header.length + 2)); } JSCompiler_temp ? (renderState.resets.connect[bucket][href] = null, resumableState.preconnects && (resumableState.preconnects += ", "), resumableState.preconnects += header) : (bucket = [], pushLinkImpl(bucket, { rel: "preconnect", href, crossOrigin }), renderState.preconnects.add(bucket)); } enqueueFlush(request); } } else previousDispatcher.C(href, crossOrigin); } function preload(href, as, options) { var request = currentRequest ? currentRequest : null; if (request) { var resumableState = request.resumableState, renderState = request.renderState; if (as && href) { switch (as) { case "image": if (options) { var imageSrcSet = options.imageSrcSet; var imageSizes = options.imageSizes; var fetchPriority = options.fetchPriority; } var key = imageSrcSet ? imageSrcSet + "\n" + (imageSizes || "") : href; if (resumableState.imageResources.hasOwnProperty(key)) return; resumableState.imageResources[key] = PRELOAD_NO_CREDS; resumableState = renderState.headers; var header; resumableState && 0 < resumableState.remainingCapacity && "string" !== typeof imageSrcSet && "high" === fetchPriority && (header = getPreloadAsHeader(href, as, options), 0 <= (resumableState.remainingCapacity -= header.length + 2)) ? (renderState.resets.image[key] = PRELOAD_NO_CREDS, resumableState.highImagePreloads && (resumableState.highImagePreloads += ", "), resumableState.highImagePreloads += header) : (resumableState = [], pushLinkImpl(resumableState, assign({ rel: "preload", href: imageSrcSet ? void 0 : href, as }, options)), "high" === fetchPriority ? renderState.highImagePreloads.add(resumableState) : (renderState.bulkPreloads.add(resumableState), renderState.preloads.images.set(key, resumableState))); break; case "style": if (resumableState.styleResources.hasOwnProperty(href)) return; imageSrcSet = []; pushLinkImpl(imageSrcSet, assign({ rel: "preload", href, as }, options)); resumableState.styleResources[href] = !options || "string" !== typeof options.crossOrigin && "string" !== typeof options.integrity ? PRELOAD_NO_CREDS : [options.crossOrigin, options.integrity]; renderState.preloads.stylesheets.set(href, imageSrcSet); renderState.bulkPreloads.add(imageSrcSet); break; case "script": if (resumableState.scriptResources.hasOwnProperty(href)) return; imageSrcSet = []; renderState.preloads.scripts.set(href, imageSrcSet); renderState.bulkPreloads.add(imageSrcSet); pushLinkImpl(imageSrcSet, assign({ rel: "preload", href, as }, options)); resumableState.scriptResources[href] = !options || "string" !== typeof options.crossOrigin && "string" !== typeof options.integrity ? PRELOAD_NO_CREDS : [options.crossOrigin, options.integrity]; break; default: if (resumableState.unknownResources.hasOwnProperty(as)) { if (imageSrcSet = resumableState.unknownResources[as], imageSrcSet.hasOwnProperty(href)) return; } else imageSrcSet = {}, resumableState.unknownResources[as] = imageSrcSet; imageSrcSet[href] = PRELOAD_NO_CREDS; if ((resumableState = renderState.headers) && 0 < resumableState.remainingCapacity && "font" === as && (key = getPreloadAsHeader(href, as, options), 0 <= (resumableState.remainingCapacity -= key.length + 2))) renderState.resets.font[href] = PRELOAD_NO_CREDS, resumableState.fontPreloads && (resumableState.fontPreloads += ", "), resumableState.fontPreloads += key; else switch (resumableState = [], href = assign({ rel: "preload", href, as }, options), pushLinkImpl(resumableState, href), as) { case "font": renderState.fontPreloads.add(resumableState); break; default: renderState.bulkPreloads.add(resumableState); } } enqueueFlush(request); } } else previousDispatcher.L(href, as, options); } function preloadModule(href, options) { var request = currentRequest ? currentRequest : null; if (request) { var resumableState = request.resumableState, renderState = request.renderState; if (href) { var as = options && "string" === typeof options.as ? options.as : "script"; switch (as) { case "script": if (resumableState.moduleScriptResources.hasOwnProperty(href)) return; as = []; resumableState.moduleScriptResources[href] = !options || "string" !== typeof options.crossOrigin && "string" !== typeof options.integrity ? PRELOAD_NO_CREDS : [options.crossOrigin, options.integrity]; renderState.preloads.moduleScripts.set(href, as); break; default: if (resumableState.moduleUnknownResources.hasOwnProperty(as)) { var resources = resumableState.unknownResources[as]; if (resources.hasOwnProperty(href)) return; } else resources = {}, resumableState.moduleUnknownResources[as] = resources; as = []; resources[href] = PRELOAD_NO_CREDS; } pushLinkImpl(as, assign({ rel: "modulepreload", href }, options)); renderState.bulkPreloads.add(as); enqueueFlush(request); } } else previousDispatcher.m(href, options); } function preinitStyle(href, precedence, options) { var request = currentRequest ? currentRequest : null; if (request) { var resumableState = request.resumableState, renderState = request.renderState; if (href) { precedence = precedence || "default"; var styleQueue = renderState.styles.get(precedence), resourceState = resumableState.styleResources.hasOwnProperty(href) ? resumableState.styleResources[href] : void 0; null !== resourceState && (resumableState.styleResources[href] = null, styleQueue || (styleQueue = { precedence: escapeTextForBrowser(precedence), rules: [], hrefs: [], sheets: /* @__PURE__ */ new Map() }, renderState.styles.set(precedence, styleQueue)), precedence = { state: 0, props: assign({ rel: "stylesheet", href, "data-precedence": precedence }, options) }, resourceState && (2 === resourceState.length && adoptPreloadCredentials(precedence.props, resourceState), (renderState = renderState.preloads.stylesheets.get(href)) && 0 < renderState.length ? renderState.length = 0 : precedence.state = 1), styleQueue.sheets.set(href, precedence), enqueueFlush(request)); } } else previousDispatcher.S(href, precedence, options); } function preinitScript(src, options) { var request = currentRequest ? currentRequest : null; if (request) { var resumableState = request.resumableState, renderState = request.renderState; if (src) { var resourceState = resumableState.scriptResources.hasOwnProperty(src) ? resumableState.scriptResources[src] : void 0; null !== resourceState && (resumableState.scriptResources[src] = null, options = assign({ src, async: !0 }, options), resourceState && (2 === resourceState.length && adoptPreloadCredentials(options, resourceState), src = renderState.preloads.scripts.get(src)) && (src.length = 0), src = [], renderState.scripts.add(src), pushScriptImpl(src, options), enqueueFlush(request)); } } else previousDispatcher.X(src, options); } function preinitModuleScript(src, options) { var request = currentRequest ? currentRequest : null; if (request) { var resumableState = request.resumableState, renderState = request.renderState; if (src) { var resourceState = resumableState.moduleScriptResources.hasOwnProperty(src) ? resumableState.moduleScriptResources[src] : void 0; null !== resourceState && (resumableState.moduleScriptResources[src] = null, options = assign({ src, type: "module", async: !0 }, options), resourceState && (2 === resourceState.length && adoptPreloadCredentials(options, resourceState), src = renderState.preloads.moduleScripts.get(src)) && (src.length = 0), src = [], renderState.scripts.add(src), pushScriptImpl(src, options), enqueueFlush(request)); } } else previousDispatcher.M(src, options); } function adoptPreloadCredentials(target, preloadState) { target.crossOrigin ??= preloadState[0]; target.integrity ??= preloadState[1]; } function getPreloadAsHeader(href, as, params) { href = ("" + href).replace(regexForHrefInLinkHeaderURLContext, escapeHrefForLinkHeaderURLContextReplacer); as = ("" + as).replace(regexForLinkHeaderQuotedParamValueContext, escapeStringForLinkHeaderQuotedParamValueContextReplacer); as = "<" + href + ">; rel=preload; as=\"" + as + "\""; for (var paramName in params) hasOwnProperty.call(params, paramName) && (href = params[paramName], "string" === typeof href && (as += "; " + paramName.toLowerCase() + "=\"" + ("" + href).replace(regexForLinkHeaderQuotedParamValueContext, escapeStringForLinkHeaderQuotedParamValueContextReplacer) + "\"")); return as; } var regexForHrefInLinkHeaderURLContext = /[<>\r\n]/g; function escapeHrefForLinkHeaderURLContextReplacer(match) { switch (match) { case "<": return "%3C"; case ">": return "%3E"; case "\n": return "%0A"; case "\r": return "%0D"; default: throw Error("escapeLinkHrefForHeaderContextReplacer encountered a match it does not know how to replace. this means the match regex and the replacement characters are no longer in sync. This is a bug in React"); } } var regexForLinkHeaderQuotedParamValueContext = /["';,\r\n]/g; function escapeStringForLinkHeaderQuotedParamValueContextReplacer(match) { switch (match) { case "\"": return "%22"; case "'": return "%27"; case ";": return "%3B"; case ",": return "%2C"; case "\n": return "%0A"; case "\r": return "%0D"; default: throw Error("escapeStringForLinkHeaderQuotedParamValueContextReplacer encountered a match it does not know how to replace. this means the match regex and the replacement characters are no longer in sync. This is a bug in React"); } } function hoistStyleQueueDependency(styleQueue) { this.styles.add(styleQueue); } function hoistStylesheetDependency(stylesheet) { this.stylesheets.add(stylesheet); } function hoistHoistables(parentState, childState) { childState.styles.forEach(hoistStyleQueueDependency, parentState); childState.stylesheets.forEach(hoistStylesheetDependency, parentState); childState.suspenseyImages && (parentState.suspenseyImages = !0); } function createRenderState(resumableState, generateStaticMarkup) { var idPrefix = resumableState.idPrefix, bootstrapChunks = [], bootstrapScriptContent = resumableState.bootstrapScriptContent, bootstrapScripts = resumableState.bootstrapScripts, bootstrapModules = resumableState.bootstrapModules; void 0 !== bootstrapScriptContent && (bootstrapChunks.push("<script"), pushCompletedShellIdAttribute(bootstrapChunks, resumableState), bootstrapChunks.push(">", ("" + bootstrapScriptContent).replace(scriptRegex, scriptReplacer), "<\/script>")); bootstrapScriptContent = idPrefix + "P:"; var JSCompiler_object_inline_segmentPrefix_1673 = idPrefix + "S:"; idPrefix += "B:"; var JSCompiler_object_inline_preconnects_1687 = /* @__PURE__ */ new Set(), JSCompiler_object_inline_fontPreloads_1688 = /* @__PURE__ */ new Set(), JSCompiler_object_inline_highImagePreloads_1689 = /* @__PURE__ */ new Set(), JSCompiler_object_inline_styles_1690 = /* @__PURE__ */ new Map(), JSCompiler_object_inline_bootstrapScripts_1691 = /* @__PURE__ */ new Set(), JSCompiler_object_inline_scripts_1692 = /* @__PURE__ */ new Set(), JSCompiler_object_inline_bulkPreloads_1693 = /* @__PURE__ */ new Set(), JSCompiler_object_inline_preloads_1694 = { images: /* @__PURE__ */ new Map(), stylesheets: /* @__PURE__ */ new Map(), scripts: /* @__PURE__ */ new Map(), moduleScripts: /* @__PURE__ */ new Map() }; if (void 0 !== bootstrapScripts) for (var i = 0; i < bootstrapScripts.length; i++) { var scriptConfig = bootstrapScripts[i], src, crossOrigin = void 0, integrity = void 0, props = { rel: "preload", as: "script", fetchPriority: "low", nonce: void 0 }; "string" === typeof scriptConfig ? props.href = src = scriptConfig : (props.href = src = scriptConfig.src, props.integrity = integrity = "string" === typeof scriptConfig.integrity ? scriptConfig.integrity : void 0, props.crossOrigin = crossOrigin = "string" === typeof scriptConfig || null == scriptConfig.crossOrigin ? void 0 : "use-credentials" === scriptConfig.crossOrigin ? "use-credentials" : ""); scriptConfig = resumableState; var href = src; scriptConfig.scriptResources[href] = null; scriptConfig.moduleScriptResources[href] = null; scriptConfig = []; pushLinkImpl(scriptConfig, props); JSCompiler_object_inline_bootstrapScripts_1691.add(scriptConfig); bootstrapChunks.push("<script src=\"", escapeTextForBrowser(src), "\""); "string" === typeof integrity && bootstrapChunks.push(" integrity=\"", escapeTextForBrowser(integrity), "\""); "string" === typeof crossOrigin && bootstrapChunks.push(" crossorigin=\"", escapeTextForBrowser(crossOrigin), "\""); pushCompletedShellIdAttribute(bootstrapChunks, resumableState); bootstrapChunks.push(" async=\"\"><\/script>"); } if (void 0 !== bootstrapModules) for (bootstrapScripts = 0; bootstrapScripts < bootstrapModules.length; bootstrapScripts++) props = bootstrapModules[bootstrapScripts], crossOrigin = src = void 0, integrity = { rel: "modulepreload", fetchPriority: "low", nonce: void 0 }, "string" === typeof props ? integrity.href = i = props : (integrity.href = i = props.src, integrity.integrity = crossOrigin = "string" === typeof props.integrity ? props.integrity : void 0, integrity.crossOrigin = src = "string" === typeof props || null == props.crossOrigin ? void 0 : "use-credentials" === props.crossOrigin ? "use-credentials" : ""), props = resumableState, scriptConfig = i, props.scriptResources[scriptConfig] = null, props.moduleScriptResources[scriptConfig] = null, props = [], pushLinkImpl(props, integrity), JSCompiler_object_inline_bootstrapScripts_1691.add(props), bootstrapChunks.push("<script type=\"module\" src=\"", escapeTextForBrowser(i), "\""), "string" === typeof crossOrigin && bootstrapChunks.push(" integrity=\"", escapeTextForBrowser(crossOrigin), "\""), "string" === typeof src && bootstrapChunks.push(" crossorigin=\"", escapeTextForBrowser(src), "\""), pushCompletedShellIdAttribute(bootstrapChunks, resumableState), bootstrapChunks.push(" async=\"\"><\/script>"); return { placeholderPrefix: bootstrapScriptContent, segmentPrefix: JSCompiler_object_inline_segmentPrefix_1673, boundaryPrefix: idPrefix, startInlineScript: "<script", startInlineStyle: "<style", preamble: { htmlChunks: null, headChunks: null, bodyChunks: null }, externalRuntimeScript: null, bootstrapChunks, importMapChunks: [], onHeaders: void 0, headers: null, resets: { font: {}, dns: {}, connect: { default: {}, anonymous: {}, credentials: {} }, image: {}, style: {} }, charsetChunks: [], viewportChunks: [], hoistableChunks: [], preconnects: JSCompiler_object_inline_preconnects_1687, fontPreloads: JSCompiler_object_inline_fontPreloads_1688, highImagePreloads: JSCompiler_object_inline_highImagePreloads_1689, styles: JSCompiler_object_inline_styles_1690, bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1691, scripts: JSCompiler_object_inline_scripts_1692, bulkPreloads: JSCompiler_object_inline_bulkPreloads_1693, preloads: JSCompiler_object_inline_preloads_1694, nonce: { script: void 0, style: void 0 }, stylesToHoist: !1, generateStaticMarkup }; } function pushTextInstance(target, text, renderState, textEmbedded) { if (renderState.generateStaticMarkup) return target.push(escapeTextForBrowser(text)), !1; "" === text ? target = textEmbedded : (textEmbedded && target.push("<!-- -->"), target.push(escapeTextForBrowser(text)), target = !0); return target; } function pushSegmentFinale(target, renderState, lastPushedText, textEmbedded) { renderState.generateStaticMarkup || lastPushedText && textEmbedded && target.push("<!-- -->"); } var bind = Function.prototype.bind, REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"); function getComponentNameFromType(type) { if (null == type) return null; if ("function" === typeof type) return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null; if ("string" === typeof type) return type; switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: return "StrictMode"; case REACT_SUSPENSE_TYPE: return "Suspense"; case REACT_SUSPENSE_LIST_TYPE: return "SuspenseList"; case REACT_ACTIVITY_TYPE: return "Activity"; } if ("object" === typeof type) switch (type.$$typeof) { case REACT_PORTAL_TYPE: return "Portal"; case REACT_CONTEXT_TYPE: return type.displayName || "Context"; case REACT_CONSUMER_TYPE: return (type._context.displayName || "Context") + ".Consumer"; case REACT_FORWARD_REF_TYPE: var innerType = type.render; type = type.displayName; type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"); return type; case REACT_MEMO_TYPE: return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo"; case REACT_LAZY_TYPE: innerType = type._payload; type = type._init; try { return getComponentNameFromType(type(innerType)); } catch (x) {} } return null; } var emptyContextObject = {}, currentActiveSnapshot = null; function popToNearestCommonAncestor(prev, next) { if (prev !== next) { prev.context._currentValue2 = prev.parentValue; prev = prev.parent; var parentNext = next.parent; if (null === prev) { if (null !== parentNext) throw Error("The stacks must reach the root at the same time. This is a bug in React."); } else { if (null === parentNext) throw Error("The stacks must reach the root at the same time. This is a bug in React."); popToNearestCommonAncestor(prev, parentNext); } next.context._currentValue2 = next.value; } } function popAllPrevious(prev) { prev.context._currentValue2 = prev.parentValue; prev = prev.parent; null !== prev && popAllPrevious(prev); } function pushAllNext(next) { var parentNext = next.parent; null !== parentNext && pushAllNext(parentNext); next.context._currentValue2 = next.value; } function popPreviousToCommonLevel(prev, next) { prev.context._currentValue2 = prev.parentValue; prev = prev.parent; if (null === prev) throw Error("The depth must equal at least at zero before reaching the root. This is a bug in React."); prev.depth === next.depth ? popToNearestCommonAncestor(prev, next) : popPreviousToCommonLevel(prev, next); } function popNextToCommonLevel(prev, next) { var parentNext = next.parent; if (null === parentNext) throw Error("The depth must equal at least at zero before reaching the root. This is a bug in React."); prev.depth === parentNext.depth ? popToNearestCommonAncestor(prev, parentNext) : popNextToCommonLevel(prev, parentNext); next.context._currentValue2 = next.value; } function switchContext(newSnapshot) { var prev = currentActiveSnapshot; prev !== newSnapshot && (null === prev ? pushAllNext(newSnapshot) : null === newSnapshot ? popAllPrevious(prev) : prev.depth === newSnapshot.depth ? popToNearestCommonAncestor(prev, newSnapshot) : prev.depth > newSnapshot.depth ? popPreviousToCommonLevel(prev, newSnapshot) : popNextToCommonLevel(prev, newSnapshot), currentActiveSnapshot = newSnapshot); } var classComponentUpdater = { enqueueSetState: function(inst, payload) { inst = inst._reactInternals; null !== inst.queue && inst.queue.push(payload); }, enqueueReplaceState: function(inst, payload) { inst = inst._reactInternals; inst.replace = !0; inst.queue = [payload]; }, enqueueForceUpdate: function() {} }, emptyTreeContext = { id: 1, overflow: "" }; function pushTreeContext(baseContext, totalChildren, index) { var baseIdWithLeadingBit = baseContext.id; baseContext = baseContext.overflow; var baseLength = 32 - clz32(baseIdWithLeadingBit) - 1; baseIdWithLeadingBit &= ~(1 << baseLength); index += 1; var length = 32 - clz32(totalChildren) + baseLength; if (30 < length) { var numberOfOverflowBits = baseLength - baseLength % 5; length = (baseIdWithLeadingBit & (1 << numberOfOverflowBits) - 1).toString(32); baseIdWithLeadingBit >>= numberOfOverflowBits; baseLength -= numberOfOverflowBits; return { id: 1 << 32 - clz32(totalChildren) + baseLength | index << baseLength | baseIdWithLeadingBit, overflow: length + baseContext }; } return { id: 1 << length | index << baseLength | baseIdWithLeadingBit, overflow: baseContext }; } var clz32 = Math.clz32 ? Math.clz32 : clz32Fallback, log = Math.log, LN2 = Math.LN2; function clz32Fallback(x) { x >>>= 0; return 0 === x ? 32 : 31 - (log(x) / LN2 | 0) | 0; } function noop() {} var SuspenseException = Error("Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."); function trackUsedThenable(thenableState, thenable, index) { index = thenableState[index]; void 0 === index ? thenableState.push(thenable) : index !== thenable && (thenable.then(noop, noop), thenable = index); switch (thenable.status) { case "fulfilled": return thenable.value; case "rejected": throw thenable.reason; default: "string" === typeof thenable.status ? thenable.then(noop, noop) : (thenableState = thenable, thenableState.status = "pending", thenableState.then(function(fulfilledValue) { if ("pending" === thenable.status) { var fulfilledThenable = thenable; fulfilledThenable.status = "fulfilled"; fulfilledThenable.value = fulfilledValue; } }, function(error) { if ("pending" === thenable.status) { var rejectedThenable = thenable; rejectedThenable.status = "rejected"; rejectedThenable.reason = error; } })); switch (thenable.status) { case "fulfilled": return thenable.value; case "rejected": throw thenable.reason; } suspendedThenable = thenable; throw SuspenseException; } } var suspendedThenable = null; function getSuspendedThenable() { if (null === suspendedThenable) throw Error("Expected a suspended thenable. This is a bug in React. Please file an issue."); var thenable = suspendedThenable; suspendedThenable = null; return thenable; } function is(x, y) { return x === y && (0 !== x || 1 / x === 1 / y) || x !== x && y !== y; } var objectIs = "function" === typeof Object.is ? Object.is : is, currentlyRenderingComponent = null, currentlyRenderingTask = null, currentlyRenderingRequest = null, currentlyRenderingKeyPath = null, firstWorkInProgressHook = null, workInProgressHook = null, isReRender = !1, didScheduleRenderPhaseUpdate = !1, localIdCounter = 0, actionStateCounter = 0, actionStateMatchingIndex = -1, thenableIndexCounter = 0, thenableState = null, renderPhaseUpdates = null, numberOfReRenders = 0; function resolveCurrentlyRenderingComponent() { if (null === currentlyRenderingComponent) throw Error("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem."); return currentlyRenderingComponent; } function createHook() { if (0 < numberOfReRenders) throw Error("Rendered more hooks than during the previous render"); return { memoizedState: null, queue: null, next: null }; } function createWorkInProgressHook() { null === workInProgressHook ? null === firstWorkInProgressHook ? (isReRender = !1, firstWorkInProgressHook = workInProgressHook = createHook()) : (isReRender = !0, workInProgressHook = firstWorkInProgressHook) : null === workInProgressHook.next ? (isReRender = !1, workInProgressHook = workInProgressHook.next = createHook()) : (isReRender = !0, workInProgressHook = workInProgressHook.next); return workInProgressHook; } function getThenableStateAfterSuspending() { var state = thenableState; thenableState = null; return state; } function resetHooksState() { currentlyRenderingKeyPath = currentlyRenderingRequest = currentlyRenderingTask = currentlyRenderingComponent = null; didScheduleRenderPhaseUpdate = !1; firstWorkInProgressHook = null; numberOfReRenders = 0; workInProgressHook = renderPhaseUpdates = null; } function basicStateReducer(state, action) { return "function" === typeof action ? action(state) : action; } function useReducer(reducer, initialArg, init) { currentlyRenderingComponent = resolveCurrentlyRenderingComponent(); workInProgressHook = createWorkInProgressHook(); if (isReRender) { var queue = workInProgressHook.queue; initialArg = queue.dispatch; if (null !== renderPhaseUpdates && (init = renderPhaseUpdates.get(queue), void 0 !== init)) { renderPhaseUpdates.delete(queue); queue = workInProgressHook.memoizedState; do queue = reducer(queue, init.action), init = init.next; while (null !== init); workInProgressHook.memoizedState = queue; return [queue, initialArg]; } return [workInProgressHook.memoizedState, initialArg]; } reducer = reducer === basicStateReducer ? "function" === typeof initialArg ? initialArg() : initialArg : void 0 !== init ? init(initialArg) : initialArg; workInProgressHook.memoizedState = reducer; reducer = workInProgressHook.queue = { last: null, dispatch: null }; reducer = reducer.dispatch = dispatchAction.bind(null, currentlyRenderingComponent, reducer); return [workInProgressHook.memoizedState, reducer]; } function useMemo(nextCreate, deps) { currentlyRenderingComponent = resolveCurrentlyRenderingComponent(); workInProgressHook = createWorkInProgressHook(); deps = void 0 === deps ? null : deps; if (null !== workInProgressHook) { var prevState = workInProgressHook.memoizedState; if (null !== prevState && null !== deps) { var prevDeps = prevState[1]; a: if (null === prevDeps) prevDeps = !1; else { for (var i = 0; i < prevDeps.length && i < deps.length; i++) if (!objectIs(deps[i], prevDeps[i])) { prevDeps = !1; break a; } prevDeps = !0; } if (prevDeps) return prevState[0]; } } nextCreate = nextCreate(); workInProgressHook.memoizedState = [nextCreate, deps]; return nextCreate; } function dispatchAction(componentIdentity, queue, action) { if (25 <= numberOfReRenders) throw Error("Too many re-renders. React limits the number of renders to prevent an infinite loop."); if (componentIdentity === currentlyRenderingComponent) if (didScheduleRenderPhaseUpdate = !0, componentIdentity = { action, next: null }, null === renderPhaseUpdates && (renderPhaseUpdates = /* @__PURE__ */ new Map()), action = renderPhaseUpdates.get(queue), void 0 === action) renderPhaseUpdates.set(queue, componentIdentity); else { for (queue = action; null !== queue.next;) queue = queue.next; queue.next = componentIdentity; } } function throwOnUseEffectEventCall() { throw Error("A function wrapped in useEffectEvent can't be called during rendering."); } function unsupportedStartTransition() { throw Error("startTransition cannot be called during server rendering."); } function unsupportedSetOptimisticState() { throw Error("Cannot update optimistic state while rendering."); } function useActionState(action, initialState, permalink) { resolveCurrentlyRenderingComponent(); var actionStateHookIndex = actionStateCounter++, request = currentlyRenderingRequest; if ("function" === typeof action.$$FORM_ACTION) { var nextPostbackStateKey = null, componentKeyPath = currentlyRenderingKeyPath; request = request.formState; var isSignatureEqual = action.$$IS_SIGNATURE_EQUAL; if (null !== request && "function" === typeof isSignatureEqual) { var postbackKey = request[1]; isSignatureEqual.call(action, request[2], request[3]) && (nextPostbackStateKey = void 0 !== permalink ? "p" + permalink : "k" + murmurhash3_32_gc(JSON.stringify([ componentKeyPath, null, actionStateHookIndex ]), 0), postbackKey === nextPostbackStateKey && (actionStateMatchingIndex = actionStateHookIndex, initialState = request[0])); } var boundAction = action.bind(null, initialState); action = function(payload) { boundAction(payload); }; "function" === typeof boundAction.$$FORM_ACTION && (action.$$FORM_ACTION = function(prefix) { prefix = boundAction.$$FORM_ACTION(prefix); void 0 !== permalink && (permalink += "", prefix.action = permalink); var formData = prefix.data; formData && (null === nextPostbackStateKey && (nextPostbackStateKey = void 0 !== permalink ? "p" + permalink : "k" + murmurhash3_32_gc(JSON.stringify([ componentKeyPath, null, actionStateHookIndex ]), 0)), formData.append("$ACTION_KEY", nextPostbackStateKey)); return prefix; }); return [ initialState, action, !1 ]; } var boundAction$22 = action.bind(null, initialState); return [ initialState, function(payload) { boundAction$22(payload); }, !1 ]; } function unwrapThenable(thenable) { var index = thenableIndexCounter; thenableIndexCounter += 1; null === thenableState && (thenableState = []); return trackUsedThenable(thenableState, thenable, index); } function unsupportedRefresh() { throw Error("Cache cannot be refreshed during server rendering."); } var HooksDispatcher = { readContext: function(context) { return context._currentValue2; }, use: function(usable) { if (null !== usable && "object" === typeof usable) { if ("function" === typeof usable.then) return unwrapThenable(usable); if (usable.$$typeof === REACT_CONTEXT_TYPE) return usable._currentValue2; } throw Error("An unsupported type was passed to use(): " + String(usable)); }, useContext: function(context) { resolveCurrentlyRenderingComponent(); return context._currentValue2; }, useMemo, useReducer, useRef: function(initialValue) { currentlyRenderingComponent = resolveCurrentlyRenderingComponent(); workInProgressHook = createWorkInProgressHook(); var previousRef = workInProgressHook.memoizedState; return null === previousRef ? (initialValue = { current: initialValue }, workInProgressHook.memoizedState = initialValue) : previousRef; }, useState: function(initialState) { return useReducer(basicStateReducer, initialState); }, useInsertionEffect: noop, useLayoutEffect: noop, useCallback: function(callback, deps) { return useMemo(function() { return callback; }, deps); }, useImperativeHandle: noop, useEffect: noop, useDebugValue: noop, useDeferredValue: function(value, initialValue) { resolveCurrentlyRenderingComponent(); return void 0 !== initialValue ? initialValue : value; }, useTransition: function() { resolveCurrentlyRenderingComponent(); return [!1, unsupportedStartTransition]; }, useId: function() { var JSCompiler_inline_result = currentlyRenderingTask.treeContext; var overflow = JSCompiler_inline_result.overflow; JSCompiler_inline_result = JSCompiler_inline_result.id; JSCompiler_inline_result = (JSCompiler_inline_result & ~(1 << 32 - clz32(JSCompiler_inline_result) - 1)).toString(32) + overflow; var resumableState = currentResumableState; if (null === resumableState) throw Error("Invalid hook call. Hooks can only be called inside of the body of a function component."); overflow = localIdCounter++; JSCompiler_inline_result = "_" + resumableState.idPrefix + "R_" + JSCompiler_inline_result; 0 < overflow && (JSCompiler_inline_result += "H" + overflow.toString(32)); return JSCompiler_inline_result + "_"; }, useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) { if (void 0 === getServerSnapshot) throw Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering."); return getServerSnapshot(); }, useOptimistic: function(passthrough) { resolveCurrentlyRenderingComponent(); return [passthrough, unsupportedSetOptimisticState]; }, useActionState, useFormState: useActionState, useHostTransitionStatus: function() { resolveCurrentlyRenderingComponent(); return sharedNotPendingObject; }, useMemoCache: function(size) { for (var data = Array(size), i = 0; i < size; i++) data[i] = REACT_MEMO_CACHE_SENTINEL; return data; }, useCacheRefresh: function() { return unsupportedRefresh; }, useEffectEvent: function() { return throwOnUseEffectEventCall; } }, currentResumableState = null, DefaultAsyncDispatcher = { getCacheForType: function() { throw Error("Not implemented."); }, cacheSignal: function() { throw Error("Not implemented."); } }, prefix, suffix; function describeBuiltInComponentFrame(name) { if (void 0 === prefix) try { throw Error(); } catch (x) { var match = x.stack.trim().match(/\n( *(at )?)/); prefix = match && match[1] || ""; suffix = -1 < x.stack.indexOf("\n at") ? " (<anonymous>)" : -1 < x.stack.indexOf("@") ? "@unknown:0:0" : ""; } return "\n" + prefix + name + suffix; } var reentry = !1; function describeNativeComponentFrame(fn, construct) { if (!fn || reentry) return ""; reentry = !0; var previousPrepareStackTrace = Error.prepareStackTrace; Error.prepareStackTrace = void 0; try { var RunInRootFrame = { DetermineComponentFrameRoot: function() { try { if (construct) { var Fake = function() { throw Error(); }; Object.defineProperty(Fake.prototype, "props", { set: function() { throw Error(); } }); if ("object" === typeof Reflect && Reflect.construct) { try { Reflect.construct(Fake, []); } catch (x) { var control = x; } Reflect.construct(fn, [], Fake); } else { try { Fake.call(); } catch (x$24) { control = x$24; } fn.call(Fake.prototype); } } else { try { throw Error(); } catch (x$25) { control = x$25; } (Fake = fn()) && "function" === typeof Fake.catch && Fake.catch(function() {}); } } catch (sample) { if (sample && control && "string" === typeof sample.stack) return [sample.stack, control.stack]; } return [null, null]; } }; RunInRootFrame.DetermineComponentFrameRoot.displayName = "DetermineComponentFrameRoot"; var namePropDescriptor = Object.getOwnPropertyDescriptor(RunInRootFrame.DetermineComponentFrameRoot, "name"); namePropDescriptor && namePropDescriptor.configurable && Object.defineProperty(RunInRootFrame.DetermineComponentFrameRoot, "name", { value: "DetermineComponentFrameRoot" }); var _RunInRootFrame$Deter = RunInRootFrame.DetermineComponentFrameRoot(), sampleStack = _RunInRootFrame$Deter[0], controlStack = _RunInRootFrame$Deter[1]; if (sampleStack && controlStack) { var sampleLines = sampleStack.split("\n"), controlLines = controlStack.split("\n"); for (namePropDescriptor = RunInRootFrame = 0; RunInRootFrame < sampleLines.length && !sampleLines[RunInRootFrame].includes("DetermineComponentFrameRoot");) RunInRootFrame++; for (; namePropDescriptor < controlLines.length && !controlLines[namePropDescriptor].includes("DetermineComponentFrameRoot");) namePropDescriptor++; if (RunInRootFrame === sampleLines.length || namePropDescriptor === controlLines.length) for (RunInRootFrame = sampleLines.length - 1, namePropDescriptor = controlLines.length - 1; 1 <= RunInRootFrame && 0 <= namePropDescriptor && sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor];) namePropDescriptor--; for (; 1 <= RunInRootFrame && 0 <= namePropDescriptor; RunInRootFrame--, namePropDescriptor--) if (sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor]) { if (1 !== RunInRootFrame || 1 !== namePropDescriptor) do if (RunInRootFrame--, namePropDescriptor--, 0 > namePropDescriptor || sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor]) { var frame = "\n" + sampleLines[RunInRootFrame].replace(" at new ", " at "); fn.displayName && frame.includes("<anonymous>") && (frame = frame.replace("<anonymous>", fn.displayName)); return frame; } while (1 <= RunInRootFrame && 0 <= namePropDescriptor); break; } } } finally { reentry = !1, Error.prepareStackTrace = previousPrepareStackTrace; } return (previousPrepareStackTrace = fn ? fn.displayName || fn.name : "") ? describeBuiltInComponentFrame(previousPrepareStackTrace) : ""; } function describeComponentStackByType(type) { if ("string" === typeof type) return describeBuiltInComponentFrame(type); if ("function" === typeof type) return type.prototype && type.prototype.isReactComponent ? describeNativeComponentFrame(type, !0) : describeNativeComponentFrame(type, !1); if ("object" === typeof type && null !== type) { switch (type.$$typeof) { case REACT_FORWARD_REF_TYPE: return describeNativeComponentFrame(type.render, !1); case REACT_MEMO_TYPE: return describeNativeComponentFrame(type.type, !1); case REACT_LAZY_TYPE: var lazyComponent = type, payload = lazyComponent._payload; lazyComponent = lazyComponent._init; try { type = lazyComponent(payload); } catch (x) { return describeBuiltInComponentFrame("Lazy"); } return describeComponentStackByType(type); } if ("string" === typeof type.name) { a: { payload = type.name; lazyComponent = type.env; var location = type.debugLocation; if (null != location && (type = Error.prepareStackTrace, Error.prepareStackTrace = void 0, location = location.stack, Error.prepareStackTrace = type, location.startsWith("Error: react-stack-top-frame\n") && (location = location.slice(29)), type = location.indexOf("\n"), -1 !== type && (location = location.slice(type + 1)), type = location.indexOf("react_stack_bottom_frame"), -1 !== type && (type = location.lastIndexOf("\n", type)), type = -1 !== type ? location = location.slice(0, type) : "", location = type.lastIndexOf("\n"), type = -1 === location ? type : type.slice(location + 1), -1 !== type.indexOf(payload))) { payload = "\n" + type; break a; } payload = describeBuiltInComponentFrame(payload + (lazyComponent ? " [" + lazyComponent + "]" : "")); } return payload; } } switch (type) { case REACT_SUSPENSE_LIST_TYPE: return describeBuiltInComponentFrame("SuspenseList"); case REACT_SUSPENSE_TYPE: return describeBuiltInComponentFrame("Suspense"); } return ""; } function isEligibleForOutlining(request, boundary) { return (500 < boundary.byteSize || !1) && null === boundary.contentPreamble; } function defaultErrorHandler(error) { if ("object" === typeof error && null !== error && "string" === typeof error.environmentName) { var JSCompiler_inline_result = error.environmentName; error = [error].slice(0); "string" === typeof error[0] ? error.splice(0, 1, "[%s] " + error[0], " " + JSCompiler_inline_result + " ") : error.splice(0, 0, "[%s]", " " + JSCompiler_inline_result + " "); error.unshift(console); JSCompiler_inline_result = bind.apply(console.error, error); JSCompiler_inline_result(); } else console.error(error); return null; } function RequestInstance(resumableState, renderState, rootFormatContext, progressiveChunkSize, onError, onAllReady, onShellReady, onShellError, onFatalError, onPostpone, formState) { var abortSet = /* @__PURE__ */ new Set(); this.destination = null; this.flushScheduled = !1; this.resumableState = resumableState; this.renderState = renderState; this.rootFormatContext = rootFormatContext; this.progressiveChunkSize = void 0 === progressiveChunkSize ? 12800 : progressiveChunkSize; this.status = 10; this.fatalError = null; this.pendingRootTasks = this.allPendingTasks = this.nextSegmentId = 0; this.completedPreambleSegments = this.completedRootSegment = null; this.byteSize = 0; this.abortableTasks = abortSet; this.pingedTasks = []; this.clientRenderedBoundaries = []; this.completedBoundaries = []; this.partialBoundaries = []; this.trackedPostpones = null; this.onError = void 0 === onError ? defaultErrorHandler : onError; this.onPostpone = void 0 === onPostpone ? noop : onPostpone; this.onAllReady = void 0 === onAllReady ? noop : onAllReady; this.onShellReady = void 0 === onShellReady ? noop : onShellReady; this.onShellError = void 0 === onShellError ? noop : onShellError; this.onFatalError = void 0 === onFatalError ? noop : onFatalError; this.formState = void 0 === formState ? null : formState; } function createRequest(children, resumableState, renderState, rootFormatContext, progressiveChunkSize, onError, onAllReady, onShellReady, onShellError, onFatalError, onPostpone, formState) { resumableState = new RequestInstance(resumableState, renderState, rootFormatContext, progressiveChunkSize, onError, onAllReady, onShellReady, onShellError, onFatalError, onPostpone, formState); renderState = createPendingSegment(resumableState, 0, null, rootFormatContext, !1, !1); renderState.parentFlushed = !0; children = createRenderTask(resumableState, null, children, -1, null, renderState, null, null, resumableState.abortableTasks, null, rootFormatContext, null, emptyTreeContext, null, null); pushComponentStack(children); resumableState.pingedTasks.push(children); return resumableState; } var currentRequest = null; function pingTask(request, task) { request.pingedTasks.push(task); 1 === request.pingedTasks.length && (request.flushScheduled = null !== request.destination, performWork(request)); } function createSuspenseBoundary(request, row, fallbackAbortableTasks, contentPreamble, fallbackPreamble) { fallbackAbortableTasks = { status: 0, rootSegmentID: -1, parentFlushed: !1, pendingTasks: 0, row, completedSegments: [], byteSize: 0, fallbackAbortableTasks, errorDigest: null, contentState: createHoistableState(), fallbackState: createHoistableState(), contentPreamble, fallbackPreamble, trackedContentKeyPath: null, trackedFallbackNode: null }; null !== row && (row.pendingTasks++, contentPreamble = row.boundaries, null !== contentPreamble && (request.allPendingTasks++, fallbackAbortableTasks.pendingTasks++, contentPreamble.push(fallbackAbortableTasks)), request = row.inheritedHoistables, null !== request && hoistHoistables(fallbackAbortableTasks.contentState, request)); return fallbackAbortableTasks; } function createRenderTask(request, thenableState, node, childIndex, blockedBoundary, blockedSegment, blockedPreamble, hoistableState, abortSet, keyPath, formatContext, context, treeContext, row, componentStack) { request.allPendingTasks++; null === blockedBoundary ? request.pendingRootTasks++ : blockedBoundary.pendingTasks++; null !== row && row.pendingTasks++; var task = { replay: null, node, childIndex, ping: function() { return pingTask(request, task); }, blockedBoundary, blockedSegment, blockedPreamble, hoistableState, abortSet, keyPath, formatContext, context, treeContext, row, componentStack, thenableState }; abortSet.add(task); return task; } function createReplayTask(request, thenableState, replay, node, childIndex, blockedBoundary, hoistableState, abortSet, keyPath, formatContext, context, treeContext, row, componentStack) { request.allPendingTasks++; null === blockedBoundary ? request.pendingRootTasks++ : blockedBoundary.pendingTasks++; null !== row && row.pendingTasks++; replay.pendingTasks++; var task = { replay, node, childIndex, ping: function() { return pingTask(request, task); }, blockedBoundary, blockedSegment: null, blockedPreamble: null, hoistableState, abortSet, keyPath, formatContext, context, treeContext, row, componentStack, thenableState }; abortSet.add(task); return task; } function createPendingSegment(request, index, boundary, parentFormatContext, lastPushedText, textEmbedded) { return { status: 0, parentFlushed: !1, id: -1, index, chunks: [], children: [], preambleChildren: [], parentFormatContext, boundary, lastPushedText, textEmbedded }; } function pushComponentStack(task) { var node = task.node; if ("object" === typeof node && null !== node) switch (node.$$typeof) { case REACT_ELEMENT_TYPE: task.componentStack = { parent: task.componentStack, type: node.type }; } } function replaceSuspenseComponentStackWithSuspenseFallbackStack(componentStack) { return null === componentStack ? null : { parent: componentStack.parent, type: "Suspense Fallback" }; } function getThrownInfo(node$jscomp$0) { var errorInfo = {}; node$jscomp$0 && Object.defineProperty(errorInfo, "componentStack", { configurable: !0, enumerable: !0, get: function() { try { var info = "", node = node$jscomp$0; do info += describeComponentStackByType(node.type), node = node.parent; while (node); var JSCompiler_inline_result = info; } catch (x) { JSCompiler_inline_result = "\nError generating stack: " + x.message + "\n" + x.stack; } Object.defineProperty(errorInfo, "componentStack", { value: JSCompiler_inline_result }); return JSCompiler_inline_result; } }); return errorInfo; } function logRecoverableError(request, error, errorInfo) { request = request.onError; error = request(error, errorInfo); if (null == error || "string" === typeof error) return error; } function fatalError(request, error) { var onShellError = request.onShellError, onFatalError = request.onFatalError; onShellError(error); onFatalError(error); null !== request.destination ? (request.status = 14, request.destination.destroy(error)) : (request.status = 13, request.fatalError = error); } function finishSuspenseListRow(request, row) { unblockSuspenseListRow(request, row.next, row.hoistables); } function unblockSuspenseListRow(request, unblockedRow, inheritedHoistables) { for (; null !== unblockedRow;) { null !== inheritedHoistables && (hoistHoistables(unblockedRow.hoistables, inheritedHoistables), unblockedRow.inheritedHoistables = inheritedHoistables); var unblockedBoundaries = unblockedRow.boundaries; if (null !== unblockedBoundaries) { unblockedRow.boundaries = null; for (var i = 0; i < unblockedBoundaries.length; i++) { var unblockedBoundary = unblockedBoundaries[i]; null !== inheritedHoistables && hoistHoistables(unblockedBoundary.contentState, inheritedHoistables); finishedTask(request, unblockedBoundary, null, null); } } unblockedRow.pendingTasks--; if (0 < unblockedRow.pendingTasks) break; inheritedHoistables = unblockedRow.hoistables; unblockedRow = unblockedRow.next; } } function tryToResolveTogetherRow(request, togetherRow) { var boundaries = togetherRow.boundaries; if (null !== boundaries && togetherRow.pendingTasks === boundaries.length) { for (var allCompleteAndInlinable = !0, i = 0; i < boundaries.length; i++) { var rowBoundary = boundaries[i]; if (1 !== rowBoundary.pendingTasks || rowBoundary.parentFlushed || isEligibleForOutlining(request, rowBoundary)) { allCompleteAndInlinable = !1; break; } } allCompleteAndInlinable && unblockSuspenseListRow(request, togetherRow, togetherRow.hoistables); } } function createSuspenseListRow(previousRow) { var newRow = { pendingTasks: 1, boundaries: null, hoistables: createHoistableState(), inheritedHoistables: null, together: !1, next: null }; null !== previousRow && 0 < previousRow.pendingTasks && (newRow.pendingTasks++, newRow.boundaries = [], previousRow.next = newRow); return newRow; } function renderSuspenseListRows(request, task, keyPath, rows, revealOrder) { var prevKeyPath = task.keyPath, prevTreeContext = task.treeContext, prevRow = task.row; task.keyPath = keyPath; keyPath = rows.length; var previousSuspenseListRow = null; if (null !== task.replay) { var resumeSlots = task.replay.slots; if (null !== resumeSlots && "object" === typeof resumeSlots) for (var n = 0; n < keyPath; n++) { var i = "backwards" !== revealOrder && "unstable_legacy-backwards" !== revealOrder ? n : keyPath - 1 - n, node = rows[i]; task.row = previousSuspenseListRow = createSuspenseListRow(previousSuspenseListRow); task.treeContext = pushTreeContext(prevTreeContext, keyPath, i); var resumeSegmentID = resumeSlots[i]; "number" === typeof resumeSegmentID ? (resumeNode(request, task, resumeSegmentID, node, i), delete resumeSlots[i]) : renderNode(request, task, node, i); 0 === --previousSuspenseListRow.pendingTasks && finishSuspenseListRow(request, previousSuspenseListRow); } else for (resumeSlots = 0; resumeSlots < keyPath; resumeSlots++) n = "backwards" !== revealOrder && "unstable_legacy-backwards" !== revealOrder ? resumeSlots : keyPath - 1 - resumeSlots, i = rows[n], task.row = previousSuspenseListRow = createSuspenseListRow(previousSuspenseListRow), task.treeContext = pushTreeContext(prevTreeContext, keyPath, n), renderNode(request, task, i, n), 0 === --previousSuspenseListRow.pendingTasks && finishSuspenseListRow(request, previousSuspenseListRow); } else if ("backwards" !== revealOrder && "unstable_legacy-backwards" !== revealOrder) for (revealOrder = 0; revealOrder < keyPath; revealOrder++) resumeSlots = rows[revealOrder], task.row = previousSuspenseListRow = createSuspenseListRow(previousSuspenseListRow), task.treeContext = pushTreeContext(prevTreeContext, keyPath, revealOrder), renderNode(request, task, resumeSlots, revealOrder), 0 === --previousSuspenseListRow.pendingTasks && finishSuspenseListRow(request, previousSuspenseListRow); else { revealOrder = task.blockedSegment; resumeSlots = revealOrder.children.length; n = revealOrder.chunks.length; for (i = keyPath - 1; 0 <= i; i--) { node = rows[i]; task.row = previousSuspenseListRow = createSuspenseListRow(previousSuspenseListRow); task.treeContext = pushTreeContext(prevTreeContext, keyPath, i); resumeSegmentID = createPendingSegment(request, n, null, task.formatContext, 0 === i ? revealOrder.lastPushedText : !0, !0); revealOrder.children.splice(resumeSlots, 0, resumeSegmentID); task.blockedSegment = resumeSegmentID; try { renderNode(request, task, node, i), pushSegmentFinale(resumeSegmentID.chunks, request.renderState, resumeSegmentID.lastPushedText, resumeSegmentID.textEmbedded), resumeSegmentID.status = 1, 0 === --previousSuspenseListRow.pendingTasks && finishSuspenseListRow(request, previousSuspenseListRow); } catch (thrownValue) { throw resumeSegmentID.status = 12 === request.status ? 3 : 4, thrownValue; } } task.blockedSegment = revealOrder; revealOrder.lastPushedText = !1; } null !== prevRow && null !== previousSuspenseListRow && 0 < previousSuspenseListRow.pendingTasks && (prevRow.pendingTasks++, previousSuspenseListRow.next = prevRow); task.treeContext = prevTreeContext; task.row = prevRow; task.keyPath = prevKeyPath; } function renderWithHooks(request, task, keyPath, Component, props, secondArg) { var prevThenableState = task.thenableState; task.thenableState = null; currentlyRenderingComponent = {}; currentlyRenderingTask = task; currentlyRenderingRequest = request; currentlyRenderingKeyPath = keyPath; actionStateCounter = localIdCounter = 0; actionStateMatchingIndex = -1; thenableIndexCounter = 0; thenableState = prevThenableState; for (request = Component(props, secondArg); didScheduleRenderPhaseUpdate;) didScheduleRenderPhaseUpdate = !1, actionStateCounter = localIdCounter = 0, actionStateMatchingIndex = -1, thenableIndexCounter = 0, numberOfReRenders += 1, workInProgressHook = null, request = Component(props, secondArg); resetHooksState(); return request; } function finishFunctionComponent(request, task, keyPath, children, hasId, actionStateCount, actionStateMatchingIndex) { var didEmitActionStateMarkers = !1; if (0 !== actionStateCount && null !== request.formState) { var segment = task.blockedSegment; if (null !== segment) { didEmitActionStateMarkers = !0; segment = segment.chunks; for (var i = 0; i < actionStateCount; i++) i === actionStateMatchingIndex ? segment.push("<!--F!-->") : segment.push("<!--F-->"); } } actionStateCount = task.keyPath; task.keyPath = keyPath; hasId ? (keyPath = task.treeContext, task.treeContext = pushTreeContext(keyPath, 1, 0), renderNode(request, task, children, -1), task.treeContext = keyPath) : didEmitActionStateMarkers ? renderNode(request, task, children, -1) : renderNodeDestructive(request, task, children, -1); task.keyPath = actionStateCount; } function renderElement(request, task, keyPath, type, props, ref) { if ("function" === typeof type) if (type.prototype && type.prototype.isReactComponent) { var newProps = props; if ("ref" in props) { newProps = {}; for (var propName in props) "ref" !== propName && (newProps[propName] = props[propName]); } var defaultProps = type.defaultProps; if (defaultProps) { newProps === props && (newProps = assign({}, newProps, props)); for (var propName$43 in defaultProps) void 0 === newProps[propName$43] && (newProps[propName$43] = defaultProps[propName$43]); } props = newProps; newProps = emptyContextObject; defaultProps = type.contextType; "object" === typeof defaultProps && null !== defaultProps && (newProps = defaultProps._currentValue2); newProps = new type(props, newProps); var initialState = void 0 !== newProps.state ? newProps.state : null; newProps.updater = classComponentUpdater; newProps.props = props; newProps.state = initialState; defaultProps = { queue: [], replace: !1 }; newProps._reactInternals = defaultProps; ref = type.contextType; newProps.context = "object" === typeof ref && null !== ref ? ref._currentValue2 : emptyContextObject; ref = type.getDerivedStateFromProps; "function" === typeof ref && (ref = ref(props, initialState), initialState = null === ref || void 0 === ref ? initialState : assign({}, initialState, ref), newProps.state = initialState); if ("function" !== typeof type.getDerivedStateFromProps && "function" !== typeof newProps.getSnapshotBeforeUpdate && ("function" === typeof newProps.UNSAFE_componentWillMount || "function" === typeof newProps.componentWillMount)) if (type = newProps.state, "function" === typeof newProps.componentWillMount && newProps.componentWillMount(), "function" === typeof newProps.UNSAFE_componentWillMount && newProps.UNSAFE_componentWillMount(), type !== newProps.state && classComponentUpdater.enqueueReplaceState(newProps, newProps.state, null), null !== defaultProps.queue && 0 < defaultProps.queue.length) if (type = defaultProps.queue, ref = defaultProps.replace, defaultProps.queue = null, defaultProps.replace = !1, ref && 1 === type.length) newProps.state = type[0]; else { defaultProps = ref ? type[0] : newProps.state; initialState = !0; for (ref = ref ? 1 : 0; ref < type.length; ref++) propName$43 = type[ref], propName$43 = "function" === typeof propName$43 ? propName$43.call(newProps, defaultProps, props, void 0) : propName$43, null != propName$43 && (initialState ? (initialState = !1, defaultProps = assign({}, defaultProps, propName$43)) : assign(defaultProps, propName$43)); newProps.state = defaultProps; } else defaultProps.queue = null; type = newProps.render(); if (12 === request.status) throw null; props = task.keyPath; task.keyPath = keyPath; renderNodeDestructive(request, task, type, -1); task.keyPath = props; } else { type = renderWithHooks(request, task, keyPath, type, props, void 0); if (12 === request.status) throw null; finishFunctionComponent(request, task, keyPath, type, 0 !== localIdCounter, actionStateCounter, actionStateMatchingIndex); } else if ("string" === typeof type) if (newProps = task.blockedSegment, null === newProps) newProps = props.children, defaultProps = task.formatContext, initialState = task.keyPath, task.formatContext = getChildFormatContext(defaultProps, type, props), task.keyPath = keyPath, renderNode(request, task, newProps, -1), task.formatContext = defaultProps, task.keyPath = initialState; else { initialState = pushStartInstance(newProps.chunks, type, props, request.resumableState, request.renderState, task.blockedPreamble, task.hoistableState, task.formatContext, newProps.lastPushedText); newProps.lastPushedText = !1; defaultProps = task.formatContext; ref = task.keyPath; task.keyPath = keyPath; if (3 === (task.formatContext = getChildFormatContext(defaultProps, type, props)).insertionMode) { keyPath = createPendingSegment(request, 0, null, task.formatContext, !1, !1); newProps.preambleChildren.push(keyPath); task.blockedSegment = keyPath; try { keyPath.status = 6, renderNode(request, task, initialState, -1), pushSegmentFinale(keyPath.chunks, request.renderState, keyPath.lastPushedText, keyPath.textEmbedded), keyPath.status = 1; } finally { task.blockedSegment = newProps; } } else renderNode(request, task, initialState, -1); task.formatContext = defaultProps; task.keyPath = ref; a: { task = newProps.chunks; request = request.resumableState; switch (type) { case "title": case "style": case "script": case "area": case "base": case "br": case "col": case "embed": case "hr": case "img": case "input": case "keygen": case "link": case "meta": case "param": case "source": case "track": case "wbr": break a; case "body": if (1 >= defaultProps.insertionMode) { request.hasBody = !0; break a; } break; case "html": if (0 === defaultProps.insertionMode) { request.hasHtml = !0; break a; } break; case "head": if (1 >= defaultProps.insertionMode) break a; } task.push(endChunkForTag(type)); } newProps.lastPushedText = !1; } else { switch (type) { case REACT_LEGACY_HIDDEN_TYPE: case REACT_STRICT_MODE_TYPE: case REACT_PROFILER_TYPE: case REACT_FRAGMENT_TYPE: type = task.keyPath; task.keyPath = keyPath; renderNodeDestructive(request, task, props.children, -1); task.keyPath = type; return; case REACT_ACTIVITY_TYPE: type = task.blockedSegment; null === type ? "hidden" !== props.mode && (type = task.keyPath, task.keyPath = keyPath, renderNode(request, task, props.children, -1), task.keyPath = type) : "hidden" !== props.mode && (request.renderState.generateStaticMarkup || type.chunks.push("<!--&-->"), type.lastPushedText = !1, newProps = task.keyPath, task.keyPath = keyPath, renderNode(request, task, props.children, -1), task.keyPath = newProps, request.renderState.generateStaticMarkup || type.chunks.push("<!--/&-->"), type.lastPushedText = !1); return; case REACT_SUSPENSE_LIST_TYPE: a: { type = props.children; props = props.revealOrder; if ("forwards" === props || "backwards" === props || "unstable_legacy-backwards" === props) { if (isArrayImpl(type)) { renderSuspenseListRows(request, task, keyPath, type, props); break a; } if (newProps = getIteratorFn(type)) { if (newProps = newProps.call(type)) { defaultProps = newProps.next(); if (!defaultProps.done) { do defaultProps = newProps.next(); while (!defaultProps.done); renderSuspenseListRows(request, task, keyPath, type, props); } break a; } } } "together" === props ? (props = task.keyPath, newProps = task.row, defaultProps = task.row = createSuspenseListRow(null), defaultProps.boundaries = [], defaultProps.together = !0, task.keyPath = keyPath, renderNodeDestructive(request, task, type, -1), 0 === --defaultProps.pendingTasks && finishSuspenseListRow(request, defaultProps), task.keyPath = props, task.row = newProps, null !== newProps && 0 < defaultProps.pendingTasks && (newProps.pendingTasks++, defaultProps.next = newProps)) : (props = task.keyPath, task.keyPath = keyPath, renderNodeDestructive(request, task, type, -1), task.keyPath = props); } return; case REACT_VIEW_TRANSITION_TYPE: case REACT_SCOPE_TYPE: throw Error("ReactDOMServer does not yet support scope components."); case REACT_SUSPENSE_TYPE: a: if (null !== task.replay) { type = task.keyPath; newProps = task.formatContext; defaultProps = task.row; task.keyPath = keyPath; task.formatContext = getSuspenseContentFormatContext(request.resumableState, newProps); task.row = null; keyPath = props.children; try { renderNode(request, task, keyPath, -1); } finally { task.keyPath = type, task.formatContext = newProps, task.row = defaultProps; } } else { type = task.keyPath; ref = task.formatContext; var prevRow = task.row, parentBoundary = task.blockedBoundary; propName$43 = task.blockedPreamble; var parentHoistableState = task.hoistableState; propName = task.blockedSegment; var fallback = props.fallback; props = props.children; var fallbackAbortSet = /* @__PURE__ */ new Set(); var newBoundary = createSuspenseBoundary(request, task.row, fallbackAbortSet, null, null); null !== request.trackedPostpones && (newBoundary.trackedContentKeyPath = keyPath); var boundarySegment = createPendingSegment(request, propName.chunks.length, newBoundary, task.formatContext, !1, !1); propName.children.push(boundarySegment); propName.lastPushedText = !1; var contentRootSegment = createPendingSegment(request, 0, null, task.formatContext, !1, !1); contentRootSegment.parentFlushed = !0; if (null !== request.trackedPostpones) { newProps = task.componentStack; defaultProps = [ keyPath[0], "Suspense Fallback", keyPath[2] ]; initialState = [ defaultProps[1], defaultProps[2], [], null ]; request.trackedPostpones.workingMap.set(defaultProps, initialState); newBoundary.trackedFallbackNode = initialState; task.blockedSegment = boundarySegment; task.blockedPreamble = newBoundary.fallbackPreamble; task.keyPath = defaultProps; task.formatContext = getSuspenseFallbackFormatContext(request.resumableState, ref); task.componentStack = replaceSuspenseComponentStackWithSuspenseFallbackStack(newProps); boundarySegment.status = 6; try { renderNode(request, task, fallback, -1), pushSegmentFinale(boundarySegment.chunks, request.renderState, boundarySegment.lastPushedText, boundarySegment.textEmbedded), boundarySegment.status = 1; } catch (thrownValue) { throw boundarySegment.status = 12 === request.status ? 3 : 4, thrownValue; } finally { task.blockedSegment = propName, task.blockedPreamble = propName$43, task.keyPath = type, task.formatContext = ref; } task = createRenderTask(request, null, props, -1, newBoundary, contentRootSegment, newBoundary.contentPreamble, newBoundary.contentState, task.abortSet, keyPath, getSuspenseContentFormatContext(request.resumableState, task.formatContext), task.context, task.treeContext, null, newProps); pushComponentStack(task); request.pingedTasks.push(task); } else { task.blockedBoundary = newBoundary; task.blockedPreamble = newBoundary.contentPreamble; task.hoistableState = newBoundary.contentState; task.blockedSegment = contentRootSegment; task.keyPath = keyPath; task.formatContext = getSuspenseContentFormatContext(request.resumableState, ref); task.row = null; contentRootSegment.status = 6; try { if (renderNode(request, task, props, -1), pushSegmentFinale(contentRootSegment.chunks, request.renderState, contentRootSegment.lastPushedText, contentRootSegment.textEmbedded), contentRootSegment.status = 1, queueCompletedSegment(newBoundary, contentRootSegment), 0 === newBoundary.pendingTasks && 0 === newBoundary.status) { if (newBoundary.status = 1, !isEligibleForOutlining(request, newBoundary)) { null !== prevRow && 0 === --prevRow.pendingTasks && finishSuspenseListRow(request, prevRow); 0 === request.pendingRootTasks && task.blockedPreamble && preparePreamble(request); break a; } } else null !== prevRow && prevRow.together && tryToResolveTogetherRow(request, prevRow); } catch (thrownValue$30) { newBoundary.status = 4, 12 === request.status ? (contentRootSegment.status = 3, newProps = request.fatalError) : (contentRootSegment.status = 4, newProps = thrownValue$30), defaultProps = getThrownInfo(task.componentStack), initialState = logRecoverableError(request, newProps, defaultProps), newBoundary.errorDigest = initialState, untrackBoundary(request, newBoundary); } finally { task.blockedBoundary = parentBoundary, task.blockedPreamble = propName$43, task.hoistableState = parentHoistableState, task.blockedSegment = propName, task.keyPath = type, task.formatContext = ref, task.row = prevRow; } task = createRenderTask(request, null, fallback, -1, parentBoundary, boundarySegment, newBoundary.fallbackPreamble, newBoundary.fallbackState, fallbackAbortSet, [ keyPath[0], "Suspense Fallback", keyPath[2] ], getSuspenseFallbackFormatContext(request.resumableState, task.formatContext), task.context, task.treeContext, task.row, replaceSuspenseComponentStackWithSuspenseFallbackStack(task.componentStack)); pushComponentStack(task); request.pingedTasks.push(task); } } return; } if ("object" === typeof type && null !== type) switch (type.$$typeof) { case REACT_FORWARD_REF_TYPE: if ("ref" in props) for (fallback in newProps = {}, props) "ref" !== fallback && (newProps[fallback] = props[fallback]); else newProps = props; type = renderWithHooks(request, task, keyPath, type.render, newProps, ref); finishFunctionComponent(request, task, keyPath, type, 0 !== localIdCounter, actionStateCounter, actionStateMatchingIndex); return; case REACT_MEMO_TYPE: renderElement(request, task, keyPath, type.type, props, ref); return; case REACT_CONTEXT_TYPE: defaultProps = props.children; newProps = task.keyPath; props = props.value; initialState = type._currentValue2; type._currentValue2 = props; ref = currentActiveSnapshot; currentActiveSnapshot = type = { parent: ref, depth: null === ref ? 0 : ref.depth + 1, context: type, parentValue: initialState, value: props }; task.context = type; task.keyPath = keyPath; renderNodeDestructive(request, task, defaultProps, -1); request = currentActiveSnapshot; if (null === request) throw Error("Tried to pop a Context at the root of the app. This is a bug in React."); request.context._currentValue2 = request.parentValue; request = currentActiveSnapshot = request.parent; task.context = request; task.keyPath = newProps; return; case REACT_CONSUMER_TYPE: props = props.children; type = props(type._context._currentValue2); props = task.keyPath; task.keyPath = keyPath; renderNodeDestructive(request, task, type, -1); task.keyPath = props; return; case REACT_LAZY_TYPE: newProps = type._init; type = newProps(type._payload); if (12 === request.status) throw null; renderElement(request, task, keyPath, type, props, ref); return; } throw Error("Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: " + ((null == type ? type : typeof type) + ".")); } } function resumeNode(request, task, segmentId, node, childIndex) { var prevReplay = task.replay, blockedBoundary = task.blockedBoundary, resumedSegment = createPendingSegment(request, 0, null, task.formatContext, !1, !1); resumedSegment.id = segmentId; resumedSegment.parentFlushed = !0; try { task.replay = null, task.blockedSegment = resumedSegment, renderNode(request, task, node, childIndex), resumedSegment.status = 1, null === blockedBoundary ? request.completedRootSegment = resumedSegment : (queueCompletedSegment(blockedBoundary, resumedSegment), blockedBoundary.parentFlushed && request.partialBoundaries.push(blockedBoundary)); } finally { task.replay = prevReplay, task.blockedSegment = null; } } function renderNodeDestructive(request, task, node, childIndex) { null !== task.replay && "number" === typeof task.replay.slots ? resumeNode(request, task, task.replay.slots, node, childIndex) : (task.node = node, task.childIndex = childIndex, node = task.componentStack, pushComponentStack(task), retryNode(request, task), task.componentStack = node); } function retryNode(request, task) { var node = task.node, childIndex = task.childIndex; if (null !== node) { if ("object" === typeof node) { switch (node.$$typeof) { case REACT_ELEMENT_TYPE: var type = node.type, key = node.key, props = node.props; node = props.ref; var ref = void 0 !== node ? node : null, name = getComponentNameFromType(type), keyOrIndex = null == key ? -1 === childIndex ? 0 : childIndex : key; key = [ task.keyPath, name, keyOrIndex ]; if (null !== task.replay) a: { var replay = task.replay; childIndex = replay.nodes; for (node = 0; node < childIndex.length; node++) { var node$jscomp$0 = childIndex[node]; if (keyOrIndex === node$jscomp$0[1]) { if (4 === node$jscomp$0.length) { if (null !== name && name !== node$jscomp$0[0]) throw Error("Expected the resume to render <" + node$jscomp$0[0] + "> in this slot but instead it rendered <" + name + ">. The tree doesn't match so React will fallback to client rendering."); var childNodes = node$jscomp$0[2]; name = node$jscomp$0[3]; keyOrIndex = task.node; task.replay = { nodes: childNodes, slots: name, pendingTasks: 1 }; try { renderElement(request, task, key, type, props, ref); if (1 === task.replay.pendingTasks && 0 < task.replay.nodes.length) throw Error("Couldn't find all resumable slots by key/index during replaying. The tree doesn't match so React will fallback to client rendering."); task.replay.pendingTasks--; } catch (x) { if ("object" === typeof x && null !== x && (x === SuspenseException || "function" === typeof x.then)) throw task.node === keyOrIndex ? task.replay = replay : childIndex.splice(node, 1), x; task.replay.pendingTasks--; props = getThrownInfo(task.componentStack); key = request; request = task.blockedBoundary; type = x; props = logRecoverableError(key, type, props); abortRemainingReplayNodes(key, request, childNodes, name, type, props); } task.replay = replay; } else { if (type !== REACT_SUSPENSE_TYPE) throw Error("Expected the resume to render <Suspense> in this slot but instead it rendered <" + (getComponentNameFromType(type) || "Unknown") + ">. The tree doesn't match so React will fallback to client rendering."); b: { replay = void 0; type = node$jscomp$0[5]; ref = node$jscomp$0[2]; name = node$jscomp$0[3]; keyOrIndex = null === node$jscomp$0[4] ? [] : node$jscomp$0[4][2]; node$jscomp$0 = null === node$jscomp$0[4] ? null : node$jscomp$0[4][3]; var prevKeyPath = task.keyPath, prevContext = task.formatContext, prevRow = task.row, previousReplaySet = task.replay, parentBoundary = task.blockedBoundary, parentHoistableState = task.hoistableState, content = props.children, fallback = props.fallback, fallbackAbortSet = /* @__PURE__ */ new Set(); props = createSuspenseBoundary(request, task.row, fallbackAbortSet, null, null); props.parentFlushed = !0; props.rootSegmentID = type; task.blockedBoundary = props; task.hoistableState = props.contentState; task.keyPath = key; task.formatContext = getSuspenseContentFormatContext(request.resumableState, prevContext); task.row = null; task.replay = { nodes: ref, slots: name, pendingTasks: 1 }; try { renderNode(request, task, content, -1); if (1 === task.replay.pendingTasks && 0 < task.replay.nodes.length) throw Error("Couldn't find all resumable slots by key/index during replaying. The tree doesn't match so React will fallback to client rendering."); task.replay.pendingTasks--; if (0 === props.pendingTasks && 0 === props.status) { props.status = 1; request.completedBoundaries.push(props); break b; } } catch (error) { props.status = 4, childNodes = getThrownInfo(task.componentStack), replay = logRecoverableError(request, error, childNodes), props.errorDigest = replay, task.replay.pendingTasks--, request.clientRenderedBoundaries.push(props); } finally { task.blockedBoundary = parentBoundary, task.hoistableState = parentHoistableState, task.replay = previousReplaySet, task.keyPath = prevKeyPath, task.formatContext = prevContext, task.row = prevRow; } childNodes = createReplayTask(request, null, { nodes: keyOrIndex, slots: node$jscomp$0, pendingTasks: 0 }, fallback, -1, parentBoundary, props.fallbackState, fallbackAbortSet, [ key[0], "Suspense Fallback", key[2] ], getSuspenseFallbackFormatContext(request.resumableState, task.formatContext), task.context, task.treeContext, task.row, replaceSuspenseComponentStackWithSuspenseFallbackStack(task.componentStack)); pushComponentStack(childNodes); request.pingedTasks.push(childNodes); } } childIndex.splice(node, 1); break a; } } } else renderElement(request, task, key, type, props, ref); return; case REACT_PORTAL_TYPE: throw Error("Portals are not currently supported by the server renderer. Render them conditionally so that they only appear on the client render."); case REACT_LAZY_TYPE: childNodes = node._init; node = childNodes(node._payload); if (12 === request.status) throw null; renderNodeDestructive(request, task, node, childIndex); return; } if (isArrayImpl(node)) { renderChildrenArray(request, task, node, childIndex); return; } if (childNodes = getIteratorFn(node)) { if (childNodes = childNodes.call(node)) { node = childNodes.next(); if (!node.done) { props = []; do props.push(node.value), node = childNodes.next(); while (!node.done); renderChildrenArray(request, task, props, childIndex); } return; } } if ("function" === typeof node.then) return task.thenableState = null, renderNodeDestructive(request, task, unwrapThenable(node), childIndex); if (node.$$typeof === REACT_CONTEXT_TYPE) return renderNodeDestructive(request, task, node._currentValue2, childIndex); childIndex = Object.prototype.toString.call(node); throw Error("Objects are not valid as a React child (found: " + ("[object Object]" === childIndex ? "object with keys {" + Object.keys(node).join(", ") + "}" : childIndex) + "). If you meant to render a collection of children, use an array instead."); } if ("string" === typeof node) childIndex = task.blockedSegment, null !== childIndex && (childIndex.lastPushedText = pushTextInstance(childIndex.chunks, node, request.renderState, childIndex.lastPushedText)); else if ("number" === typeof node || "bigint" === typeof node) childIndex = task.blockedSegment, null !== childIndex && (childIndex.lastPushedText = pushTextInstance(childIndex.chunks, "" + node, request.renderState, childIndex.lastPushedText)); } } function renderChildrenArray(request, task, children, childIndex) { var prevKeyPath = task.keyPath; if (-1 !== childIndex && (task.keyPath = [ task.keyPath, "Fragment", childIndex ], null !== task.replay)) { for (var replay = task.replay, replayNodes = replay.nodes, j = 0; j < replayNodes.length; j++) { var node = replayNodes[j]; if (node[1] === childIndex) { childIndex = node[2]; node = node[3]; task.replay = { nodes: childIndex, slots: node, pendingTasks: 1 }; try { renderChildrenArray(request, task, children, -1); if (1 === task.replay.pendingTasks && 0 < task.replay.nodes.length) throw Error("Couldn't find all resumable slots by key/index during replaying. The tree doesn't match so React will fallback to client rendering."); task.replay.pendingTasks--; } catch (x) { if ("object" === typeof x && null !== x && (x === SuspenseException || "function" === typeof x.then)) throw x; task.replay.pendingTasks--; children = getThrownInfo(task.componentStack); var boundary = task.blockedBoundary, error = x; children = logRecoverableError(request, error, children); abortRemainingReplayNodes(request, boundary, childIndex, node, error, children); } task.replay = replay; replayNodes.splice(j, 1); break; } } task.keyPath = prevKeyPath; return; } replay = task.treeContext; replayNodes = children.length; if (null !== task.replay && (j = task.replay.slots, null !== j && "object" === typeof j)) { for (childIndex = 0; childIndex < replayNodes; childIndex++) node = children[childIndex], task.treeContext = pushTreeContext(replay, replayNodes, childIndex), boundary = j[childIndex], "number" === typeof boundary ? (resumeNode(request, task, boundary, node, childIndex), delete j[childIndex]) : renderNode(request, task, node, childIndex); task.treeContext = replay; task.keyPath = prevKeyPath; return; } for (j = 0; j < replayNodes; j++) childIndex = children[j], task.treeContext = pushTreeContext(replay, replayNodes, j), renderNode(request, task, childIndex, j); task.treeContext = replay; task.keyPath = prevKeyPath; } function trackPostponedBoundary(request, trackedPostpones, boundary) { boundary.status = 5; boundary.rootSegmentID = request.nextSegmentId++; request = boundary.trackedContentKeyPath; if (null === request) throw Error("It should not be possible to postpone at the root. This is a bug in React."); var fallbackReplayNode = boundary.trackedFallbackNode, children = [], boundaryNode = trackedPostpones.workingMap.get(request); if (void 0 === boundaryNode) return boundary = [ request[1], request[2], children, null, fallbackReplayNode, boundary.rootSegmentID ], trackedPostpones.workingMap.set(request, boundary), addToReplayParent(boundary, request[0], trackedPostpones), boundary; boundaryNode[4] = fallbackReplayNode; boundaryNode[5] = boundary.rootSegmentID; return boundaryNode; } function trackPostpone(request, trackedPostpones, task, segment) { segment.status = 5; var keyPath = task.keyPath, boundary = task.blockedBoundary; if (null === boundary) segment.id = request.nextSegmentId++, trackedPostpones.rootSlots = segment.id, null !== request.completedRootSegment && (request.completedRootSegment.status = 5); else { if (null !== boundary && 0 === boundary.status) { var boundaryNode = trackPostponedBoundary(request, trackedPostpones, boundary); if (boundary.trackedContentKeyPath === keyPath && -1 === task.childIndex) { -1 === segment.id && (segment.id = segment.parentFlushed ? boundary.rootSegmentID : request.nextSegmentId++); boundaryNode[3] = segment.id; return; } } -1 === segment.id && (segment.id = segment.parentFlushed && null !== boundary ? boundary.rootSegmentID : request.nextSegmentId++); if (-1 === task.childIndex) null === keyPath ? trackedPostpones.rootSlots = segment.id : (task = trackedPostpones.workingMap.get(keyPath), void 0 === task ? (task = [ keyPath[1], keyPath[2], [], segment.id ], addToReplayParent(task, keyPath[0], trackedPostpones)) : task[3] = segment.id); else { if (null === keyPath) { if (request = trackedPostpones.rootSlots, null === request) request = trackedPostpones.rootSlots = {}; else if ("number" === typeof request) throw Error("It should not be possible to postpone both at the root of an element as well as a slot below. This is a bug in React."); } else if (boundary = trackedPostpones.workingMap, boundaryNode = boundary.get(keyPath), void 0 === boundaryNode) request = {}, boundaryNode = [ keyPath[1], keyPath[2], [], request ], boundary.set(keyPath, boundaryNode), addToReplayParent(boundaryNode, keyPath[0], trackedPostpones); else if (request = boundaryNode[3], null === request) request = boundaryNode[3] = {}; else if ("number" === typeof request) throw Error("It should not be possible to postpone both at the root of an element as well as a slot below. This is a bug in React."); request[task.childIndex] = segment.id; } } } function untrackBoundary(request, boundary) { request = request.trackedPostpones; null !== request && (boundary = boundary.trackedContentKeyPath, null !== boundary && (boundary = request.workingMap.get(boundary), void 0 !== boundary && (boundary.length = 4, boundary[2] = [], boundary[3] = null))); } function spawnNewSuspendedReplayTask(request, task, thenableState) { return createReplayTask(request, thenableState, task.replay, task.node, task.childIndex, task.blockedBoundary, task.hoistableState, task.abortSet, task.keyPath, task.formatContext, task.context, task.treeContext, task.row, task.componentStack); } function spawnNewSuspendedRenderTask(request, task, thenableState) { var segment = task.blockedSegment, newSegment = createPendingSegment(request, segment.chunks.length, null, task.formatContext, segment.lastPushedText, !0); segment.children.push(newSegment); segment.lastPushedText = !1; return createRenderTask(request, thenableState, task.node, task.childIndex, task.blockedBoundary, newSegment, task.blockedPreamble, task.hoistableState, task.abortSet, task.keyPath, task.formatContext, task.context, task.treeContext, task.row, task.componentStack); } function renderNode(request, task, node, childIndex) { var previousFormatContext = task.formatContext, previousContext = task.context, previousKeyPath = task.keyPath, previousTreeContext = task.treeContext, previousComponentStack = task.componentStack, segment = task.blockedSegment; if (null === segment) { segment = task.replay; try { return renderNodeDestructive(request, task, node, childIndex); } catch (thrownValue) { if (resetHooksState(), node = thrownValue === SuspenseException ? getSuspendedThenable() : thrownValue, 12 !== request.status && "object" === typeof node && null !== node) { if ("function" === typeof node.then) { childIndex = thrownValue === SuspenseException ? getThenableStateAfterSuspending() : null; request = spawnNewSuspendedReplayTask(request, task, childIndex).ping; node.then(request, request); task.formatContext = previousFormatContext; task.context = previousContext; task.keyPath = previousKeyPath; task.treeContext = previousTreeContext; task.componentStack = previousComponentStack; task.replay = segment; switchContext(previousContext); return; } if ("Maximum call stack size exceeded" === node.message) { node = thrownValue === SuspenseException ? getThenableStateAfterSuspending() : null; node = spawnNewSuspendedReplayTask(request, task, node); request.pingedTasks.push(node); task.formatContext = previousFormatContext; task.context = previousContext; task.keyPath = previousKeyPath; task.treeContext = previousTreeContext; task.componentStack = previousComponentStack; task.replay = segment; switchContext(previousContext); return; } } } } else { var childrenLength = segment.children.length, chunkLength = segment.chunks.length; try { return renderNodeDestructive(request, task, node, childIndex); } catch (thrownValue$62) { if (resetHooksState(), segment.children.length = childrenLength, segment.chunks.length = chunkLength, node = thrownValue$62 === SuspenseException ? getSuspendedThenable() : thrownValue$62, 12 !== request.status && "object" === typeof node && null !== node) { if ("function" === typeof node.then) { segment = node; node = thrownValue$62 === SuspenseException ? getThenableStateAfterSuspending() : null; request = spawnNewSuspendedRenderTask(request, task, node).ping; segment.then(request, request); task.formatContext = previousFormatContext; task.context = previousContext; task.keyPath = previousKeyPath; task.treeContext = previousTreeContext; task.componentStack = previousComponentStack; switchContext(previousContext); return; } if ("Maximum call stack size exceeded" === node.message) { segment = thrownValue$62 === SuspenseException ? getThenableStateAfterSuspending() : null; segment = spawnNewSuspendedRenderTask(request, task, segment); request.pingedTasks.push(segment); task.formatContext = previousFormatContext; task.context = previousContext; task.keyPath = previousKeyPath; task.treeContext = previousTreeContext; task.componentStack = previousComponentStack; switchContext(previousContext); return; } } } } task.formatContext = previousFormatContext; task.context = previousContext; task.keyPath = previousKeyPath; task.treeContext = previousTreeContext; switchContext(previousContext); throw node; } function abortTaskSoft(task) { var boundary = task.blockedBoundary, segment = task.blockedSegment; null !== segment && (segment.status = 3, finishedTask(this, boundary, task.row, segment)); } function abortRemainingReplayNodes(request$jscomp$0, boundary, nodes, slots, error, errorDigest$jscomp$0) { for (var i = 0; i < nodes.length; i++) { var node = nodes[i]; if (4 === node.length) abortRemainingReplayNodes(request$jscomp$0, boundary, node[2], node[3], error, errorDigest$jscomp$0); else { node = node[5]; var request = request$jscomp$0, errorDigest = errorDigest$jscomp$0, resumedBoundary = createSuspenseBoundary(request, null, /* @__PURE__ */ new Set(), null, null); resumedBoundary.parentFlushed = !0; resumedBoundary.rootSegmentID = node; resumedBoundary.status = 4; resumedBoundary.errorDigest = errorDigest; resumedBoundary.parentFlushed && request.clientRenderedBoundaries.push(resumedBoundary); } } nodes.length = 0; if (null !== slots) { if (null === boundary) throw Error("We should not have any resumable nodes in the shell. This is a bug in React."); 4 !== boundary.status && (boundary.status = 4, boundary.errorDigest = errorDigest$jscomp$0, boundary.parentFlushed && request$jscomp$0.clientRenderedBoundaries.push(boundary)); if ("object" === typeof slots) for (var index in slots) delete slots[index]; } } function abortTask(task, request, error) { var boundary = task.blockedBoundary, segment = task.blockedSegment; if (null !== segment) { if (6 === segment.status) return; segment.status = 3; } var errorInfo = getThrownInfo(task.componentStack); if (null === boundary) { if (13 !== request.status && 14 !== request.status) { boundary = task.replay; if (null === boundary) { null !== request.trackedPostpones && null !== segment ? (boundary = request.trackedPostpones, logRecoverableError(request, error, errorInfo), trackPostpone(request, boundary, task, segment), finishedTask(request, null, task.row, segment)) : (logRecoverableError(request, error, errorInfo), fatalError(request, error)); return; } boundary.pendingTasks--; 0 === boundary.pendingTasks && 0 < boundary.nodes.length && (segment = logRecoverableError(request, error, errorInfo), abortRemainingReplayNodes(request, null, boundary.nodes, boundary.slots, error, segment)); request.pendingRootTasks--; 0 === request.pendingRootTasks && completeShell(request); } } else { var trackedPostpones$63 = request.trackedPostpones; if (4 !== boundary.status) { if (null !== trackedPostpones$63 && null !== segment) return logRecoverableError(request, error, errorInfo), trackPostpone(request, trackedPostpones$63, task, segment), boundary.fallbackAbortableTasks.forEach(function(fallbackTask) { return abortTask(fallbackTask, request, error); }), boundary.fallbackAbortableTasks.clear(), finishedTask(request, boundary, task.row, segment); boundary.status = 4; segment = logRecoverableError(request, error, errorInfo); boundary.status = 4; boundary.errorDigest = segment; untrackBoundary(request, boundary); boundary.parentFlushed && request.clientRenderedBoundaries.push(boundary); } boundary.pendingTasks--; segment = boundary.row; null !== segment && 0 === --segment.pendingTasks && finishSuspenseListRow(request, segment); boundary.fallbackAbortableTasks.forEach(function(fallbackTask) { return abortTask(fallbackTask, request, error); }); boundary.fallbackAbortableTasks.clear(); } task = task.row; null !== task && 0 === --task.pendingTasks && finishSuspenseListRow(request, task); request.allPendingTasks--; 0 === request.allPendingTasks && completeAll(request); } function safelyEmitEarlyPreloads(request, shellComplete) { try { var renderState = request.renderState, onHeaders = renderState.onHeaders; if (onHeaders) { var headers = renderState.headers; if (headers) { renderState.headers = null; var linkHeader = headers.preconnects; headers.fontPreloads && (linkHeader && (linkHeader += ", "), linkHeader += headers.fontPreloads); headers.highImagePreloads && (linkHeader && (linkHeader += ", "), linkHeader += headers.highImagePreloads); if (!shellComplete) { var queueIter = renderState.styles.values(), queueStep = queueIter.next(); b: for (; 0 < headers.remainingCapacity && !queueStep.done; queueStep = queueIter.next()) for (var sheetIter = queueStep.value.sheets.values(), sheetStep = sheetIter.next(); 0 < headers.remainingCapacity && !sheetStep.done; sheetStep = sheetIter.next()) { var sheet = sheetStep.value, props = sheet.props, key = props.href, props$jscomp$0 = sheet.props, header = getPreloadAsHeader(props$jscomp$0.href, "style", { crossOrigin: props$jscomp$0.crossOrigin, integrity: props$jscomp$0.integrity, nonce: props$jscomp$0.nonce, type: props$jscomp$0.type, fetchPriority: props$jscomp$0.fetchPriority, referrerPolicy: props$jscomp$0.referrerPolicy, media: props$jscomp$0.media }); if (0 <= (headers.remainingCapacity -= header.length + 2)) renderState.resets.style[key] = PRELOAD_NO_CREDS, linkHeader && (linkHeader += ", "), linkHeader += header, renderState.resets.style[key] = "string" === typeof props.crossOrigin || "string" === typeof props.integrity ? [props.crossOrigin, props.integrity] : PRELOAD_NO_CREDS; else break b; } } linkHeader ? onHeaders({ Link: linkHeader }) : onHeaders({}); } } } catch (error) { logRecoverableError(request, error, {}); } } function completeShell(request) { null === request.trackedPostpones && safelyEmitEarlyPreloads(request, !0); null === request.trackedPostpones && preparePreamble(request); request.onShellError = noop; request = request.onShellReady; request(); } function completeAll(request) { safelyEmitEarlyPreloads(request, null === request.trackedPostpones ? !0 : null === request.completedRootSegment || 5 !== request.completedRootSegment.status); preparePreamble(request); request = request.onAllReady; request(); } function queueCompletedSegment(boundary, segment) { if (0 === segment.chunks.length && 1 === segment.children.length && null === segment.children[0].boundary && -1 === segment.children[0].id) { var childSegment = segment.children[0]; childSegment.id = segment.id; childSegment.parentFlushed = !0; 1 !== childSegment.status && 3 !== childSegment.status && 4 !== childSegment.status || queueCompletedSegment(boundary, childSegment); } else boundary.completedSegments.push(segment); } function finishedTask(request, boundary, row, segment) { null !== row && (0 === --row.pendingTasks ? finishSuspenseListRow(request, row) : row.together && tryToResolveTogetherRow(request, row)); request.allPendingTasks--; if (null === boundary) { if (null !== segment && segment.parentFlushed) { if (null !== request.completedRootSegment) throw Error("There can only be one root segment. This is a bug in React."); request.completedRootSegment = segment; } request.pendingRootTasks--; 0 === request.pendingRootTasks && completeShell(request); } else if (boundary.pendingTasks--, 4 !== boundary.status) if (0 === boundary.pendingTasks) { if (0 === boundary.status && (boundary.status = 1), null !== segment && segment.parentFlushed && (1 === segment.status || 3 === segment.status) && queueCompletedSegment(boundary, segment), boundary.parentFlushed && request.completedBoundaries.push(boundary), 1 === boundary.status) row = boundary.row, null !== row && hoistHoistables(row.hoistables, boundary.contentState), isEligibleForOutlining(request, boundary) || (boundary.fallbackAbortableTasks.forEach(abortTaskSoft, request), boundary.fallbackAbortableTasks.clear(), null !== row && 0 === --row.pendingTasks && finishSuspenseListRow(request, row)), 0 === request.pendingRootTasks && null === request.trackedPostpones && null !== boundary.contentPreamble && preparePreamble(request); else if (5 === boundary.status && (boundary = boundary.row, null !== boundary)) { if (null !== request.trackedPostpones) { row = request.trackedPostpones; var postponedRow = boundary.next; if (null !== postponedRow && (segment = postponedRow.boundaries, null !== segment)) for (postponedRow.boundaries = null, postponedRow = 0; postponedRow < segment.length; postponedRow++) { var postponedBoundary = segment[postponedRow]; trackPostponedBoundary(request, row, postponedBoundary); finishedTask(request, postponedBoundary, null, null); } } 0 === --boundary.pendingTasks && finishSuspenseListRow(request, boundary); } } else null === segment || !segment.parentFlushed || 1 !== segment.status && 3 !== segment.status || (queueCompletedSegment(boundary, segment), 1 === boundary.completedSegments.length && boundary.parentFlushed && request.partialBoundaries.push(boundary)), boundary = boundary.row, null !== boundary && boundary.together && tryToResolveTogetherRow(request, boundary); 0 === request.allPendingTasks && completeAll(request); } function performWork(request$jscomp$2) { if (14 !== request$jscomp$2.status && 13 !== request$jscomp$2.status) { var prevContext = currentActiveSnapshot, prevDispatcher = ReactSharedInternals.H; ReactSharedInternals.H = HooksDispatcher; var prevAsyncDispatcher = ReactSharedInternals.A; ReactSharedInternals.A = DefaultAsyncDispatcher; var prevRequest = currentRequest; currentRequest = request$jscomp$2; var prevResumableState = currentResumableState; currentResumableState = request$jscomp$2.resumableState; try { var pingedTasks = request$jscomp$2.pingedTasks, i; for (i = 0; i < pingedTasks.length; i++) { var task = pingedTasks[i], request = request$jscomp$2, segment = task.blockedSegment; if (null === segment) { var request$jscomp$0 = request; if (0 !== task.replay.pendingTasks) { switchContext(task.context); try { "number" === typeof task.replay.slots ? resumeNode(request$jscomp$0, task, task.replay.slots, task.node, task.childIndex) : retryNode(request$jscomp$0, task); if (1 === task.replay.pendingTasks && 0 < task.replay.nodes.length) throw Error("Couldn't find all resumable slots by key/index during replaying. The tree doesn't match so React will fallback to client rendering."); task.replay.pendingTasks--; task.abortSet.delete(task); finishedTask(request$jscomp$0, task.blockedBoundary, task.row, null); } catch (thrownValue) { resetHooksState(); var x = thrownValue === SuspenseException ? getSuspendedThenable() : thrownValue; if ("object" === typeof x && null !== x && "function" === typeof x.then) { var ping = task.ping; x.then(ping, ping); task.thenableState = thrownValue === SuspenseException ? getThenableStateAfterSuspending() : null; } else { task.replay.pendingTasks--; task.abortSet.delete(task); var errorInfo = getThrownInfo(task.componentStack); request = void 0; var request$jscomp$1 = request$jscomp$0, boundary = task.blockedBoundary, error$jscomp$0 = 12 === request$jscomp$0.status ? request$jscomp$0.fatalError : x, replayNodes = task.replay.nodes, resumeSlots = task.replay.slots; request = logRecoverableError(request$jscomp$1, error$jscomp$0, errorInfo); abortRemainingReplayNodes(request$jscomp$1, boundary, replayNodes, resumeSlots, error$jscomp$0, request); request$jscomp$0.pendingRootTasks--; 0 === request$jscomp$0.pendingRootTasks && completeShell(request$jscomp$0); request$jscomp$0.allPendingTasks--; 0 === request$jscomp$0.allPendingTasks && completeAll(request$jscomp$0); } } } } else if (request$jscomp$0 = void 0, request$jscomp$1 = segment, 0 === request$jscomp$1.status) { request$jscomp$1.status = 6; switchContext(task.context); var childrenLength = request$jscomp$1.children.length, chunkLength = request$jscomp$1.chunks.length; try { retryNode(request, task), pushSegmentFinale(request$jscomp$1.chunks, request.renderState, request$jscomp$1.lastPushedText, request$jscomp$1.textEmbedded), task.abortSet.delete(task), request$jscomp$1.status = 1, finishedTask(request, task.blockedBoundary, task.row, request$jscomp$1); } catch (thrownValue) { resetHooksState(); request$jscomp$1.children.length = childrenLength; request$jscomp$1.chunks.length = chunkLength; var x$jscomp$0 = thrownValue === SuspenseException ? getSuspendedThenable() : 12 === request.status ? request.fatalError : thrownValue; if (12 === request.status && null !== request.trackedPostpones) { var trackedPostpones = request.trackedPostpones, thrownInfo = getThrownInfo(task.componentStack); task.abortSet.delete(task); logRecoverableError(request, x$jscomp$0, thrownInfo); trackPostpone(request, trackedPostpones, task, request$jscomp$1); finishedTask(request, task.blockedBoundary, task.row, request$jscomp$1); } else if ("object" === typeof x$jscomp$0 && null !== x$jscomp$0 && "function" === typeof x$jscomp$0.then) { request$jscomp$1.status = 0; task.thenableState = thrownValue === SuspenseException ? getThenableStateAfterSuspending() : null; var ping$jscomp$0 = task.ping; x$jscomp$0.then(ping$jscomp$0, ping$jscomp$0); } else { var errorInfo$jscomp$0 = getThrownInfo(task.componentStack); task.abortSet.delete(task); request$jscomp$1.status = 4; var boundary$jscomp$0 = task.blockedBoundary, row = task.row; null !== row && 0 === --row.pendingTasks && finishSuspenseListRow(request, row); request.allPendingTasks--; request$jscomp$0 = logRecoverableError(request, x$jscomp$0, errorInfo$jscomp$0); if (null === boundary$jscomp$0) fatalError(request, x$jscomp$0); else if (boundary$jscomp$0.pendingTasks--, 4 !== boundary$jscomp$0.status) { boundary$jscomp$0.status = 4; boundary$jscomp$0.errorDigest = request$jscomp$0; untrackBoundary(request, boundary$jscomp$0); var boundaryRow = boundary$jscomp$0.row; null !== boundaryRow && 0 === --boundaryRow.pendingTasks && finishSuspenseListRow(request, boundaryRow); boundary$jscomp$0.parentFlushed && request.clientRenderedBoundaries.push(boundary$jscomp$0); 0 === request.pendingRootTasks && null === request.trackedPostpones && null !== boundary$jscomp$0.contentPreamble && preparePreamble(request); } 0 === request.allPendingTasks && completeAll(request); } } } } pingedTasks.splice(0, i); null !== request$jscomp$2.destination && flushCompletedQueues(request$jscomp$2, request$jscomp$2.destination); } catch (error) { logRecoverableError(request$jscomp$2, error, {}), fatalError(request$jscomp$2, error); } finally { currentResumableState = prevResumableState, ReactSharedInternals.H = prevDispatcher, ReactSharedInternals.A = prevAsyncDispatcher, prevDispatcher === HooksDispatcher && switchContext(prevContext), currentRequest = prevRequest; } } } function preparePreambleFromSubtree(request, segment, collectedPreambleSegments) { segment.preambleChildren.length && collectedPreambleSegments.push(segment.preambleChildren); for (var pendingPreambles = !1, i = 0; i < segment.children.length; i++) pendingPreambles = preparePreambleFromSegment(request, segment.children[i], collectedPreambleSegments) || pendingPreambles; return pendingPreambles; } function preparePreambleFromSegment(request, segment, collectedPreambleSegments) { var boundary = segment.boundary; if (null === boundary) return preparePreambleFromSubtree(request, segment, collectedPreambleSegments); var preamble = boundary.contentPreamble, fallbackPreamble = boundary.fallbackPreamble; if (null === preamble || null === fallbackPreamble) return !1; switch (boundary.status) { case 1: hoistPreambleState(request.renderState, preamble); request.byteSize += boundary.byteSize; segment = boundary.completedSegments[0]; if (!segment) throw Error("A previously unvisited boundary must have exactly one root segment. This is a bug in React."); return preparePreambleFromSubtree(request, segment, collectedPreambleSegments); case 5: if (null !== request.trackedPostpones) return !0; case 4: if (1 === segment.status) return hoistPreambleState(request.renderState, fallbackPreamble), preparePreambleFromSubtree(request, segment, collectedPreambleSegments); default: return !0; } } function preparePreamble(request) { if (request.completedRootSegment && null === request.completedPreambleSegments) { var collectedPreambleSegments = [], originalRequestByteSize = request.byteSize, hasPendingPreambles = preparePreambleFromSegment(request, request.completedRootSegment, collectedPreambleSegments), preamble = request.renderState.preamble; !1 === hasPendingPreambles || preamble.headChunks && preamble.bodyChunks ? request.completedPreambleSegments = collectedPreambleSegments : request.byteSize = originalRequestByteSize; } } function flushSubtree(request, destination, segment, hoistableState) { segment.parentFlushed = !0; switch (segment.status) { case 0: segment.id = request.nextSegmentId++; case 5: return hoistableState = segment.id, segment.lastPushedText = !1, segment.textEmbedded = !1, request = request.renderState, destination.push("<template id=\""), destination.push(request.placeholderPrefix), request = hoistableState.toString(16), destination.push(request), destination.push("\"></template>"); case 1: segment.status = 2; var r = !0, chunks = segment.chunks, chunkIdx = 0; segment = segment.children; for (var childIdx = 0; childIdx < segment.length; childIdx++) { for (r = segment[childIdx]; chunkIdx < r.index; chunkIdx++) destination.push(chunks[chunkIdx]); r = flushSegment(request, destination, r, hoistableState); } for (; chunkIdx < chunks.length - 1; chunkIdx++) destination.push(chunks[chunkIdx]); chunkIdx < chunks.length && (r = destination.push(chunks[chunkIdx])); return r; case 3: return !0; default: throw Error("Aborted, errored or already flushed boundaries should not be flushed again. This is a bug in React."); } } var flushedByteSize = 0; function flushSegment(request, destination, segment, hoistableState) { var boundary = segment.boundary; if (null === boundary) return flushSubtree(request, destination, segment, hoistableState); boundary.parentFlushed = !0; if (4 === boundary.status) { var row = boundary.row; null !== row && 0 === --row.pendingTasks && finishSuspenseListRow(request, row); request.renderState.generateStaticMarkup || (boundary = boundary.errorDigest, destination.push("<!--$!-->"), destination.push("<template"), boundary && (destination.push(" data-dgst=\""), boundary = escapeTextForBrowser(boundary), destination.push(boundary), destination.push("\"")), destination.push("></template>")); flushSubtree(request, destination, segment, hoistableState); request = request.renderState.generateStaticMarkup ? !0 : destination.push("<!--/$-->"); return request; } if (1 !== boundary.status) return 0 === boundary.status && (boundary.rootSegmentID = request.nextSegmentId++), 0 < boundary.completedSegments.length && request.partialBoundaries.push(boundary), writeStartPendingSuspenseBoundary(destination, request.renderState, boundary.rootSegmentID), hoistableState && hoistHoistables(hoistableState, boundary.fallbackState), flushSubtree(request, destination, segment, hoistableState), destination.push("<!--/$-->"); if (!flushingPartialBoundaries && isEligibleForOutlining(request, boundary) && flushedByteSize + boundary.byteSize > request.progressiveChunkSize) return boundary.rootSegmentID = request.nextSegmentId++, request.completedBoundaries.push(boundary), writeStartPendingSuspenseBoundary(destination, request.renderState, boundary.rootSegmentID), flushSubtree(request, destination, segment, hoistableState), destination.push("<!--/$-->"); flushedByteSize += boundary.byteSize; hoistableState && hoistHoistables(hoistableState, boundary.contentState); segment = boundary.row; null !== segment && isEligibleForOutlining(request, boundary) && 0 === --segment.pendingTasks && finishSuspenseListRow(request, segment); request.renderState.generateStaticMarkup || destination.push("<!--$-->"); segment = boundary.completedSegments; if (1 !== segment.length) throw Error("A previously unvisited boundary must have exactly one root segment. This is a bug in React."); flushSegment(request, destination, segment[0], hoistableState); request = request.renderState.generateStaticMarkup ? !0 : destination.push("<!--/$-->"); return request; } function flushSegmentContainer(request, destination, segment, hoistableState) { writeStartSegment(destination, request.renderState, segment.parentFormatContext, segment.id); flushSegment(request, destination, segment, hoistableState); return writeEndSegment(destination, segment.parentFormatContext); } function flushCompletedBoundary(request, destination, boundary) { flushedByteSize = boundary.byteSize; for (var completedSegments = boundary.completedSegments, i = 0; i < completedSegments.length; i++) flushPartiallyCompletedSegment(request, destination, boundary, completedSegments[i]); completedSegments.length = 0; completedSegments = boundary.row; null !== completedSegments && isEligibleForOutlining(request, boundary) && 0 === --completedSegments.pendingTasks && finishSuspenseListRow(request, completedSegments); writeHoistablesForBoundary(destination, boundary.contentState, request.renderState); completedSegments = request.resumableState; request = request.renderState; i = boundary.rootSegmentID; boundary = boundary.contentState; var requiresStyleInsertion = request.stylesToHoist; request.stylesToHoist = !1; destination.push(request.startInlineScript); destination.push(">"); requiresStyleInsertion ? (0 === (completedSegments.instructions & 4) && (completedSegments.instructions |= 4, destination.push("$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data=\"$!\",a=a.dataset,c&&(a.dgst=c),d&&(a.msg=d),e&&(a.stck=e),f&&(a.cstck=f),b._reactRetry&&b._reactRetry())};")), 0 === (completedSegments.instructions & 2) && (completedSegments.instructions |= 2, destination.push("$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if(\"/$\"===d||\"/&\"===d)if(0===h)break;else h--;else\"$\"!==d&&\"$?\"!==d&&\"$~\"!==d&&\"$!\"!==d&&\"&\"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data=\"$\";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};\n$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data=\"$~\",$RB.push(a,b),2===$RB.length&&(\"number\"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};")), 0 === (completedSegments.instructions & 8) ? (completedSegments.instructions |= 8, destination.push("$RM=new Map;$RR=function(n,w,p){function u(q){this._p=null;q()}for(var r=new Map,t=document,h,b,e=t.querySelectorAll(\"link[data-precedence],style[data-precedence]\"),v=[],k=0;b=e[k++];)\"not all\"===b.getAttribute(\"media\")?v.push(b):(\"LINK\"===b.tagName&&$RM.set(b.getAttribute(\"href\"),b),r.set(b.dataset.precedence,h=b));e=0;b=[];var l,a;for(k=!0;;){if(k){var f=p[e++];if(!f){k=!1;e=0;continue}var c=!1,m=0;var d=f[m++];if(a=$RM.get(d)){var g=a._p;c=!0}else{a=t.createElement(\"link\");a.href=d;a.rel=\n\"stylesheet\";for(a.dataset.precedence=l=f[m++];g=f[m++];)a.setAttribute(g,f[m++]);g=a._p=new Promise(function(q,x){a.onload=u.bind(a,q);a.onerror=u.bind(a,x)});$RM.set(d,a)}d=a.getAttribute(\"media\");!g||d&&!matchMedia(d).matches||b.push(g);if(c)continue}else{a=v[e++];if(!a)break;l=a.getAttribute(\"data-precedence\");a.removeAttribute(\"media\")}c=r.get(l)||h;c===h&&(h=a);r.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=t.head,c.insertBefore(a,c.firstChild))}if(p=document.getElementById(n))p.previousSibling.data=\n\"$~\";Promise.all(b).then($RC.bind(null,n,w),$RX.bind(null,n,\"CSS failed to load\"))};$RR(\"")) : destination.push("$RR(\"")) : (0 === (completedSegments.instructions & 2) && (completedSegments.instructions |= 2, destination.push("$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if(\"/$\"===d||\"/&\"===d)if(0===h)break;else h--;else\"$\"!==d&&\"$?\"!==d&&\"$~\"!==d&&\"$!\"!==d&&\"&\"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data=\"$\";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};\n$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data=\"$~\",$RB.push(a,b),2===$RB.length&&(\"number\"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};")), destination.push("$RC(\"")); completedSegments = i.toString(16); destination.push(request.boundaryPrefix); destination.push(completedSegments); destination.push("\",\""); destination.push(request.segmentPrefix); destination.push(completedSegments); requiresStyleInsertion ? (destination.push("\","), writeStyleResourceDependenciesInJS(destination, boundary)) : destination.push("\""); boundary = destination.push(")<\/script>"); return writeBootstrap(destination, request) && boundary; } function flushPartiallyCompletedSegment(request, destination, boundary, segment) { if (2 === segment.status) return !0; var hoistableState = boundary.contentState, segmentID = segment.id; if (-1 === segmentID) { if (-1 === (segment.id = boundary.rootSegmentID)) throw Error("A root segment ID must have been assigned by now. This is a bug in React."); return flushSegmentContainer(request, destination, segment, hoistableState); } if (segmentID === boundary.rootSegmentID) return flushSegmentContainer(request, destination, segment, hoistableState); flushSegmentContainer(request, destination, segment, hoistableState); boundary = request.resumableState; request = request.renderState; destination.push(request.startInlineScript); destination.push(">"); 0 === (boundary.instructions & 1) ? (boundary.instructions |= 1, destination.push("$RS=function(a,b){a=document.getElementById(a);b=document.getElementById(b);for(a.parentNode.removeChild(a);a.firstChild;)b.parentNode.insertBefore(a.firstChild,b);b.parentNode.removeChild(b)};$RS(\"")) : destination.push("$RS(\""); destination.push(request.segmentPrefix); segmentID = segmentID.toString(16); destination.push(segmentID); destination.push("\",\""); destination.push(request.placeholderPrefix); destination.push(segmentID); destination = destination.push("\")<\/script>"); return destination; } var flushingPartialBoundaries = !1; function flushCompletedQueues(request, destination) { try { if (!(0 < request.pendingRootTasks)) { var i, completedRootSegment = request.completedRootSegment; if (null !== completedRootSegment) { if (5 === completedRootSegment.status) return; var completedPreambleSegments = request.completedPreambleSegments; if (null === completedPreambleSegments) return; flushedByteSize = request.byteSize; var resumableState = request.resumableState, renderState = request.renderState, preamble = renderState.preamble, htmlChunks = preamble.htmlChunks, headChunks = preamble.headChunks, i$jscomp$0; if (htmlChunks) { for (i$jscomp$0 = 0; i$jscomp$0 < htmlChunks.length; i$jscomp$0++) destination.push(htmlChunks[i$jscomp$0]); if (headChunks) for (i$jscomp$0 = 0; i$jscomp$0 < headChunks.length; i$jscomp$0++) destination.push(headChunks[i$jscomp$0]); else { var chunk = startChunkForTag("head"); destination.push(chunk); destination.push(">"); } } else if (headChunks) for (i$jscomp$0 = 0; i$jscomp$0 < headChunks.length; i$jscomp$0++) destination.push(headChunks[i$jscomp$0]); var charsetChunks = renderState.charsetChunks; for (i$jscomp$0 = 0; i$jscomp$0 < charsetChunks.length; i$jscomp$0++) destination.push(charsetChunks[i$jscomp$0]); charsetChunks.length = 0; renderState.preconnects.forEach(flushResource, destination); renderState.preconnects.clear(); var viewportChunks = renderState.viewportChunks; for (i$jscomp$0 = 0; i$jscomp$0 < viewportChunks.length; i$jscomp$0++) destination.push(viewportChunks[i$jscomp$0]); viewportChunks.length = 0; renderState.fontPreloads.forEach(flushResource, destination); renderState.fontPreloads.clear(); renderState.highImagePreloads.forEach(flushResource, destination); renderState.highImagePreloads.clear(); currentlyFlushingRenderState = renderState; renderState.styles.forEach(flushStylesInPreamble, destination); currentlyFlushingRenderState = null; var importMapChunks = renderState.importMapChunks; for (i$jscomp$0 = 0; i$jscomp$0 < importMapChunks.length; i$jscomp$0++) destination.push(importMapChunks[i$jscomp$0]); importMapChunks.length = 0; renderState.bootstrapScripts.forEach(flushResource, destination); renderState.scripts.forEach(flushResource, destination); renderState.scripts.clear(); renderState.bulkPreloads.forEach(flushResource, destination); renderState.bulkPreloads.clear(); resumableState.instructions |= 32; var hoistableChunks = renderState.hoistableChunks; for (i$jscomp$0 = 0; i$jscomp$0 < hoistableChunks.length; i$jscomp$0++) destination.push(hoistableChunks[i$jscomp$0]); for (resumableState = hoistableChunks.length = 0; resumableState < completedPreambleSegments.length; resumableState++) { var segments = completedPreambleSegments[resumableState]; for (renderState = 0; renderState < segments.length; renderState++) flushSegment(request, destination, segments[renderState], null); } var preamble$jscomp$0 = request.renderState.preamble, headChunks$jscomp$0 = preamble$jscomp$0.headChunks; if (preamble$jscomp$0.htmlChunks || headChunks$jscomp$0) { var chunk$jscomp$0 = endChunkForTag("head"); destination.push(chunk$jscomp$0); } var bodyChunks = preamble$jscomp$0.bodyChunks; if (bodyChunks) for (completedPreambleSegments = 0; completedPreambleSegments < bodyChunks.length; completedPreambleSegments++) destination.push(bodyChunks[completedPreambleSegments]); flushSegment(request, destination, completedRootSegment, null); request.completedRootSegment = null; var renderState$jscomp$0 = request.renderState; if (0 !== request.allPendingTasks || 0 !== request.clientRenderedBoundaries.length || 0 !== request.completedBoundaries.length || null !== request.trackedPostpones && (0 !== request.trackedPostpones.rootNodes.length || null !== request.trackedPostpones.rootSlots)) { var resumableState$jscomp$0 = request.resumableState; if (0 === (resumableState$jscomp$0.instructions & 64)) { resumableState$jscomp$0.instructions |= 64; destination.push(renderState$jscomp$0.startInlineScript); if (0 === (resumableState$jscomp$0.instructions & 32)) { resumableState$jscomp$0.instructions |= 32; var shellId = "_" + resumableState$jscomp$0.idPrefix + "R_"; destination.push(" id=\""); var chunk$jscomp$1 = escapeTextForBrowser(shellId); destination.push(chunk$jscomp$1); destination.push("\""); } destination.push(">"); destination.push("requestAnimationFrame(function(){$RT=performance.now()});"); destination.push("<\/script>"); } } writeBootstrap(destination, renderState$jscomp$0); } var renderState$jscomp$1 = request.renderState; completedRootSegment = 0; var viewportChunks$jscomp$0 = renderState$jscomp$1.viewportChunks; for (completedRootSegment = 0; completedRootSegment < viewportChunks$jscomp$0.length; completedRootSegment++) destination.push(viewportChunks$jscomp$0[completedRootSegment]); viewportChunks$jscomp$0.length = 0; renderState$jscomp$1.preconnects.forEach(flushResource, destination); renderState$jscomp$1.preconnects.clear(); renderState$jscomp$1.fontPreloads.forEach(flushResource, destination); renderState$jscomp$1.fontPreloads.clear(); renderState$jscomp$1.highImagePreloads.forEach(flushResource, destination); renderState$jscomp$1.highImagePreloads.clear(); renderState$jscomp$1.styles.forEach(preloadLateStyles, destination); renderState$jscomp$1.scripts.forEach(flushResource, destination); renderState$jscomp$1.scripts.clear(); renderState$jscomp$1.bulkPreloads.forEach(flushResource, destination); renderState$jscomp$1.bulkPreloads.clear(); var hoistableChunks$jscomp$0 = renderState$jscomp$1.hoistableChunks; for (completedRootSegment = 0; completedRootSegment < hoistableChunks$jscomp$0.length; completedRootSegment++) destination.push(hoistableChunks$jscomp$0[completedRootSegment]); hoistableChunks$jscomp$0.length = 0; var clientRenderedBoundaries = request.clientRenderedBoundaries; for (i = 0; i < clientRenderedBoundaries.length; i++) { var boundary = clientRenderedBoundaries[i]; renderState$jscomp$1 = destination; var resumableState$jscomp$1 = request.resumableState, renderState$jscomp$2 = request.renderState, id = boundary.rootSegmentID, errorDigest = boundary.errorDigest; renderState$jscomp$1.push(renderState$jscomp$2.startInlineScript); renderState$jscomp$1.push(">"); 0 === (resumableState$jscomp$1.instructions & 4) ? (resumableState$jscomp$1.instructions |= 4, renderState$jscomp$1.push("$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data=\"$!\",a=a.dataset,c&&(a.dgst=c),d&&(a.msg=d),e&&(a.stck=e),f&&(a.cstck=f),b._reactRetry&&b._reactRetry())};;$RX(\"")) : renderState$jscomp$1.push("$RX(\""); renderState$jscomp$1.push(renderState$jscomp$2.boundaryPrefix); var chunk$jscomp$2 = id.toString(16); renderState$jscomp$1.push(chunk$jscomp$2); renderState$jscomp$1.push("\""); if (errorDigest) { renderState$jscomp$1.push(","); var chunk$jscomp$3 = escapeJSStringsForInstructionScripts(errorDigest || ""); renderState$jscomp$1.push(chunk$jscomp$3); } var JSCompiler_inline_result = renderState$jscomp$1.push(")<\/script>"); if (!JSCompiler_inline_result) { request.destination = null; i++; clientRenderedBoundaries.splice(0, i); return; } } clientRenderedBoundaries.splice(0, i); var completedBoundaries = request.completedBoundaries; for (i = 0; i < completedBoundaries.length; i++) if (!flushCompletedBoundary(request, destination, completedBoundaries[i])) { request.destination = null; i++; completedBoundaries.splice(0, i); return; } completedBoundaries.splice(0, i); flushingPartialBoundaries = !0; var partialBoundaries = request.partialBoundaries; for (i = 0; i < partialBoundaries.length; i++) { var boundary$69 = partialBoundaries[i]; a: { clientRenderedBoundaries = request; boundary = destination; flushedByteSize = boundary$69.byteSize; var completedSegments = boundary$69.completedSegments; for (JSCompiler_inline_result = 0; JSCompiler_inline_result < completedSegments.length; JSCompiler_inline_result++) if (!flushPartiallyCompletedSegment(clientRenderedBoundaries, boundary, boundary$69, completedSegments[JSCompiler_inline_result])) { JSCompiler_inline_result++; completedSegments.splice(0, JSCompiler_inline_result); var JSCompiler_inline_result$jscomp$0 = !1; break a; } completedSegments.splice(0, JSCompiler_inline_result); var row = boundary$69.row; null !== row && row.together && 1 === boundary$69.pendingTasks && (1 === row.pendingTasks ? unblockSuspenseListRow(clientRenderedBoundaries, row, row.hoistables) : row.pendingTasks--); JSCompiler_inline_result$jscomp$0 = writeHoistablesForBoundary(boundary, boundary$69.contentState, clientRenderedBoundaries.renderState); } if (!JSCompiler_inline_result$jscomp$0) { request.destination = null; i++; partialBoundaries.splice(0, i); return; } } partialBoundaries.splice(0, i); flushingPartialBoundaries = !1; var largeBoundaries = request.completedBoundaries; for (i = 0; i < largeBoundaries.length; i++) if (!flushCompletedBoundary(request, destination, largeBoundaries[i])) { request.destination = null; i++; largeBoundaries.splice(0, i); return; } largeBoundaries.splice(0, i); } } finally { flushingPartialBoundaries = !1, 0 === request.allPendingTasks && 0 === request.clientRenderedBoundaries.length && 0 === request.completedBoundaries.length && (request.flushScheduled = !1, i = request.resumableState, i.hasBody && (partialBoundaries = endChunkForTag("body"), destination.push(partialBoundaries)), i.hasHtml && (i = endChunkForTag("html"), destination.push(i)), request.status = 14, destination.push(null), request.destination = null); } } function enqueueFlush(request) { if (!1 === request.flushScheduled && 0 === request.pingedTasks.length && null !== request.destination) { request.flushScheduled = !0; var destination = request.destination; destination ? flushCompletedQueues(request, destination) : request.flushScheduled = !1; } } function startFlowing(request, destination) { if (13 === request.status) request.status = 14, destination.destroy(request.fatalError); else if (14 !== request.status && null === request.destination) { request.destination = destination; try { flushCompletedQueues(request, destination); } catch (error) { logRecoverableError(request, error, {}), fatalError(request, error); } } } function abort(request, reason) { if (11 === request.status || 10 === request.status) request.status = 12; try { var abortableTasks = request.abortableTasks; if (0 < abortableTasks.size) { var error = void 0 === reason ? Error("The render was aborted by the server without a reason.") : "object" === typeof reason && null !== reason && "function" === typeof reason.then ? Error("The render was aborted by the server with a promise.") : reason; request.fatalError = error; abortableTasks.forEach(function(task) { return abortTask(task, request, error); }); abortableTasks.clear(); } null !== request.destination && flushCompletedQueues(request, request.destination); } catch (error$71) { logRecoverableError(request, error$71, {}), fatalError(request, error$71); } } function addToReplayParent(node, parentKeyPath, trackedPostpones) { if (null === parentKeyPath) trackedPostpones.rootNodes.push(node); else { var workingMap = trackedPostpones.workingMap, parentNode = workingMap.get(parentKeyPath); void 0 === parentNode && (parentNode = [ parentKeyPath[1], parentKeyPath[2], [], null ], workingMap.set(parentKeyPath, parentNode), addToReplayParent(parentNode, parentKeyPath[0], trackedPostpones)); parentNode[2].push(node); } } function onError() {} function renderToStringImpl(children, options, generateStaticMarkup, abortReason) { var didFatal = !1, fatalError = null, result = "", readyToStream = !1; options = createResumableState(options ? options.identifierPrefix : void 0); children = createRequest(children, options, createRenderState(options, generateStaticMarkup), createFormatContext(0, null, 0, null), Infinity, onError, void 0, function() { readyToStream = !0; }, void 0, void 0, void 0); children.flushScheduled = null !== children.destination; performWork(children); 10 === children.status && (children.status = 11); null === children.trackedPostpones && safelyEmitEarlyPreloads(children, 0 === children.pendingRootTasks); abort(children, abortReason); startFlowing(children, { push: function(chunk) { null !== chunk && (result += chunk); return !0; }, destroy: function(error) { didFatal = !0; fatalError = error; } }); if (didFatal && fatalError !== abortReason) throw fatalError; if (!readyToStream) throw Error("A component suspended while responding to synchronous input. This will cause the UI to be replaced with a loading indicator. To fix, updates that suspend should be wrapped with startTransition."); return result; } exports.renderToStaticMarkup = function(children, options) { return renderToStringImpl(children, options, !0, "The server used \"renderToStaticMarkup\" which does not support Suspense. If you intended to have the server wait for the suspended component please switch to \"renderToPipeableStream\" which supports Suspense on the server"); }; exports.renderToString = function(children, options) { return renderToStringImpl(children, options, !1, "The server used \"renderToString\" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to \"renderToPipeableStream\" which supports Suspense on the server"); }; exports.version = "19.2.7";}));//#endregion//#region node_modules/react-dom/cjs/react-dom-server.node.production.js/*** @license React* react-dom-server.node.production.js** Copyright (c) Meta Platforms, Inc. and affiliates.** This source code is licensed under the MIT license found in the* LICENSE file in the root directory of this source tree.*/var require_react_dom_server_node_production = /* @__PURE__ */ __commonJSMin(((exports) => { var util = __require("util"), crypto = __require("crypto"), async_hooks = __require("async_hooks"), React = require_react(), ReactDOM = require_react_dom(), stream = __require("stream"), REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_SCOPE_TYPE = Symbol.for("react.scope"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"), REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"), REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"), MAYBE_ITERATOR_SYMBOL = Symbol.iterator; function getIteratorFn(maybeIterable) { if (null === maybeIterable || "object" !== typeof maybeIterable) return null; maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"]; return "function" === typeof maybeIterable ? maybeIterable : null; } var isArrayImpl = Array.isArray, scheduleMicrotask = queueMicrotask; function flushBuffered(destination) { "function" === typeof destination.flush && destination.flush(); } var currentView = null, writtenBytes = 0, destinationHasCapacity$1 = !0; function writeChunk(destination, chunk) { if ("string" === typeof chunk) { if (0 !== chunk.length) if (2048 < 3 * chunk.length) 0 < writtenBytes && (writeToDestination(destination, currentView.subarray(0, writtenBytes)), currentView = new Uint8Array(2048), writtenBytes = 0), writeToDestination(destination, chunk); else { var target = currentView; 0 < writtenBytes && (target = currentView.subarray(writtenBytes)); target = textEncoder.encodeInto(chunk, target); var read = target.read; writtenBytes += target.written; read < chunk.length && (writeToDestination(destination, currentView.subarray(0, writtenBytes)), currentView = new Uint8Array(2048), writtenBytes = textEncoder.encodeInto(chunk.slice(read), currentView).written); 2048 === writtenBytes && (writeToDestination(destination, currentView), currentView = new Uint8Array(2048), writtenBytes = 0); } } else 0 !== chunk.byteLength && (2048 < chunk.byteLength ? (0 < writtenBytes && (writeToDestination(destination, currentView.subarray(0, writtenBytes)), currentView = new Uint8Array(2048), writtenBytes = 0), writeToDestination(destination, chunk)) : (target = currentView.length - writtenBytes, target < chunk.byteLength && (0 === target ? writeToDestination(destination, currentView) : (currentView.set(chunk.subarray(0, target), writtenBytes), writtenBytes += target, writeToDestination(destination, currentView), chunk = chunk.subarray(target)), currentView = new Uint8Array(2048), writtenBytes = 0), currentView.set(chunk, writtenBytes), writtenBytes += chunk.byteLength, 2048 === writtenBytes && (writeToDestination(destination, currentView), currentView = new Uint8Array(2048), writtenBytes = 0))); } function writeToDestination(destination, view) { destination = destination.write(view); destinationHasCapacity$1 = destinationHasCapacity$1 && destination; } function writeChunkAndReturn(destination, chunk) { writeChunk(destination, chunk); return destinationHasCapacity$1; } function completeWriting(destination) { currentView && 0 < writtenBytes && destination.write(currentView.subarray(0, writtenBytes)); currentView = null; writtenBytes = 0; destinationHasCapacity$1 = !0; } var textEncoder = new util.TextEncoder(); function stringToPrecomputedChunk(content) { return textEncoder.encode(content); } function byteLengthOfChunk(chunk) { return "string" === typeof chunk ? Buffer.byteLength(chunk, "utf8") : chunk.byteLength; } var assign = Object.assign, hasOwnProperty = Object.prototype.hasOwnProperty, VALID_ATTRIBUTE_NAME_REGEX = RegExp("^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"), illegalAttributeNameCache = {}, validatedAttributeNameCache = {}; function isAttributeNameSafe(attributeName) { if (hasOwnProperty.call(validatedAttributeNameCache, attributeName)) return !0; if (hasOwnProperty.call(illegalAttributeNameCache, attributeName)) return !1; if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName)) return validatedAttributeNameCache[attributeName] = !0; illegalAttributeNameCache[attributeName] = !0; return !1; } var unitlessNumbers = new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" ")), aliases = new Map([ ["acceptCharset", "accept-charset"], ["htmlFor", "for"], ["httpEquiv", "http-equiv"], ["crossOrigin", "crossorigin"], ["accentHeight", "accent-height"], ["alignmentBaseline", "alignment-baseline"], ["arabicForm", "arabic-form"], ["baselineShift", "baseline-shift"], ["capHeight", "cap-height"], ["clipPath", "clip-path"], ["clipRule", "clip-rule"], ["colorInterpolation", "color-interpolation"], ["colorInterpolationFilters", "color-interpolation-filters"], ["colorProfile", "color-profile"], ["colorRendering", "color-rendering"], ["dominantBaseline", "dominant-baseline"], ["enableBackground", "enable-background"], ["fillOpacity", "fill-opacity"], ["fillRule", "fill-rule"], ["floodColor", "flood-color"], ["floodOpacity", "flood-opacity"], ["fontFamily", "font-family"], ["fontSize", "font-size"], ["fontSizeAdjust", "font-size-adjust"], ["fontStretch", "font-stretch"], ["fontStyle", "font-style"], ["fontVariant", "font-variant"], ["fontWeight", "font-weight"], ["glyphName", "glyph-name"], ["glyphOrientationHorizontal", "glyph-orientation-horizontal"], ["glyphOrientationVertical", "glyph-orientation-vertical"], ["horizAdvX", "horiz-adv-x"], ["horizOriginX", "horiz-origin-x"], ["imageRendering", "image-rendering"], ["letterSpacing", "letter-spacing"], ["lightingColor", "lighting-color"], ["markerEnd", "marker-end"], ["markerMid", "marker-mid"], ["markerStart", "marker-start"], ["overlinePosition", "overline-position"], ["overlineThickness", "overline-thickness"], ["paintOrder", "paint-order"], ["panose-1", "panose-1"], ["pointerEvents", "pointer-events"], ["renderingIntent", "rendering-intent"], ["shapeRendering", "shape-rendering"], ["stopColor", "stop-color"], ["stopOpacity", "stop-opacity"], ["strikethroughPosition", "strikethrough-position"], ["strikethroughThickness", "strikethrough-thickness"], ["strokeDasharray", "stroke-dasharray"], ["strokeDashoffset", "stroke-dashoffset"], ["strokeLinecap", "stroke-linecap"], ["strokeLinejoin", "stroke-linejoin"], ["strokeMiterlimit", "stroke-miterlimit"], ["strokeOpacity", "stroke-opacity"], ["strokeWidth", "stroke-width"], ["textAnchor", "text-anchor"], ["textDecoration", "text-decoration"], ["textRendering", "text-rendering"], ["transformOrigin", "transform-origin"], ["underlinePosition", "underline-position"], ["underlineThickness", "underline-thickness"], ["unicodeBidi", "unicode-bidi"], ["unicodeRange", "unicode-range"], ["unitsPerEm", "units-per-em"], ["vAlphabetic", "v-alphabetic"], ["vHanging", "v-hanging"], ["vIdeographic", "v-ideographic"], ["vMathematical", "v-mathematical"], ["vectorEffect", "vector-effect"], ["vertAdvY", "vert-adv-y"], ["vertOriginX", "vert-origin-x"], ["vertOriginY", "vert-origin-y"], ["wordSpacing", "word-spacing"], ["writingMode", "writing-mode"], ["xmlnsXlink", "xmlns:xlink"], ["xHeight", "x-height"] ]), matchHtmlRegExp = /["'&<>]/; function escapeTextForBrowser(text) { if ("boolean" === typeof text || "number" === typeof text || "bigint" === typeof text) return "" + text; text = "" + text; var match = matchHtmlRegExp.exec(text); if (match) { var html = "", index, lastIndex = 0; for (index = match.index; index < text.length; index++) { switch (text.charCodeAt(index)) { case 34: match = """; break; case 38: match = "&"; break; case 39: match = "'"; break; case 60: match = "<"; break; case 62: match = ">"; break; default: continue; } lastIndex !== index && (html += text.slice(lastIndex, index)); lastIndex = index + 1; html += match; } text = lastIndex !== index ? html + text.slice(lastIndex, index) : html; } return text; } var uppercasePattern = /([A-Z])/g, msPattern = /^ms-/, isJavaScriptProtocol = /^[\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 sanitizeURL(url) { return isJavaScriptProtocol.test("" + url) ? "javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')" : url; } var ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, ReactDOMSharedInternals = ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, sharedNotPendingObject = { pending: !1, data: null, method: null, action: null }, previousDispatcher = ReactDOMSharedInternals.d; ReactDOMSharedInternals.d = { f: previousDispatcher.f, r: previousDispatcher.r, D: prefetchDNS, C: preconnect, L: preload, m: preloadModule, X: preinitScript, S: preinitStyle, M: preinitModuleScript }; var PRELOAD_NO_CREDS = [], currentlyFlushingRenderState = null; stringToPrecomputedChunk("\"></template>"); var startInlineScript = stringToPrecomputedChunk("<script"), endInlineScript = stringToPrecomputedChunk("<\/script>"), startScriptSrc = stringToPrecomputedChunk("<script src=\""), startModuleSrc = stringToPrecomputedChunk("<script type=\"module\" src=\""), scriptNonce = stringToPrecomputedChunk(" nonce=\""), scriptIntegirty = stringToPrecomputedChunk(" integrity=\""), scriptCrossOrigin = stringToPrecomputedChunk(" crossorigin=\""), endAsyncScript = stringToPrecomputedChunk(" async=\"\"><\/script>"), startInlineStyle = stringToPrecomputedChunk("<style"), scriptRegex = /(<\/|<)(s)(cript)/gi; function scriptReplacer(match, prefix, s, suffix) { return "" + prefix + ("s" === s ? "\\u0073" : "\\u0053") + suffix; } var importMapScriptStart = stringToPrecomputedChunk("<script type=\"importmap\">"), importMapScriptEnd = stringToPrecomputedChunk("<\/script>"); function createRenderState(resumableState, nonce, externalRuntimeConfig, importMap, onHeaders, maxHeadersLength) { externalRuntimeConfig = "string" === typeof nonce ? nonce : nonce && nonce.script; var inlineScriptWithNonce = void 0 === externalRuntimeConfig ? startInlineScript : stringToPrecomputedChunk("<script nonce=\"" + escapeTextForBrowser(externalRuntimeConfig) + "\""), nonceStyle = "string" === typeof nonce ? void 0 : nonce && nonce.style, inlineStyleWithNonce = void 0 === nonceStyle ? startInlineStyle : stringToPrecomputedChunk("<style nonce=\"" + escapeTextForBrowser(nonceStyle) + "\""), idPrefix = resumableState.idPrefix, bootstrapChunks = [], bootstrapScriptContent = resumableState.bootstrapScriptContent, bootstrapScripts = resumableState.bootstrapScripts, bootstrapModules = resumableState.bootstrapModules; void 0 !== bootstrapScriptContent && (bootstrapChunks.push(inlineScriptWithNonce), pushCompletedShellIdAttribute(bootstrapChunks, resumableState), bootstrapChunks.push(endOfStartTag, ("" + bootstrapScriptContent).replace(scriptRegex, scriptReplacer), endInlineScript)); bootstrapScriptContent = []; void 0 !== importMap && (bootstrapScriptContent.push(importMapScriptStart), bootstrapScriptContent.push(("" + JSON.stringify(importMap)).replace(scriptRegex, scriptReplacer)), bootstrapScriptContent.push(importMapScriptEnd)); importMap = onHeaders ? { preconnects: "", fontPreloads: "", highImagePreloads: "", remainingCapacity: 2 + ("number" === typeof maxHeadersLength ? maxHeadersLength : 2e3) } : null; onHeaders = { placeholderPrefix: stringToPrecomputedChunk(idPrefix + "P:"), segmentPrefix: stringToPrecomputedChunk(idPrefix + "S:"), boundaryPrefix: stringToPrecomputedChunk(idPrefix + "B:"), startInlineScript: inlineScriptWithNonce, startInlineStyle: inlineStyleWithNonce, preamble: createPreambleState(), externalRuntimeScript: null, bootstrapChunks, importMapChunks: bootstrapScriptContent, onHeaders, headers: importMap, resets: { font: {}, dns: {}, connect: { default: {}, anonymous: {}, credentials: {} }, image: {}, style: {} }, charsetChunks: [], viewportChunks: [], hoistableChunks: [], preconnects: /* @__PURE__ */ new Set(), fontPreloads: /* @__PURE__ */ new Set(), highImagePreloads: /* @__PURE__ */ new Set(), styles: /* @__PURE__ */ new Map(), bootstrapScripts: /* @__PURE__ */ new Set(), scripts: /* @__PURE__ */ new Set(), bulkPreloads: /* @__PURE__ */ new Set(), preloads: { images: /* @__PURE__ */ new Map(), stylesheets: /* @__PURE__ */ new Map(), scripts: /* @__PURE__ */ new Map(), moduleScripts: /* @__PURE__ */ new Map() }, nonce: { script: externalRuntimeConfig, style: nonceStyle }, hoistableState: null, stylesToHoist: !1 }; if (void 0 !== bootstrapScripts) for (importMap = 0; importMap < bootstrapScripts.length; importMap++) idPrefix = bootstrapScripts[importMap], nonceStyle = inlineScriptWithNonce = void 0, inlineStyleWithNonce = { rel: "preload", as: "script", fetchPriority: "low", nonce }, "string" === typeof idPrefix ? inlineStyleWithNonce.href = maxHeadersLength = idPrefix : (inlineStyleWithNonce.href = maxHeadersLength = idPrefix.src, inlineStyleWithNonce.integrity = nonceStyle = "string" === typeof idPrefix.integrity ? idPrefix.integrity : void 0, inlineStyleWithNonce.crossOrigin = inlineScriptWithNonce = "string" === typeof idPrefix || null == idPrefix.crossOrigin ? void 0 : "use-credentials" === idPrefix.crossOrigin ? "use-credentials" : ""), idPrefix = resumableState, bootstrapScriptContent = maxHeadersLength, idPrefix.scriptResources[bootstrapScriptContent] = null, idPrefix.moduleScriptResources[bootstrapScriptContent] = null, idPrefix = [], pushLinkImpl(idPrefix, inlineStyleWithNonce), onHeaders.bootstrapScripts.add(idPrefix), bootstrapChunks.push(startScriptSrc, escapeTextForBrowser(maxHeadersLength), attributeEnd), externalRuntimeConfig && bootstrapChunks.push(scriptNonce, escapeTextForBrowser(externalRuntimeConfig), attributeEnd), "string" === typeof nonceStyle && bootstrapChunks.push(scriptIntegirty, escapeTextForBrowser(nonceStyle), attributeEnd), "string" === typeof inlineScriptWithNonce && bootstrapChunks.push(scriptCrossOrigin, escapeTextForBrowser(inlineScriptWithNonce), attributeEnd), pushCompletedShellIdAttribute(bootstrapChunks, resumableState), bootstrapChunks.push(endAsyncScript); if (void 0 !== bootstrapModules) for (nonce = 0; nonce < bootstrapModules.length; nonce++) nonceStyle = bootstrapModules[nonce], maxHeadersLength = importMap = void 0, inlineScriptWithNonce = { rel: "modulepreload", fetchPriority: "low", nonce: externalRuntimeConfig }, "string" === typeof nonceStyle ? inlineScriptWithNonce.href = bootstrapScripts = nonceStyle : (inlineScriptWithNonce.href = bootstrapScripts = nonceStyle.src, inlineScriptWithNonce.integrity = maxHeadersLength = "string" === typeof nonceStyle.integrity ? nonceStyle.integrity : void 0, inlineScriptWithNonce.crossOrigin = importMap = "string" === typeof nonceStyle || null == nonceStyle.crossOrigin ? void 0 : "use-credentials" === nonceStyle.crossOrigin ? "use-credentials" : ""), nonceStyle = resumableState, inlineStyleWithNonce = bootstrapScripts, nonceStyle.scriptResources[inlineStyleWithNonce] = null, nonceStyle.moduleScriptResources[inlineStyleWithNonce] = null, nonceStyle = [], pushLinkImpl(nonceStyle, inlineScriptWithNonce), onHeaders.bootstrapScripts.add(nonceStyle), bootstrapChunks.push(startModuleSrc, escapeTextForBrowser(bootstrapScripts), attributeEnd), externalRuntimeConfig && bootstrapChunks.push(scriptNonce, escapeTextForBrowser(externalRuntimeConfig), attributeEnd), "string" === typeof maxHeadersLength && bootstrapChunks.push(scriptIntegirty, escapeTextForBrowser(maxHeadersLength), attributeEnd), "string" === typeof importMap && bootstrapChunks.push(scriptCrossOrigin, escapeTextForBrowser(importMap), attributeEnd), pushCompletedShellIdAttribute(bootstrapChunks, resumableState), bootstrapChunks.push(endAsyncScript); return onHeaders; } function createResumableState(identifierPrefix, externalRuntimeConfig, bootstrapScriptContent, bootstrapScripts, bootstrapModules) { return { idPrefix: void 0 === identifierPrefix ? "" : identifierPrefix, nextFormID: 0, streamingFormat: 0, bootstrapScriptContent, bootstrapScripts, bootstrapModules, instructions: 0, hasBody: !1, hasHtml: !1, unknownResources: {}, dnsResources: {}, connectResources: { default: {}, anonymous: {}, credentials: {} }, imageResources: {}, styleResources: {}, scriptResources: {}, moduleUnknownResources: {}, moduleScriptResources: {} }; } function createPreambleState() { return { htmlChunks: null, headChunks: null, bodyChunks: null }; } function createFormatContext(insertionMode, selectedValue, tagScope, viewTransition) { return { insertionMode, selectedValue, tagScope, viewTransition }; } function createRootFormatContext(namespaceURI) { return createFormatContext("http://www.w3.org/2000/svg" === namespaceURI ? 4 : "http://www.w3.org/1998/Math/MathML" === namespaceURI ? 5 : 0, null, 0, null); } function getChildFormatContext(parentContext, type, props) { var subtreeScope = parentContext.tagScope & -25; switch (type) { case "noscript": return createFormatContext(2, null, subtreeScope | 1, null); case "select": return createFormatContext(2, null != props.value ? props.value : props.defaultValue, subtreeScope, null); case "svg": return createFormatContext(4, null, subtreeScope, null); case "picture": return createFormatContext(2, null, subtreeScope | 2, null); case "math": return createFormatContext(5, null, subtreeScope, null); case "foreignObject": return createFormatContext(2, null, subtreeScope, null); case "table": return createFormatContext(6, null, subtreeScope, null); case "thead": case "tbody": case "tfoot": return createFormatContext(7, null, subtreeScope, null); case "colgroup": return createFormatContext(9, null, subtreeScope, null); case "tr": return createFormatContext(8, null, subtreeScope, null); case "head": if (2 > parentContext.insertionMode) return createFormatContext(3, null, subtreeScope, null); break; case "html": if (0 === parentContext.insertionMode) return createFormatContext(1, null, subtreeScope, null); } return 6 <= parentContext.insertionMode || 2 > parentContext.insertionMode ? createFormatContext(2, null, subtreeScope, null) : parentContext.tagScope !== subtreeScope ? createFormatContext(parentContext.insertionMode, parentContext.selectedValue, subtreeScope, null) : parentContext; } function getSuspenseViewTransition(parentViewTransition) { return null === parentViewTransition ? null : { update: parentViewTransition.update, enter: "none", exit: "none", share: parentViewTransition.update, name: parentViewTransition.autoName, autoName: parentViewTransition.autoName, nameIdx: 0 }; } function getSuspenseFallbackFormatContext(resumableState, parentContext) { parentContext.tagScope & 32 && (resumableState.instructions |= 128); return createFormatContext(parentContext.insertionMode, parentContext.selectedValue, parentContext.tagScope | 12, getSuspenseViewTransition(parentContext.viewTransition)); } function getSuspenseContentFormatContext(resumableState, parentContext) { resumableState = getSuspenseViewTransition(parentContext.viewTransition); var subtreeScope = parentContext.tagScope | 16; null !== resumableState && "none" !== resumableState.share && (subtreeScope |= 64); return createFormatContext(parentContext.insertionMode, parentContext.selectedValue, subtreeScope, resumableState); } var textSeparator = stringToPrecomputedChunk("<!-- -->"); function pushTextInstance(target, text, renderState, textEmbedded) { if ("" === text) return textEmbedded; textEmbedded && target.push(textSeparator); target.push(escapeTextForBrowser(text)); return !0; } var styleNameCache = /* @__PURE__ */ new Map(), styleAttributeStart = stringToPrecomputedChunk(" style=\""), styleAssign = stringToPrecomputedChunk(":"), styleSeparator = stringToPrecomputedChunk(";"); function pushStyleAttribute(target, style) { if ("object" !== typeof style) throw Error("The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX."); var isFirst = !0, styleName; for (styleName in style) if (hasOwnProperty.call(style, styleName)) { var styleValue = style[styleName]; if (null != styleValue && "boolean" !== typeof styleValue && "" !== styleValue) { if (0 === styleName.indexOf("--")) { var nameChunk = escapeTextForBrowser(styleName); styleValue = escapeTextForBrowser(("" + styleValue).trim()); } else nameChunk = styleNameCache.get(styleName), void 0 === nameChunk && (nameChunk = stringToPrecomputedChunk(escapeTextForBrowser(styleName.replace(uppercasePattern, "-$1").toLowerCase().replace(msPattern, "-ms-"))), styleNameCache.set(styleName, nameChunk)), styleValue = "number" === typeof styleValue ? 0 === styleValue || unitlessNumbers.has(styleName) ? "" + styleValue : styleValue + "px" : escapeTextForBrowser(("" + styleValue).trim()); isFirst ? (isFirst = !1, target.push(styleAttributeStart, nameChunk, styleAssign, styleValue)) : target.push(styleSeparator, nameChunk, styleAssign, styleValue); } } isFirst || target.push(attributeEnd); } var attributeSeparator = stringToPrecomputedChunk(" "), attributeAssign = stringToPrecomputedChunk("=\""), attributeEnd = stringToPrecomputedChunk("\""), attributeEmptyString = stringToPrecomputedChunk("=\"\""); function pushBooleanAttribute(target, name, value) { value && "function" !== typeof value && "symbol" !== typeof value && target.push(attributeSeparator, name, attributeEmptyString); } function pushStringAttribute(target, name, value) { "function" !== typeof value && "symbol" !== typeof value && "boolean" !== typeof value && target.push(attributeSeparator, name, attributeAssign, escapeTextForBrowser(value), attributeEnd); } var actionJavaScriptURL = stringToPrecomputedChunk(escapeTextForBrowser("javascript:throw new Error('React form unexpectedly submitted.')")), startHiddenInputChunk = stringToPrecomputedChunk("<input type=\"hidden\""); function pushAdditionalFormField(value, key) { this.push(startHiddenInputChunk); validateAdditionalFormField(value); pushStringAttribute(this, "name", key); pushStringAttribute(this, "value", value); this.push(endOfStartTagSelfClosing); } function validateAdditionalFormField(value) { if ("string" !== typeof value) throw Error("File/Blob fields are not yet supported in progressive forms. Will fallback to client hydration."); } function getCustomFormFields(resumableState, formAction) { if ("function" === typeof formAction.$$FORM_ACTION) { var id = resumableState.nextFormID++; resumableState = resumableState.idPrefix + id; try { var customFields = formAction.$$FORM_ACTION(resumableState); if (customFields) customFields.data?.forEach(validateAdditionalFormField); return customFields; } catch (x) { if ("object" === typeof x && null !== x && "function" === typeof x.then) throw x; } } return null; } function pushFormActionAttribute(target, resumableState, renderState, formAction, formEncType, formMethod, formTarget, name) { var formData = null; if ("function" === typeof formAction) { var customFields = getCustomFormFields(resumableState, formAction); null !== customFields ? (name = customFields.name, formAction = customFields.action || "", formEncType = customFields.encType, formMethod = customFields.method, formTarget = customFields.target, formData = customFields.data) : (target.push(attributeSeparator, "formAction", attributeAssign, actionJavaScriptURL, attributeEnd), formTarget = formMethod = formEncType = formAction = name = null, injectFormReplayingRuntime(resumableState, renderState)); } null != name && pushAttribute(target, "name", name); null != formAction && pushAttribute(target, "formAction", formAction); null != formEncType && pushAttribute(target, "formEncType", formEncType); null != formMethod && pushAttribute(target, "formMethod", formMethod); null != formTarget && pushAttribute(target, "formTarget", formTarget); return formData; } function pushAttribute(target, name, value) { switch (name) { case "className": pushStringAttribute(target, "class", value); break; case "tabIndex": pushStringAttribute(target, "tabindex", value); break; case "dir": case "role": case "viewBox": case "width": case "height": pushStringAttribute(target, name, value); break; case "style": pushStyleAttribute(target, value); break; case "src": case "href": if ("" === value) break; case "action": case "formAction": if (null == value || "function" === typeof value || "symbol" === typeof value || "boolean" === typeof value) break; value = sanitizeURL("" + value); target.push(attributeSeparator, name, attributeAssign, escapeTextForBrowser(value), attributeEnd); break; case "defaultValue": case "defaultChecked": case "innerHTML": case "suppressContentEditableWarning": case "suppressHydrationWarning": case "ref": break; case "autoFocus": case "multiple": case "muted": pushBooleanAttribute(target, name.toLowerCase(), value); break; case "xlinkHref": if ("function" === typeof value || "symbol" === typeof value || "boolean" === typeof value) break; value = sanitizeURL("" + value); target.push(attributeSeparator, "xlink:href", attributeAssign, escapeTextForBrowser(value), attributeEnd); break; case "contentEditable": case "spellCheck": case "draggable": case "value": case "autoReverse": case "externalResourcesRequired": case "focusable": case "preserveAlpha": "function" !== typeof value && "symbol" !== typeof value && target.push(attributeSeparator, name, attributeAssign, escapeTextForBrowser(value), attributeEnd); break; case "inert": case "allowFullScreen": case "async": case "autoPlay": case "controls": case "default": case "defer": case "disabled": case "disablePictureInPicture": case "disableRemotePlayback": case "formNoValidate": case "hidden": case "loop": case "noModule": case "noValidate": case "open": case "playsInline": case "readOnly": case "required": case "reversed": case "scoped": case "seamless": case "itemScope": value && "function" !== typeof value && "symbol" !== typeof value && target.push(attributeSeparator, name, attributeEmptyString); break; case "capture": case "download": !0 === value ? target.push(attributeSeparator, name, attributeEmptyString) : !1 !== value && "function" !== typeof value && "symbol" !== typeof value && target.push(attributeSeparator, name, attributeAssign, escapeTextForBrowser(value), attributeEnd); break; case "cols": case "rows": case "size": case "span": "function" !== typeof value && "symbol" !== typeof value && !isNaN(value) && 1 <= value && target.push(attributeSeparator, name, attributeAssign, escapeTextForBrowser(value), attributeEnd); break; case "rowSpan": case "start": "function" === typeof value || "symbol" === typeof value || isNaN(value) || target.push(attributeSeparator, name, attributeAssign, escapeTextForBrowser(value), attributeEnd); break; case "xlinkActuate": pushStringAttribute(target, "xlink:actuate", value); break; case "xlinkArcrole": pushStringAttribute(target, "xlink:arcrole", value); break; case "xlinkRole": pushStringAttribute(target, "xlink:role", value); break; case "xlinkShow": pushStringAttribute(target, "xlink:show", value); break; case "xlinkTitle": pushStringAttribute(target, "xlink:title", value); break; case "xlinkType": pushStringAttribute(target, "xlink:type", value); break; case "xmlBase": pushStringAttribute(target, "xml:base", value); break; case "xmlLang": pushStringAttribute(target, "xml:lang", value); break; case "xmlSpace": pushStringAttribute(target, "xml:space", value); break; default: if (!(2 < name.length) || "o" !== name[0] && "O" !== name[0] || "n" !== name[1] && "N" !== name[1]) { if (name = aliases.get(name) || name, isAttributeNameSafe(name)) { switch (typeof value) { case "function": case "symbol": return; case "boolean": var prefix$8 = name.toLowerCase().slice(0, 5); if ("data-" !== prefix$8 && "aria-" !== prefix$8) return; } target.push(attributeSeparator, name, attributeAssign, escapeTextForBrowser(value), attributeEnd); } } } } var endOfStartTag = stringToPrecomputedChunk(">"), endOfStartTagSelfClosing = stringToPrecomputedChunk("/>"); function pushInnerHTML(target, innerHTML, children) { if (null != innerHTML) { if (null != children) throw Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`."); if ("object" !== typeof innerHTML || !("__html" in innerHTML)) throw Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information."); innerHTML = innerHTML.__html; null !== innerHTML && void 0 !== innerHTML && target.push("" + innerHTML); } } function flattenOptionChildren(children) { var content = ""; React.Children.forEach(children, function(child) { null != child && (content += child); }); return content; } var selectedMarkerAttribute = stringToPrecomputedChunk(" selected=\"\""), formReplayingRuntimeScript = stringToPrecomputedChunk("addEventListener(\"submit\",function(a){if(!a.defaultPrevented){var c=a.target,d=a.submitter,e=c.action,b=d;if(d){var f=d.getAttribute(\"formAction\");null!=f&&(e=f,b=null)}\"javascript:throw new Error('React form unexpectedly submitted.')\"===e&&(a.preventDefault(),b?(a=document.createElement(\"input\"),a.name=b.name,a.value=b.value,b.parentNode.insertBefore(a,b),b=new FormData(c),a.parentNode.removeChild(a)):b=new FormData(c),a=c.ownerDocument||c,(a.$$reactFormReplay=a.$$reactFormReplay||[]).push(c,d,b))}});"); function injectFormReplayingRuntime(resumableState, renderState) { if (0 === (resumableState.instructions & 16)) { resumableState.instructions |= 16; var preamble = renderState.preamble, bootstrapChunks = renderState.bootstrapChunks; (preamble.htmlChunks || preamble.headChunks) && 0 === bootstrapChunks.length ? (bootstrapChunks.push(renderState.startInlineScript), pushCompletedShellIdAttribute(bootstrapChunks, resumableState), bootstrapChunks.push(endOfStartTag, formReplayingRuntimeScript, endInlineScript)) : bootstrapChunks.unshift(renderState.startInlineScript, endOfStartTag, formReplayingRuntimeScript, endInlineScript); } } var formStateMarkerIsMatching = stringToPrecomputedChunk("<!--F!-->"), formStateMarkerIsNotMatching = stringToPrecomputedChunk("<!--F-->"); function pushLinkImpl(target, props) { target.push(startChunkForTag("link")); for (var propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": case "dangerouslySetInnerHTML": throw Error("link is a self-closing tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); default: pushAttribute(target, propKey, propValue); } } target.push(endOfStartTagSelfClosing); return null; } var styleRegex = /(<\/|<)(s)(tyle)/gi; function styleReplacer(match, prefix, s, suffix) { return "" + prefix + ("s" === s ? "\\73 " : "\\53 ") + suffix; } function pushSelfClosing(target, props, tag) { target.push(startChunkForTag(tag)); for (var propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": case "dangerouslySetInnerHTML": throw Error(tag + " is a self-closing tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); default: pushAttribute(target, propKey, propValue); } } target.push(endOfStartTagSelfClosing); return null; } function pushTitleImpl(target, props) { target.push(startChunkForTag("title")); var children = null, innerHTML = null, propKey; for (propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": children = propValue; break; case "dangerouslySetInnerHTML": innerHTML = propValue; break; default: pushAttribute(target, propKey, propValue); } } target.push(endOfStartTag); props = Array.isArray(children) ? 2 > children.length ? children[0] : null : children; "function" !== typeof props && "symbol" !== typeof props && null !== props && void 0 !== props && target.push(escapeTextForBrowser("" + props)); pushInnerHTML(target, innerHTML, children); target.push(endChunkForTag("title")); return null; } var headPreambleContributionChunk = stringToPrecomputedChunk("<!--head-->"), bodyPreambleContributionChunk = stringToPrecomputedChunk("<!--body-->"), htmlPreambleContributionChunk = stringToPrecomputedChunk("<!--html-->"); function pushScriptImpl(target, props) { target.push(startChunkForTag("script")); var children = null, innerHTML = null, propKey; for (propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": children = propValue; break; case "dangerouslySetInnerHTML": innerHTML = propValue; break; default: pushAttribute(target, propKey, propValue); } } target.push(endOfStartTag); pushInnerHTML(target, innerHTML, children); "string" === typeof children && target.push(("" + children).replace(scriptRegex, scriptReplacer)); target.push(endChunkForTag("script")); return null; } function pushStartSingletonElement(target, props, tag) { target.push(startChunkForTag(tag)); var innerHTML = tag = null, propKey; for (propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": tag = propValue; break; case "dangerouslySetInnerHTML": innerHTML = propValue; break; default: pushAttribute(target, propKey, propValue); } } target.push(endOfStartTag); pushInnerHTML(target, innerHTML, tag); return tag; } function pushStartGenericElement(target, props, tag) { target.push(startChunkForTag(tag)); var innerHTML = tag = null, propKey; for (propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": tag = propValue; break; case "dangerouslySetInnerHTML": innerHTML = propValue; break; default: pushAttribute(target, propKey, propValue); } } target.push(endOfStartTag); pushInnerHTML(target, innerHTML, tag); return "string" === typeof tag ? (target.push(escapeTextForBrowser(tag)), null) : tag; } var leadingNewline = stringToPrecomputedChunk("\n"), VALID_TAG_REGEX = /^[a-zA-Z][a-zA-Z:_\.\-\d]*$/, validatedTagCache = /* @__PURE__ */ new Map(); function startChunkForTag(tag) { var tagStartChunk = validatedTagCache.get(tag); if (void 0 === tagStartChunk) { if (!VALID_TAG_REGEX.test(tag)) throw Error("Invalid tag: " + tag); tagStartChunk = stringToPrecomputedChunk("<" + tag); validatedTagCache.set(tag, tagStartChunk); } return tagStartChunk; } var doctypeChunk = stringToPrecomputedChunk("<!DOCTYPE html>"); function pushStartInstance(target$jscomp$0, type, props, resumableState, renderState, preambleState, hoistableState, formatContext, textEmbedded) { switch (type) { case "div": case "span": case "svg": case "path": break; case "a": target$jscomp$0.push(startChunkForTag("a")); var children = null, innerHTML = null, propKey; for (propKey in props) if (hasOwnProperty.call(props, propKey)) { var propValue = props[propKey]; if (null != propValue) switch (propKey) { case "children": children = propValue; break; case "dangerouslySetInnerHTML": innerHTML = propValue; break; case "href": "" === propValue ? pushStringAttribute(target$jscomp$0, "href", "") : pushAttribute(target$jscomp$0, propKey, propValue); break; default: pushAttribute(target$jscomp$0, propKey, propValue); } } target$jscomp$0.push(endOfStartTag); pushInnerHTML(target$jscomp$0, innerHTML, children); if ("string" === typeof children) { target$jscomp$0.push(escapeTextForBrowser(children)); var JSCompiler_inline_result = null; } else JSCompiler_inline_result = children; return JSCompiler_inline_result; case "g": case "p": case "li": break; case "select": target$jscomp$0.push(startChunkForTag("select")); var children$jscomp$0 = null, innerHTML$jscomp$0 = null, propKey$jscomp$0; for (propKey$jscomp$0 in props) if (hasOwnProperty.call(props, propKey$jscomp$0)) { var propValue$jscomp$0 = props[propKey$jscomp$0]; if (null != propValue$jscomp$0) switch (propKey$jscomp$0) { case "children": children$jscomp$0 = propValue$jscomp$0; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$0 = propValue$jscomp$0; break; case "defaultValue": case "value": break; default: pushAttribute(target$jscomp$0, propKey$jscomp$0, propValue$jscomp$0); } } target$jscomp$0.push(endOfStartTag); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$0, children$jscomp$0); return children$jscomp$0; case "option": var selectedValue = formatContext.selectedValue; target$jscomp$0.push(startChunkForTag("option")); var children$jscomp$1 = null, value = null, selected = null, innerHTML$jscomp$1 = null, propKey$jscomp$1; for (propKey$jscomp$1 in props) if (hasOwnProperty.call(props, propKey$jscomp$1)) { var propValue$jscomp$1 = props[propKey$jscomp$1]; if (null != propValue$jscomp$1) switch (propKey$jscomp$1) { case "children": children$jscomp$1 = propValue$jscomp$1; break; case "selected": selected = propValue$jscomp$1; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$1 = propValue$jscomp$1; break; case "value": value = propValue$jscomp$1; default: pushAttribute(target$jscomp$0, propKey$jscomp$1, propValue$jscomp$1); } } if (null != selectedValue) { var stringValue = null !== value ? "" + value : flattenOptionChildren(children$jscomp$1); if (isArrayImpl(selectedValue)) { for (var i = 0; i < selectedValue.length; i++) if ("" + selectedValue[i] === stringValue) { target$jscomp$0.push(selectedMarkerAttribute); break; } } else "" + selectedValue === stringValue && target$jscomp$0.push(selectedMarkerAttribute); } else selected && target$jscomp$0.push(selectedMarkerAttribute); target$jscomp$0.push(endOfStartTag); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$1, children$jscomp$1); return children$jscomp$1; case "textarea": target$jscomp$0.push(startChunkForTag("textarea")); var value$jscomp$0 = null, defaultValue = null, children$jscomp$2 = null, propKey$jscomp$2; for (propKey$jscomp$2 in props) if (hasOwnProperty.call(props, propKey$jscomp$2)) { var propValue$jscomp$2 = props[propKey$jscomp$2]; if (null != propValue$jscomp$2) switch (propKey$jscomp$2) { case "children": children$jscomp$2 = propValue$jscomp$2; break; case "value": value$jscomp$0 = propValue$jscomp$2; break; case "defaultValue": defaultValue = propValue$jscomp$2; break; case "dangerouslySetInnerHTML": throw Error("`dangerouslySetInnerHTML` does not make sense on <textarea>."); default: pushAttribute(target$jscomp$0, propKey$jscomp$2, propValue$jscomp$2); } } null === value$jscomp$0 && null !== defaultValue && (value$jscomp$0 = defaultValue); target$jscomp$0.push(endOfStartTag); if (null != children$jscomp$2) { if (null != value$jscomp$0) throw Error("If you supply `defaultValue` on a <textarea>, do not pass children."); if (isArrayImpl(children$jscomp$2)) { if (1 < children$jscomp$2.length) throw Error("<textarea> can only have at most one child."); value$jscomp$0 = "" + children$jscomp$2[0]; } value$jscomp$0 = "" + children$jscomp$2; } "string" === typeof value$jscomp$0 && "\n" === value$jscomp$0[0] && target$jscomp$0.push(leadingNewline); null !== value$jscomp$0 && target$jscomp$0.push(escapeTextForBrowser("" + value$jscomp$0)); return null; case "input": target$jscomp$0.push(startChunkForTag("input")); var name = null, formAction = null, formEncType = null, formMethod = null, formTarget = null, value$jscomp$1 = null, defaultValue$jscomp$0 = null, checked = null, defaultChecked = null, propKey$jscomp$3; for (propKey$jscomp$3 in props) if (hasOwnProperty.call(props, propKey$jscomp$3)) { var propValue$jscomp$3 = props[propKey$jscomp$3]; if (null != propValue$jscomp$3) switch (propKey$jscomp$3) { case "children": case "dangerouslySetInnerHTML": throw Error("input is a self-closing tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); case "name": name = propValue$jscomp$3; break; case "formAction": formAction = propValue$jscomp$3; break; case "formEncType": formEncType = propValue$jscomp$3; break; case "formMethod": formMethod = propValue$jscomp$3; break; case "formTarget": formTarget = propValue$jscomp$3; break; case "defaultChecked": defaultChecked = propValue$jscomp$3; break; case "defaultValue": defaultValue$jscomp$0 = propValue$jscomp$3; break; case "checked": checked = propValue$jscomp$3; break; case "value": value$jscomp$1 = propValue$jscomp$3; break; default: pushAttribute(target$jscomp$0, propKey$jscomp$3, propValue$jscomp$3); } } var formData = pushFormActionAttribute(target$jscomp$0, resumableState, renderState, formAction, formEncType, formMethod, formTarget, name); null !== checked ? pushBooleanAttribute(target$jscomp$0, "checked", checked) : null !== defaultChecked && pushBooleanAttribute(target$jscomp$0, "checked", defaultChecked); null !== value$jscomp$1 ? pushAttribute(target$jscomp$0, "value", value$jscomp$1) : null !== defaultValue$jscomp$0 && pushAttribute(target$jscomp$0, "value", defaultValue$jscomp$0); target$jscomp$0.push(endOfStartTagSelfClosing); formData?.forEach(pushAdditionalFormField, target$jscomp$0); return null; case "button": target$jscomp$0.push(startChunkForTag("button")); var children$jscomp$3 = null, innerHTML$jscomp$2 = null, name$jscomp$0 = null, formAction$jscomp$0 = null, formEncType$jscomp$0 = null, formMethod$jscomp$0 = null, formTarget$jscomp$0 = null, propKey$jscomp$4; for (propKey$jscomp$4 in props) if (hasOwnProperty.call(props, propKey$jscomp$4)) { var propValue$jscomp$4 = props[propKey$jscomp$4]; if (null != propValue$jscomp$4) switch (propKey$jscomp$4) { case "children": children$jscomp$3 = propValue$jscomp$4; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$2 = propValue$jscomp$4; break; case "name": name$jscomp$0 = propValue$jscomp$4; break; case "formAction": formAction$jscomp$0 = propValue$jscomp$4; break; case "formEncType": formEncType$jscomp$0 = propValue$jscomp$4; break; case "formMethod": formMethod$jscomp$0 = propValue$jscomp$4; break; case "formTarget": formTarget$jscomp$0 = propValue$jscomp$4; break; default: pushAttribute(target$jscomp$0, propKey$jscomp$4, propValue$jscomp$4); } } var formData$jscomp$0 = pushFormActionAttribute(target$jscomp$0, resumableState, renderState, formAction$jscomp$0, formEncType$jscomp$0, formMethod$jscomp$0, formTarget$jscomp$0, name$jscomp$0); target$jscomp$0.push(endOfStartTag); formData$jscomp$0?.forEach(pushAdditionalFormField, target$jscomp$0); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$2, children$jscomp$3); if ("string" === typeof children$jscomp$3) { target$jscomp$0.push(escapeTextForBrowser(children$jscomp$3)); var JSCompiler_inline_result$jscomp$0 = null; } else JSCompiler_inline_result$jscomp$0 = children$jscomp$3; return JSCompiler_inline_result$jscomp$0; case "form": target$jscomp$0.push(startChunkForTag("form")); var children$jscomp$4 = null, innerHTML$jscomp$3 = null, formAction$jscomp$1 = null, formEncType$jscomp$1 = null, formMethod$jscomp$1 = null, formTarget$jscomp$1 = null, propKey$jscomp$5; for (propKey$jscomp$5 in props) if (hasOwnProperty.call(props, propKey$jscomp$5)) { var propValue$jscomp$5 = props[propKey$jscomp$5]; if (null != propValue$jscomp$5) switch (propKey$jscomp$5) { case "children": children$jscomp$4 = propValue$jscomp$5; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$3 = propValue$jscomp$5; break; case "action": formAction$jscomp$1 = propValue$jscomp$5; break; case "encType": formEncType$jscomp$1 = propValue$jscomp$5; break; case "method": formMethod$jscomp$1 = propValue$jscomp$5; break; case "target": formTarget$jscomp$1 = propValue$jscomp$5; break; default: pushAttribute(target$jscomp$0, propKey$jscomp$5, propValue$jscomp$5); } } var formData$jscomp$1 = null, formActionName = null; if ("function" === typeof formAction$jscomp$1) { var customFields = getCustomFormFields(resumableState, formAction$jscomp$1); null !== customFields ? (formAction$jscomp$1 = customFields.action || "", formEncType$jscomp$1 = customFields.encType, formMethod$jscomp$1 = customFields.method, formTarget$jscomp$1 = customFields.target, formData$jscomp$1 = customFields.data, formActionName = customFields.name) : (target$jscomp$0.push(attributeSeparator, "action", attributeAssign, actionJavaScriptURL, attributeEnd), formTarget$jscomp$1 = formMethod$jscomp$1 = formEncType$jscomp$1 = formAction$jscomp$1 = null, injectFormReplayingRuntime(resumableState, renderState)); } null != formAction$jscomp$1 && pushAttribute(target$jscomp$0, "action", formAction$jscomp$1); null != formEncType$jscomp$1 && pushAttribute(target$jscomp$0, "encType", formEncType$jscomp$1); null != formMethod$jscomp$1 && pushAttribute(target$jscomp$0, "method", formMethod$jscomp$1); null != formTarget$jscomp$1 && pushAttribute(target$jscomp$0, "target", formTarget$jscomp$1); target$jscomp$0.push(endOfStartTag); null !== formActionName && (target$jscomp$0.push(startHiddenInputChunk), pushStringAttribute(target$jscomp$0, "name", formActionName), target$jscomp$0.push(endOfStartTagSelfClosing), formData$jscomp$1?.forEach(pushAdditionalFormField, target$jscomp$0)); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$3, children$jscomp$4); if ("string" === typeof children$jscomp$4) { target$jscomp$0.push(escapeTextForBrowser(children$jscomp$4)); var JSCompiler_inline_result$jscomp$1 = null; } else JSCompiler_inline_result$jscomp$1 = children$jscomp$4; return JSCompiler_inline_result$jscomp$1; case "menuitem": target$jscomp$0.push(startChunkForTag("menuitem")); for (var propKey$jscomp$6 in props) if (hasOwnProperty.call(props, propKey$jscomp$6)) { var propValue$jscomp$6 = props[propKey$jscomp$6]; if (null != propValue$jscomp$6) switch (propKey$jscomp$6) { case "children": case "dangerouslySetInnerHTML": throw Error("menuitems cannot have `children` nor `dangerouslySetInnerHTML`."); default: pushAttribute(target$jscomp$0, propKey$jscomp$6, propValue$jscomp$6); } } target$jscomp$0.push(endOfStartTag); return null; case "object": target$jscomp$0.push(startChunkForTag("object")); var children$jscomp$5 = null, innerHTML$jscomp$4 = null, propKey$jscomp$7; for (propKey$jscomp$7 in props) if (hasOwnProperty.call(props, propKey$jscomp$7)) { var propValue$jscomp$7 = props[propKey$jscomp$7]; if (null != propValue$jscomp$7) switch (propKey$jscomp$7) { case "children": children$jscomp$5 = propValue$jscomp$7; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$4 = propValue$jscomp$7; break; case "data": var sanitizedValue = sanitizeURL("" + propValue$jscomp$7); if ("" === sanitizedValue) break; target$jscomp$0.push(attributeSeparator, "data", attributeAssign, escapeTextForBrowser(sanitizedValue), attributeEnd); break; default: pushAttribute(target$jscomp$0, propKey$jscomp$7, propValue$jscomp$7); } } target$jscomp$0.push(endOfStartTag); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$4, children$jscomp$5); if ("string" === typeof children$jscomp$5) { target$jscomp$0.push(escapeTextForBrowser(children$jscomp$5)); var JSCompiler_inline_result$jscomp$2 = null; } else JSCompiler_inline_result$jscomp$2 = children$jscomp$5; return JSCompiler_inline_result$jscomp$2; case "title": var noscriptTagInScope = formatContext.tagScope & 1, isFallback = formatContext.tagScope & 4; if (4 === formatContext.insertionMode || noscriptTagInScope || null != props.itemProp) var JSCompiler_inline_result$jscomp$3 = pushTitleImpl(target$jscomp$0, props); else isFallback ? JSCompiler_inline_result$jscomp$3 = null : (pushTitleImpl(renderState.hoistableChunks, props), JSCompiler_inline_result$jscomp$3 = void 0); return JSCompiler_inline_result$jscomp$3; case "link": var noscriptTagInScope$jscomp$0 = formatContext.tagScope & 1, isFallback$jscomp$0 = formatContext.tagScope & 4, rel = props.rel, href = props.href, precedence = props.precedence; if (4 === formatContext.insertionMode || noscriptTagInScope$jscomp$0 || null != props.itemProp || "string" !== typeof rel || "string" !== typeof href || "" === href) { pushLinkImpl(target$jscomp$0, props); var JSCompiler_inline_result$jscomp$4 = null; } else if ("stylesheet" === props.rel) if ("string" !== typeof precedence || null != props.disabled || props.onLoad || props.onError) JSCompiler_inline_result$jscomp$4 = pushLinkImpl(target$jscomp$0, props); else { var styleQueue = renderState.styles.get(precedence), resourceState = resumableState.styleResources.hasOwnProperty(href) ? resumableState.styleResources[href] : void 0; if (null !== resourceState) { resumableState.styleResources[href] = null; styleQueue || (styleQueue = { precedence: escapeTextForBrowser(precedence), rules: [], hrefs: [], sheets: /* @__PURE__ */ new Map() }, renderState.styles.set(precedence, styleQueue)); var resource = { state: 0, props: assign({}, props, { "data-precedence": props.precedence, precedence: null }) }; if (resourceState) { 2 === resourceState.length && adoptPreloadCredentials(resource.props, resourceState); var preloadResource = renderState.preloads.stylesheets.get(href); preloadResource && 0 < preloadResource.length ? preloadResource.length = 0 : resource.state = 1; } styleQueue.sheets.set(href, resource); hoistableState && hoistableState.stylesheets.add(resource); } else if (styleQueue) { var resource$9 = styleQueue.sheets.get(href); resource$9 && hoistableState && hoistableState.stylesheets.add(resource$9); } textEmbedded && target$jscomp$0.push(textSeparator); JSCompiler_inline_result$jscomp$4 = null; } else props.onLoad || props.onError ? JSCompiler_inline_result$jscomp$4 = pushLinkImpl(target$jscomp$0, props) : (textEmbedded && target$jscomp$0.push(textSeparator), JSCompiler_inline_result$jscomp$4 = isFallback$jscomp$0 ? null : pushLinkImpl(renderState.hoistableChunks, props)); return JSCompiler_inline_result$jscomp$4; case "script": var noscriptTagInScope$jscomp$1 = formatContext.tagScope & 1, asyncProp = props.async; if ("string" !== typeof props.src || !props.src || !asyncProp || "function" === typeof asyncProp || "symbol" === typeof asyncProp || props.onLoad || props.onError || 4 === formatContext.insertionMode || noscriptTagInScope$jscomp$1 || null != props.itemProp) var JSCompiler_inline_result$jscomp$5 = pushScriptImpl(target$jscomp$0, props); else { var key = props.src; if ("module" === props.type) { var resources = resumableState.moduleScriptResources; var preloads = renderState.preloads.moduleScripts; } else resources = resumableState.scriptResources, preloads = renderState.preloads.scripts; var resourceState$jscomp$0 = resources.hasOwnProperty(key) ? resources[key] : void 0; if (null !== resourceState$jscomp$0) { resources[key] = null; var scriptProps = props; if (resourceState$jscomp$0) { 2 === resourceState$jscomp$0.length && (scriptProps = assign({}, props), adoptPreloadCredentials(scriptProps, resourceState$jscomp$0)); var preloadResource$jscomp$0 = preloads.get(key); preloadResource$jscomp$0 && (preloadResource$jscomp$0.length = 0); } var resource$jscomp$0 = []; renderState.scripts.add(resource$jscomp$0); pushScriptImpl(resource$jscomp$0, scriptProps); } textEmbedded && target$jscomp$0.push(textSeparator); JSCompiler_inline_result$jscomp$5 = null; } return JSCompiler_inline_result$jscomp$5; case "style": var noscriptTagInScope$jscomp$2 = formatContext.tagScope & 1, precedence$jscomp$0 = props.precedence, href$jscomp$0 = props.href, nonce = props.nonce; if (4 === formatContext.insertionMode || noscriptTagInScope$jscomp$2 || null != props.itemProp || "string" !== typeof precedence$jscomp$0 || "string" !== typeof href$jscomp$0 || "" === href$jscomp$0) { target$jscomp$0.push(startChunkForTag("style")); var children$jscomp$6 = null, innerHTML$jscomp$5 = null, propKey$jscomp$8; for (propKey$jscomp$8 in props) if (hasOwnProperty.call(props, propKey$jscomp$8)) { var propValue$jscomp$8 = props[propKey$jscomp$8]; if (null != propValue$jscomp$8) switch (propKey$jscomp$8) { case "children": children$jscomp$6 = propValue$jscomp$8; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$5 = propValue$jscomp$8; break; default: pushAttribute(target$jscomp$0, propKey$jscomp$8, propValue$jscomp$8); } } target$jscomp$0.push(endOfStartTag); var child = Array.isArray(children$jscomp$6) ? 2 > children$jscomp$6.length ? children$jscomp$6[0] : null : children$jscomp$6; "function" !== typeof child && "symbol" !== typeof child && null !== child && void 0 !== child && target$jscomp$0.push(("" + child).replace(styleRegex, styleReplacer)); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$5, children$jscomp$6); target$jscomp$0.push(endChunkForTag("style")); var JSCompiler_inline_result$jscomp$6 = null; } else { var styleQueue$jscomp$0 = renderState.styles.get(precedence$jscomp$0); if (null !== (resumableState.styleResources.hasOwnProperty(href$jscomp$0) ? resumableState.styleResources[href$jscomp$0] : void 0)) { resumableState.styleResources[href$jscomp$0] = null; styleQueue$jscomp$0 || (styleQueue$jscomp$0 = { precedence: escapeTextForBrowser(precedence$jscomp$0), rules: [], hrefs: [], sheets: /* @__PURE__ */ new Map() }, renderState.styles.set(precedence$jscomp$0, styleQueue$jscomp$0)); var nonceStyle = renderState.nonce.style; if (!nonceStyle || nonceStyle === nonce) { styleQueue$jscomp$0.hrefs.push(escapeTextForBrowser(href$jscomp$0)); var target = styleQueue$jscomp$0.rules, children$jscomp$7 = null, innerHTML$jscomp$6 = null, propKey$jscomp$9; for (propKey$jscomp$9 in props) if (hasOwnProperty.call(props, propKey$jscomp$9)) { var propValue$jscomp$9 = props[propKey$jscomp$9]; if (null != propValue$jscomp$9) switch (propKey$jscomp$9) { case "children": children$jscomp$7 = propValue$jscomp$9; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$6 = propValue$jscomp$9; } } var child$jscomp$0 = Array.isArray(children$jscomp$7) ? 2 > children$jscomp$7.length ? children$jscomp$7[0] : null : children$jscomp$7; "function" !== typeof child$jscomp$0 && "symbol" !== typeof child$jscomp$0 && null !== child$jscomp$0 && void 0 !== child$jscomp$0 && target.push(("" + child$jscomp$0).replace(styleRegex, styleReplacer)); pushInnerHTML(target, innerHTML$jscomp$6, children$jscomp$7); } } styleQueue$jscomp$0 && hoistableState && hoistableState.styles.add(styleQueue$jscomp$0); textEmbedded && target$jscomp$0.push(textSeparator); JSCompiler_inline_result$jscomp$6 = void 0; } return JSCompiler_inline_result$jscomp$6; case "meta": var noscriptTagInScope$jscomp$3 = formatContext.tagScope & 1, isFallback$jscomp$1 = formatContext.tagScope & 4; if (4 === formatContext.insertionMode || noscriptTagInScope$jscomp$3 || null != props.itemProp) var JSCompiler_inline_result$jscomp$7 = pushSelfClosing(target$jscomp$0, props, "meta"); else textEmbedded && target$jscomp$0.push(textSeparator), JSCompiler_inline_result$jscomp$7 = isFallback$jscomp$1 ? null : "string" === typeof props.charSet ? pushSelfClosing(renderState.charsetChunks, props, "meta") : "viewport" === props.name ? pushSelfClosing(renderState.viewportChunks, props, "meta") : pushSelfClosing(renderState.hoistableChunks, props, "meta"); return JSCompiler_inline_result$jscomp$7; case "listing": case "pre": target$jscomp$0.push(startChunkForTag(type)); var children$jscomp$8 = null, innerHTML$jscomp$7 = null, propKey$jscomp$10; for (propKey$jscomp$10 in props) if (hasOwnProperty.call(props, propKey$jscomp$10)) { var propValue$jscomp$10 = props[propKey$jscomp$10]; if (null != propValue$jscomp$10) switch (propKey$jscomp$10) { case "children": children$jscomp$8 = propValue$jscomp$10; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$7 = propValue$jscomp$10; break; default: pushAttribute(target$jscomp$0, propKey$jscomp$10, propValue$jscomp$10); } } target$jscomp$0.push(endOfStartTag); if (null != innerHTML$jscomp$7) { if (null != children$jscomp$8) throw Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`."); if ("object" !== typeof innerHTML$jscomp$7 || !("__html" in innerHTML$jscomp$7)) throw Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information."); var html = innerHTML$jscomp$7.__html; null !== html && void 0 !== html && ("string" === typeof html && 0 < html.length && "\n" === html[0] ? target$jscomp$0.push(leadingNewline, html) : target$jscomp$0.push("" + html)); } "string" === typeof children$jscomp$8 && "\n" === children$jscomp$8[0] && target$jscomp$0.push(leadingNewline); return children$jscomp$8; case "img": var pictureOrNoScriptTagInScope = formatContext.tagScope & 3, src = props.src, srcSet = props.srcSet; if (!("lazy" === props.loading || !src && !srcSet || "string" !== typeof src && null != src || "string" !== typeof srcSet && null != srcSet || "low" === props.fetchPriority || pictureOrNoScriptTagInScope) && ("string" !== typeof src || ":" !== src[4] || "d" !== src[0] && "D" !== src[0] || "a" !== src[1] && "A" !== src[1] || "t" !== src[2] && "T" !== src[2] || "a" !== src[3] && "A" !== src[3]) && ("string" !== typeof srcSet || ":" !== srcSet[4] || "d" !== srcSet[0] && "D" !== srcSet[0] || "a" !== srcSet[1] && "A" !== srcSet[1] || "t" !== srcSet[2] && "T" !== srcSet[2] || "a" !== srcSet[3] && "A" !== srcSet[3])) { null !== hoistableState && formatContext.tagScope & 64 && (hoistableState.suspenseyImages = !0); var sizes = "string" === typeof props.sizes ? props.sizes : void 0, key$jscomp$0 = srcSet ? srcSet + "\n" + (sizes || "") : src, promotablePreloads = renderState.preloads.images, resource$jscomp$1 = promotablePreloads.get(key$jscomp$0); if (resource$jscomp$1) { if ("high" === props.fetchPriority || 10 > renderState.highImagePreloads.size) promotablePreloads.delete(key$jscomp$0), renderState.highImagePreloads.add(resource$jscomp$1); } else if (!resumableState.imageResources.hasOwnProperty(key$jscomp$0)) { resumableState.imageResources[key$jscomp$0] = PRELOAD_NO_CREDS; var input = props.crossOrigin; var JSCompiler_inline_result$jscomp$8 = "string" === typeof input ? "use-credentials" === input ? input : "" : void 0; var headers = renderState.headers, header; headers && 0 < headers.remainingCapacity && "string" !== typeof props.srcSet && ("high" === props.fetchPriority || 500 > headers.highImagePreloads.length) && (header = getPreloadAsHeader(src, "image", { imageSrcSet: props.srcSet, imageSizes: props.sizes, crossOrigin: JSCompiler_inline_result$jscomp$8, integrity: props.integrity, nonce: props.nonce, type: props.type, fetchPriority: props.fetchPriority, referrerPolicy: props.refererPolicy }), 0 <= (headers.remainingCapacity -= header.length + 2)) ? (renderState.resets.image[key$jscomp$0] = PRELOAD_NO_CREDS, headers.highImagePreloads && (headers.highImagePreloads += ", "), headers.highImagePreloads += header) : (resource$jscomp$1 = [], pushLinkImpl(resource$jscomp$1, { rel: "preload", as: "image", href: srcSet ? void 0 : src, imageSrcSet: srcSet, imageSizes: sizes, crossOrigin: JSCompiler_inline_result$jscomp$8, integrity: props.integrity, type: props.type, fetchPriority: props.fetchPriority, referrerPolicy: props.referrerPolicy }), "high" === props.fetchPriority || 10 > renderState.highImagePreloads.size ? renderState.highImagePreloads.add(resource$jscomp$1) : (renderState.bulkPreloads.add(resource$jscomp$1), promotablePreloads.set(key$jscomp$0, resource$jscomp$1))); } } return pushSelfClosing(target$jscomp$0, props, "img"); case "base": case "area": case "br": case "col": case "embed": case "hr": case "keygen": case "param": case "source": case "track": case "wbr": return pushSelfClosing(target$jscomp$0, props, type); case "annotation-xml": case "color-profile": case "font-face": case "font-face-src": case "font-face-uri": case "font-face-format": case "font-face-name": case "missing-glyph": break; case "head": if (2 > formatContext.insertionMode) { var preamble = preambleState || renderState.preamble; if (preamble.headChunks) throw Error("The `<head>` tag may only be rendered once."); null !== preambleState && target$jscomp$0.push(headPreambleContributionChunk); preamble.headChunks = []; var JSCompiler_inline_result$jscomp$9 = pushStartSingletonElement(preamble.headChunks, props, "head"); } else JSCompiler_inline_result$jscomp$9 = pushStartGenericElement(target$jscomp$0, props, "head"); return JSCompiler_inline_result$jscomp$9; case "body": if (2 > formatContext.insertionMode) { var preamble$jscomp$0 = preambleState || renderState.preamble; if (preamble$jscomp$0.bodyChunks) throw Error("The `<body>` tag may only be rendered once."); null !== preambleState && target$jscomp$0.push(bodyPreambleContributionChunk); preamble$jscomp$0.bodyChunks = []; var JSCompiler_inline_result$jscomp$10 = pushStartSingletonElement(preamble$jscomp$0.bodyChunks, props, "body"); } else JSCompiler_inline_result$jscomp$10 = pushStartGenericElement(target$jscomp$0, props, "body"); return JSCompiler_inline_result$jscomp$10; case "html": if (0 === formatContext.insertionMode) { var preamble$jscomp$1 = preambleState || renderState.preamble; if (preamble$jscomp$1.htmlChunks) throw Error("The `<html>` tag may only be rendered once."); null !== preambleState && target$jscomp$0.push(htmlPreambleContributionChunk); preamble$jscomp$1.htmlChunks = [doctypeChunk]; var JSCompiler_inline_result$jscomp$11 = pushStartSingletonElement(preamble$jscomp$1.htmlChunks, props, "html"); } else JSCompiler_inline_result$jscomp$11 = pushStartGenericElement(target$jscomp$0, props, "html"); return JSCompiler_inline_result$jscomp$11; default: if (-1 !== type.indexOf("-")) { target$jscomp$0.push(startChunkForTag(type)); var children$jscomp$9 = null, innerHTML$jscomp$8 = null, propKey$jscomp$11; for (propKey$jscomp$11 in props) if (hasOwnProperty.call(props, propKey$jscomp$11)) { var propValue$jscomp$11 = props[propKey$jscomp$11]; if (null != propValue$jscomp$11) { var attributeName = propKey$jscomp$11; switch (propKey$jscomp$11) { case "children": children$jscomp$9 = propValue$jscomp$11; break; case "dangerouslySetInnerHTML": innerHTML$jscomp$8 = propValue$jscomp$11; break; case "style": pushStyleAttribute(target$jscomp$0, propValue$jscomp$11); break; case "suppressContentEditableWarning": case "suppressHydrationWarning": case "ref": break; case "className": attributeName = "class"; default: if (isAttributeNameSafe(propKey$jscomp$11) && "function" !== typeof propValue$jscomp$11 && "symbol" !== typeof propValue$jscomp$11 && !1 !== propValue$jscomp$11) { if (!0 === propValue$jscomp$11) propValue$jscomp$11 = ""; else if ("object" === typeof propValue$jscomp$11) continue; target$jscomp$0.push(attributeSeparator, attributeName, attributeAssign, escapeTextForBrowser(propValue$jscomp$11), attributeEnd); } } } } target$jscomp$0.push(endOfStartTag); pushInnerHTML(target$jscomp$0, innerHTML$jscomp$8, children$jscomp$9); return children$jscomp$9; } } return pushStartGenericElement(target$jscomp$0, props, type); } var endTagCache = /* @__PURE__ */ new Map(); function endChunkForTag(tag) { var chunk = endTagCache.get(tag); void 0 === chunk && (chunk = stringToPrecomputedChunk("</" + tag + ">"), endTagCache.set(tag, chunk)); return chunk; } function hoistPreambleState(renderState, preambleState) { renderState = renderState.preamble; null === renderState.htmlChunks && preambleState.htmlChunks && (renderState.htmlChunks = preambleState.htmlChunks); null === renderState.headChunks && preambleState.headChunks && (renderState.headChunks = preambleState.headChunks); null === renderState.bodyChunks && preambleState.bodyChunks && (renderState.bodyChunks = preambleState.bodyChunks); } function writeBootstrap(destination, renderState) { renderState = renderState.bootstrapChunks; for (var i = 0; i < renderState.length - 1; i++) writeChunk(destination, renderState[i]); return i < renderState.length ? (i = renderState[i], renderState.length = 0, writeChunkAndReturn(destination, i)) : !0; } var shellTimeRuntimeScript = stringToPrecomputedChunk("requestAnimationFrame(function(){$RT=performance.now()});"), placeholder1 = stringToPrecomputedChunk("<template id=\""), placeholder2 = stringToPrecomputedChunk("\"></template>"), startActivityBoundary = stringToPrecomputedChunk("<!--&-->"), endActivityBoundary = stringToPrecomputedChunk("<!--/&-->"), startCompletedSuspenseBoundary = stringToPrecomputedChunk("<!--$-->"), startPendingSuspenseBoundary1 = stringToPrecomputedChunk("<!--$?--><template id=\""), startPendingSuspenseBoundary2 = stringToPrecomputedChunk("\"></template>"), startClientRenderedSuspenseBoundary = stringToPrecomputedChunk("<!--$!-->"), endSuspenseBoundary = stringToPrecomputedChunk("<!--/$-->"), clientRenderedSuspenseBoundaryError1 = stringToPrecomputedChunk("<template"), clientRenderedSuspenseBoundaryErrorAttrInterstitial = stringToPrecomputedChunk("\""), clientRenderedSuspenseBoundaryError1A = stringToPrecomputedChunk(" data-dgst=\""); stringToPrecomputedChunk(" data-msg=\""); stringToPrecomputedChunk(" data-stck=\""); stringToPrecomputedChunk(" data-cstck=\""); var clientRenderedSuspenseBoundaryError2 = stringToPrecomputedChunk("></template>"); function writeStartPendingSuspenseBoundary(destination, renderState, id) { writeChunk(destination, startPendingSuspenseBoundary1); if (null === id) throw Error("An ID must have been assigned before we can complete the boundary."); writeChunk(destination, renderState.boundaryPrefix); writeChunk(destination, id.toString(16)); return writeChunkAndReturn(destination, startPendingSuspenseBoundary2); } var startSegmentHTML = stringToPrecomputedChunk("<div hidden id=\""), startSegmentHTML2 = stringToPrecomputedChunk("\">"), endSegmentHTML = stringToPrecomputedChunk("</div>"), startSegmentSVG = stringToPrecomputedChunk("<svg aria-hidden=\"true\" style=\"display:none\" id=\""), startSegmentSVG2 = stringToPrecomputedChunk("\">"), endSegmentSVG = stringToPrecomputedChunk("</svg>"), startSegmentMathML = stringToPrecomputedChunk("<math aria-hidden=\"true\" style=\"display:none\" id=\""), startSegmentMathML2 = stringToPrecomputedChunk("\">"), endSegmentMathML = stringToPrecomputedChunk("</math>"), startSegmentTable = stringToPrecomputedChunk("<table hidden id=\""), startSegmentTable2 = stringToPrecomputedChunk("\">"), endSegmentTable = stringToPrecomputedChunk("</table>"), startSegmentTableBody = stringToPrecomputedChunk("<table hidden><tbody id=\""), startSegmentTableBody2 = stringToPrecomputedChunk("\">"), endSegmentTableBody = stringToPrecomputedChunk("</tbody></table>"), startSegmentTableRow = stringToPrecomputedChunk("<table hidden><tr id=\""), startSegmentTableRow2 = stringToPrecomputedChunk("\">"), endSegmentTableRow = stringToPrecomputedChunk("</tr></table>"), startSegmentColGroup = stringToPrecomputedChunk("<table hidden><colgroup id=\""), startSegmentColGroup2 = stringToPrecomputedChunk("\">"), endSegmentColGroup = stringToPrecomputedChunk("</colgroup></table>"); function writeStartSegment(destination, renderState, formatContext, id) { switch (formatContext.insertionMode) { case 0: case 1: case 3: case 2: return writeChunk(destination, startSegmentHTML), writeChunk(destination, renderState.segmentPrefix), writeChunk(destination, id.toString(16)), writeChunkAndReturn(destination, startSegmentHTML2); case 4: return writeChunk(destination, startSegmentSVG), writeChunk(destination, renderState.segmentPrefix), writeChunk(destination, id.toString(16)), writeChunkAndReturn(destination, startSegmentSVG2); case 5: return writeChunk(destination, startSegmentMathML), writeChunk(destination, renderState.segmentPrefix), writeChunk(destination, id.toString(16)), writeChunkAndReturn(destination, startSegmentMathML2); case 6: return writeChunk(destination, startSegmentTable), writeChunk(destination, renderState.segmentPrefix), writeChunk(destination, id.toString(16)), writeChunkAndReturn(destination, startSegmentTable2); case 7: return writeChunk(destination, startSegmentTableBody), writeChunk(destination, renderState.segmentPrefix), writeChunk(destination, id.toString(16)), writeChunkAndReturn(destination, startSegmentTableBody2); case 8: return writeChunk(destination, startSegmentTableRow), writeChunk(destination, renderState.segmentPrefix), writeChunk(destination, id.toString(16)), writeChunkAndReturn(destination, startSegmentTableRow2); case 9: return writeChunk(destination, startSegmentColGroup), writeChunk(destination, renderState.segmentPrefix), writeChunk(destination, id.toString(16)), writeChunkAndReturn(destination, startSegmentColGroup2); default: throw Error("Unknown insertion mode. This is a bug in React."); } } function writeEndSegment(destination, formatContext) { switch (formatContext.insertionMode) { case 0: case 1: case 3: case 2: return writeChunkAndReturn(destination, endSegmentHTML); case 4: return writeChunkAndReturn(destination, endSegmentSVG); case 5: return writeChunkAndReturn(destination, endSegmentMathML); case 6: return writeChunkAndReturn(destination, endSegmentTable); case 7: return writeChunkAndReturn(destination, endSegmentTableBody); case 8: return writeChunkAndReturn(destination, endSegmentTableRow); case 9: return writeChunkAndReturn(destination, endSegmentColGroup); default: throw Error("Unknown insertion mode. This is a bug in React."); } } var completeSegmentScript1Full = stringToPrecomputedChunk("$RS=function(a,b){a=document.getElementById(a);b=document.getElementById(b);for(a.parentNode.removeChild(a);a.firstChild;)b.parentNode.insertBefore(a.firstChild,b);b.parentNode.removeChild(b)};$RS(\""), completeSegmentScript1Partial = stringToPrecomputedChunk("$RS(\""), completeSegmentScript2 = stringToPrecomputedChunk("\",\""), completeSegmentScriptEnd = stringToPrecomputedChunk("\")<\/script>"); stringToPrecomputedChunk("<template data-rsi=\"\" data-sid=\""); stringToPrecomputedChunk("\" data-pid=\""); var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk("$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if(\"/$\"===d||\"/&\"===d)if(0===h)break;else h--;else\"$\"!==d&&\"$?\"!==d&&\"$~\"!==d&&\"$!\"!==d&&\"&\"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data=\"$\";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};\n$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data=\"$~\",$RB.push(a,b),2===$RB.length&&(\"number\"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};"), completeBoundaryScript1Partial = stringToPrecomputedChunk("$RC(\""), completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk("$RM=new Map;$RR=function(n,w,p){function u(q){this._p=null;q()}for(var r=new Map,t=document,h,b,e=t.querySelectorAll(\"link[data-precedence],style[data-precedence]\"),v=[],k=0;b=e[k++];)\"not all\"===b.getAttribute(\"media\")?v.push(b):(\"LINK\"===b.tagName&&$RM.set(b.getAttribute(\"href\"),b),r.set(b.dataset.precedence,h=b));e=0;b=[];var l,a;for(k=!0;;){if(k){var f=p[e++];if(!f){k=!1;e=0;continue}var c=!1,m=0;var d=f[m++];if(a=$RM.get(d)){var g=a._p;c=!0}else{a=t.createElement(\"link\");a.href=d;a.rel=\n\"stylesheet\";for(a.dataset.precedence=l=f[m++];g=f[m++];)a.setAttribute(g,f[m++]);g=a._p=new Promise(function(q,x){a.onload=u.bind(a,q);a.onerror=u.bind(a,x)});$RM.set(d,a)}d=a.getAttribute(\"media\");!g||d&&!matchMedia(d).matches||b.push(g);if(c)continue}else{a=v[e++];if(!a)break;l=a.getAttribute(\"data-precedence\");a.removeAttribute(\"media\")}c=r.get(l)||h;c===h&&(h=a);r.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=t.head,c.insertBefore(a,c.firstChild))}if(p=document.getElementById(n))p.previousSibling.data=\n\"$~\";Promise.all(b).then($RC.bind(null,n,w),$RX.bind(null,n,\"CSS failed to load\"))};$RR(\""), completeBoundaryWithStylesScript1Partial = stringToPrecomputedChunk("$RR(\""), completeBoundaryScript2 = stringToPrecomputedChunk("\",\""), completeBoundaryScript3a = stringToPrecomputedChunk("\","), completeBoundaryScript3b = stringToPrecomputedChunk("\""), completeBoundaryScriptEnd = stringToPrecomputedChunk(")<\/script>"); stringToPrecomputedChunk("<template data-rci=\"\" data-bid=\""); stringToPrecomputedChunk("<template data-rri=\"\" data-bid=\""); stringToPrecomputedChunk("\" data-sid=\""); stringToPrecomputedChunk("\" data-sty=\""); var clientRenderScriptFunctionOnly = stringToPrecomputedChunk("$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data=\"$!\",a=a.dataset,c&&(a.dgst=c),d&&(a.msg=d),e&&(a.stck=e),f&&(a.cstck=f),b._reactRetry&&b._reactRetry())};"), clientRenderScript1Full = stringToPrecomputedChunk("$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data=\"$!\",a=a.dataset,c&&(a.dgst=c),d&&(a.msg=d),e&&(a.stck=e),f&&(a.cstck=f),b._reactRetry&&b._reactRetry())};;$RX(\""), clientRenderScript1Partial = stringToPrecomputedChunk("$RX(\""), clientRenderScript1A = stringToPrecomputedChunk("\""), clientRenderErrorScriptArgInterstitial = stringToPrecomputedChunk(","), clientRenderScriptEnd = stringToPrecomputedChunk(")<\/script>"); stringToPrecomputedChunk("<template data-rxi=\"\" data-bid=\""); stringToPrecomputedChunk("\" data-dgst=\""); stringToPrecomputedChunk("\" data-msg=\""); stringToPrecomputedChunk("\" data-stck=\""); stringToPrecomputedChunk("\" data-cstck=\""); var regexForJSStringsInInstructionScripts = /[<\u2028\u2029]/g; function escapeJSStringsForInstructionScripts(input) { return JSON.stringify(input).replace(regexForJSStringsInInstructionScripts, function(match) { switch (match) { case "<": return "\\u003c"; case "\u2028": return "\\u2028"; case "\u2029": return "\\u2029"; default: throw Error("escapeJSStringsForInstructionScripts encountered a match it does not know how to replace. this means the match regex and the replacement characters are no longer in sync. This is a bug in React"); } }); } var regexForJSStringsInScripts = /[&><\u2028\u2029]/g; function escapeJSObjectForInstructionScripts(input) { return JSON.stringify(input).replace(regexForJSStringsInScripts, function(match) { switch (match) { case "&": return "\\u0026"; case ">": return "\\u003e"; case "<": return "\\u003c"; case "\u2028": return "\\u2028"; case "\u2029": return "\\u2029"; default: throw Error("escapeJSObjectForInstructionScripts encountered a match it does not know how to replace. this means the match regex and the replacement characters are no longer in sync. This is a bug in React"); } }); } var lateStyleTagResourceOpen1 = stringToPrecomputedChunk(" media=\"not all\" data-precedence=\""), lateStyleTagResourceOpen2 = stringToPrecomputedChunk("\" data-href=\""), lateStyleTagResourceOpen3 = stringToPrecomputedChunk("\">"), lateStyleTagTemplateClose = stringToPrecomputedChunk("</style>"), currentlyRenderingBoundaryHasStylesToHoist = !1, destinationHasCapacity = !0; function flushStyleTagsLateForBoundary(styleQueue) { var rules = styleQueue.rules, hrefs = styleQueue.hrefs, i = 0; if (hrefs.length) { writeChunk(this, currentlyFlushingRenderState.startInlineStyle); writeChunk(this, lateStyleTagResourceOpen1); writeChunk(this, styleQueue.precedence); for (writeChunk(this, lateStyleTagResourceOpen2); i < hrefs.length - 1; i++) writeChunk(this, hrefs[i]), writeChunk(this, spaceSeparator); writeChunk(this, hrefs[i]); writeChunk(this, lateStyleTagResourceOpen3); for (i = 0; i < rules.length; i++) writeChunk(this, rules[i]); destinationHasCapacity = writeChunkAndReturn(this, lateStyleTagTemplateClose); currentlyRenderingBoundaryHasStylesToHoist = !0; rules.length = 0; hrefs.length = 0; } } function hasStylesToHoist(stylesheet) { return 2 !== stylesheet.state ? currentlyRenderingBoundaryHasStylesToHoist = !0 : !1; } function writeHoistablesForBoundary(destination, hoistableState, renderState) { currentlyRenderingBoundaryHasStylesToHoist = !1; destinationHasCapacity = !0; currentlyFlushingRenderState = renderState; hoistableState.styles.forEach(flushStyleTagsLateForBoundary, destination); currentlyFlushingRenderState = null; hoistableState.stylesheets.forEach(hasStylesToHoist); currentlyRenderingBoundaryHasStylesToHoist && (renderState.stylesToHoist = !0); return destinationHasCapacity; } function flushResource(resource) { for (var i = 0; i < resource.length; i++) writeChunk(this, resource[i]); resource.length = 0; } var stylesheetFlushingQueue = []; function flushStyleInPreamble(stylesheet) { pushLinkImpl(stylesheetFlushingQueue, stylesheet.props); for (var i = 0; i < stylesheetFlushingQueue.length; i++) writeChunk(this, stylesheetFlushingQueue[i]); stylesheetFlushingQueue.length = 0; stylesheet.state = 2; } var styleTagResourceOpen1 = stringToPrecomputedChunk(" data-precedence=\""), styleTagResourceOpen2 = stringToPrecomputedChunk("\" data-href=\""), spaceSeparator = stringToPrecomputedChunk(" "), styleTagResourceOpen3 = stringToPrecomputedChunk("\">"), styleTagResourceClose = stringToPrecomputedChunk("</style>"); function flushStylesInPreamble(styleQueue) { var hasStylesheets = 0 < styleQueue.sheets.size; styleQueue.sheets.forEach(flushStyleInPreamble, this); styleQueue.sheets.clear(); var rules = styleQueue.rules, hrefs = styleQueue.hrefs; if (!hasStylesheets || hrefs.length) { writeChunk(this, currentlyFlushingRenderState.startInlineStyle); writeChunk(this, styleTagResourceOpen1); writeChunk(this, styleQueue.precedence); styleQueue = 0; if (hrefs.length) { for (writeChunk(this, styleTagResourceOpen2); styleQueue < hrefs.length - 1; styleQueue++) writeChunk(this, hrefs[styleQueue]), writeChunk(this, spaceSeparator); writeChunk(this, hrefs[styleQueue]); } writeChunk(this, styleTagResourceOpen3); for (styleQueue = 0; styleQueue < rules.length; styleQueue++) writeChunk(this, rules[styleQueue]); writeChunk(this, styleTagResourceClose); rules.length = 0; hrefs.length = 0; } } function preloadLateStyle(stylesheet) { if (0 === stylesheet.state) { stylesheet.state = 1; var props = stylesheet.props; pushLinkImpl(stylesheetFlushingQueue, { rel: "preload", as: "style", href: stylesheet.props.href, crossOrigin: props.crossOrigin, fetchPriority: props.fetchPriority, integrity: props.integrity, media: props.media, hrefLang: props.hrefLang, referrerPolicy: props.referrerPolicy }); for (stylesheet = 0; stylesheet < stylesheetFlushingQueue.length; stylesheet++) writeChunk(this, stylesheetFlushingQueue[stylesheet]); stylesheetFlushingQueue.length = 0; } } function preloadLateStyles(styleQueue) { styleQueue.sheets.forEach(preloadLateStyle, this); styleQueue.sheets.clear(); } stringToPrecomputedChunk("<link rel=\"expect\" href=\"#"); stringToPrecomputedChunk("\" blocking=\"render\"/>"); var completedShellIdAttributeStart = stringToPrecomputedChunk(" id=\""); function pushCompletedShellIdAttribute(target, resumableState) { 0 === (resumableState.instructions & 32) && (resumableState.instructions |= 32, target.push(completedShellIdAttributeStart, escapeTextForBrowser("_" + resumableState.idPrefix + "R_"), attributeEnd)); } var arrayFirstOpenBracket = stringToPrecomputedChunk("["), arraySubsequentOpenBracket = stringToPrecomputedChunk(",["), arrayInterstitial = stringToPrecomputedChunk(","), arrayCloseBracket = stringToPrecomputedChunk("]"); function writeStyleResourceDependenciesInJS(destination, hoistableState) { writeChunk(destination, arrayFirstOpenBracket); var nextArrayOpenBrackChunk = arrayFirstOpenBracket; hoistableState.stylesheets.forEach(function(resource) { if (2 !== resource.state) if (3 === resource.state) writeChunk(destination, nextArrayOpenBrackChunk), writeChunk(destination, escapeJSObjectForInstructionScripts("" + resource.props.href)), writeChunk(destination, arrayCloseBracket), nextArrayOpenBrackChunk = arraySubsequentOpenBracket; else { writeChunk(destination, nextArrayOpenBrackChunk); var precedence = resource.props["data-precedence"], props = resource.props; writeChunk(destination, escapeJSObjectForInstructionScripts(sanitizeURL("" + resource.props.href))); precedence = "" + precedence; writeChunk(destination, arrayInterstitial); writeChunk(destination, escapeJSObjectForInstructionScripts(precedence)); for (var propKey in props) if (hasOwnProperty.call(props, propKey) && (precedence = props[propKey], null != precedence)) switch (propKey) { case "href": case "rel": case "precedence": case "data-precedence": break; case "children": case "dangerouslySetInnerHTML": throw Error("link is a self-closing tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); default: writeStyleResourceAttributeInJS(destination, propKey, precedence); } writeChunk(destination, arrayCloseBracket); nextArrayOpenBrackChunk = arraySubsequentOpenBracket; resource.state = 3; } }); writeChunk(destination, arrayCloseBracket); } function writeStyleResourceAttributeInJS(destination, name, value) { var attributeName = name.toLowerCase(); switch (typeof value) { case "function": case "symbol": return; } switch (name) { case "innerHTML": case "dangerouslySetInnerHTML": case "suppressContentEditableWarning": case "suppressHydrationWarning": case "style": case "ref": return; case "className": attributeName = "class"; name = "" + value; break; case "hidden": if (!1 === value) return; name = ""; break; case "src": case "href": value = sanitizeURL(value); name = "" + value; break; default: if (2 < name.length && ("o" === name[0] || "O" === name[0]) && ("n" === name[1] || "N" === name[1]) || !isAttributeNameSafe(name)) return; name = "" + value; } writeChunk(destination, arrayInterstitial); writeChunk(destination, escapeJSObjectForInstructionScripts(attributeName)); writeChunk(destination, arrayInterstitial); writeChunk(destination, escapeJSObjectForInstructionScripts(name)); } function createHoistableState() { return { styles: /* @__PURE__ */ new Set(), stylesheets: /* @__PURE__ */ new Set(), suspenseyImages: !1 }; } function prefetchDNS(href) { var request = resolveRequest(); if (request) { var resumableState = request.resumableState, renderState = request.renderState; if ("string" === typeof href && href) { if (!resumableState.dnsResources.hasOwnProperty(href)) { resumableState.dnsResources[href] = null; resumableState = renderState.headers; var header, JSCompiler_temp; if (JSCompiler_temp = resumableState && 0 < resumableState.remainingCapacity) JSCompiler_temp = (header = "<" + ("" + href).replace(regexForHrefInLinkHeaderURLContext, escapeHrefForLinkHeaderURLContextReplacer) + ">; rel=dns-prefetch", 0 <= (resumableState.remainingCapacity -= header.length + 2)); JSCompiler_temp ? (renderState.resets.dns[href] = null, resumableState.preconnects && (resumableState.preconnects += ", "), resumableState.preconnects += header) : (header = [], pushLinkImpl(header, { href, rel: "dns-prefetch" }), renderState.preconnects.add(header)); } enqueueFlush(request); } } else previousDispatcher.D(href); } function preconnect(href, crossOrigin) { var request = resolveRequest(); if (request) { var resumableState = request.resumableState, renderState = request.renderState; if ("string" === typeof href && href) { var bucket = "use-credentials" === crossOrigin ? "credentials" : "string" === typeof crossOrigin ? "anonymous" : "default"; if (!resumableState.connectResources[bucket].hasOwnProperty(href)) { resumableState.connectResources[bucket][href] = null; resumableState = renderState.headers; var header, JSCompiler_temp; if (JSCompiler_temp = resumableState && 0 < resumableState.remainingCapacity) { JSCompiler_temp = "<" + ("" + href).replace(regexForHrefInLinkHeaderURLContext, escapeHrefForLinkHeaderURLContextReplacer) + ">; rel=preconnect"; if ("string" === typeof crossOrigin) { var escapedCrossOrigin = ("" + crossOrigin).replace(regexForLinkHeaderQuotedParamValueContext, escapeStringForLinkHeaderQuotedParamValueContextReplacer); JSCompiler_temp += "; crossorigin=\"" + escapedCrossOrigin + "\""; } JSCompiler_temp = (header = JSCompiler_temp, 0 <= (resumableState.remainingCapacity -= header.length + 2)); } JSCompiler_temp ? (renderState.resets.connect[bucket][href] = null, resumableState.preconnects && (resumableState.preconnects += ", "), resumableState.preconnects += header) : (bucket = [], pushLinkImpl(bucket, { rel: "preconnect", href, crossOrigin }), renderState.preconnects.add(bucket)); } enqueueFlush(request); } } else previousDispatcher.C(href, crossOrigin); } function preload(href, as, options) { var request = resolveRequest(); if (request) { var resumableState = request.resumableState, renderState = request.renderState; if (as && href) { switch (as) { case "image": if (options) { var imageSrcSet = options.imageSrcSet; var imageSizes = options.imageSizes; var fetchPriority = options.fetchPriority; } var key = imageSrcSet ? imageSrcSet + "\n" + (imageSizes || "") : href; if (resumableState.imageResources.hasOwnProperty(key)) return; resumableState.imageResources[key] = PRELOAD_NO_CREDS; resumableState = renderState.headers; var header; resumableState && 0 < resumableState.remainingCapacity && "string" !== typeof imageSrcSet && "high" === fetchPriority && (header = getPreloadAsHeader(href, as, options), 0 <= (resumableState.remainingCapacity -= header.length + 2)) ? (renderState.resets.image[key] = PRELOAD_NO_CREDS, resumableState.highImagePreloads && (resumableState.highImagePreloads += ", "), resumableState.highImagePreloads += header) : (resumableState = [], pushLinkImpl(resumableState, assign({ rel: "preload", href: imageSrcSet ? void 0 : href, as }, options)), "high" === fetchPriority ? renderState.highImagePreloads.add(resumableState) : (renderState.bulkPreloads.add(resumableState), renderState.preloads.images.set(key, resumableState))); break; case "style": if (resumableState.styleResources.hasOwnProperty(href)) return; imageSrcSet = []; pushLinkImpl(imageSrcSet, assign({ rel: "preload", href, as }, options)); resumableState.styleResources[href] = !options || "string" !== typeof options.crossOrigin && "string" !== typeof options.integrity ? PRELOAD_NO_CREDS : [options.crossOrigin, options.integrity]; renderState.preloads.stylesheets.set(href, imageSrcSet); renderState.bulkPreloads.add(imageSrcSet); break; case "script": if (resumableState.scriptResources.hasOwnProperty(href)) return; imageSrcSet = []; renderState.preloads.scripts.set(href, imageSrcSet); renderState.bulkPreloads.add(imageSrcSet); pushLinkImpl(imageSrcSet, assign({ rel: "preload", href, as }, options)); resumableState.scriptResources[href] = !options || "string" !== typeof options.crossOrigin && "string" !== typeof options.integrity ? PRELOAD_NO_CREDS : [options.crossOrigin, options.integrity]; break; default: if (resumableState.unknownResources.hasOwnProperty(as)) { if (imageSrcSet = resumableState.unknownResources[as], imageSrcSet.hasOwnProperty(href)) return; } else imageSrcSet = {}, resumableState.unknownResources[as] = imageSrcSet; imageSrcSet[href] = PRELOAD_NO_CREDS; if ((resumableState = renderState.headers) && 0 < resumableState.remainingCapacity && "font" === as && (key = getPreloadAsHeader(href, as, options), 0 <= (resumableState.remainingCapacity -= key.length + 2))) renderState.resets.font[href] = PRELOAD_NO_CREDS, resumableState.fontPreloads && (resumableState.fontPreloads += ", "), resumableState.fontPreloads += key; else switch (resumableState = [], href = assign({ rel: "preload", href, as }, options), pushLinkImpl(resumableState, href), as) { case "font": renderState.fontPreloads.add(resumableState); break; default: renderState.bulkPreloads.add(resumableState); } } enqueueFlush(request); } } else previousDispatcher.L(href, as, options); } function preloadModule(href, options) { var request = resolveRequest(); if (request) { var resumableState = request.resumableState, renderState = request.renderState; if (href) { var as = options && "string" === typeof options.as ? options.as : "script"; switch (as) { case "script": if (resumableState.moduleScriptResources.hasOwnProperty(href)) return; as = []; resumableState.moduleScriptResources[href] = !options || "string" !== typeof options.crossOrigin && "string" !== typeof options.integrity ? PRELOAD_NO_CREDS : [options.crossOrigin, options.integrity]; renderState.preloads.moduleScripts.set(href, as); break; default: if (resumableState.moduleUnknownResources.hasOwnProperty(as)) { var resources = resumableState.unknownResources[as]; if (resources.hasOwnProperty(href)) return; } else resources = {}, resumableState.moduleUnknownResources[as] = resources; as = []; resources[href] = PRELOAD_NO_CREDS; } pushLinkImpl(as, assign({ rel: "modulepreload", href }, options)); renderState.bulkPreloads.add(as); enqueueFlush(request); } } else previousDispatcher.m(href, options); } function preinitStyle(href, precedence, options) { var request = resolveRequest(); if (request) { var resumableState = request.resumableState, renderState = request.renderState; if (href) { precedence = precedence || "default"; var styleQueue = renderState.styles.get(precedence), resourceState = resumableState.styleResources.hasOwnProperty(href) ? resumableState.styleResources[href] : void 0; null !== resourceState && (resumableState.styleResources[href] = null, styleQueue || (styleQueue = { precedence: escapeTextForBrowser(precedence), rules: [], hrefs: [], sheets: /* @__PURE__ */ new Map() }, renderState.styles.set(precedence, styleQueue)), precedence = { state: 0, props: assign({ rel: "stylesheet", href, "data-precedence": precedence }, options) }, resourceState && (2 === resourceState.length && adoptPreloadCredentials(precedence.props, resourceState), (renderState = renderState.preloads.stylesheets.get(href)) && 0 < renderState.length ? renderState.length = 0 : precedence.state = 1), styleQueue.sheets.set(href, precedence), enqueueFlush(request)); } } else previousDispatcher.S(href, precedence, options); } function preinitScript(src, options) { var request = resolveRequest(); if (request) { var resumableState = request.resumableState, renderState = request.renderState; if (src) { var resourceState = resumableState.scriptResources.hasOwnProperty(src) ? resumableState.scriptResources[src] : void 0; null !== resourceState && (resumableState.scriptResources[src] = null, options = assign({ src, async: !0 }, options), resourceState && (2 === resourceState.length && adoptPreloadCredentials(options, resourceState), src = renderState.preloads.scripts.get(src)) && (src.length = 0), src = [], renderState.scripts.add(src), pushScriptImpl(src, options), enqueueFlush(request)); } } else previousDispatcher.X(src, options); } function preinitModuleScript(src, options) { var request = resolveRequest(); if (request) { var resumableState = request.resumableState, renderState = request.renderState; if (src) { var resourceState = resumableState.moduleScriptResources.hasOwnProperty(src) ? resumableState.moduleScriptResources[src] : void 0; null !== resourceState && (resumableState.moduleScriptResources[src] = null, options = assign({ src, type: "module", async: !0 }, options), resourceState && (2 === resourceState.length && adoptPreloadCredentials(options, resourceState), src = renderState.preloads.moduleScripts.get(src)) && (src.length = 0), src = [], renderState.scripts.add(src), pushScriptImpl(src, options), enqueueFlush(request)); } } else previousDispatcher.M(src, options); } function adoptPreloadCredentials(target, preloadState) { target.crossOrigin ??= preloadState[0]; target.integrity ??= preloadState[1]; } function getPreloadAsHeader(href, as, params) { href = ("" + href).replace(regexForHrefInLinkHeaderURLContext, escapeHrefForLinkHeaderURLContextReplacer); as = ("" + as).replace(regexForLinkHeaderQuotedParamValueContext, escapeStringForLinkHeaderQuotedParamValueContextReplacer); as = "<" + href + ">; rel=preload; as=\"" + as + "\""; for (var paramName in params) hasOwnProperty.call(params, paramName) && (href = params[paramName], "string" === typeof href && (as += "; " + paramName.toLowerCase() + "=\"" + ("" + href).replace(regexForLinkHeaderQuotedParamValueContext, escapeStringForLinkHeaderQuotedParamValueContextReplacer) + "\"")); return as; } var regexForHrefInLinkHeaderURLContext = /[<>\r\n]/g; function escapeHrefForLinkHeaderURLContextReplacer(match) { switch (match) { case "<": return "%3C"; case ">": return "%3E"; case "\n": return "%0A"; case "\r": return "%0D"; default: throw Error("escapeLinkHrefForHeaderContextReplacer encountered a match it does not know how to replace. this means the match regex and the replacement characters are no longer in sync. This is a bug in React"); } } var regexForLinkHeaderQuotedParamValueContext = /["';,\r\n]/g; function escapeStringForLinkHeaderQuotedParamValueContextReplacer(match) { switch (match) { case "\"": return "%22"; case "'": return "%27"; case ";": return "%3B"; case ",": return "%2C"; case "\n": return "%0A"; case "\r": return "%0D"; default: throw Error("escapeStringForLinkHeaderQuotedParamValueContextReplacer encountered a match it does not know how to replace. this means the match regex and the replacement characters are no longer in sync. This is a bug in React"); } } function hoistStyleQueueDependency(styleQueue) { this.styles.add(styleQueue); } function hoistStylesheetDependency(stylesheet) { this.stylesheets.add(stylesheet); } function hoistHoistables(parentState, childState) { childState.styles.forEach(hoistStyleQueueDependency, parentState); childState.stylesheets.forEach(hoistStylesheetDependency, parentState); childState.suspenseyImages && (parentState.suspenseyImages = !0); } function hasSuspenseyContent(hoistableState) { return 0 < hoistableState.stylesheets.size || hoistableState.suspenseyImages; } var bind = Function.prototype.bind, requestStorage = new async_hooks.AsyncLocalStorage(), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"); function getComponentNameFromType(type) { if (null == type) return null; if ("function" === typeof type) return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null; if ("string" === typeof type) return type; switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: return "StrictMode"; case REACT_SUSPENSE_TYPE: return "Suspense"; case REACT_SUSPENSE_LIST_TYPE: return "SuspenseList"; case REACT_ACTIVITY_TYPE: return "Activity"; } if ("object" === typeof type) switch (type.$$typeof) { case REACT_PORTAL_TYPE: return "Portal"; case REACT_CONTEXT_TYPE: return type.displayName || "Context"; case REACT_CONSUMER_TYPE: return (type._context.displayName || "Context") + ".Consumer"; case REACT_FORWARD_REF_TYPE: var innerType = type.render; type = type.displayName; type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"); return type; case REACT_MEMO_TYPE: return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo"; case REACT_LAZY_TYPE: innerType = type._payload; type = type._init; try { return getComponentNameFromType(type(innerType)); } catch (x) {} } return null; } var emptyContextObject = {}, currentActiveSnapshot = null; function popToNearestCommonAncestor(prev, next) { if (prev !== next) { prev.context._currentValue = prev.parentValue; prev = prev.parent; var parentNext = next.parent; if (null === prev) { if (null !== parentNext) throw Error("The stacks must reach the root at the same time. This is a bug in React."); } else { if (null === parentNext) throw Error("The stacks must reach the root at the same time. This is a bug in React."); popToNearestCommonAncestor(prev, parentNext); } next.context._currentValue = next.value; } } function popAllPrevious(prev) { prev.context._currentValue = prev.parentValue; prev = prev.parent; null !== prev && popAllPrevious(prev); } function pushAllNext(next) { var parentNext = next.parent; null !== parentNext && pushAllNext(parentNext); next.context._currentValue = next.value; } function popPreviousToCommonLevel(prev, next) { prev.context._currentValue = prev.parentValue; prev = prev.parent; if (null === prev) throw Error("The depth must equal at least at zero before reaching the root. This is a bug in React."); prev.depth === next.depth ? popToNearestCommonAncestor(prev, next) : popPreviousToCommonLevel(prev, next); } function popNextToCommonLevel(prev, next) { var parentNext = next.parent; if (null === parentNext) throw Error("The depth must equal at least at zero before reaching the root. This is a bug in React."); prev.depth === parentNext.depth ? popToNearestCommonAncestor(prev, parentNext) : popNextToCommonLevel(prev, parentNext); next.context._currentValue = next.value; } function switchContext(newSnapshot) { var prev = currentActiveSnapshot; prev !== newSnapshot && (null === prev ? pushAllNext(newSnapshot) : null === newSnapshot ? popAllPrevious(prev) : prev.depth === newSnapshot.depth ? popToNearestCommonAncestor(prev, newSnapshot) : prev.depth > newSnapshot.depth ? popPreviousToCommonLevel(prev, newSnapshot) : popNextToCommonLevel(prev, newSnapshot), currentActiveSnapshot = newSnapshot); } var classComponentUpdater = { enqueueSetState: function(inst, payload) { inst = inst._reactInternals; null !== inst.queue && inst.queue.push(payload); }, enqueueReplaceState: function(inst, payload) { inst = inst._reactInternals; inst.replace = !0; inst.queue = [payload]; }, enqueueForceUpdate: function() {} }, emptyTreeContext = { id: 1, overflow: "" }; function pushTreeContext(baseContext, totalChildren, index) { var baseIdWithLeadingBit = baseContext.id; baseContext = baseContext.overflow; var baseLength = 32 - clz32(baseIdWithLeadingBit) - 1; baseIdWithLeadingBit &= ~(1 << baseLength); index += 1; var length = 32 - clz32(totalChildren) + baseLength; if (30 < length) { var numberOfOverflowBits = baseLength - baseLength % 5; length = (baseIdWithLeadingBit & (1 << numberOfOverflowBits) - 1).toString(32); baseIdWithLeadingBit >>= numberOfOverflowBits; baseLength -= numberOfOverflowBits; return { id: 1 << 32 - clz32(totalChildren) + baseLength | index << baseLength | baseIdWithLeadingBit, overflow: length + baseContext }; } return { id: 1 << length | index << baseLength | baseIdWithLeadingBit, overflow: baseContext }; } var clz32 = Math.clz32 ? Math.clz32 : clz32Fallback, log = Math.log, LN2 = Math.LN2; function clz32Fallback(x) { x >>>= 0; return 0 === x ? 32 : 31 - (log(x) / LN2 | 0) | 0; } function noop() {} var SuspenseException = Error("Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."); function trackUsedThenable(thenableState, thenable, index) { index = thenableState[index]; void 0 === index ? thenableState.push(thenable) : index !== thenable && (thenable.then(noop, noop), thenable = index); switch (thenable.status) { case "fulfilled": return thenable.value; case "rejected": throw thenable.reason; default: "string" === typeof thenable.status ? thenable.then(noop, noop) : (thenableState = thenable, thenableState.status = "pending", thenableState.then(function(fulfilledValue) { if ("pending" === thenable.status) { var fulfilledThenable = thenable; fulfilledThenable.status = "fulfilled"; fulfilledThenable.value = fulfilledValue; } }, function(error) { if ("pending" === thenable.status) { var rejectedThenable = thenable; rejectedThenable.status = "rejected"; rejectedThenable.reason = error; } })); switch (thenable.status) { case "fulfilled": return thenable.value; case "rejected": throw thenable.reason; } suspendedThenable = thenable; throw SuspenseException; } } var suspendedThenable = null; function getSuspendedThenable() { if (null === suspendedThenable) throw Error("Expected a suspended thenable. This is a bug in React. Please file an issue."); var thenable = suspendedThenable; suspendedThenable = null; return thenable; } function is(x, y) { return x === y && (0 !== x || 1 / x === 1 / y) || x !== x && y !== y; } var objectIs = "function" === typeof Object.is ? Object.is : is, currentlyRenderingComponent = null, currentlyRenderingTask = null, currentlyRenderingRequest = null, currentlyRenderingKeyPath = null, firstWorkInProgressHook = null, workInProgressHook = null, isReRender = !1, didScheduleRenderPhaseUpdate = !1, localIdCounter = 0, actionStateCounter = 0, actionStateMatchingIndex = -1, thenableIndexCounter = 0, thenableState = null, renderPhaseUpdates = null, numberOfReRenders = 0; function resolveCurrentlyRenderingComponent() { if (null === currentlyRenderingComponent) throw Error("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem."); return currentlyRenderingComponent; } function createHook() { if (0 < numberOfReRenders) throw Error("Rendered more hooks than during the previous render"); return { memoizedState: null, queue: null, next: null }; } function createWorkInProgressHook() { null === workInProgressHook ? null === firstWorkInProgressHook ? (isReRender = !1, firstWorkInProgressHook = workInProgressHook = createHook()) : (isReRender = !0, workInProgressHook = firstWorkInProgressHook) : null === workInProgressHook.next ? (isReRender = !1, workInProgressHook = workInProgressHook.next = createHook()) : (isReRender = !0, workInProgressHook = workInProgressHook.next); return workInProgressHook; } function getThenableStateAfterSuspending() { var state = thenableState; thenableState = null; return state; } function resetHooksState() { currentlyRenderingKeyPath = currentlyRenderingRequest = currentlyRenderingTask = currentlyRenderingComponent = null; didScheduleRenderPhaseUpdate = !1; firstWorkInProgressHook = null; numberOfReRenders = 0; workInProgressHook = renderPhaseUpdates = null; } function basicStateReducer(state, action) { return "function" === typeof action ? action(state) : action; } function useReducer(reducer, initialArg, init) { currentlyRenderingComponent = resolveCurrentlyRenderingComponent(); workInProgressHook = createWorkInProgressHook(); if (isReRender) { var queue = workInProgressHook.queue; initialArg = queue.dispatch; if (null !== renderPhaseUpdates && (init = renderPhaseUpdates.get(queue), void 0 !== init)) { renderPhaseUpdates.delete(queue); queue = workInProgressHook.memoizedState; do queue = reducer(queue, init.action), init = init.next; while (null !== init); workInProgressHook.memoizedState = queue; return [queue, initialArg]; } return [workInProgressHook.memoizedState, initialArg]; } reducer = reducer === basicStateReducer ? "function" === typeof initialArg ? initialArg() : initialArg : void 0 !== init ? init(initialArg) : initialArg; workInProgressHook.memoizedState = reducer; reducer = workInProgressHook.queue = { last: null, dispatch: null }; reducer = reducer.dispatch = dispatchAction.bind(null, currentlyRenderingComponent, reducer); return [workInProgressHook.memoizedState, reducer]; } function useMemo(nextCreate, deps) { currentlyRenderingComponent = resolveCurrentlyRenderingComponent(); workInProgressHook = createWorkInProgressHook(); deps = void 0 === deps ? null : deps; if (null !== workInProgressHook) { var prevState = workInProgressHook.memoizedState; if (null !== prevState && null !== deps) { var prevDeps = prevState[1]; a: if (null === prevDeps) prevDeps = !1; else { for (var i = 0; i < prevDeps.length && i < deps.length; i++) if (!objectIs(deps[i], prevDeps[i])) { prevDeps = !1; break a; } prevDeps = !0; } if (prevDeps) return prevState[0]; } } nextCreate = nextCreate(); workInProgressHook.memoizedState = [nextCreate, deps]; return nextCreate; } function dispatchAction(componentIdentity, queue, action) { if (25 <= numberOfReRenders) throw Error("Too many re-renders. React limits the number of renders to prevent an infinite loop."); if (componentIdentity === currentlyRenderingComponent) if (didScheduleRenderPhaseUpdate = !0, componentIdentity = { action, next: null }, null === renderPhaseUpdates && (renderPhaseUpdates = /* @__PURE__ */ new Map()), action = renderPhaseUpdates.get(queue), void 0 === action) renderPhaseUpdates.set(queue, componentIdentity); else { for (queue = action; null !== queue.next;) queue = queue.next; queue.next = componentIdentity; } } function throwOnUseEffectEventCall() { throw Error("A function wrapped in useEffectEvent can't be called during rendering."); } function unsupportedStartTransition() { throw Error("startTransition cannot be called during server rendering."); } function unsupportedSetOptimisticState() { throw Error("Cannot update optimistic state while rendering."); } function createPostbackActionStateKey(permalink, componentKeyPath, hookIndex) { if (void 0 !== permalink) return "p" + permalink; permalink = JSON.stringify([ componentKeyPath, null, hookIndex ]); componentKeyPath = crypto.createHash("md5"); componentKeyPath.update(permalink); return "k" + componentKeyPath.digest("hex"); } function useActionState(action, initialState, permalink) { resolveCurrentlyRenderingComponent(); var actionStateHookIndex = actionStateCounter++, request = currentlyRenderingRequest; if ("function" === typeof action.$$FORM_ACTION) { var nextPostbackStateKey = null, componentKeyPath = currentlyRenderingKeyPath; request = request.formState; var isSignatureEqual = action.$$IS_SIGNATURE_EQUAL; if (null !== request && "function" === typeof isSignatureEqual) { var postbackKey = request[1]; isSignatureEqual.call(action, request[2], request[3]) && (nextPostbackStateKey = createPostbackActionStateKey(permalink, componentKeyPath, actionStateHookIndex), postbackKey === nextPostbackStateKey && (actionStateMatchingIndex = actionStateHookIndex, initialState = request[0])); } var boundAction = action.bind(null, initialState); action = function(payload) { boundAction(payload); }; "function" === typeof boundAction.$$FORM_ACTION && (action.$$FORM_ACTION = function(prefix) { prefix = boundAction.$$FORM_ACTION(prefix); void 0 !== permalink && (permalink += "", prefix.action = permalink); var formData = prefix.data; formData && (null === nextPostbackStateKey && (nextPostbackStateKey = createPostbackActionStateKey(permalink, componentKeyPath, actionStateHookIndex)), formData.append("$ACTION_KEY", nextPostbackStateKey)); return prefix; }); return [ initialState, action, !1 ]; } var boundAction$22 = action.bind(null, initialState); return [ initialState, function(payload) { boundAction$22(payload); }, !1 ]; } function unwrapThenable(thenable) { var index = thenableIndexCounter; thenableIndexCounter += 1; null === thenableState && (thenableState = []); return trackUsedThenable(thenableState, thenable, index); } function unsupportedRefresh() { throw Error("Cache cannot be refreshed during server rendering."); } var HooksDispatcher = { readContext: function(context) { return context._currentValue; }, use: function(usable) { if (null !== usable && "object" === typeof usable) { if ("function" === typeof usable.then) return unwrapThenable(usable); if (usable.$$typeof === REACT_CONTEXT_TYPE) return usable._currentValue; } throw Error("An unsupported type was passed to use(): " + String(usable)); }, useContext: function(context) { resolveCurrentlyRenderingComponent(); return context._currentValue; }, useMemo, useReducer, useRef: function(initialValue) { currentlyRenderingComponent = resolveCurrentlyRenderingComponent(); workInProgressHook = createWorkInProgressHook(); var previousRef = workInProgressHook.memoizedState; return null === previousRef ? (initialValue = { current: initialValue }, workInProgressHook.memoizedState = initialValue) : previousRef; }, useState: function(initialState) { return useReducer(basicStateReducer, initialState); }, useInsertionEffect: noop, useLayoutEffect: noop, useCallback: function(callback, deps) { return useMemo(function() { return callback; }, deps); }, useImperativeHandle: noop, useEffect: noop, useDebugValue: noop, useDeferredValue: function(value, initialValue) { resolveCurrentlyRenderingComponent(); return void 0 !== initialValue ? initialValue : value; }, useTransition: function() { resolveCurrentlyRenderingComponent(); return [!1, unsupportedStartTransition]; }, useId: function() { var JSCompiler_inline_result = currentlyRenderingTask.treeContext; var overflow = JSCompiler_inline_result.overflow; JSCompiler_inline_result = JSCompiler_inline_result.id; JSCompiler_inline_result = (JSCompiler_inline_result & ~(1 << 32 - clz32(JSCompiler_inline_result) - 1)).toString(32) + overflow; var resumableState = currentResumableState; if (null === resumableState) throw Error("Invalid hook call. Hooks can only be called inside of the body of a function component."); overflow = localIdCounter++; JSCompiler_inline_result = "_" + resumableState.idPrefix + "R_" + JSCompiler_inline_result; 0 < overflow && (JSCompiler_inline_result += "H" + overflow.toString(32)); return JSCompiler_inline_result + "_"; }, useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) { if (void 0 === getServerSnapshot) throw Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering."); return getServerSnapshot(); }, useOptimistic: function(passthrough) { resolveCurrentlyRenderingComponent(); return [passthrough, unsupportedSetOptimisticState]; }, useActionState, useFormState: useActionState, useHostTransitionStatus: function() { resolveCurrentlyRenderingComponent(); return sharedNotPendingObject; }, useMemoCache: function(size) { for (var data = Array(size), i = 0; i < size; i++) data[i] = REACT_MEMO_CACHE_SENTINEL; return data; }, useCacheRefresh: function() { return unsupportedRefresh; }, useEffectEvent: function() { return throwOnUseEffectEventCall; } }, currentResumableState = null, DefaultAsyncDispatcher = { getCacheForType: function() { throw Error("Not implemented."); }, cacheSignal: function() { throw Error("Not implemented."); } }; function prepareStackTrace(error, structuredStackTrace) { error = (error.name || "Error") + ": " + (error.message || ""); for (var i = 0; i < structuredStackTrace.length; i++) error += "\n at " + structuredStackTrace[i].toString(); return error; } var prefix, suffix; function describeBuiltInComponentFrame(name) { if (void 0 === prefix) try { throw Error(); } catch (x) { var match = x.stack.trim().match(/\n( *(at )?)/); prefix = match && match[1] || ""; suffix = -1 < x.stack.indexOf("\n at") ? " (<anonymous>)" : -1 < x.stack.indexOf("@") ? "@unknown:0:0" : ""; } return "\n" + prefix + name + suffix; } var reentry = !1; function describeNativeComponentFrame(fn, construct) { if (!fn || reentry) return ""; reentry = !0; var previousPrepareStackTrace = Error.prepareStackTrace; Error.prepareStackTrace = prepareStackTrace; try { var RunInRootFrame = { DetermineComponentFrameRoot: function() { try { if (construct) { var Fake = function() { throw Error(); }; Object.defineProperty(Fake.prototype, "props", { set: function() { throw Error(); } }); if ("object" === typeof Reflect && Reflect.construct) { try { Reflect.construct(Fake, []); } catch (x) { var control = x; } Reflect.construct(fn, [], Fake); } else { try { Fake.call(); } catch (x$24) { control = x$24; } fn.call(Fake.prototype); } } else { try { throw Error(); } catch (x$25) { control = x$25; } (Fake = fn()) && "function" === typeof Fake.catch && Fake.catch(function() {}); } } catch (sample) { if (sample && control && "string" === typeof sample.stack) return [sample.stack, control.stack]; } return [null, null]; } }; RunInRootFrame.DetermineComponentFrameRoot.displayName = "DetermineComponentFrameRoot"; var namePropDescriptor = Object.getOwnPropertyDescriptor(RunInRootFrame.DetermineComponentFrameRoot, "name"); namePropDescriptor && namePropDescriptor.configurable && Object.defineProperty(RunInRootFrame.DetermineComponentFrameRoot, "name", { value: "DetermineComponentFrameRoot" }); var _RunInRootFrame$Deter = RunInRootFrame.DetermineComponentFrameRoot(), sampleStack = _RunInRootFrame$Deter[0], controlStack = _RunInRootFrame$Deter[1]; if (sampleStack && controlStack) { var sampleLines = sampleStack.split("\n"), controlLines = controlStack.split("\n"); for (namePropDescriptor = RunInRootFrame = 0; RunInRootFrame < sampleLines.length && !sampleLines[RunInRootFrame].includes("DetermineComponentFrameRoot");) RunInRootFrame++; for (; namePropDescriptor < controlLines.length && !controlLines[namePropDescriptor].includes("DetermineComponentFrameRoot");) namePropDescriptor++; if (RunInRootFrame === sampleLines.length || namePropDescriptor === controlLines.length) for (RunInRootFrame = sampleLines.length - 1, namePropDescriptor = controlLines.length - 1; 1 <= RunInRootFrame && 0 <= namePropDescriptor && sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor];) namePropDescriptor--; for (; 1 <= RunInRootFrame && 0 <= namePropDescriptor; RunInRootFrame--, namePropDescriptor--) if (sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor]) { if (1 !== RunInRootFrame || 1 !== namePropDescriptor) do if (RunInRootFrame--, namePropDescriptor--, 0 > namePropDescriptor || sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor]) { var frame = "\n" + sampleLines[RunInRootFrame].replace(" at new ", " at "); fn.displayName && frame.includes("<anonymous>") && (frame = frame.replace("<anonymous>", fn.displayName)); return frame; } while (1 <= RunInRootFrame && 0 <= namePropDescriptor); break; } } } finally { reentry = !1, Error.prepareStackTrace = previousPrepareStackTrace; } return (previousPrepareStackTrace = fn ? fn.displayName || fn.name : "") ? describeBuiltInComponentFrame(previousPrepareStackTrace) : ""; } function describeComponentStackByType(type) { if ("string" === typeof type) return describeBuiltInComponentFrame(type); if ("function" === typeof type) return type.prototype && type.prototype.isReactComponent ? describeNativeComponentFrame(type, !0) : describeNativeComponentFrame(type, !1); if ("object" === typeof type && null !== type) { switch (type.$$typeof) { case REACT_FORWARD_REF_TYPE: return describeNativeComponentFrame(type.render, !1); case REACT_MEMO_TYPE: return describeNativeComponentFrame(type.type, !1); case REACT_LAZY_TYPE: var lazyComponent = type, payload = lazyComponent._payload; lazyComponent = lazyComponent._init; try { type = lazyComponent(payload); } catch (x) { return describeBuiltInComponentFrame("Lazy"); } return describeComponentStackByType(type); } if ("string" === typeof type.name) { a: { payload = type.name; lazyComponent = type.env; var location = type.debugLocation; if (null != location && (type = Error.prepareStackTrace, Error.prepareStackTrace = prepareStackTrace, location = location.stack, Error.prepareStackTrace = type, location.startsWith("Error: react-stack-top-frame\n") && (location = location.slice(29)), type = location.indexOf("\n"), -1 !== type && (location = location.slice(type + 1)), type = location.indexOf("react_stack_bottom_frame"), -1 !== type && (type = location.lastIndexOf("\n", type)), type = -1 !== type ? location = location.slice(0, type) : "", location = type.lastIndexOf("\n"), type = -1 === location ? type : type.slice(location + 1), -1 !== type.indexOf(payload))) { payload = "\n" + type; break a; } payload = describeBuiltInComponentFrame(payload + (lazyComponent ? " [" + lazyComponent + "]" : "")); } return payload; } } switch (type) { case REACT_SUSPENSE_LIST_TYPE: return describeBuiltInComponentFrame("SuspenseList"); case REACT_SUSPENSE_TYPE: return describeBuiltInComponentFrame("Suspense"); } return ""; } function isEligibleForOutlining(request, boundary) { return (500 < boundary.byteSize || hasSuspenseyContent(boundary.contentState)) && null === boundary.contentPreamble; } function defaultErrorHandler(error) { if ("object" === typeof error && null !== error && "string" === typeof error.environmentName) { var JSCompiler_inline_result = error.environmentName; error = [error].slice(0); "string" === typeof error[0] ? error.splice(0, 1, "\x1B[0m\x1B[7m%c%s\x1B[0m%c " + error[0], "background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px", " " + JSCompiler_inline_result + " ", "") : error.splice(0, 0, "\x1B[0m\x1B[7m%c%s\x1B[0m%c", "background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px", " " + JSCompiler_inline_result + " ", ""); error.unshift(console); JSCompiler_inline_result = bind.apply(console.error, error); JSCompiler_inline_result(); } else console.error(error); return null; } function RequestInstance(resumableState, renderState, rootFormatContext, progressiveChunkSize, onError, onAllReady, onShellReady, onShellError, onFatalError, onPostpone, formState) { var abortSet = /* @__PURE__ */ new Set(); this.destination = null; this.flushScheduled = !1; this.resumableState = resumableState; this.renderState = renderState; this.rootFormatContext = rootFormatContext; this.progressiveChunkSize = void 0 === progressiveChunkSize ? 12800 : progressiveChunkSize; this.status = 10; this.fatalError = null; this.pendingRootTasks = this.allPendingTasks = this.nextSegmentId = 0; this.completedPreambleSegments = this.completedRootSegment = null; this.byteSize = 0; this.abortableTasks = abortSet; this.pingedTasks = []; this.clientRenderedBoundaries = []; this.completedBoundaries = []; this.partialBoundaries = []; this.trackedPostpones = null; this.onError = void 0 === onError ? defaultErrorHandler : onError; this.onPostpone = void 0 === onPostpone ? noop : onPostpone; this.onAllReady = void 0 === onAllReady ? noop : onAllReady; this.onShellReady = void 0 === onShellReady ? noop : onShellReady; this.onShellError = void 0 === onShellError ? noop : onShellError; this.onFatalError = void 0 === onFatalError ? noop : onFatalError; this.formState = void 0 === formState ? null : formState; } function createRequest(children, resumableState, renderState, rootFormatContext, progressiveChunkSize, onError, onAllReady, onShellReady, onShellError, onFatalError, onPostpone, formState) { resumableState = new RequestInstance(resumableState, renderState, rootFormatContext, progressiveChunkSize, onError, onAllReady, onShellReady, onShellError, onFatalError, onPostpone, formState); renderState = createPendingSegment(resumableState, 0, null, rootFormatContext, !1, !1); renderState.parentFlushed = !0; children = createRenderTask(resumableState, null, children, -1, null, renderState, null, null, resumableState.abortableTasks, null, rootFormatContext, null, emptyTreeContext, null, null); pushComponentStack(children); resumableState.pingedTasks.push(children); return resumableState; } function createPrerenderRequest(children, resumableState, renderState, rootFormatContext, progressiveChunkSize, onError, onAllReady, onShellReady, onShellError, onFatalError, onPostpone) { children = createRequest(children, resumableState, renderState, rootFormatContext, progressiveChunkSize, onError, onAllReady, onShellReady, onShellError, onFatalError, onPostpone, void 0); children.trackedPostpones = { workingMap: /* @__PURE__ */ new Map(), rootNodes: [], rootSlots: null }; return children; } function resumeRequest(children, postponedState, renderState, onError, onAllReady, onShellReady, onShellError, onFatalError, onPostpone) { renderState = new RequestInstance(postponedState.resumableState, renderState, postponedState.rootFormatContext, postponedState.progressiveChunkSize, onError, onAllReady, onShellReady, onShellError, onFatalError, onPostpone, null); renderState.nextSegmentId = postponedState.nextSegmentId; if ("number" === typeof postponedState.replaySlots) return onError = createPendingSegment(renderState, 0, null, postponedState.rootFormatContext, !1, !1), onError.parentFlushed = !0, children = createRenderTask(renderState, null, children, -1, null, onError, null, null, renderState.abortableTasks, null, postponedState.rootFormatContext, null, emptyTreeContext, null, null), pushComponentStack(children), renderState.pingedTasks.push(children), renderState; children = createReplayTask(renderState, null, { nodes: postponedState.replayNodes, slots: postponedState.replaySlots, pendingTasks: 0 }, children, -1, null, null, renderState.abortableTasks, null, postponedState.rootFormatContext, null, emptyTreeContext, null, null); pushComponentStack(children); renderState.pingedTasks.push(children); return renderState; } function resumeAndPrerenderRequest(children, postponedState, renderState, onError, onAllReady, onShellReady, onShellError, onFatalError, onPostpone) { children = resumeRequest(children, postponedState, renderState, onError, onAllReady, onShellReady, onShellError, onFatalError, onPostpone); children.trackedPostpones = { workingMap: /* @__PURE__ */ new Map(), rootNodes: [], rootSlots: null }; return children; } var currentRequest = null; function resolveRequest() { if (currentRequest) return currentRequest; var store = requestStorage.getStore(); return store ? store : null; } function pingTask(request, task) { request.pingedTasks.push(task); 1 === request.pingedTasks.length && (request.flushScheduled = null !== request.destination, null !== request.trackedPostpones || 10 === request.status ? scheduleMicrotask(function() { return performWork(request); }) : setImmediate(function() { return performWork(request); })); } function createSuspenseBoundary(request, row, fallbackAbortableTasks, contentPreamble, fallbackPreamble) { fallbackAbortableTasks = { status: 0, rootSegmentID: -1, parentFlushed: !1, pendingTasks: 0, row, completedSegments: [], byteSize: 0, fallbackAbortableTasks, errorDigest: null, contentState: createHoistableState(), fallbackState: createHoistableState(), contentPreamble, fallbackPreamble, trackedContentKeyPath: null, trackedFallbackNode: null }; null !== row && (row.pendingTasks++, contentPreamble = row.boundaries, null !== contentPreamble && (request.allPendingTasks++, fallbackAbortableTasks.pendingTasks++, contentPreamble.push(fallbackAbortableTasks)), request = row.inheritedHoistables, null !== request && hoistHoistables(fallbackAbortableTasks.contentState, request)); return fallbackAbortableTasks; } function createRenderTask(request, thenableState, node, childIndex, blockedBoundary, blockedSegment, blockedPreamble, hoistableState, abortSet, keyPath, formatContext, context, treeContext, row, componentStack) { request.allPendingTasks++; null === blockedBoundary ? request.pendingRootTasks++ : blockedBoundary.pendingTasks++; null !== row && row.pendingTasks++; var task = { replay: null, node, childIndex, ping: function() { return pingTask(request, task); }, blockedBoundary, blockedSegment, blockedPreamble, hoistableState, abortSet, keyPath, formatContext, context, treeContext, row, componentStack, thenableState }; abortSet.add(task); return task; } function createReplayTask(request, thenableState, replay, node, childIndex, blockedBoundary, hoistableState, abortSet, keyPath, formatContext, context, treeContext, row, componentStack) { request.allPendingTasks++; null === blockedBoundary ? request.pendingRootTasks++ : blockedBoundary.pendingTasks++; null !== row && row.pendingTasks++; replay.pendingTasks++; var task = { replay, node, childIndex, ping: function() { return pingTask(request, task); }, blockedBoundary, blockedSegment: null, blockedPreamble: null, hoistableState, abortSet, keyPath, formatContext, context, treeContext, row, componentStack, thenableState }; abortSet.add(task); return task; } function createPendingSegment(request, index, boundary, parentFormatContext, lastPushedText, textEmbedded) { return { status: 0, parentFlushed: !1, id: -1, index, chunks: [], children: [], preambleChildren: [], parentFormatContext, boundary, lastPushedText, textEmbedded }; } function pushComponentStack(task) { var node = task.node; if ("object" === typeof node && null !== node) switch (node.$$typeof) { case REACT_ELEMENT_TYPE: task.componentStack = { parent: task.componentStack, type: node.type }; } } function replaceSuspenseComponentStackWithSuspenseFallbackStack(componentStack) { return null === componentStack ? null : { parent: componentStack.parent, type: "Suspense Fallback" }; } function getThrownInfo(node$jscomp$0) { var errorInfo = {}; node$jscomp$0 && Object.defineProperty(errorInfo, "componentStack", { configurable: !0, enumerable: !0, get: function() { try { var info = "", node = node$jscomp$0; do info += describeComponentStackByType(node.type), node = node.parent; while (node); var JSCompiler_inline_result = info; } catch (x) { JSCompiler_inline_result = "\nError generating stack: " + x.message + "\n" + x.stack; } Object.defineProperty(errorInfo, "componentStack", { value: JSCompiler_inline_result }); return JSCompiler_inline_result; } }); return errorInfo; } function logRecoverableError(request, error, errorInfo) { request = request.onError; error = request(error, errorInfo); if (null == error || "string" === typeof error) return error; } function fatalError(request, error) { var onShellError = request.onShellError, onFatalError = request.onFatalError; onShellError(error); onFatalError(error); null !== request.destination ? (request.status = 14, request.destination.destroy(error)) : (request.status = 13, request.fatalError = error); } function finishSuspenseListRow(request, row) { unblockSuspenseListRow(request, row.next, row.hoistables); } function unblockSuspenseListRow(request, unblockedRow, inheritedHoistables) { for (; null !== unblockedRow;) { null !== inheritedHoistables && (hoistHoistables(unblockedRow.hoistables, inheritedHoistables), unblockedRow.inheritedHoistables = inheritedHoistables); var unblockedBoundaries = unblockedRow.boundaries; if (null !== unblockedBoundaries) { unblockedRow.boundaries = null; for (var i = 0; i < unblockedBoundaries.length; i++) { var unblockedBoundary = unblockedBoundaries[i]; null !== inheritedHoistables && hoistHoistables(unblockedBoundary.contentState, inheritedHoistables); finishedTask(request, unblockedBoundary, null, null); } } unblockedRow.pendingTasks--; if (0 < unblockedRow.pendingTasks) break; inheritedHoistables = unblockedRow.hoistables; unblockedRow = unblockedRow.next; } } function tryToResolveTogetherRow(request, togetherRow) { var boundaries = togetherRow.boundaries; if (null !== boundaries && togetherRow.pendingTasks === boundaries.length) { for (var allCompleteAndInlinable = !0, i = 0; i < boundaries.length; i++) { var rowBoundary = boundaries[i]; if (1 !== rowBoundary.pendingTasks || rowBoundary.parentFlushed || isEligibleForOutlining(request, rowBoundary)) { allCompleteAndInlinable = !1; break; } } allCompleteAndInlinable && unblockSuspenseListRow(request, togetherRow, togetherRow.hoistables); } } function createSuspenseListRow(previousRow) { var newRow = { pendingTasks: 1, boundaries: null, hoistables: createHoistableState(), inheritedHoistables: null, together: !1, next: null }; null !== previousRow && 0 < previousRow.pendingTasks && (newRow.pendingTasks++, newRow.boundaries = [], previousRow.next = newRow); return newRow; } function renderSuspenseListRows(request, task, keyPath, rows, revealOrder) { var prevKeyPath = task.keyPath, prevTreeContext = task.treeContext, prevRow = task.row; task.keyPath = keyPath; keyPath = rows.length; var previousSuspenseListRow = null; if (null !== task.replay) { var resumeSlots = task.replay.slots; if (null !== resumeSlots && "object" === typeof resumeSlots) for (var n = 0; n < keyPath; n++) { var i = "backwards" !== revealOrder && "unstable_legacy-backwards" !== revealOrder ? n : keyPath - 1 - n, node = rows[i]; task.row = previousSuspenseListRow = createSuspenseListRow(previousSuspenseListRow); task.treeContext = pushTreeContext(prevTreeContext, keyPath, i); var resumeSegmentID = resumeSlots[i]; "number" === typeof resumeSegmentID ? (resumeNode(request, task, resumeSegmentID, node, i), delete resumeSlots[i]) : renderNode(request, task, node, i); 0 === --previousSuspenseListRow.pendingTasks && finishSuspenseListRow(request, previousSuspenseListRow); } else for (resumeSlots = 0; resumeSlots < keyPath; resumeSlots++) n = "backwards" !== revealOrder && "unstable_legacy-backwards" !== revealOrder ? resumeSlots : keyPath - 1 - resumeSlots, i = rows[n], task.row = previousSuspenseListRow = createSuspenseListRow(previousSuspenseListRow), task.treeContext = pushTreeContext(prevTreeContext, keyPath, n), renderNode(request, task, i, n), 0 === --previousSuspenseListRow.pendingTasks && finishSuspenseListRow(request, previousSuspenseListRow); } else if ("backwards" !== revealOrder && "unstable_legacy-backwards" !== revealOrder) for (revealOrder = 0; revealOrder < keyPath; revealOrder++) resumeSlots = rows[revealOrder], task.row = previousSuspenseListRow = createSuspenseListRow(previousSuspenseListRow), task.treeContext = pushTreeContext(prevTreeContext, keyPath, revealOrder), renderNode(request, task, resumeSlots, revealOrder), 0 === --previousSuspenseListRow.pendingTasks && finishSuspenseListRow(request, previousSuspenseListRow); else { revealOrder = task.blockedSegment; resumeSlots = revealOrder.children.length; n = revealOrder.chunks.length; for (i = keyPath - 1; 0 <= i; i--) { node = rows[i]; task.row = previousSuspenseListRow = createSuspenseListRow(previousSuspenseListRow); task.treeContext = pushTreeContext(prevTreeContext, keyPath, i); resumeSegmentID = createPendingSegment(request, n, null, task.formatContext, 0 === i ? revealOrder.lastPushedText : !0, !0); revealOrder.children.splice(resumeSlots, 0, resumeSegmentID); task.blockedSegment = resumeSegmentID; try { renderNode(request, task, node, i), resumeSegmentID.lastPushedText && resumeSegmentID.textEmbedded && resumeSegmentID.chunks.push(textSeparator), resumeSegmentID.status = 1, finishedSegment(request, task.blockedBoundary, resumeSegmentID), 0 === --previousSuspenseListRow.pendingTasks && finishSuspenseListRow(request, previousSuspenseListRow); } catch (thrownValue) { throw resumeSegmentID.status = 12 === request.status ? 3 : 4, thrownValue; } } task.blockedSegment = revealOrder; revealOrder.lastPushedText = !1; } null !== prevRow && null !== previousSuspenseListRow && 0 < previousSuspenseListRow.pendingTasks && (prevRow.pendingTasks++, previousSuspenseListRow.next = prevRow); task.treeContext = prevTreeContext; task.row = prevRow; task.keyPath = prevKeyPath; } function renderWithHooks(request, task, keyPath, Component, props, secondArg) { var prevThenableState = task.thenableState; task.thenableState = null; currentlyRenderingComponent = {}; currentlyRenderingTask = task; currentlyRenderingRequest = request; currentlyRenderingKeyPath = keyPath; actionStateCounter = localIdCounter = 0; actionStateMatchingIndex = -1; thenableIndexCounter = 0; thenableState = prevThenableState; for (request = Component(props, secondArg); didScheduleRenderPhaseUpdate;) didScheduleRenderPhaseUpdate = !1, actionStateCounter = localIdCounter = 0, actionStateMatchingIndex = -1, thenableIndexCounter = 0, numberOfReRenders += 1, workInProgressHook = null, request = Component(props, secondArg); resetHooksState(); return request; } function finishFunctionComponent(request, task, keyPath, children, hasId, actionStateCount, actionStateMatchingIndex) { var didEmitActionStateMarkers = !1; if (0 !== actionStateCount && null !== request.formState) { var segment = task.blockedSegment; if (null !== segment) { didEmitActionStateMarkers = !0; segment = segment.chunks; for (var i = 0; i < actionStateCount; i++) i === actionStateMatchingIndex ? segment.push(formStateMarkerIsMatching) : segment.push(formStateMarkerIsNotMatching); } } actionStateCount = task.keyPath; task.keyPath = keyPath; hasId ? (keyPath = task.treeContext, task.treeContext = pushTreeContext(keyPath, 1, 0), renderNode(request, task, children, -1), task.treeContext = keyPath) : didEmitActionStateMarkers ? renderNode(request, task, children, -1) : renderNodeDestructive(request, task, children, -1); task.keyPath = actionStateCount; } function renderElement(request, task, keyPath, type, props, ref) { if ("function" === typeof type) if (type.prototype && type.prototype.isReactComponent) { var newProps = props; if ("ref" in props) { newProps = {}; for (var propName in props) "ref" !== propName && (newProps[propName] = props[propName]); } var defaultProps = type.defaultProps; if (defaultProps) { newProps === props && (newProps = assign({}, newProps, props)); for (var propName$44 in defaultProps) void 0 === newProps[propName$44] && (newProps[propName$44] = defaultProps[propName$44]); } props = newProps; newProps = emptyContextObject; defaultProps = type.contextType; "object" === typeof defaultProps && null !== defaultProps && (newProps = defaultProps._currentValue); newProps = new type(props, newProps); var initialState = void 0 !== newProps.state ? newProps.state : null; newProps.updater = classComponentUpdater; newProps.props = props; newProps.state = initialState; defaultProps = { queue: [], replace: !1 }; newProps._reactInternals = defaultProps; ref = type.contextType; newProps.context = "object" === typeof ref && null !== ref ? ref._currentValue : emptyContextObject; ref = type.getDerivedStateFromProps; "function" === typeof ref && (ref = ref(props, initialState), initialState = null === ref || void 0 === ref ? initialState : assign({}, initialState, ref), newProps.state = initialState); if ("function" !== typeof type.getDerivedStateFromProps && "function" !== typeof newProps.getSnapshotBeforeUpdate && ("function" === typeof newProps.UNSAFE_componentWillMount || "function" === typeof newProps.componentWillMount)) if (type = newProps.state, "function" === typeof newProps.componentWillMount && newProps.componentWillMount(), "function" === typeof newProps.UNSAFE_componentWillMount && newProps.UNSAFE_componentWillMount(), type !== newProps.state && classComponentUpdater.enqueueReplaceState(newProps, newProps.state, null), null !== defaultProps.queue && 0 < defaultProps.queue.length) if (type = defaultProps.queue, ref = defaultProps.replace, defaultProps.queue = null, defaultProps.replace = !1, ref && 1 === type.length) newProps.state = type[0]; else { defaultProps = ref ? type[0] : newProps.state; initialState = !0; for (ref = ref ? 1 : 0; ref < type.length; ref++) propName$44 = type[ref], propName$44 = "function" === typeof propName$44 ? propName$44.call(newProps, defaultProps, props, void 0) : propName$44, null != propName$44 && (initialState ? (initialState = !1, defaultProps = assign({}, defaultProps, propName$44)) : assign(defaultProps, propName$44)); newProps.state = defaultProps; } else defaultProps.queue = null; type = newProps.render(); if (12 === request.status) throw null; props = task.keyPath; task.keyPath = keyPath; renderNodeDestructive(request, task, type, -1); task.keyPath = props; } else { type = renderWithHooks(request, task, keyPath, type, props, void 0); if (12 === request.status) throw null; finishFunctionComponent(request, task, keyPath, type, 0 !== localIdCounter, actionStateCounter, actionStateMatchingIndex); } else if ("string" === typeof type) if (newProps = task.blockedSegment, null === newProps) newProps = props.children, defaultProps = task.formatContext, initialState = task.keyPath, task.formatContext = getChildFormatContext(defaultProps, type, props), task.keyPath = keyPath, renderNode(request, task, newProps, -1), task.formatContext = defaultProps, task.keyPath = initialState; else { initialState = pushStartInstance(newProps.chunks, type, props, request.resumableState, request.renderState, task.blockedPreamble, task.hoistableState, task.formatContext, newProps.lastPushedText); newProps.lastPushedText = !1; defaultProps = task.formatContext; ref = task.keyPath; task.keyPath = keyPath; if (3 === (task.formatContext = getChildFormatContext(defaultProps, type, props)).insertionMode) { keyPath = createPendingSegment(request, 0, null, task.formatContext, !1, !1); newProps.preambleChildren.push(keyPath); task.blockedSegment = keyPath; try { keyPath.status = 6, renderNode(request, task, initialState, -1), keyPath.lastPushedText && keyPath.textEmbedded && keyPath.chunks.push(textSeparator), keyPath.status = 1, finishedSegment(request, task.blockedBoundary, keyPath); } finally { task.blockedSegment = newProps; } } else renderNode(request, task, initialState, -1); task.formatContext = defaultProps; task.keyPath = ref; a: { task = newProps.chunks; request = request.resumableState; switch (type) { case "title": case "style": case "script": case "area": case "base": case "br": case "col": case "embed": case "hr": case "img": case "input": case "keygen": case "link": case "meta": case "param": case "source": case "track": case "wbr": break a; case "body": if (1 >= defaultProps.insertionMode) { request.hasBody = !0; break a; } break; case "html": if (0 === defaultProps.insertionMode) { request.hasHtml = !0; break a; } break; case "head": if (1 >= defaultProps.insertionMode) break a; } task.push(endChunkForTag(type)); } newProps.lastPushedText = !1; } else { switch (type) { case REACT_LEGACY_HIDDEN_TYPE: case REACT_STRICT_MODE_TYPE: case REACT_PROFILER_TYPE: case REACT_FRAGMENT_TYPE: type = task.keyPath; task.keyPath = keyPath; renderNodeDestructive(request, task, props.children, -1); task.keyPath = type; return; case REACT_ACTIVITY_TYPE: type = task.blockedSegment; null === type ? "hidden" !== props.mode && (type = task.keyPath, task.keyPath = keyPath, renderNode(request, task, props.children, -1), task.keyPath = type) : "hidden" !== props.mode && (type.chunks.push(startActivityBoundary), type.lastPushedText = !1, newProps = task.keyPath, task.keyPath = keyPath, renderNode(request, task, props.children, -1), task.keyPath = newProps, type.chunks.push(endActivityBoundary), type.lastPushedText = !1); return; case REACT_SUSPENSE_LIST_TYPE: a: { type = props.children; props = props.revealOrder; if ("forwards" === props || "backwards" === props || "unstable_legacy-backwards" === props) { if (isArrayImpl(type)) { renderSuspenseListRows(request, task, keyPath, type, props); break a; } if (newProps = getIteratorFn(type)) { if (newProps = newProps.call(type)) { defaultProps = newProps.next(); if (!defaultProps.done) { do defaultProps = newProps.next(); while (!defaultProps.done); renderSuspenseListRows(request, task, keyPath, type, props); } break a; } } } "together" === props ? (props = task.keyPath, newProps = task.row, defaultProps = task.row = createSuspenseListRow(null), defaultProps.boundaries = [], defaultProps.together = !0, task.keyPath = keyPath, renderNodeDestructive(request, task, type, -1), 0 === --defaultProps.pendingTasks && finishSuspenseListRow(request, defaultProps), task.keyPath = props, task.row = newProps, null !== newProps && 0 < defaultProps.pendingTasks && (newProps.pendingTasks++, defaultProps.next = newProps)) : (props = task.keyPath, task.keyPath = keyPath, renderNodeDestructive(request, task, type, -1), task.keyPath = props); } return; case REACT_VIEW_TRANSITION_TYPE: case REACT_SCOPE_TYPE: throw Error("ReactDOMServer does not yet support scope components."); case REACT_SUSPENSE_TYPE: a: if (null !== task.replay) { type = task.keyPath; newProps = task.formatContext; defaultProps = task.row; task.keyPath = keyPath; task.formatContext = getSuspenseContentFormatContext(request.resumableState, newProps); task.row = null; keyPath = props.children; try { renderNode(request, task, keyPath, -1); } finally { task.keyPath = type, task.formatContext = newProps, task.row = defaultProps; } } else { type = task.keyPath; ref = task.formatContext; var prevRow = task.row; propName$44 = task.blockedBoundary; propName = task.blockedPreamble; var parentHoistableState = task.hoistableState, parentSegment = task.blockedSegment, fallback = props.fallback; props = props.children; var fallbackAbortSet = /* @__PURE__ */ new Set(); var newBoundary = 2 > task.formatContext.insertionMode ? createSuspenseBoundary(request, task.row, fallbackAbortSet, createPreambleState(), createPreambleState()) : createSuspenseBoundary(request, task.row, fallbackAbortSet, null, null); null !== request.trackedPostpones && (newBoundary.trackedContentKeyPath = keyPath); var boundarySegment = createPendingSegment(request, parentSegment.chunks.length, newBoundary, task.formatContext, !1, !1); parentSegment.children.push(boundarySegment); parentSegment.lastPushedText = !1; var contentRootSegment = createPendingSegment(request, 0, null, task.formatContext, !1, !1); contentRootSegment.parentFlushed = !0; if (null !== request.trackedPostpones) { newProps = task.componentStack; defaultProps = [ keyPath[0], "Suspense Fallback", keyPath[2] ]; initialState = [ defaultProps[1], defaultProps[2], [], null ]; request.trackedPostpones.workingMap.set(defaultProps, initialState); newBoundary.trackedFallbackNode = initialState; task.blockedSegment = boundarySegment; task.blockedPreamble = newBoundary.fallbackPreamble; task.keyPath = defaultProps; task.formatContext = getSuspenseFallbackFormatContext(request.resumableState, ref); task.componentStack = replaceSuspenseComponentStackWithSuspenseFallbackStack(newProps); boundarySegment.status = 6; try { renderNode(request, task, fallback, -1), boundarySegment.lastPushedText && boundarySegment.textEmbedded && boundarySegment.chunks.push(textSeparator), boundarySegment.status = 1, finishedSegment(request, propName$44, boundarySegment); } catch (thrownValue) { throw boundarySegment.status = 12 === request.status ? 3 : 4, thrownValue; } finally { task.blockedSegment = parentSegment, task.blockedPreamble = propName, task.keyPath = type, task.formatContext = ref; } task = createRenderTask(request, null, props, -1, newBoundary, contentRootSegment, newBoundary.contentPreamble, newBoundary.contentState, task.abortSet, keyPath, getSuspenseContentFormatContext(request.resumableState, task.formatContext), task.context, task.treeContext, null, newProps); pushComponentStack(task); request.pingedTasks.push(task); } else { task.blockedBoundary = newBoundary; task.blockedPreamble = newBoundary.contentPreamble; task.hoistableState = newBoundary.contentState; task.blockedSegment = contentRootSegment; task.keyPath = keyPath; task.formatContext = getSuspenseContentFormatContext(request.resumableState, ref); task.row = null; contentRootSegment.status = 6; try { if (renderNode(request, task, props, -1), contentRootSegment.lastPushedText && contentRootSegment.textEmbedded && contentRootSegment.chunks.push(textSeparator), contentRootSegment.status = 1, finishedSegment(request, newBoundary, contentRootSegment), queueCompletedSegment(newBoundary, contentRootSegment), 0 === newBoundary.pendingTasks && 0 === newBoundary.status) { if (newBoundary.status = 1, !isEligibleForOutlining(request, newBoundary)) { null !== prevRow && 0 === --prevRow.pendingTasks && finishSuspenseListRow(request, prevRow); 0 === request.pendingRootTasks && task.blockedPreamble && preparePreamble(request); break a; } } else null !== prevRow && prevRow.together && tryToResolveTogetherRow(request, prevRow); } catch (thrownValue$31) { newBoundary.status = 4, 12 === request.status ? (contentRootSegment.status = 3, newProps = request.fatalError) : (contentRootSegment.status = 4, newProps = thrownValue$31), defaultProps = getThrownInfo(task.componentStack), initialState = logRecoverableError(request, newProps, defaultProps), newBoundary.errorDigest = initialState, untrackBoundary(request, newBoundary); } finally { task.blockedBoundary = propName$44, task.blockedPreamble = propName, task.hoistableState = parentHoistableState, task.blockedSegment = parentSegment, task.keyPath = type, task.formatContext = ref, task.row = prevRow; } task = createRenderTask(request, null, fallback, -1, propName$44, boundarySegment, newBoundary.fallbackPreamble, newBoundary.fallbackState, fallbackAbortSet, [ keyPath[0], "Suspense Fallback", keyPath[2] ], getSuspenseFallbackFormatContext(request.resumableState, task.formatContext), task.context, task.treeContext, task.row, replaceSuspenseComponentStackWithSuspenseFallbackStack(task.componentStack)); pushComponentStack(task); request.pingedTasks.push(task); } } return; } if ("object" === typeof type && null !== type) switch (type.$$typeof) { case REACT_FORWARD_REF_TYPE: if ("ref" in props) for (parentSegment in newProps = {}, props) "ref" !== parentSegment && (newProps[parentSegment] = props[parentSegment]); else newProps = props; type = renderWithHooks(request, task, keyPath, type.render, newProps, ref); finishFunctionComponent(request, task, keyPath, type, 0 !== localIdCounter, actionStateCounter, actionStateMatchingIndex); return; case REACT_MEMO_TYPE: renderElement(request, task, keyPath, type.type, props, ref); return; case REACT_CONTEXT_TYPE: defaultProps = props.children; newProps = task.keyPath; props = props.value; initialState = type._currentValue; type._currentValue = props; ref = currentActiveSnapshot; currentActiveSnapshot = type = { parent: ref, depth: null === ref ? 0 : ref.depth + 1, context: type, parentValue: initialState, value: props }; task.context = type; task.keyPath = keyPath; renderNodeDestructive(request, task, defaultProps, -1); request = currentActiveSnapshot; if (null === request) throw Error("Tried to pop a Context at the root of the app. This is a bug in React."); request.context._currentValue = request.parentValue; request = currentActiveSnapshot = request.parent; task.context = request; task.keyPath = newProps; return; case REACT_CONSUMER_TYPE: props = props.children; type = props(type._context._currentValue); props = task.keyPath; task.keyPath = keyPath; renderNodeDestructive(request, task, type, -1); task.keyPath = props; return; case REACT_LAZY_TYPE: newProps = type._init; type = newProps(type._payload); if (12 === request.status) throw null; renderElement(request, task, keyPath, type, props, ref); return; } throw Error("Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: " + ((null == type ? type : typeof type) + ".")); } } function resumeNode(request, task, segmentId, node, childIndex) { var prevReplay = task.replay, blockedBoundary = task.blockedBoundary, resumedSegment = createPendingSegment(request, 0, null, task.formatContext, !1, !1); resumedSegment.id = segmentId; resumedSegment.parentFlushed = !0; try { task.replay = null, task.blockedSegment = resumedSegment, renderNode(request, task, node, childIndex), resumedSegment.status = 1, finishedSegment(request, blockedBoundary, resumedSegment), null === blockedBoundary ? request.completedRootSegment = resumedSegment : (queueCompletedSegment(blockedBoundary, resumedSegment), blockedBoundary.parentFlushed && request.partialBoundaries.push(blockedBoundary)); } finally { task.replay = prevReplay, task.blockedSegment = null; } } function renderNodeDestructive(request, task, node, childIndex) { null !== task.replay && "number" === typeof task.replay.slots ? resumeNode(request, task, task.replay.slots, node, childIndex) : (task.node = node, task.childIndex = childIndex, node = task.componentStack, pushComponentStack(task), retryNode(request, task), task.componentStack = node); } function retryNode(request, task) { var node = task.node, childIndex = task.childIndex; if (null !== node) { if ("object" === typeof node) { switch (node.$$typeof) { case REACT_ELEMENT_TYPE: var type = node.type, key = node.key, props = node.props; node = props.ref; var ref = void 0 !== node ? node : null, name = getComponentNameFromType(type), keyOrIndex = null == key ? -1 === childIndex ? 0 : childIndex : key; key = [ task.keyPath, name, keyOrIndex ]; if (null !== task.replay) a: { var replay = task.replay; childIndex = replay.nodes; for (node = 0; node < childIndex.length; node++) { var node$jscomp$0 = childIndex[node]; if (keyOrIndex === node$jscomp$0[1]) { if (4 === node$jscomp$0.length) { if (null !== name && name !== node$jscomp$0[0]) throw Error("Expected the resume to render <" + node$jscomp$0[0] + "> in this slot but instead it rendered <" + name + ">. The tree doesn't match so React will fallback to client rendering."); var childNodes = node$jscomp$0[2]; name = node$jscomp$0[3]; keyOrIndex = task.node; task.replay = { nodes: childNodes, slots: name, pendingTasks: 1 }; try { renderElement(request, task, key, type, props, ref); if (1 === task.replay.pendingTasks && 0 < task.replay.nodes.length) throw Error("Couldn't find all resumable slots by key/index during replaying. The tree doesn't match so React will fallback to client rendering."); task.replay.pendingTasks--; } catch (x) { if ("object" === typeof x && null !== x && (x === SuspenseException || "function" === typeof x.then)) throw task.node === keyOrIndex ? task.replay = replay : childIndex.splice(node, 1), x; task.replay.pendingTasks--; props = getThrownInfo(task.componentStack); key = request; request = task.blockedBoundary; type = x; props = logRecoverableError(key, type, props); abortRemainingReplayNodes(key, request, childNodes, name, type, props); } task.replay = replay; } else { if (type !== REACT_SUSPENSE_TYPE) throw Error("Expected the resume to render <Suspense> in this slot but instead it rendered <" + (getComponentNameFromType(type) || "Unknown") + ">. The tree doesn't match so React will fallback to client rendering."); b: { replay = void 0; type = node$jscomp$0[5]; ref = node$jscomp$0[2]; name = node$jscomp$0[3]; keyOrIndex = null === node$jscomp$0[4] ? [] : node$jscomp$0[4][2]; node$jscomp$0 = null === node$jscomp$0[4] ? null : node$jscomp$0[4][3]; var prevKeyPath = task.keyPath, prevContext = task.formatContext, prevRow = task.row, previousReplaySet = task.replay, parentBoundary = task.blockedBoundary, parentHoistableState = task.hoistableState, content = props.children, fallback = props.fallback, fallbackAbortSet = /* @__PURE__ */ new Set(); props = 2 > task.formatContext.insertionMode ? createSuspenseBoundary(request, task.row, fallbackAbortSet, createPreambleState(), createPreambleState()) : createSuspenseBoundary(request, task.row, fallbackAbortSet, null, null); props.parentFlushed = !0; props.rootSegmentID = type; task.blockedBoundary = props; task.hoistableState = props.contentState; task.keyPath = key; task.formatContext = getSuspenseContentFormatContext(request.resumableState, prevContext); task.row = null; task.replay = { nodes: ref, slots: name, pendingTasks: 1 }; try { renderNode(request, task, content, -1); if (1 === task.replay.pendingTasks && 0 < task.replay.nodes.length) throw Error("Couldn't find all resumable slots by key/index during replaying. The tree doesn't match so React will fallback to client rendering."); task.replay.pendingTasks--; if (0 === props.pendingTasks && 0 === props.status) { props.status = 1; request.completedBoundaries.push(props); break b; } } catch (error) { props.status = 4, childNodes = getThrownInfo(task.componentStack), replay = logRecoverableError(request, error, childNodes), props.errorDigest = replay, task.replay.pendingTasks--, request.clientRenderedBoundaries.push(props); } finally { task.blockedBoundary = parentBoundary, task.hoistableState = parentHoistableState, task.replay = previousReplaySet, task.keyPath = prevKeyPath, task.formatContext = prevContext, task.row = prevRow; } childNodes = createReplayTask(request, null, { nodes: keyOrIndex, slots: node$jscomp$0, pendingTasks: 0 }, fallback, -1, parentBoundary, props.fallbackState, fallbackAbortSet, [ key[0], "Suspense Fallback", key[2] ], getSuspenseFallbackFormatContext(request.resumableState, task.formatContext), task.context, task.treeContext, task.row, replaceSuspenseComponentStackWithSuspenseFallbackStack(task.componentStack)); pushComponentStack(childNodes); request.pingedTasks.push(childNodes); } } childIndex.splice(node, 1); break a; } } } else renderElement(request, task, key, type, props, ref); return; case REACT_PORTAL_TYPE: throw Error("Portals are not currently supported by the server renderer. Render them conditionally so that they only appear on the client render."); case REACT_LAZY_TYPE: childNodes = node._init; node = childNodes(node._payload); if (12 === request.status) throw null; renderNodeDestructive(request, task, node, childIndex); return; } if (isArrayImpl(node)) { renderChildrenArray(request, task, node, childIndex); return; } if (childNodes = getIteratorFn(node)) { if (childNodes = childNodes.call(node)) { node = childNodes.next(); if (!node.done) { props = []; do props.push(node.value), node = childNodes.next(); while (!node.done); renderChildrenArray(request, task, props, childIndex); } return; } } if ("function" === typeof node.then) return task.thenableState = null, renderNodeDestructive(request, task, unwrapThenable(node), childIndex); if (node.$$typeof === REACT_CONTEXT_TYPE) return renderNodeDestructive(request, task, node._currentValue, childIndex); childIndex = Object.prototype.toString.call(node); throw Error("Objects are not valid as a React child (found: " + ("[object Object]" === childIndex ? "object with keys {" + Object.keys(node).join(", ") + "}" : childIndex) + "). If you meant to render a collection of children, use an array instead."); } if ("string" === typeof node) childIndex = task.blockedSegment, null !== childIndex && (childIndex.lastPushedText = pushTextInstance(childIndex.chunks, node, request.renderState, childIndex.lastPushedText)); else if ("number" === typeof node || "bigint" === typeof node) childIndex = task.blockedSegment, null !== childIndex && (childIndex.lastPushedText = pushTextInstance(childIndex.chunks, "" + node, request.renderState, childIndex.lastPushedText)); } } function renderChildrenArray(request, task, children, childIndex) { var prevKeyPath = task.keyPath; if (-1 !== childIndex && (task.keyPath = [ task.keyPath, "Fragment", childIndex ], null !== task.replay)) { for (var replay = task.replay, replayNodes = replay.nodes, j = 0; j < replayNodes.length; j++) { var node = replayNodes[j]; if (node[1] === childIndex) { childIndex = node[2]; node = node[3]; task.replay = { nodes: childIndex, slots: node, pendingTasks: 1 }; try { renderChildrenArray(request, task, children, -1); if (1 === task.replay.pendingTasks && 0 < task.replay.nodes.length) throw Error("Couldn't find all resumable slots by key/index during replaying. The tree doesn't match so React will fallback to client rendering."); task.replay.pendingTasks--; } catch (x) { if ("object" === typeof x && null !== x && (x === SuspenseException || "function" === typeof x.then)) throw x; task.replay.pendingTasks--; children = getThrownInfo(task.componentStack); var boundary = task.blockedBoundary, error = x; children = logRecoverableError(request, error, children); abortRemainingReplayNodes(request, boundary, childIndex, node, error, children); } task.replay = replay; replayNodes.splice(j, 1); break; } } task.keyPath = prevKeyPath; return; } replay = task.treeContext; replayNodes = children.length; if (null !== task.replay && (j = task.replay.slots, null !== j && "object" === typeof j)) { for (childIndex = 0; childIndex < replayNodes; childIndex++) node = children[childIndex], task.treeContext = pushTreeContext(replay, replayNodes, childIndex), boundary = j[childIndex], "number" === typeof boundary ? (resumeNode(request, task, boundary, node, childIndex), delete j[childIndex]) : renderNode(request, task, node, childIndex); task.treeContext = replay; task.keyPath = prevKeyPath; return; } for (j = 0; j < replayNodes; j++) childIndex = children[j], task.treeContext = pushTreeContext(replay, replayNodes, j), renderNode(request, task, childIndex, j); task.treeContext = replay; task.keyPath = prevKeyPath; } function trackPostponedBoundary(request, trackedPostpones, boundary) { boundary.status = 5; boundary.rootSegmentID = request.nextSegmentId++; request = boundary.trackedContentKeyPath; if (null === request) throw Error("It should not be possible to postpone at the root. This is a bug in React."); var fallbackReplayNode = boundary.trackedFallbackNode, children = [], boundaryNode = trackedPostpones.workingMap.get(request); if (void 0 === boundaryNode) return boundary = [ request[1], request[2], children, null, fallbackReplayNode, boundary.rootSegmentID ], trackedPostpones.workingMap.set(request, boundary), addToReplayParent(boundary, request[0], trackedPostpones), boundary; boundaryNode[4] = fallbackReplayNode; boundaryNode[5] = boundary.rootSegmentID; return boundaryNode; } function trackPostpone(request, trackedPostpones, task, segment) { segment.status = 5; var keyPath = task.keyPath, boundary = task.blockedBoundary; if (null === boundary) segment.id = request.nextSegmentId++, trackedPostpones.rootSlots = segment.id, null !== request.completedRootSegment && (request.completedRootSegment.status = 5); else { if (null !== boundary && 0 === boundary.status) { var boundaryNode = trackPostponedBoundary(request, trackedPostpones, boundary); if (boundary.trackedContentKeyPath === keyPath && -1 === task.childIndex) { -1 === segment.id && (segment.id = segment.parentFlushed ? boundary.rootSegmentID : request.nextSegmentId++); boundaryNode[3] = segment.id; return; } } -1 === segment.id && (segment.id = segment.parentFlushed && null !== boundary ? boundary.rootSegmentID : request.nextSegmentId++); if (-1 === task.childIndex) null === keyPath ? trackedPostpones.rootSlots = segment.id : (task = trackedPostpones.workingMap.get(keyPath), void 0 === task ? (task = [ keyPath[1], keyPath[2], [], segment.id ], addToReplayParent(task, keyPath[0], trackedPostpones)) : task[3] = segment.id); else { if (null === keyPath) { if (request = trackedPostpones.rootSlots, null === request) request = trackedPostpones.rootSlots = {}; else if ("number" === typeof request) throw Error("It should not be possible to postpone both at the root of an element as well as a slot below. This is a bug in React."); } else if (boundary = trackedPostpones.workingMap, boundaryNode = boundary.get(keyPath), void 0 === boundaryNode) request = {}, boundaryNode = [ keyPath[1], keyPath[2], [], request ], boundary.set(keyPath, boundaryNode), addToReplayParent(boundaryNode, keyPath[0], trackedPostpones); else if (request = boundaryNode[3], null === request) request = boundaryNode[3] = {}; else if ("number" === typeof request) throw Error("It should not be possible to postpone both at the root of an element as well as a slot below. This is a bug in React."); request[task.childIndex] = segment.id; } } } function untrackBoundary(request, boundary) { request = request.trackedPostpones; null !== request && (boundary = boundary.trackedContentKeyPath, null !== boundary && (boundary = request.workingMap.get(boundary), void 0 !== boundary && (boundary.length = 4, boundary[2] = [], boundary[3] = null))); } function spawnNewSuspendedReplayTask(request, task, thenableState) { return createReplayTask(request, thenableState, task.replay, task.node, task.childIndex, task.blockedBoundary, task.hoistableState, task.abortSet, task.keyPath, task.formatContext, task.context, task.treeContext, task.row, task.componentStack); } function spawnNewSuspendedRenderTask(request, task, thenableState) { var segment = task.blockedSegment, newSegment = createPendingSegment(request, segment.chunks.length, null, task.formatContext, segment.lastPushedText, !0); segment.children.push(newSegment); segment.lastPushedText = !1; return createRenderTask(request, thenableState, task.node, task.childIndex, task.blockedBoundary, newSegment, task.blockedPreamble, task.hoistableState, task.abortSet, task.keyPath, task.formatContext, task.context, task.treeContext, task.row, task.componentStack); } function renderNode(request, task, node, childIndex) { var previousFormatContext = task.formatContext, previousContext = task.context, previousKeyPath = task.keyPath, previousTreeContext = task.treeContext, previousComponentStack = task.componentStack, segment = task.blockedSegment; if (null === segment) { segment = task.replay; try { return renderNodeDestructive(request, task, node, childIndex); } catch (thrownValue) { if (resetHooksState(), node = thrownValue === SuspenseException ? getSuspendedThenable() : thrownValue, 12 !== request.status && "object" === typeof node && null !== node) { if ("function" === typeof node.then) { childIndex = thrownValue === SuspenseException ? getThenableStateAfterSuspending() : null; request = spawnNewSuspendedReplayTask(request, task, childIndex).ping; node.then(request, request); task.formatContext = previousFormatContext; Preview truncated. File is larger than the inline limit.