synapse-orch-ai 1.1.8 → 1.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/backend/core/agent_logger.py +17 -0
  2. package/backend/core/compaction.py +37 -10
  3. package/backend/core/orchestration/logger.py +17 -0
  4. package/backend/core/react_engine.py +10 -5
  5. package/backend/core/usage_tracker.py +2 -0
  6. package/backend/core/vault.py +5 -1
  7. package/backend/tools/code_search.py +12 -1
  8. package/frontend-build/.next/BUILD_ID +1 -1
  9. package/frontend-build/.next/build-manifest.json +3 -3
  10. package/frontend-build/.next/prerender-manifest.json +3 -3
  11. package/frontend-build/.next/server/app/_global-error.html +1 -1
  12. package/frontend-build/.next/server/app/_global-error.rsc +1 -1
  13. package/frontend-build/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  14. package/frontend-build/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  15. package/frontend-build/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  16. package/frontend-build/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  17. package/frontend-build/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  18. package/frontend-build/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  19. package/frontend-build/.next/server/app/_not-found.html +1 -1
  20. package/frontend-build/.next/server/app/_not-found.rsc +2 -2
  21. package/frontend-build/.next/server/app/_not-found.segments/_full.segment.rsc +2 -2
  22. package/frontend-build/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
  23. package/frontend-build/.next/server/app/_not-found.segments/_index.segment.rsc +2 -2
  24. package/frontend-build/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
  25. package/frontend-build/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
  26. package/frontend-build/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -2
  27. package/frontend-build/.next/server/app/index.html +1 -1
  28. package/frontend-build/.next/server/app/index.rsc +2 -2
  29. package/frontend-build/.next/server/app/index.segments/__PAGE__.segment.rsc +1 -1
  30. package/frontend-build/.next/server/app/index.segments/_full.segment.rsc +2 -2
  31. package/frontend-build/.next/server/app/index.segments/_head.segment.rsc +1 -1
  32. package/frontend-build/.next/server/app/index.segments/_index.segment.rsc +2 -2
  33. package/frontend-build/.next/server/app/index.segments/_tree.segment.rsc +2 -2
  34. package/frontend-build/.next/server/app/page_client-reference-manifest.js +1 -1
  35. package/frontend-build/.next/server/app/settings/[tab]/page_client-reference-manifest.js +1 -1
  36. package/frontend-build/.next/server/chunks/ssr/_0df15zg._.js +4 -4
  37. package/frontend-build/.next/server/middleware-build-manifest.js +3 -3
  38. package/frontend-build/.next/server/pages/404.html +1 -1
  39. package/frontend-build/.next/server/pages/500.html +1 -1
  40. package/frontend-build/.next/server/server-reference-manifest.js +1 -1
  41. package/frontend-build/.next/server/server-reference-manifest.json +1 -1
  42. package/frontend-build/.next/static/chunks/14iak88qq2cr7.css +1 -0
  43. package/frontend-build/.next/static/chunks/{0n_h7vo0a.b~e.js → 15nvzzqum9rtw.js} +4 -4
  44. package/package.json +1 -1
  45. package/frontend-build/.next/static/chunks/0uuygh822k98..css +0 -1
  46. /package/frontend-build/.next/static/{ORRaKzEzZSdX7oTOHxF3n → 1suN337vYIyvVaeeYY0YN}/_buildManifest.js +0 -0
  47. /package/frontend-build/.next/static/{ORRaKzEzZSdX7oTOHxF3n → 1suN337vYIyvVaeeYY0YN}/_clientMiddlewareManifest.js +0 -0
  48. /package/frontend-build/.next/static/{ORRaKzEzZSdX7oTOHxF3n → 1suN337vYIyvVaeeYY0YN}/_ssgManifest.js +0 -0
@@ -137,6 +137,23 @@ class AgentLogger:
137
137
  elif etype == "error":
138
138
  self._write_bg(f"\n ❌ ERROR: {event.get('message', '')}\n")
