regionclaw 0.0.22 → 0.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apps/ui/src/components/regionclaw-update-banner.tsx +23 -7
- package/dist/ui/BUILD_ID +1 -1
- package/dist/ui/build-manifest.json +2 -2
- package/dist/ui/server/app/(app)/dashboard/page_client-reference-manifest.js +1 -1
- package/dist/ui/server/app/_global-error/page_client-reference-manifest.js +1 -1
- package/dist/ui/server/app/_global-error.html +1 -1
- package/dist/ui/server/app/_global-error.rsc +1 -1
- package/dist/ui/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/dist/ui/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +1 -1
- package/dist/ui/server/app/_global-error.segments/_global-error.segment.rsc +1 -1
- package/dist/ui/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/dist/ui/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/dist/ui/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/dist/ui/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/dist/ui/server/app/_not-found.html +1 -1
- package/dist/ui/server/app/_not-found.rsc +1 -1
- package/dist/ui/server/app/_not-found.segments/_full.segment.rsc +1 -1
- package/dist/ui/server/app/_not-found.segments/_head.segment.rsc +1 -1
- package/dist/ui/server/app/_not-found.segments/_index.segment.rsc +1 -1
- package/dist/ui/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
- package/dist/ui/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
- package/dist/ui/server/app/_not-found.segments/_tree.segment.rsc +1 -1
- package/dist/ui/server/app/login/page_client-reference-manifest.js +1 -1
- package/dist/ui/server/app/page_client-reference-manifest.js +1 -1
- package/dist/ui/server/app/setup/page_client-reference-manifest.js +1 -1
- package/dist/ui/server/middleware-build-manifest.js +1 -1
- package/dist/ui/server/pages/404.html +1 -1
- package/dist/ui/server/pages/500.html +1 -1
- package/dist/ui/static/chunks/app/(app)/{layout-97b7aad9af7774cd.js → layout-088ae6ec74355b28.js} +1 -1
- package/package.json +1 -1
- /package/dist/ui/static/{r80_NXYyKFRH6oKYlLnsi → GRN-cAGKActpUyvq3rCSD}/_buildManifest.js +0 -0
- /package/dist/ui/static/{r80_NXYyKFRH6oKYlLnsi → GRN-cAGKActpUyvq3rCSD}/_ssgManifest.js +0 -0
|
@@ -38,17 +38,30 @@ export function RegionClawUpdateBanner() {
|
|
|
38
38
|
let cancelled = false;
|
|
39
39
|
let timeoutId: ReturnType<typeof setTimeout> | null = null;
|
|
40
40
|
|
|
41
|
+
function clearScheduledCheck() {
|
|
42
|
+
if (timeoutId) {
|
|
43
|
+
clearTimeout(timeoutId);
|
|
44
|
+
timeoutId = null;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function scheduleCheck(delayMs: number) {
|
|
49
|
+
clearScheduledCheck();
|
|
50
|
+
timeoutId = setTimeout(() => {
|
|
51
|
+
void loadStatus();
|
|
52
|
+
}, delayMs);
|
|
53
|
+
}
|
|
54
|
+
|
|
41
55
|
function scheduleNextHourlyCheck() {
|
|
42
56
|
const now = new Date();
|
|
43
57
|
const next = new Date(now);
|
|
44
58
|
next.setMinutes(0, 0, 0);
|
|
45
59
|
next.setHours(next.getHours() + 1);
|
|
46
|
-
|
|
47
|
-
void loadStatus();
|
|
48
|
-
}, Math.max(1_000, next.getTime() - now.getTime()));
|
|
60
|
+
scheduleCheck(Math.max(1_000, next.getTime() - now.getTime()));
|
|
49
61
|
}
|
|
50
62
|
|
|
51
63
|
async function loadStatus() {
|
|
64
|
+
let loaded = false;
|
|
52
65
|
try {
|
|
53
66
|
const response = await fetchWithTimeout("/api/update/status", {
|
|
54
67
|
timeoutMs: 3_000,
|
|
@@ -59,6 +72,7 @@ export function RegionClawUpdateBanner() {
|
|
|
59
72
|
},
|
|
60
73
|
});
|
|
61
74
|
const payload = (await response.json()) as UpdateStatus;
|
|
75
|
+
loaded = response.ok && payload.ok;
|
|
62
76
|
if (!cancelled) {
|
|
63
77
|
setStatus(payload.ok ? payload : null);
|
|
64
78
|
}
|
|
@@ -69,7 +83,11 @@ export function RegionClawUpdateBanner() {
|
|
|
69
83
|
} finally {
|
|
70
84
|
if (!cancelled) {
|
|
71
85
|
setLoading(false);
|
|
72
|
-
|
|
86
|
+
if (loaded) {
|
|
87
|
+
scheduleNextHourlyCheck();
|
|
88
|
+
} else {
|
|
89
|
+
scheduleCheck(5_000);
|
|
90
|
+
}
|
|
73
91
|
}
|
|
74
92
|
}
|
|
75
93
|
}
|
|
@@ -77,9 +95,7 @@ export function RegionClawUpdateBanner() {
|
|
|
77
95
|
void loadStatus();
|
|
78
96
|
return () => {
|
|
79
97
|
cancelled = true;
|
|
80
|
-
|
|
81
|
-
clearTimeout(timeoutId);
|
|
82
|
-
}
|
|
98
|
+
clearScheduledCheck();
|
|
83
99
|
};
|
|
84
100
|
}, []);
|
|
85
101
|
|
package/dist/ui/BUILD_ID
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
GRN-cAGKActpUyvq3rCSD
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
],
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"lowPriorityFiles": [
|
|
7
|
-
"static/
|
|
8
|
-
"static/
|
|
7
|
+
"static/GRN-cAGKActpUyvq3rCSD/_buildManifest.js",
|
|
8
|
+
"static/GRN-cAGKActpUyvq3rCSD/_ssgManifest.js"
|
|
9
9
|
],
|
|
10
10
|
"rootMainFiles": [
|
|
11
11
|
"static/chunks/webpack-aeb6fe2403cfa38a.js",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/(app)/dashboard/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"49":{"*":{"id":"20999","name":"*","chunks":[],"async":false}},"1166":{"*":{"id":"54734","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"74600","name":"*","chunks":[],"async":false}},"1827":{"*":{"id":"34184","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"98119","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"27451","name":"*","chunks":[],"async":false}},"3222":{"*":{"id":"59364","name":"*","chunks":[],"async":false}},"4252":{"*":{"id":"83119","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"67162","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"92090","name":"*","chunks":[],"async":false}},"7434":{"*":{"id":"64494","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"50703","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"35306","name":"*","chunks":[],"async":false}},"9362":{"*":{"id":"19376","name":"*","chunks":[],"async":false}},"9524":{"*":{"id":"59782","name":"*","chunks":[],"async":false}},"9815":{"*":{"id":"66306","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js":{"id":1702,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":1702,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/client-page.js":{"id":3167,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":3167,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/client-segment.js":{"id":2621,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":2621,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":8214,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":8214,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/layout-router.js":{"id":1166,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":1166,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/render-from-template-context.js":{"id":6660,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":6660,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/framework/boundary-components.js":{"id":8007,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":8007,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":5766,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":5766,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/app/globals.css":{"id":1119,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/providers.tsx":{"id":1827,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/sonner.tsx":{"id":3222,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/tooltip.tsx":{"id":7434,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}":{"id":4019,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}":{"id":1833,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/auth/login-form.tsx":{"id":9815,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/components/auth/first-run-setup-form.tsx":{"id":9524,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/components/app-sidebar.tsx":{"id":49,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-97b7aad9af7774cd.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/regionclaw-update-banner.tsx":{"id":9362,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-97b7aad9af7774cd.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/sidebar.tsx":{"id":4252,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-97b7aad9af7774cd.js"],"async":false}},"entryCSSFiles":{"/Users/region/regionclaw/apps/ui/src/":[],"/Users/region/regionclaw/apps/ui/src/app/layout":[{"inlined":false,"path":"static/css/4b9d32bbbe585d2a.css"},{"inlined":false,"path":"static/css/de70bee13400563f.css"}],"/Users/region/regionclaw/apps/ui/src/app/page":[],"/Users/region/regionclaw/apps/ui/src/app/(app)/layout":[],"/Users/region/regionclaw/apps/ui/src/app/(app)/dashboard/page":[]},"rscModuleMapping":{"49":{"*":{"id":"99394","name":"*","chunks":[],"async":false}},"1119":{"*":{"id":"87652","name":"*","chunks":[],"async":false}},"1166":{"*":{"id":"28612","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"13770","name":"*","chunks":[],"async":false}},"1827":{"*":{"id":"89642","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"37013","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"97173","name":"*","chunks":[],"async":false}},"3222":{"*":{"id":"30166","name":"*","chunks":[],"async":false}},"4252":{"*":{"id":"32349","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"21456","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"51696","name":"*","chunks":[],"async":false}},"7434":{"*":{"id":"61752","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"89369","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"88860","name":"*","chunks":[],"async":false}},"9362":{"*":{"id":"96362","name":"*","chunks":[],"async":false}},"9524":{"*":{"id":"1904","name":"*","chunks":[],"async":false}},"9815":{"*":{"id":"28027","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"1166":{"*":{"id":"54734","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"74600","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"98119","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"27451","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"67162","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"92090","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"50703","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"35306","name":"*","chunks":[],"async":false}}}};
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/(app)/dashboard/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"49":{"*":{"id":"20999","name":"*","chunks":[],"async":false}},"1166":{"*":{"id":"54734","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"74600","name":"*","chunks":[],"async":false}},"1827":{"*":{"id":"34184","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"98119","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"27451","name":"*","chunks":[],"async":false}},"3222":{"*":{"id":"59364","name":"*","chunks":[],"async":false}},"4252":{"*":{"id":"83119","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"67162","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"92090","name":"*","chunks":[],"async":false}},"7434":{"*":{"id":"64494","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"50703","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"35306","name":"*","chunks":[],"async":false}},"9362":{"*":{"id":"19376","name":"*","chunks":[],"async":false}},"9524":{"*":{"id":"59782","name":"*","chunks":[],"async":false}},"9815":{"*":{"id":"66306","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js":{"id":1702,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":1702,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/client-page.js":{"id":3167,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":3167,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/client-segment.js":{"id":2621,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":2621,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":8214,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":8214,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/layout-router.js":{"id":1166,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":1166,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/render-from-template-context.js":{"id":6660,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":6660,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/framework/boundary-components.js":{"id":8007,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":8007,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":5766,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":5766,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/app/globals.css":{"id":1119,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/providers.tsx":{"id":1827,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/sonner.tsx":{"id":3222,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/tooltip.tsx":{"id":7434,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}":{"id":4019,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}":{"id":1833,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/auth/login-form.tsx":{"id":9815,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/components/auth/first-run-setup-form.tsx":{"id":9524,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/components/app-sidebar.tsx":{"id":49,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-088ae6ec74355b28.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/regionclaw-update-banner.tsx":{"id":9362,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-088ae6ec74355b28.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/sidebar.tsx":{"id":4252,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-088ae6ec74355b28.js"],"async":false}},"entryCSSFiles":{"/Users/region/regionclaw/apps/ui/src/":[],"/Users/region/regionclaw/apps/ui/src/app/layout":[{"inlined":false,"path":"static/css/4b9d32bbbe585d2a.css"},{"inlined":false,"path":"static/css/de70bee13400563f.css"}],"/Users/region/regionclaw/apps/ui/src/app/page":[],"/Users/region/regionclaw/apps/ui/src/app/(app)/layout":[],"/Users/region/regionclaw/apps/ui/src/app/(app)/dashboard/page":[]},"rscModuleMapping":{"49":{"*":{"id":"99394","name":"*","chunks":[],"async":false}},"1119":{"*":{"id":"87652","name":"*","chunks":[],"async":false}},"1166":{"*":{"id":"28612","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"13770","name":"*","chunks":[],"async":false}},"1827":{"*":{"id":"89642","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"37013","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"97173","name":"*","chunks":[],"async":false}},"3222":{"*":{"id":"30166","name":"*","chunks":[],"async":false}},"4252":{"*":{"id":"32349","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"21456","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"51696","name":"*","chunks":[],"async":false}},"7434":{"*":{"id":"61752","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"89369","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"88860","name":"*","chunks":[],"async":false}},"9362":{"*":{"id":"96362","name":"*","chunks":[],"async":false}},"9524":{"*":{"id":"1904","name":"*","chunks":[],"async":false}},"9815":{"*":{"id":"28027","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"1166":{"*":{"id":"54734","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"74600","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"98119","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"27451","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"67162","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"92090","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"50703","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"35306","name":"*","chunks":[],"async":false}}}};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_global-error/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"49":{"*":{"id":"20999","name":"*","chunks":[],"async":false}},"1166":{"*":{"id":"54734","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"74600","name":"*","chunks":[],"async":false}},"1827":{"*":{"id":"34184","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"98119","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"27451","name":"*","chunks":[],"async":false}},"3222":{"*":{"id":"59364","name":"*","chunks":[],"async":false}},"4252":{"*":{"id":"83119","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"67162","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"92090","name":"*","chunks":[],"async":false}},"7434":{"*":{"id":"64494","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"50703","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"35306","name":"*","chunks":[],"async":false}},"9362":{"*":{"id":"19376","name":"*","chunks":[],"async":false}},"9524":{"*":{"id":"59782","name":"*","chunks":[],"async":false}},"9815":{"*":{"id":"66306","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js":{"id":1702,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":1702,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/client-page.js":{"id":3167,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":3167,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/client-segment.js":{"id":2621,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":2621,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":8214,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":8214,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/layout-router.js":{"id":1166,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":1166,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/render-from-template-context.js":{"id":6660,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":6660,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/framework/boundary-components.js":{"id":8007,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":8007,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":5766,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":5766,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/app/globals.css":{"id":1119,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/providers.tsx":{"id":1827,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/sonner.tsx":{"id":3222,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/tooltip.tsx":{"id":7434,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}":{"id":4019,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}":{"id":1833,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/auth/login-form.tsx":{"id":9815,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/components/auth/first-run-setup-form.tsx":{"id":9524,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/components/app-sidebar.tsx":{"id":49,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-97b7aad9af7774cd.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/regionclaw-update-banner.tsx":{"id":9362,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-97b7aad9af7774cd.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/sidebar.tsx":{"id":4252,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-97b7aad9af7774cd.js"],"async":false}},"entryCSSFiles":{"/Users/region/regionclaw/apps/ui/src/":[],"/Users/region/regionclaw/apps/ui/src/app/layout":[{"inlined":false,"path":"static/css/4b9d32bbbe585d2a.css"},{"inlined":false,"path":"static/css/de70bee13400563f.css"}],"/Users/region/regionclaw/apps/ui/src/app/page":[],"/Users/region/regionclaw/apps/ui/src/app/(app)/layout":[],"/Users/region/regionclaw/apps/ui/src/app/_global-error/page":[]},"rscModuleMapping":{"49":{"*":{"id":"99394","name":"*","chunks":[],"async":false}},"1119":{"*":{"id":"87652","name":"*","chunks":[],"async":false}},"1166":{"*":{"id":"28612","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"13770","name":"*","chunks":[],"async":false}},"1827":{"*":{"id":"89642","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"37013","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"97173","name":"*","chunks":[],"async":false}},"3222":{"*":{"id":"30166","name":"*","chunks":[],"async":false}},"4252":{"*":{"id":"32349","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"21456","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"51696","name":"*","chunks":[],"async":false}},"7434":{"*":{"id":"61752","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"89369","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"88860","name":"*","chunks":[],"async":false}},"9362":{"*":{"id":"96362","name":"*","chunks":[],"async":false}},"9524":{"*":{"id":"1904","name":"*","chunks":[],"async":false}},"9815":{"*":{"id":"28027","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"1166":{"*":{"id":"54734","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"74600","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"98119","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"27451","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"67162","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"92090","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"50703","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"35306","name":"*","chunks":[],"async":false}}}};
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_global-error/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"49":{"*":{"id":"20999","name":"*","chunks":[],"async":false}},"1166":{"*":{"id":"54734","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"74600","name":"*","chunks":[],"async":false}},"1827":{"*":{"id":"34184","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"98119","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"27451","name":"*","chunks":[],"async":false}},"3222":{"*":{"id":"59364","name":"*","chunks":[],"async":false}},"4252":{"*":{"id":"83119","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"67162","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"92090","name":"*","chunks":[],"async":false}},"7434":{"*":{"id":"64494","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"50703","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"35306","name":"*","chunks":[],"async":false}},"9362":{"*":{"id":"19376","name":"*","chunks":[],"async":false}},"9524":{"*":{"id":"59782","name":"*","chunks":[],"async":false}},"9815":{"*":{"id":"66306","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js":{"id":1702,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":1702,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/client-page.js":{"id":3167,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":3167,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/client-segment.js":{"id":2621,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":2621,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":8214,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":8214,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/layout-router.js":{"id":1166,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":1166,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/render-from-template-context.js":{"id":6660,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":6660,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/framework/boundary-components.js":{"id":8007,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":8007,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":5766,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":5766,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/app/globals.css":{"id":1119,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/providers.tsx":{"id":1827,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/sonner.tsx":{"id":3222,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/tooltip.tsx":{"id":7434,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}":{"id":4019,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}":{"id":1833,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/auth/login-form.tsx":{"id":9815,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/components/auth/first-run-setup-form.tsx":{"id":9524,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/components/app-sidebar.tsx":{"id":49,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-088ae6ec74355b28.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/regionclaw-update-banner.tsx":{"id":9362,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-088ae6ec74355b28.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/sidebar.tsx":{"id":4252,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-088ae6ec74355b28.js"],"async":false}},"entryCSSFiles":{"/Users/region/regionclaw/apps/ui/src/":[],"/Users/region/regionclaw/apps/ui/src/app/layout":[{"inlined":false,"path":"static/css/4b9d32bbbe585d2a.css"},{"inlined":false,"path":"static/css/de70bee13400563f.css"}],"/Users/region/regionclaw/apps/ui/src/app/page":[],"/Users/region/regionclaw/apps/ui/src/app/(app)/layout":[],"/Users/region/regionclaw/apps/ui/src/app/_global-error/page":[]},"rscModuleMapping":{"49":{"*":{"id":"99394","name":"*","chunks":[],"async":false}},"1119":{"*":{"id":"87652","name":"*","chunks":[],"async":false}},"1166":{"*":{"id":"28612","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"13770","name":"*","chunks":[],"async":false}},"1827":{"*":{"id":"89642","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"37013","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"97173","name":"*","chunks":[],"async":false}},"3222":{"*":{"id":"30166","name":"*","chunks":[],"async":false}},"4252":{"*":{"id":"32349","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"21456","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"51696","name":"*","chunks":[],"async":false}},"7434":{"*":{"id":"61752","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"89369","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"88860","name":"*","chunks":[],"async":false}},"9362":{"*":{"id":"96362","name":"*","chunks":[],"async":false}},"9524":{"*":{"id":"1904","name":"*","chunks":[],"async":false}},"9815":{"*":{"id":"28027","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"1166":{"*":{"id":"54734","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"74600","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"98119","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"27451","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"67162","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"92090","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"50703","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"35306","name":"*","chunks":[],"async":false}}}};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-aeb6fe2403cfa38a.js"/><script src="/_next/static/chunks/628c8b96-cdfc45e32fce7014.js" async=""></script><script src="/_next/static/chunks/16-7d9bc77e936a4cb6.js" async=""></script><script src="/_next/static/chunks/main-app-e0f42b94daafe3ad.js" async=""></script><meta name="next-size-adjust" content=""/><title>500: This page couldn’t load</title><style>:root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }</style><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;display:flex;align-items:center;justify-content:center"><div style="margin-top:-32px;max-width:325px;padding:32px 28px;text-align:left"><svg width="32" height="32" viewBox="-0.2 -1.5 32 32" fill="none" style="margin-bottom:24px"><path d="M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z" fill="var(--next-error-title)"></path></svg><h1 style="font-size:24px;font-weight:500;letter-spacing:-0.02em;line-height:32px;margin:0 0 12px 0;color:var(--next-error-title)">This page couldn’t load</h1><p style="font-size:14px;font-weight:400;line-height:21px;margin:0 0 20px 0;color:var(--next-error-message)">A server error occurred. Reload to try again.</p><form style="margin:0"><button type="submit" style="display:inline-flex;align-items:center;justify-content:center;height:32px;padding:0 12px;font-size:14px;font-weight:500;line-height:20px;border-radius:6px;cursor:pointer;color:var(--next-error-btn-text);background:var(--next-error-btn-bg);border:var(--next-error-btn-border)">Reload</button></form></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-aeb6fe2403cfa38a.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[1166,[],\"\"]\n3:I[6660,[],\"\"]\n4:I[8007,[],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n8:I[8007,[],\"ViewportBoundary\"]\na:I[8007,[],\"MetadataBoundary\"]\nc:I[1702,[],\"default\",1]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"_global-error\",{\"children\":[\"__PAGE__\",{}]}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"title\",null,{\"children\":\"500: This page couldn’t load\"}],[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }\"}}]]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"display\":\"flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"style\":{\"marginTop\":\"-32px\",\"maxWidth\":\"325px\",\"padding\":\"32px 28px\",\"textAlign\":\"left\"},\"children\":[[\"$\",\"svg\",null,{\"width\":\"32\",\"height\":\"32\",\"viewBox\":\"-0.2 -1.5 32 32\",\"fill\":\"none\",\"style\":{\"marginBottom\":\"24px\"},\"children\":[\"$\",\"path\",null,{\"d\":\"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z\",\"fill\":\"var(--next-error-title)\"}]}],[\"$\",\"h1\",null,{\"style\":{\"fontSize\":\"24px\",\"fontWeight\":500,\"letterSpacing\":\"-0.02em\",\"lineHeight\":\"32px\",\"margin\":\"0 0 12px 0\",\"color\":\"var(--next-error-title)\"},\"children\":\"This page couldn’t load\"}],[\"$\",\"p\",null,{\"style\":{\"fontSize\":\"14px\",\"fontWeight\":400,\"lineHeight\":\"21px\",\"margin\":\"0 0 20px 0\",\"color\":\"var(--next-error-message)\"},\"children\":\"A server error occurred. Reload to try again.\"}],[\"$\",\"form\",null,{\"style\":{\"margin\":0},\"children\":[\"$\",\"button\",null,{\"type\":\"submit\",\"style\":{\"display\":\"inline-flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\",\"height\":\"32px\",\"padding\":\"0 12px\",\"fontSize\":\"14px\",\"fontWeight\":500,\"lineHeight\":\"20px\",\"borderRadius\":\"6px\",\"cursor\":\"pointer\",\"color\":\"var(--next-error-btn-text)\",\"background\":\"var(--next-error-btn-bg)\",\"border\":\"var(--next-error-btn-border)\"},\"children\":\"Reload\"}]}]]}]}]}]]}],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,null]},null,false,\"$@7\"]},null,false,\"$@7\"],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"
|
|
1
|
+
<!DOCTYPE html><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-aeb6fe2403cfa38a.js"/><script src="/_next/static/chunks/628c8b96-cdfc45e32fce7014.js" async=""></script><script src="/_next/static/chunks/16-7d9bc77e936a4cb6.js" async=""></script><script src="/_next/static/chunks/main-app-e0f42b94daafe3ad.js" async=""></script><meta name="next-size-adjust" content=""/><title>500: This page couldn’t load</title><style>:root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }</style><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;display:flex;align-items:center;justify-content:center"><div style="margin-top:-32px;max-width:325px;padding:32px 28px;text-align:left"><svg width="32" height="32" viewBox="-0.2 -1.5 32 32" fill="none" style="margin-bottom:24px"><path d="M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z" fill="var(--next-error-title)"></path></svg><h1 style="font-size:24px;font-weight:500;letter-spacing:-0.02em;line-height:32px;margin:0 0 12px 0;color:var(--next-error-title)">This page couldn’t load</h1><p style="font-size:14px;font-weight:400;line-height:21px;margin:0 0 20px 0;color:var(--next-error-message)">A server error occurred. Reload to try again.</p><form style="margin:0"><button type="submit" style="display:inline-flex;align-items:center;justify-content:center;height:32px;padding:0 12px;font-size:14px;font-weight:500;line-height:20px;border-radius:6px;cursor:pointer;color:var(--next-error-btn-text);background:var(--next-error-btn-bg);border:var(--next-error-btn-border)">Reload</button></form></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-aeb6fe2403cfa38a.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[1166,[],\"\"]\n3:I[6660,[],\"\"]\n4:I[8007,[],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n8:I[8007,[],\"ViewportBoundary\"]\na:I[8007,[],\"MetadataBoundary\"]\nc:I[1702,[],\"default\",1]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"_global-error\",{\"children\":[\"__PAGE__\",{}]}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"title\",null,{\"children\":\"500: This page couldn’t load\"}],[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }\"}}]]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"display\":\"flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"style\":{\"marginTop\":\"-32px\",\"maxWidth\":\"325px\",\"padding\":\"32px 28px\",\"textAlign\":\"left\"},\"children\":[[\"$\",\"svg\",null,{\"width\":\"32\",\"height\":\"32\",\"viewBox\":\"-0.2 -1.5 32 32\",\"fill\":\"none\",\"style\":{\"marginBottom\":\"24px\"},\"children\":[\"$\",\"path\",null,{\"d\":\"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z\",\"fill\":\"var(--next-error-title)\"}]}],[\"$\",\"h1\",null,{\"style\":{\"fontSize\":\"24px\",\"fontWeight\":500,\"letterSpacing\":\"-0.02em\",\"lineHeight\":\"32px\",\"margin\":\"0 0 12px 0\",\"color\":\"var(--next-error-title)\"},\"children\":\"This page couldn’t load\"}],[\"$\",\"p\",null,{\"style\":{\"fontSize\":\"14px\",\"fontWeight\":400,\"lineHeight\":\"21px\",\"margin\":\"0 0 20px 0\",\"color\":\"var(--next-error-message)\"},\"children\":\"A server error occurred. Reload to try again.\"}],[\"$\",\"form\",null,{\"style\":{\"margin\":0},\"children\":[\"$\",\"button\",null,{\"type\":\"submit\",\"style\":{\"display\":\"inline-flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\",\"height\":\"32px\",\"padding\":\"0 12px\",\"fontSize\":\"14px\",\"fontWeight\":500,\"lineHeight\":\"20px\",\"borderRadius\":\"6px\",\"cursor\":\"pointer\",\"color\":\"var(--next-error-btn-text)\",\"background\":\"var(--next-error-btn-bg)\",\"border\":\"var(--next-error-btn-border)\"},\"children\":\"Reload\"}]}]]}]}]}]]}],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,null]},null,false,\"$@7\"]},null,false,\"$@7\"],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"GRN-cAGKActpUyvq3rCSD\"}\n"])</script><script>self.__next_f.push([1,"d:[]\n7:\"$Wd\"\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"6:null\nb:[]\n"])</script></body></html>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
8:I[8007,[],"ViewportBoundary"]
|
|
7
7
|
a:I[8007,[],"MetadataBoundary"]
|
|
8
8
|
c:I[1702,[],"default",1]
|
|
9
|
-
0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["_global-error",{"children":["__PAGE__",{}]}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"
|
|
9
|
+
0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["_global-error",{"children":["__PAGE__",{}]}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"GRN-cAGKActpUyvq3rCSD"}
|
|
10
10
|
d:[]
|
|
11
11
|
7:"$Wd"
|
|
12
12
|
9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
8:I[8007,[],"ViewportBoundary"]
|
|
7
7
|
a:I[8007,[],"MetadataBoundary"]
|
|
8
8
|
c:I[1702,[],"default",1]
|
|
9
|
-
0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["_global-error",{"children":["__PAGE__",{}]}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"
|
|
9
|
+
0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["_global-error",{"children":["__PAGE__",{}]}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"GRN-cAGKActpUyvq3rCSD"}
|
|
10
10
|
d:[]
|
|
11
11
|
7:"$Wd"
|
|
12
12
|
9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
2
|
2:I[8007,[],"OutletBoundary"]
|
|
3
3
|
3:"$Sreact.suspense"
|
|
4
|
-
0:{"rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"
|
|
4
|
+
0:{"rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"GRN-cAGKActpUyvq3rCSD"}
|
|
5
5
|
4:null
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
2:I[1166,[],""]
|
|
3
3
|
3:I[6660,[],""]
|
|
4
4
|
4:[]
|
|
5
|
-
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"
|
|
5
|
+
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"GRN-cAGKActpUyvq3rCSD"}
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
2:I[8007,[],"ViewportBoundary"]
|
|
3
3
|
3:I[8007,[],"MetadataBoundary"]
|
|
4
4
|
4:"$Sreact.suspense"
|
|
5
|
-
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"
|
|
5
|
+
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"GRN-cAGKActpUyvq3rCSD"}
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
2:I[1166,[],""]
|
|
3
3
|
3:I[6660,[],""]
|
|
4
4
|
4:[]
|
|
5
|
-
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"
|
|
5
|
+
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"GRN-cAGKActpUyvq3rCSD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0:{"tree":{"name":"","param":null,"prefetchHints":0,"slots":{"children":{"name":"_global-error","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"
|
|
1
|
+
0:{"tree":{"name":"","param":null,"prefetchHints":0,"slots":{"children":{"name":"_global-error","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"GRN-cAGKActpUyvq3rCSD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"49":{"*":{"id":"20999","name":"*","chunks":[],"async":false}},"1166":{"*":{"id":"54734","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"74600","name":"*","chunks":[],"async":false}},"1827":{"*":{"id":"34184","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"98119","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"27451","name":"*","chunks":[],"async":false}},"3222":{"*":{"id":"59364","name":"*","chunks":[],"async":false}},"4252":{"*":{"id":"83119","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"67162","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"92090","name":"*","chunks":[],"async":false}},"7434":{"*":{"id":"64494","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"50703","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"35306","name":"*","chunks":[],"async":false}},"9362":{"*":{"id":"19376","name":"*","chunks":[],"async":false}},"9524":{"*":{"id":"59782","name":"*","chunks":[],"async":false}},"9815":{"*":{"id":"66306","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js":{"id":1702,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":1702,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/client-page.js":{"id":3167,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":3167,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/client-segment.js":{"id":2621,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":2621,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":8214,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":8214,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/layout-router.js":{"id":1166,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":1166,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/render-from-template-context.js":{"id":6660,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":6660,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/framework/boundary-components.js":{"id":8007,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":8007,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":5766,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":5766,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/app/globals.css":{"id":1119,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/providers.tsx":{"id":1827,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/sonner.tsx":{"id":3222,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/tooltip.tsx":{"id":7434,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}":{"id":4019,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}":{"id":1833,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/auth/login-form.tsx":{"id":9815,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/components/auth/first-run-setup-form.tsx":{"id":9524,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/components/app-sidebar.tsx":{"id":49,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-97b7aad9af7774cd.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/regionclaw-update-banner.tsx":{"id":9362,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-97b7aad9af7774cd.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/sidebar.tsx":{"id":4252,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-97b7aad9af7774cd.js"],"async":false}},"entryCSSFiles":{"/Users/region/regionclaw/apps/ui/src/":[],"/Users/region/regionclaw/apps/ui/src/app/layout":[{"inlined":false,"path":"static/css/4b9d32bbbe585d2a.css"},{"inlined":false,"path":"static/css/de70bee13400563f.css"}],"/Users/region/regionclaw/apps/ui/src/app/page":[],"/Users/region/regionclaw/apps/ui/src/app/(app)/layout":[],"/Users/region/regionclaw/apps/ui/src/app/_not-found/page":[]},"rscModuleMapping":{"49":{"*":{"id":"99394","name":"*","chunks":[],"async":false}},"1119":{"*":{"id":"87652","name":"*","chunks":[],"async":false}},"1166":{"*":{"id":"28612","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"13770","name":"*","chunks":[],"async":false}},"1827":{"*":{"id":"89642","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"37013","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"97173","name":"*","chunks":[],"async":false}},"3222":{"*":{"id":"30166","name":"*","chunks":[],"async":false}},"4252":{"*":{"id":"32349","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"21456","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"51696","name":"*","chunks":[],"async":false}},"7434":{"*":{"id":"61752","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"89369","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"88860","name":"*","chunks":[],"async":false}},"9362":{"*":{"id":"96362","name":"*","chunks":[],"async":false}},"9524":{"*":{"id":"1904","name":"*","chunks":[],"async":false}},"9815":{"*":{"id":"28027","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"1166":{"*":{"id":"54734","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"74600","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"98119","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"27451","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"67162","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"92090","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"50703","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"35306","name":"*","chunks":[],"async":false}}}};
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"49":{"*":{"id":"20999","name":"*","chunks":[],"async":false}},"1166":{"*":{"id":"54734","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"74600","name":"*","chunks":[],"async":false}},"1827":{"*":{"id":"34184","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"98119","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"27451","name":"*","chunks":[],"async":false}},"3222":{"*":{"id":"59364","name":"*","chunks":[],"async":false}},"4252":{"*":{"id":"83119","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"67162","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"92090","name":"*","chunks":[],"async":false}},"7434":{"*":{"id":"64494","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"50703","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"35306","name":"*","chunks":[],"async":false}},"9362":{"*":{"id":"19376","name":"*","chunks":[],"async":false}},"9524":{"*":{"id":"59782","name":"*","chunks":[],"async":false}},"9815":{"*":{"id":"66306","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js":{"id":1702,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":1702,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/client-page.js":{"id":3167,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":3167,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/client-segment.js":{"id":2621,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":2621,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":8214,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":8214,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/layout-router.js":{"id":1166,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":1166,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/render-from-template-context.js":{"id":6660,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":6660,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/framework/boundary-components.js":{"id":8007,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":8007,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":5766,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":5766,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/app/globals.css":{"id":1119,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/providers.tsx":{"id":1827,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/sonner.tsx":{"id":3222,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/tooltip.tsx":{"id":7434,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}":{"id":4019,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}":{"id":1833,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","557","static/chunks/557-16373a4e3e7fff4a.js","609","static/chunks/609-413da697ed2385f4.js","177","static/chunks/app/layout-3d1ba533ac2879b9.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/auth/login-form.tsx":{"id":9815,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/components/auth/first-run-setup-form.tsx":{"id":9524,"name":"*","chunks":[],"async":false},"/Users/region/regionclaw/apps/ui/src/components/app-sidebar.tsx":{"id":49,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-088ae6ec74355b28.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/regionclaw-update-banner.tsx":{"id":9362,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-088ae6ec74355b28.js"],"async":false},"/Users/region/regionclaw/apps/ui/src/components/ui/sidebar.tsx":{"id":4252,"name":"*","chunks":["473","static/chunks/473-41dc1131ba74f205.js","107","static/chunks/107-615e83cfaf4d770c.js","557","static/chunks/557-16373a4e3e7fff4a.js","835","static/chunks/835-8d09234672e1cdbd.js","944","static/chunks/app/(app)/layout-088ae6ec74355b28.js"],"async":false}},"entryCSSFiles":{"/Users/region/regionclaw/apps/ui/src/":[],"/Users/region/regionclaw/apps/ui/src/app/layout":[{"inlined":false,"path":"static/css/4b9d32bbbe585d2a.css"},{"inlined":false,"path":"static/css/de70bee13400563f.css"}],"/Users/region/regionclaw/apps/ui/src/app/page":[],"/Users/region/regionclaw/apps/ui/src/app/(app)/layout":[],"/Users/region/regionclaw/apps/ui/src/app/_not-found/page":[]},"rscModuleMapping":{"49":{"*":{"id":"99394","name":"*","chunks":[],"async":false}},"1119":{"*":{"id":"87652","name":"*","chunks":[],"async":false}},"1166":{"*":{"id":"28612","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"13770","name":"*","chunks":[],"async":false}},"1827":{"*":{"id":"89642","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"37013","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"97173","name":"*","chunks":[],"async":false}},"3222":{"*":{"id":"30166","name":"*","chunks":[],"async":false}},"4252":{"*":{"id":"32349","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"21456","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"51696","name":"*","chunks":[],"async":false}},"7434":{"*":{"id":"61752","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"89369","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"88860","name":"*","chunks":[],"async":false}},"9362":{"*":{"id":"96362","name":"*","chunks":[],"async":false}},"9524":{"*":{"id":"1904","name":"*","chunks":[],"async":false}},"9815":{"*":{"id":"28027","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"1166":{"*":{"id":"54734","name":"*","chunks":[],"async":false}},"1702":{"*":{"id":"74600","name":"*","chunks":[],"async":false}},"2621":{"*":{"id":"98119","name":"*","chunks":[],"async":false}},"3167":{"*":{"id":"27451","name":"*","chunks":[],"async":false}},"5766":{"*":{"id":"67162","name":"*","chunks":[],"async":false}},"6660":{"*":{"id":"92090","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"50703","name":"*","chunks":[],"async":false}},"8214":{"*":{"id":"35306","name":"*","chunks":[],"async":false}}}};
|