synapse-orch-ai 1.1.9 → 1.1.11
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/README.md +4 -0
- package/backend/core/agent_logger.py +51 -0
- package/backend/core/compaction.py +37 -10
- package/backend/core/orchestration/logger.py +51 -0
- package/backend/core/react_engine.py +24 -5
- package/backend/core/usage_tracker.py +2 -0
- package/backend/core/vault.py +5 -1
- package/backend/tools/code_search.py +12 -1
- package/frontend-build/.next/BUILD_ID +1 -1
- package/frontend-build/.next/build-manifest.json +3 -3
- package/frontend-build/.next/prerender-manifest.json +3 -3
- package/frontend-build/.next/server/app/_global-error.html +1 -1
- package/frontend-build/.next/server/app/_global-error.rsc +1 -1
- package/frontend-build/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/frontend-build/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/frontend-build/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/frontend-build/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/frontend-build/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/frontend-build/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/frontend-build/.next/server/app/_not-found.html +1 -1
- package/frontend-build/.next/server/app/_not-found.rsc +2 -2
- package/frontend-build/.next/server/app/_not-found.segments/_full.segment.rsc +2 -2
- package/frontend-build/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
- package/frontend-build/.next/server/app/_not-found.segments/_index.segment.rsc +2 -2
- package/frontend-build/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
- package/frontend-build/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
- package/frontend-build/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -2
- package/frontend-build/.next/server/app/index.html +1 -1
- package/frontend-build/.next/server/app/index.rsc +2 -2
- package/frontend-build/.next/server/app/index.segments/__PAGE__.segment.rsc +1 -1
- package/frontend-build/.next/server/app/index.segments/_full.segment.rsc +2 -2
- package/frontend-build/.next/server/app/index.segments/_head.segment.rsc +1 -1
- package/frontend-build/.next/server/app/index.segments/_index.segment.rsc +2 -2
- package/frontend-build/.next/server/app/index.segments/_tree.segment.rsc +2 -2
- package/frontend-build/.next/server/app/page_client-reference-manifest.js +1 -1
- package/frontend-build/.next/server/app/settings/[tab]/page_client-reference-manifest.js +1 -1
- package/frontend-build/.next/server/chunks/ssr/_0df15zg._.js +4 -4
- package/frontend-build/.next/server/middleware-build-manifest.js +3 -3
- package/frontend-build/.next/server/pages/404.html +1 -1
- package/frontend-build/.next/server/pages/500.html +1 -1
- package/frontend-build/.next/server/server-reference-manifest.js +1 -1
- package/frontend-build/.next/server/server-reference-manifest.json +1 -1
- package/frontend-build/.next/static/chunks/14iak88qq2cr7.css +1 -0
- package/frontend-build/.next/static/chunks/{0n_h7vo0a.b~e.js → 15nvzzqum9rtw.js} +4 -4
- package/package.json +1 -1
- package/frontend-build/.next/static/chunks/0uuygh822k98..css +0 -1
- /package/frontend-build/.next/static/{6-67ukUie8KrC3n7-R-Er → JqYOgS0q6mxXuPPdmdTBH}/_buildManifest.js +0 -0
- /package/frontend-build/.next/static/{6-67ukUie8KrC3n7-R-Er → JqYOgS0q6mxXuPPdmdTBH}/_clientMiddlewareManifest.js +0 -0
- /package/frontend-build/.next/static/{6-67ukUie8KrC3n7-R-Er → JqYOgS0q6mxXuPPdmdTBH}/_ssgManifest.js +0 -0
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Synapse AI — Multi-Agent Orchestration Platform
|
|
2
2
|
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="https://github.com/user-attachments/assets/f11290ed-dde2-493f-9c5a-9423b9679f1c" alt="synapse-ai-github" width="600" />
|
|
5
|
+
</p>
|
|
6
|
+
|
|
3
7
|
<p align="center">
|
|
4
8
|
<a href="https://discord.gg/9UN45qyGh8"><img src="https://img.shields.io/badge/Discord-Join-5865F2?logo=discord&logoColor=white" alt="Discord"></a>
|
|
5
9
|
<a href="https://github.com/naveenraj-17/synapse-ai"><img src="https://img.shields.io/github/stars/naveenraj-17/synapse-ai?style=social" alt="GitHub stars"></a>
|
|
@@ -100,6 +100,40 @@ class AgentLogger:
|
|
|
100
100
|
📝 INPUT PROMPT:
|
|
101
101
|
{self._indent(prompt)}
|
|
102
102
|
{'─'*80}
|
|
103
|
+
""")
|
|
104
|
+
|
|
105
|
+
elif etype == "_log_llm_call":
|
|
106
|
+
turn = event.get("turn", "?")
|
|
107
|
+
model = event.get("model", "")
|
|
108
|
+
sys_chars = event.get("system_chars", 0)
|
|
109
|
+
prompt_chars = event.get("prompt_chars", 0)
|
|
110
|
+
mem_chars = event.get("memory_chars", 0)
|
|
111
|
+
hist_turns = event.get("history_turns", 0)
|
|
112
|
+
total_chars = event.get("total_chars", 0)
|
|
113
|
+
prompt_text = event.get("prompt", "")
|
|
114
|
+
sys_text = event.get("system_prompt", "")
|
|
115
|
+
|
|
116
|
+
MAX_SYS_LOG = 3000
|
|
117
|
+
sys_display = sys_text if len(sys_text) <= MAX_SYS_LOG else (
|
|
118
|
+
sys_text[:MAX_SYS_LOG] + f"\n [...truncated {len(sys_text) - MAX_SYS_LOG:,} chars]"
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
self._write_bg(f"""
|
|
122
|
+
{'═'*80}
|
|
123
|
+
🔄 LLM CALL — TURN {turn} │ model: {model}
|
|
124
|
+
{'─'*80}
|
|
125
|
+
System Prompt : {sys_chars:>10,} chars (~{sys_chars // 4:,} tokens est.)
|
|
126
|
+
Context/Prompt : {prompt_chars:>10,} chars (~{prompt_chars // 4:,} tokens est.)
|
|
127
|
+
Memory Context : {mem_chars:>10,} chars
|
|
128
|
+
History Turns : {hist_turns:>10} turns
|
|
129
|
+
── TOTAL ───────: {total_chars:>10,} chars (~{total_chars // 4:,} tokens est.)
|
|
130
|
+
{'─'*80}
|
|
131
|
+
SYSTEM PROMPT ({sys_chars:,} chars):
|
|
132
|
+
{self._indent(sys_display)}
|
|
133
|
+
|
|
134
|
+
CONTEXT / PROMPT SENT ({prompt_chars:,} chars):
|
|
135
|
+
{self._indent(prompt_text)}
|
|
136
|
+
{'═'*80}
|
|
103
137
|
""")
|
|
104
138
|
|
|
105
139
|
elif etype == "tool_execution":
|
|
@@ -137,6 +171,23 @@ class AgentLogger:
|
|
|
137
171
|
elif etype == "error":
|
|
138
172
|
self._write_bg(f"\n ❌ ERROR: {event.get('message', '')}\n")
|
|
139
173
|
|
|
174
|
+
elif etype == "context_compact":
|
|
175
|
+
stage = event.get("stage", "unknown").upper()
|
|
176
|
+
cb = event.get("chars_before", 0)
|
|
177
|
+
ca = event.get("chars_after", 0)
|
|
178
|
+
pct = event.get("reduction_pct", 0)
|
|
179
|
+
archive = event.get("archive_path")
|
|
180
|
+
archive_line = f"\n Archive : {archive}" if archive else ""
|
|
181
|
+
sep = "=" * 60
|
|
182
|
+
self._write_bg(f"""
|
|
183
|
+
{sep}
|
|
184
|
+
CONTEXT COMPACTED [{stage}]
|
|
185
|
+
Before : {cb:>12,} chars (~{cb // 4:,} tokens est.)
|
|
186
|
+
After : {ca:>12,} chars (~{ca // 4:,} tokens est.)
|
|
187
|
+
Saved : {cb - ca:>12,} chars (-{pct}%){archive_line}
|
|
188
|
+
{sep}
|
|
189
|
+
""")
|
|
190
|
+
|
|
140
191
|
elif etype == "thinking":
|
|
141
192
|
pass # skip noise
|
|
142
193
|
|
|
@@ -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
|
-
|
|
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
|
-
|
|
77
|
-
|
|
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
|
-
|
|
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:
|
|
@@ -106,6 +106,40 @@ class OrchestrationLogger:
|
|
|
106
106
|
if system_prompt_extra:
|
|
107
107
|
self._write(f""" 🗺 SYSTEM CONTEXT (workflow graph + step position):
|
|
108
108
|
{self._indent(system_prompt_extra)}
|
|
109
|
+
""")
|
|
110
|
+
|
|
111
|
+
elif etype == "_log_llm_call":
|
|
112
|
+
turn = event.get("turn", "?")
|
|
113
|
+
model = event.get("model", "")
|
|
114
|
+
sys_chars = event.get("system_chars", 0)
|
|
115
|
+
prompt_chars = event.get("prompt_chars", 0)
|
|
116
|
+
mem_chars = event.get("memory_chars", 0)
|
|
117
|
+
hist_turns = event.get("history_turns", 0)
|
|
118
|
+
total_chars = event.get("total_chars", 0)
|
|
119
|
+
prompt_text = event.get("prompt", "")
|
|
120
|
+
sys_text = event.get("system_prompt", "")
|
|
121
|
+
|
|
122
|
+
MAX_SYS_LOG = 3000
|
|
123
|
+
sys_display = sys_text if len(sys_text) <= MAX_SYS_LOG else (
|
|
124
|
+
sys_text[:MAX_SYS_LOG] + f"\n [...truncated {len(sys_text) - MAX_SYS_LOG:,} chars]"
|
|
125
|
+
)
|
|
126
|
+
|
|
127
|
+
self._write(f"""
|
|
128
|
+
{'═'*80}
|
|
129
|
+
🔄 LLM CALL — TURN {turn} │ model: {model}
|
|
130
|
+
{'─'*80}
|
|
131
|
+
System Prompt : {sys_chars:>10,} chars (~{sys_chars // 4:,} tokens est.)
|
|
132
|
+
Context/Prompt : {prompt_chars:>10,} chars (~{prompt_chars // 4:,} tokens est.)
|
|
133
|
+
Memory Context : {mem_chars:>10,} chars
|
|
134
|
+
History Turns : {hist_turns:>10} turns
|
|
135
|
+
── TOTAL ───────: {total_chars:>10,} chars (~{total_chars // 4:,} tokens est.)
|
|
136
|
+
{'─'*80}
|
|
137
|
+
SYSTEM PROMPT ({sys_chars:,} chars):
|
|
138
|
+
{self._indent(sys_display)}
|
|
139
|
+
|
|
140
|
+
CONTEXT / PROMPT SENT ({prompt_chars:,} chars):
|
|
141
|
+
{self._indent(prompt_text)}
|
|
142
|
+
{'═'*80}
|
|
109
143
|
""")
|
|
110
144
|
|
|
111
145
|
elif etype == "_log_evaluator":
|
|
@@ -224,6 +258,23 @@ class OrchestrationLogger:
|
|
|
224
258
|
elif etype == "error":
|
|
225
259
|
self._write(f" ❌ ERROR: {event.get('message', '')}\n")
|
|
226
260
|
|
|
261
|
+
elif etype == "context_compact":
|
|
262
|
+
stage = event.get("stage", "unknown").upper()
|
|
263
|
+
cb = event.get("chars_before", 0)
|
|
264
|
+
ca = event.get("chars_after", 0)
|
|
265
|
+
pct = event.get("reduction_pct", 0)
|
|
266
|
+
archive = event.get("archive_path")
|
|
267
|
+
archive_line = f"\n Archive : {archive}" if archive else ""
|
|
268
|
+
sep = "=" * 60
|
|
269
|
+
self._write(f"""
|
|
270
|
+
{sep}
|
|
271
|
+
CONTEXT COMPACTED [{stage}]
|
|
272
|
+
Before : {cb:>12,} chars (~{cb // 4:,} tokens est.)
|
|
273
|
+
After : {ca:>12,} chars (~{ca // 4:,} tokens est.)
|
|
274
|
+
Saved : {cb - ca:>12,} chars (-{pct}%){archive_line}
|
|
275
|
+
{sep}
|
|
276
|
+
""")
|
|
277
|
+
|
|
227
278
|
# ── Helpers ────────────────────────────────────────────────────
|
|
228
279
|
|
|
229
280
|
@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
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
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)
|
|
@@ -470,6 +475,20 @@ async def run_agent_step(
|
|
|
470
475
|
active_prompt = active_prompt[: len(active_prompt) - overflow]
|
|
471
476
|
print(f"DEBUG: ⚠️ Truncated prompt by {overflow} chars")
|
|
472
477
|
|
|
478
|
+
# Emit per-turn LLM call context to loggers before invoking the model
|
|
479
|
+
yield {
|
|
480
|
+
"type": "_log_llm_call",
|
|
481
|
+
"turn": turn + 1,
|
|
482
|
+
"model": current_model,
|
|
483
|
+
"system_chars": len(active_sys_prompt),
|
|
484
|
+
"prompt_chars": len(active_prompt),
|
|
485
|
+
"memory_chars": len(memory_context),
|
|
486
|
+
"history_turns": len(active_history),
|
|
487
|
+
"total_chars": total_prompt_chars,
|
|
488
|
+
"prompt": active_prompt,
|
|
489
|
+
"system_prompt": active_sys_prompt,
|
|
490
|
+
}
|
|
491
|
+
|
|
473
492
|
# Ask LLM
|
|
474
493
|
print(f"DEBUG: 🔄 Calling LLM...", flush=True)
|
|
475
494
|
_llm_start = time.time()
|
|
@@ -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,
|
package/backend/core/vault.py
CHANGED
|
@@ -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
|
-
|
|
1
|
+
JqYOgS0q6mxXuPPdmdTBH
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
"static/chunks/03~yq9q893hmn.js"
|
|
8
8
|
],
|
|
9
9
|
"lowPriorityFiles": [
|
|
10
|
-
"static/
|
|
11
|
-
"static/
|
|
12
|
-
"static/
|
|
10
|
+
"static/JqYOgS0q6mxXuPPdmdTBH/_buildManifest.js",
|
|
11
|
+
"static/JqYOgS0q6mxXuPPdmdTBH/_ssgManifest.js",
|
|
12
|
+
"static/JqYOgS0q6mxXuPPdmdTBH/_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": "
|
|
111
|
-
"previewModeSigningKey": "
|
|
112
|
-
"previewModeEncryptionKey": "
|
|
110
|
+
"previewModeId": "1a1bfd6c94c0c8e199b70246ac2e924f",
|
|
111
|
+
"previewModeSigningKey": "f22fed0129101ad4bd0788b3533fdbb923c0a26d2574a4e51e0f96fa034a121d",
|
|
112
|
+
"previewModeEncryptionKey": "25c9c14038f0c8faee02900dccde4280105af3a5263a296e88b18d413897bfdd"
|
|
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,"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/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\":\"
|
|
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,"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/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\":\"JqYOgS0q6mxXuPPdmdTBH\"}\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":"
|
|
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":"JqYOgS0q6mxXuPPdmdTBH"}
|
|
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":"
|
|
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":"JqYOgS0q6mxXuPPdmdTBH"}
|
|
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":"
|
|
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":"JqYOgS0q6mxXuPPdmdTBH"}
|
|
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":"
|
|
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":"JqYOgS0q6mxXuPPdmdTBH"}
|
|
@@ -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":"
|
|
5
|
+
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"JqYOgS0q6mxXuPPdmdTBH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0:{"tree":{"name":"","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":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"JqYOgS0q6mxXuPPdmdTBH"}
|