139
139
 
140
+ elif etype == "context_compact":
141
+ stage = event.get("stage", "unknown").upper()
142
+ cb = event.get("chars_before", 0)
143
+ ca = event.get("chars_after", 0)
144
+ pct = event.get("reduction_pct", 0)
145
+ archive = event.get("archive_path")
146
+ archive_line = f"\n Archive : {archive}" if archive else ""
147
+ sep = "=" * 60
148
+ self._write_bg(f"""
149
+ {sep}
150
+ CONTEXT COMPACTED [{stage}]
151
+ Before : {cb:>12,} chars (~{cb // 4:,} tokens est.)
152
+ After : {ca:>12,} chars (~{ca // 4:,} tokens est.)
153
+ Saved : {cb - ca:>12,} chars (-{pct}%){archive_line}
154
+ {sep}
155
+ """)
156
+
140
157
  elif etype == "thinking":
141
158
  pass # skip noise
142
159
 
@@ -59,6 +59,9 @@ def _build_context_block(current_context_text: str, recent_history_messages: lis
59
59
  return "\n\n".join(parts)
60
60
 
61
61
 
62
+ MIN_STAGE1_SAVINGS_PCT = 20 # Stage-1 trim must save at least this % or we fall through to Stage-2
63
+
64
+
62
65
  async def maybe_compact(
63
66
  current_context_text: str,
64
67
  recent_history_messages: list,
@@ -68,16 +71,17 @@ async def maybe_compact(
68
71
  current_settings: dict,
69
72
  session_id: str,
70
73
  agent_id: str,
71
- ) -> tuple[str, list, str | None]:
74
+ run_id: str | None = None,
75
+ ) -> tuple[str, list, str | None, dict | None]:
72
76
  """
73
- Returns (context_text, history_messages, archive_path | None).
77
+ Returns (context_text, history_messages, archive_path | None, compact_stats | None).
74
78
 
75
79
  archive_path is only set when Stage-2 LLM summarisation fires (and saves an archive).
76
- Stage-1 trim returns None for archive_path since nothing is lost just the oldest
77
- portion of tool output text is dropped.
80
+ compact_stats is {"stage", "chars_before", "chars_after", "reduction_pct"} when
81
+ compaction fired, or None when it didn't.
78
82
  """
79
83
  if not settings.get("auto_compact_enabled", False):
80
- return current_context_text, recent_history_messages, None
84
+ return current_context_text, recent_history_messages, None, None
81
85
 
82
86
  threshold = settings.get("auto_compact_threshold", 100000)
83
87
  history_chars = sum(
@@ -86,7 +90,7 @@ async def maybe_compact(
86
90
  total_chars = len(current_context_text) + history_chars
87
91
 
88
92
  if total_chars <= threshold:
89
- return current_context_text, recent_history_messages, None
93
+ return current_context_text, recent_history_messages, None, None
90
94
 
91
95
  print(
92
96
  f"\nDEBUG: 📏 Compaction check — "
@@ -99,11 +103,14 @@ async def maybe_compact(
99
103
 
100
104
  # ── Stage 1: drop oldest tool outputs (cheap — no LLM call, no archive) ──────
101
105
  # Keep the most recent portion of current_context_text that fits in the budget.
106
+ # Only accept the Stage-1 result when it saves at least MIN_STAGE1_SAVINGS_PCT;
107
+ # otherwise fall through to Stage-2 LLM summarisation for proper ~30% reduction.
102
108
  budget = max(0, threshold - history_chars - 60) # 60 chars for the trim prefix
103
109
  if budget > 0 and len(current_context_text) > budget:
104
110
  stage1_ctx = "[...older tool outputs trimmed...]\n" + current_context_text[-budget:]
105
111
  stage1_total = len(stage1_ctx) + history_chars
106
- if stage1_total <= threshold:
112
+ stage1_savings_pct = round((total_chars - stage1_total) / total_chars * 100) if total_chars > 0 else 0
113
+ if stage1_total <= threshold and stage1_savings_pct >= MIN_STAGE1_SAVINGS_PCT:
107
114
  _log_compaction("Stage-1 trim", total_chars, stage1_total)
108
115
  log_compaction_event(
109
116
  stage="trim",
@@ -111,8 +118,20 @@ async def maybe_compact(
111
118
  chars_after=stage1_total,
112
119
  session_id=session_id,
113
120
  agent_id=agent_id,
121
+ run_id=run_id,
122
+ )
123
+ return stage1_ctx, recent_history_messages, None, {
124
+ "stage": "trim",
125
+ "chars_before": total_chars,
126
+ "chars_after": stage1_total,
127
+ "reduction_pct": stage1_savings_pct,
128
+ }
129
+ elif stage1_total <= threshold:
130
+ print(
131
+ f"DEBUG: ⏭ Stage-1 would save only {stage1_savings_pct}% "
132
+ f"(< {MIN_STAGE1_SAVINGS_PCT}% min) — falling through to Stage-2 LLM summarisation.",
133
+ flush=True,
114
134
  )
115
- return stage1_ctx, recent_history_messages, None
116
135
 
117
136
  # ── Stage 2: LLM summarisation (Stage 1 was not enough) ──────────────────────
118
137
  print(
@@ -155,6 +174,13 @@ async def maybe_compact(
155
174
  f"=== END SUMMARY — CONTINUING FROM HERE ===\n"
156
175
  )
157
176
  after_chars = len(compacted)
177
+ reduction_pct = round((total_chars - after_chars) / total_chars * 100) if total_chars > 0 else 0
178
+ compact_stats = {
179
+ "stage": "llm_summary",
180
+ "chars_before": total_chars,
181
+ "chars_after": after_chars,
182
+ "reduction_pct": reduction_pct,
183
+ }
158
184
  _log_compaction("Stage-2 LLM summary", total_chars, after_chars, str(archive_path) if archive_path else None)
159
185
  log_compaction_event(
160
186
  stage="llm_summary",
@@ -162,14 +188,15 @@ async def maybe_compact(
162
188
  chars_after=after_chars,
163
189
  session_id=session_id,
164
190
  agent_id=agent_id,
191
+ run_id=run_id,
165
192
  archive_path=str(archive_path) if archive_path else None,
166
193
  model=current_model,
167
194
  )
168
- return compacted, [], str(archive_path) if archive_path else None
195
+ return compacted, [], str(archive_path) if archive_path else None, compact_stats
169
196
 
170
197
  except Exception as exc:
171
198
  print(f"DEBUG: ⚠️ Compaction LLM call failed ({exc}), continuing without compaction")
172
- return current_context_text, recent_history_messages, None
199
+ return current_context_text, recent_history_messages, None, None
173
200
 
174
201
 
175
202
  def _log_compaction(stage: str, before: int, after: int, archive: str | None = None) -> None:
@@ -224,6 +224,23 @@ class OrchestrationLogger:
224
224
  elif etype == "error":
225
225
  self._write(f" ❌ ERROR: {event.get('message', '')}\n")
226
226
 
227
+ elif etype == "context_compact":
228
+ stage = event.get("stage", "unknown").upper()
229
+ cb = event.get("chars_before", 0)
230
+ ca = event.get("chars_after", 0)
231
+ pct = event.get("reduction_pct", 0)
232
+ archive = event.get("archive_path")
233
+ archive_line = f"\n Archive : {archive}" if archive else ""
234
+ sep = "=" * 60
235
+ self._write(f"""
236
+ {sep}
237
+ CONTEXT COMPACTED [{stage}]
238
+ Before : {cb:>12,} chars (~{cb // 4:,} tokens est.)
239
+ After : {ca:>12,} chars (~{ca // 4:,} tokens est.)
240
+ Saved : {cb - ca:>12,} chars (-{pct}%){archive_line}
241
+ {sep}
242
+ """)
243
+
227
244
  # ── Helpers ────────────────────────────────────────────────────
228
245
 
229
246
  @staticmethod
@@ -441,7 +441,7 @@ async def run_agent_step(
441
441
  # _has_compacted (anti-thrash: skip if we already compacted this run so we
442
442
  # don't loop calling the LLM when a single output fills the window).
443
443
  if turn > 0 and not _has_compacted:
444
- _compact_ctx, _compact_hist, _compact_path = await maybe_compact(
444
+ _compact_ctx, _compact_hist, _compact_path, _compact_stats = await maybe_compact(
445
445
  current_context_text,
446
446
  recent_history_messages,
447
447
  current_settings,
@@ -450,6 +450,7 @@ async def run_agent_step(
450
450
  current_settings,
451
451
  session_id,
452
452
  agent_id_for_session,
453
+ run_id=run_id,
453
454
  )
454
455
  if _compact_ctx is not current_context_text:
455
456
  current_context_text = _compact_ctx
@@ -457,10 +458,14 @@ async def run_agent_step(
457
458
  active_prompt = current_context_text
458
459
  active_history = []
459
460
  _has_compacted = True
460
- if _compact_path is not None:
461
- yield {"type": "system", "message": f"Context compacted — original archived at: {_compact_path}"}
462
- else:
463
- yield {"type": "system", "message": "Context trimmed — oldest tool outputs dropped to stay within threshold."}
461
+ yield {
462
+ "type": "context_compact",
463
+ "stage": (_compact_stats or {}).get("stage", "unknown"),
464
+ "chars_before": (_compact_stats or {}).get("chars_before", 0),
465
+ "chars_after": (_compact_stats or {}).get("chars_after", 0),
466
+ "reduction_pct": (_compact_stats or {}).get("reduction_pct", 0),
467
+ "archive_path": _compact_path,
468
+ }
464
469
 
465
470
  # Safety guard: truncate if too long
466
471
  total_prompt_chars = len(active_prompt) + len(active_sys_prompt) + len(memory_context)
@@ -156,6 +156,7 @@ def log_compaction_event(
156
156
  chars_after: int,
157
157
  session_id: Optional[str] = None,
158
158
  agent_id: Optional[str] = None,
159
+ run_id: Optional[str] = None,
159
160
  archive_path: Optional[str] = None,
160
161
  model: str = "",
161
162
  ):
@@ -174,6 +175,7 @@ def log_compaction_event(
174
175
  "stage": stage,
175
176
  "session_id": session_id or "unknown",
176
177
  "agent_id": agent_id or "unknown",
178
+ "run_id": run_id,
177
179
  "chars_before": chars_before,
178
180
  "chars_after": chars_after,
179
181
  "chars_saved": chars_saved,
@@ -8,7 +8,6 @@ then use the Filesystem MCP tools (read_file, search_files) to access parts of t
8
8
  file without flooding its context window.
9
9
  """
10
10
  import json
11
- import os
12
11
  import re
13
12
  from datetime import datetime
14
13
  from pathlib import Path
@@ -51,6 +50,10 @@ def maybe_vault(tool_name: str, raw_output: str) -> str:
51
50
 
52
51
  path = _make_vault_path(tool_name, ext)
53
52
  path.write_text(content, encoding="utf-8")
53
+ try:
54
+ path.chmod(0o644)
55
+ except Exception:
56
+ pass
54
57
 
55
58
  total_lines = content.count("\n") + 1
56
59
  return json.dumps({
@@ -58,6 +61,7 @@ def maybe_vault(tool_name: str, raw_output: str) -> str:
58
61
  "file_type": ext,
59
62
  "size_chars": len(raw_output),
60
63
  "total_lines": total_lines,
64
+ "content_preview": content[:500],
61
65
  "message": (
62
66
  f"Output too large ({len(raw_output):,} chars, {total_lines:,} lines). Saved to vault at: {path}. "
63
67
  f"Instead: use read_file_by_lines with start_line/end_line to read a slice, "
@@ -301,9 +301,20 @@ def _read_file_by_lines(file_path: str, start_line: int = 1, end_line: int = 100
301
301
  if os.path.exists(file_path):
302
302
  resolved = file_path
303
303
 
304
+ # Fallback: absolute path from a different user/container context — try local vault by filename
305
+ if not resolved and os.path.isabs(file_path) and "vault" in file_path:
306
+ try:
307
+ from core.config import DATA_DIR
308
+ filename = os.path.basename(file_path)
309
+ local_candidate = os.path.join(DATA_DIR, "vault", "tool_outputs", filename)
310
+ if os.path.exists(local_candidate):
311
+ resolved = local_candidate
312
+ except Exception:
313
+ pass
314
+
304
315
  if not resolved:
305
316
  cwd = os.getcwd()
306
-
317
+
307
318
  # Check vault directory relative to cwd
308
319
  if file_path.startswith("data/vault/"):
309
320
  candidate = os.path.join(cwd, file_path)
@@ -1 +1 @@
1
- ORRaKzEzZSdX7oTOHxF3n
1
+ 1suN337vYIyvVaeeYY0YN
@@ -7,9 +7,9 @@
7
7
  "static/chunks/03~yq9q893hmn.js"
8
8
  ],
9
9
  "lowPriorityFiles": [
10
- "static/ORRaKzEzZSdX7oTOHxF3n/_buildManifest.js",
11
- "static/ORRaKzEzZSdX7oTOHxF3n/_ssgManifest.js",
12
- "static/ORRaKzEzZSdX7oTOHxF3n/_clientMiddlewareManifest.js"
10
+ "static/1suN337vYIyvVaeeYY0YN/_buildManifest.js",
11
+ "static/1suN337vYIyvVaeeYY0YN/_ssgManifest.js",
12
+ "static/1suN337vYIyvVaeeYY0YN/_clientMiddlewareManifest.js"
13
13
  ],
14
14
  "rootMainFiles": [
15
15
  "static/chunks/0mim5z5~_34t1.js",
@@ -107,8 +107,8 @@
107
107
  "dynamicRoutes": {},
108
108
  "notFoundRoutes": [],
109
109
  "preview": {
110
- "previewModeId": "4de12aa89a8114772ec47e379b76f03e",
111
- "previewModeSigningKey": "0ad7f206cac5d9d259d7586b4ffa5db44d1ee9045e46f2d4516889a2680b549d",
112
- "previewModeEncryptionKey": "46bebd3ec4e2b5d4844b229f3891e8f15af5fc614422f35c7911636c040b18ed"
110
+ "previewModeId": "e1e4f4393a9018320f1f00ae9dd7ce3f",
111
+ "previewModeSigningKey": "9c8c79b14fb0926629680745ebc33f1c631fe106113e1737eb046c3c3756d2b6",
112
+ "previewModeEncryptionKey": "9fc4915fabb60fddbc35aa5793ed022ca90a7462e5a0d7b2da40d1357033ad09"
113
113
  }
114
114
  }
@@ -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/0mim5z5~_34t1.js"/><script src="/_next/static/chunks/02i7dfk78~t~2.js" async=""></script><script src="/_next/static/chunks/05dz57h.5fg3-.js" async=""></script><script src="/_next/static/chunks/0h4a4y-~puu.x.js" async=""></script><script src="/_next/static/chunks/turbopack-1606efl0p3-k2.js" async=""></script><script src="/_next/static/chunks/0ipoy_nm8gvxg.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/03~yq9q893hmn.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;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/0mim5z5~_34t1.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[39756,[\"/_next/static/chunks/0ipoy_nm8gvxg.js\"],\"default\"]\n3:I[37457,[\"/_next/static/chunks/0ipoy_nm8gvxg.js\"],\"default\"]\n4:I[97367,[\"/_next/static/chunks/0ipoy_nm8gvxg.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n8:I[97367,[\"/_next/static/chunks/0ipoy_nm8gvxg.js\"],\"ViewportBoundary\"]\na:I[97367,[\"/_next/static/chunks/0ipoy_nm8gvxg.js\"],\"MetadataBoundary\"]\nc:I[68027,[\"/_next/static/chunks/0ipoy_nm8gvxg.js\"],\"default\",1]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"title\",null,{\"children\":\"500: This page couldn’t load\"}],[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }\"}}]]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"display\":\"flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"style\":{\"marginTop\":\"-32px\",\"maxWidth\":\"325px\",\"padding\":\"32px 28px\",\"textAlign\":\"left\"},\"children\":[[\"$\",\"svg\",null,{\"width\":\"32\",\"height\":\"32\",\"viewBox\":\"-0.2 -1.5 32 32\",\"fill\":\"none\",\"style\":{\"marginBottom\":\"24px\"},\"children\":[\"$\",\"path\",null,{\"d\":\"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z\",\"fill\":\"var(--next-error-title)\"}]}],[\"$\",\"h1\",null,{\"style\":{\"fontSize\":\"24px\",\"fontWeight\":500,\"letterSpacing\":\"-0.02em\",\"lineHeight\":\"32px\",\"margin\":\"0 0 12px 0\",\"color\":\"var(--next-error-title)\"},\"children\":\"This page couldn’t load\"}],[\"$\",\"p\",null,{\"style\":{\"fontSize\":\"14px\",\"fontWeight\":400,\"lineHeight\":\"21px\",\"margin\":\"0 0 20px 0\",\"color\":\"var(--next-error-message)\"},\"children\":\"A server error occurred. Reload to try again.\"}],[\"$\",\"form\",null,{\"style\":{\"margin\":0},\"children\":[\"$\",\"button\",null,{\"type\":\"submit\",\"style\":{\"display\":\"inline-flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\",\"height\":\"32px\",\"padding\":\"0 12px\",\"fontSize\":\"14px\",\"fontWeight\":500,\"lineHeight\":\"20px\",\"borderRadius\":\"6px\",\"cursor\":\"pointer\",\"color\":\"var(--next-error-btn-text)\",\"background\":\"var(--next-error-btn-bg)\",\"border\":\"var(--next-error-btn-border)\"},\"children\":\"Reload\"}]}]]}]}]}]]}],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,null]},null,false,\"$@7\"],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"ORRaKzEzZSdX7oTOHxF3n\"}\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>
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/0mim5z5~_34t1.js"/><script src="/_next/static/chunks/02i7dfk78~t~2.js" async=""></script><script src="/_next/static/chunks/05dz57h.5fg3-.js" async=""></script><script src="/_next/static/chunks/0h4a4y-~puu.x.js" async=""></script><script src="/_next/static/chunks/turbopack-1606efl0p3-k2.js" async=""></script><script src="/_next/static/chunks/0ipoy_nm8gvxg.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/03~yq9q893hmn.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;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/0mim5z5~_34t1.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[39756,[\"/_next/static/chunks/0ipoy_nm8gvxg.js\"],\"default\"]\n3:I[37457,[\"/_next/static/chunks/0ipoy_nm8gvxg.js\"],\"default\"]\n4:I[97367,[\"/_next/static/chunks/0ipoy_nm8gvxg.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n8:I[97367,[\"/_next/static/chunks/0ipoy_nm8gvxg.js\"],\"ViewportBoundary\"]\na:I[97367,[\"/_next/static/chunks/0ipoy_nm8gvxg.js\"],\"MetadataBoundary\"]\nc:I[68027,[\"/_next/static/chunks/0ipoy_nm8gvxg.js\"],\"default\",1]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"title\",null,{\"children\":\"500: This page couldn’t load\"}],[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }\"}}]]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"display\":\"flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"style\":{\"marginTop\":\"-32px\",\"maxWidth\":\"325px\",\"padding\":\"32px 28px\",\"textAlign\":\"left\"},\"children\":[[\"$\",\"svg\",null,{\"width\":\"32\",\"height\":\"32\",\"viewBox\":\"-0.2 -1.5 32 32\",\"fill\":\"none\",\"style\":{\"marginBottom\":\"24px\"},\"children\":[\"$\",\"path\",null,{\"d\":\"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z\",\"fill\":\"var(--next-error-title)\"}]}],[\"$\",\"h1\",null,{\"style\":{\"fontSize\":\"24px\",\"fontWeight\":500,\"letterSpacing\":\"-0.02em\",\"lineHeight\":\"32px\",\"margin\":\"0 0 12px 0\",\"color\":\"var(--next-error-title)\"},\"children\":\"This page couldn’t load\"}],[\"$\",\"p\",null,{\"style\":{\"fontSize\":\"14px\",\"fontWeight\":400,\"lineHeight\":\"21px\",\"margin\":\"0 0 20px 0\",\"color\":\"var(--next-error-message)\"},\"children\":\"A server error occurred. Reload to try again.\"}],[\"$\",\"form\",null,{\"style\":{\"margin\":0},\"children\":[\"$\",\"button\",null,{\"type\":\"submit\",\"style\":{\"display\":\"inline-flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\",\"height\":\"32px\",\"padding\":\"0 12px\",\"fontSize\":\"14px\",\"fontWeight\":500,\"lineHeight\":\"20px\",\"borderRadius\":\"6px\",\"cursor\":\"pointer\",\"color\":\"var(--next-error-btn-text)\",\"background\":\"var(--next-error-btn-bg)\",\"border\":\"var(--next-error-btn-border)\"},\"children\":\"Reload\"}]}]]}]}]}]]}],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,null]},null,false,\"$@7\"],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"1suN337vYIyvVaeeYY0YN\"}\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[97367,["/_next/static/chunks/0ipoy_nm8gvxg.js"],"ViewportBoundary"]
7
7
  a:I[97367,["/_next/static/chunks/0ipoy_nm8gvxg.js"],"MetadataBoundary"]
8
8
  c:I[68027,["/_next/static/chunks/0ipoy_nm8gvxg.js"],"default",1]
9
- 0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"ORRaKzEzZSdX7oTOHxF3n"}
9
+ 0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"1suN337vYIyvVaeeYY0YN"}
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[97367,["/_next/static/chunks/0ipoy_nm8gvxg.js"],"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":"ORRaKzEzZSdX7oTOHxF3n"}
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":"1suN337vYIyvVaeeYY0YN"}
5
5
  4:null
@@ -6,7 +6,7 @@
6
6
  8:I[97367,["/_next/static/chunks/0ipoy_nm8gvxg.js"],"ViewportBoundary"]
7
7
  a:I[97367,["/_next/static/chunks/0ipoy_nm8gvxg.js"],"MetadataBoundary"]
8
8
  c:I[68027,["/_next/static/chunks/0ipoy_nm8gvxg.js"],"default",1]
9
- 0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"ORRaKzEzZSdX7oTOHxF3n"}
9
+ 0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"1suN337vYIyvVaeeYY0YN"}
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"}]]
@@ -2,4 +2,4 @@
2
2
  2:I[97367,["/_next/static/chunks/0ipoy_nm8gvxg.js"],"ViewportBoundary"]
3
3
  3:I[97367,["/_next/static/chunks/0ipoy_nm8gvxg.js"],"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":"ORRaKzEzZSdX7oTOHxF3n"}
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":"1suN337vYIyvVaeeYY0YN"}
@@ -2,4 +2,4 @@
2
2
  2:I[39756,["/_next/static/chunks/0ipoy_nm8gvxg.js"],"default"]
3
3
  3:I[37457,["/_next/static/chunks/0ipoy_nm8gvxg.js"],"default"]
4
4
  4:[]
5
- 0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"ORRaKzEzZSdX7oTOHxF3n"}
5
+ 0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"1suN337vYIyvVaeeYY0YN"}
@@ -1 +1 @@
1
- 0:{"tree":{"name":"","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"ORRaKzEzZSdX7oTOHxF3n"}
1
+ 0:{"tree":{"name":"","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"1suN337vYIyvVaeeYY0YN"}
@@ -1,3 +1,3 @@
1
1
  globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
2
- globalThis.__RSC_MANIFEST["/_not-found/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":63083,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":63083,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/src/app/StoreProvider.tsx <module evaluation>":{"id":34735,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/src/app/StoreProvider.tsx":{"id":34735,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js <module evaluation>":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"63083":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"34735":{"*":{"id":46600,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js","server/chunks/ssr/node_modules_09w7yel._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":13778,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"63083":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":33249,"name":"*","chunks":[],"async":false}},"34735":{"*":{"id":39736,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/0j29xn-eqm8iz.css","inlined":false},{"path":"static/chunks/0uuygh822k98..css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/0j29xn-eqm8iz.css","inlined":false},{"path":"static/chunks/0uuygh822k98..css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0js-43escs3uy.js","static/chunks/04v~lhs2c9fvw.js","static/chunks/0ipoy_nm8gvxg.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0js-43escs3uy.js","static/chunks/04v~lhs2c9fvw.js","static/chunks/0ipoy_nm8gvxg.js"]}};
2
+ globalThis.__RSC_MANIFEST["/_not-found/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":39756,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":37457,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":47257,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":63083,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":63083,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":68017,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":97367,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/src/app/StoreProvider.tsx <module evaluation>":{"id":34735,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/src/app/StoreProvider.tsx":{"id":34735,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js <module evaluation>":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":68027,"name":"*","chunks":["/_next/static/chunks/0js-43escs3uy.js","/_next/static/chunks/04v~lhs2c9fvw.js","/_next/static/chunks/0ipoy_nm8gvxg.js"],"async":false}},"ssrModuleMapping":{"39756":{"*":{"id":2420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"37457":{"*":{"id":24017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"47257":{"*":{"id":77682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"63083":{"*":{"id":97296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"68017":{"*":{"id":61660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"97367":{"*":{"id":90574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"27201":{"*":{"id":60704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"34735":{"*":{"id":46600,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js"],"async":false}},"68027":{"*":{"id":40622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__12b-xga._.js","server/chunks/ssr/node_modules_next_dist_0xdsm99._.js","server/chunks/ssr/node_modules_0y8evf1._.js","server/chunks/ssr/node_modules_09w7yel._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"39756":{"*":{"id":26768,"name":"*","chunks":[],"async":false}},"37457":{"*":{"id":13778,"name":"*","chunks":[],"async":false}},"47257":{"*":{"id":92977,"name":"*","chunks":[],"async":false}},"63083":{"*":{"id":48552,"name":"*","chunks":[],"async":false}},"68017":{"*":{"id":83919,"name":"*","chunks":[],"async":false}},"97367":{"*":{"id":24150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":33249,"name":"*","chunks":[],"async":false}},"34735":{"*":{"id":39736,"name":"*","chunks":[],"async":false}},"68027":{"*":{"id":82509,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/0j29xn-eqm8iz.css","inlined":false},{"path":"static/chunks/14iak88qq2cr7.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/0j29xn-eqm8iz.css","inlined":false},{"path":"static/chunks/14iak88qq2cr7.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/0js-43escs3uy.js","static/chunks/04v~lhs2c9fvw.js","static/chunks/0ipoy_nm8gvxg.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0js-43escs3uy.js","static/chunks/04v~lhs2c9fvw.js","static/chunks/0ipoy_nm8gvxg.js"]}};
3
3