ciris-agent 1.7.7__py3-none-any.whl
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.
- ciris_adapters/README.md +113 -0
- ciris_adapters/__init__.py +30 -0
- ciris_adapters/ciris_covenant_metrics/README.md +144 -0
- ciris_adapters/ciris_covenant_metrics/__init__.py +36 -0
- ciris_adapters/ciris_covenant_metrics/adapter.py +249 -0
- ciris_adapters/ciris_covenant_metrics/manifest.json +152 -0
- ciris_adapters/ciris_covenant_metrics/services.py +403 -0
- ciris_adapters/ciris_hosted_tools/__init__.py +24 -0
- ciris_adapters/ciris_hosted_tools/adapter.py +169 -0
- ciris_adapters/ciris_hosted_tools/manifest.json +94 -0
- ciris_adapters/ciris_hosted_tools/services.py +744 -0
- ciris_adapters/external_data_sql/README.md +559 -0
- ciris_adapters/external_data_sql/__init__.py +43 -0
- ciris_adapters/external_data_sql/adapter.py +144 -0
- ciris_adapters/external_data_sql/configurable.py +315 -0
- ciris_adapters/external_data_sql/dialects/__init__.py +37 -0
- ciris_adapters/external_data_sql/dialects/base.py +133 -0
- ciris_adapters/external_data_sql/dialects/mysql.py +63 -0
- ciris_adapters/external_data_sql/dialects/postgresql.py +59 -0
- ciris_adapters/external_data_sql/dialects/sqlite.py +62 -0
- ciris_adapters/external_data_sql/example_config.json +88 -0
- ciris_adapters/external_data_sql/example_privacy_schema.yaml +127 -0
- ciris_adapters/external_data_sql/manifest.json +195 -0
- ciris_adapters/external_data_sql/privacy_schema_loader.py +189 -0
- ciris_adapters/external_data_sql/protocol.py +101 -0
- ciris_adapters/external_data_sql/schemas.py +146 -0
- ciris_adapters/external_data_sql/service.py +1547 -0
- ciris_adapters/external_data_sql/service_old.py +492 -0
- ciris_adapters/home_assistant/__init__.py +63 -0
- ciris_adapters/home_assistant/adapter.py +201 -0
- ciris_adapters/home_assistant/communication_service.py +347 -0
- ciris_adapters/home_assistant/configurable.py +667 -0
- ciris_adapters/home_assistant/manifest.json +203 -0
- ciris_adapters/home_assistant/schemas.py +129 -0
- ciris_adapters/home_assistant/service.py +751 -0
- ciris_adapters/home_assistant/tool_service.py +441 -0
- ciris_adapters/mcp_client/__init__.py +82 -0
- ciris_adapters/mcp_client/adapter.py +847 -0
- ciris_adapters/mcp_client/config.py +280 -0
- ciris_adapters/mcp_client/configurable.py +422 -0
- ciris_adapters/mcp_client/manifest.json +185 -0
- ciris_adapters/mcp_client/mcp_communication_service.py +393 -0
- ciris_adapters/mcp_client/mcp_tool_service.py +463 -0
- ciris_adapters/mcp_client/mcp_wise_service.py +394 -0
- ciris_adapters/mcp_client/schemas.py +149 -0
- ciris_adapters/mcp_client/security.py +592 -0
- ciris_adapters/mcp_common/__init__.py +44 -0
- ciris_adapters/mcp_common/manifest.json +25 -0
- ciris_adapters/mcp_common/protocol.py +315 -0
- ciris_adapters/mcp_common/schemas.py +225 -0
- ciris_adapters/mcp_server/__init__.py +47 -0
- ciris_adapters/mcp_server/adapter.py +581 -0
- ciris_adapters/mcp_server/config.py +260 -0
- ciris_adapters/mcp_server/configurable.py +393 -0
- ciris_adapters/mcp_server/handlers.py +663 -0
- ciris_adapters/mcp_server/manifest.json +211 -0
- ciris_adapters/mcp_server/security.py +500 -0
- ciris_adapters/mock_llm/README.md +117 -0
- ciris_adapters/mock_llm/__init__.py +21 -0
- ciris_adapters/mock_llm/adapter.py +131 -0
- ciris_adapters/mock_llm/configurable.py +237 -0
- ciris_adapters/mock_llm/manifest.json +106 -0
- ciris_adapters/mock_llm/protocol.py +37 -0
- ciris_adapters/mock_llm/responses.py +520 -0
- ciris_adapters/mock_llm/responses_action_selection.py +1041 -0
- ciris_adapters/mock_llm/responses_epistemic.py +17 -0
- ciris_adapters/mock_llm/responses_feedback.py +27 -0
- ciris_adapters/mock_llm/schemas.py +35 -0
- ciris_adapters/mock_llm/service.py +294 -0
- ciris_adapters/navigation/__init__.py +21 -0
- ciris_adapters/navigation/adapter.py +129 -0
- ciris_adapters/navigation/configurable.py +239 -0
- ciris_adapters/navigation/manifest.json +104 -0
- ciris_adapters/navigation/service.py +487 -0
- ciris_adapters/reddit/README.md +132 -0
- ciris_adapters/reddit/REDDIT_ADAPTER_ANALYSIS.md +715 -0
- ciris_adapters/reddit/REDDIT_ADAPTER_SUMMARY.txt +278 -0
- ciris_adapters/reddit/REDDIT_ANALYSIS_INDEX.md +307 -0
- ciris_adapters/reddit/REDDIT_PRODUCTION_READINESS_PLAN.md +518 -0
- ciris_adapters/reddit/__init__.py +15 -0
- ciris_adapters/reddit/adapter.py +189 -0
- ciris_adapters/reddit/configurable.py +274 -0
- ciris_adapters/reddit/error_handler.py +307 -0
- ciris_adapters/reddit/manifest.json +218 -0
- ciris_adapters/reddit/observer.py +532 -0
- ciris_adapters/reddit/protocol.py +34 -0
- ciris_adapters/reddit/schemas.py +433 -0
- ciris_adapters/reddit/service.py +1471 -0
- ciris_adapters/sample_adapter/README.md +474 -0
- ciris_adapters/sample_adapter/__init__.py +45 -0
- ciris_adapters/sample_adapter/adapter.py +208 -0
- ciris_adapters/sample_adapter/configurable.py +469 -0
- ciris_adapters/sample_adapter/manifest.json +247 -0
- ciris_adapters/sample_adapter/services.py +486 -0
- ciris_adapters/weather/__init__.py +16 -0
- ciris_adapters/weather/adapter.py +130 -0
- ciris_adapters/weather/configurable.py +240 -0
- ciris_adapters/weather/manifest.json +156 -0
- ciris_adapters/weather/service.py +600 -0
- ciris_agent-1.7.7.dist-info/METADATA +284 -0
- ciris_agent-1.7.7.dist-info/RECORD +986 -0
- ciris_agent-1.7.7.dist-info/WHEEL +5 -0
- ciris_agent-1.7.7.dist-info/entry_points.txt +15 -0
- ciris_agent-1.7.7.dist-info/licenses/LICENSE +205 -0
- ciris_agent-1.7.7.dist-info/licenses/NOTICE +82 -0
- ciris_agent-1.7.7.dist-info/top_level.txt +4 -0
- ciris_engine/__init__.py +15 -0
- ciris_engine/ciris_templates/ally.yaml +632 -0
- ciris_engine/ciris_templates/default.yaml +411 -0
- ciris_engine/ciris_templates/echo-core.yaml +629 -0
- ciris_engine/ciris_templates/echo-speculative.yaml +764 -0
- ciris_engine/ciris_templates/echo.yaml +647 -0
- ciris_engine/ciris_templates/sage.yaml +332 -0
- ciris_engine/ciris_templates/scout.yaml +338 -0
- ciris_engine/ciris_templates/test.yaml +168 -0
- ciris_engine/cli.py +42 -0
- ciris_engine/config/CIRIS_SERVICES.json +19 -0
- ciris_engine/config/MODEL_CAPABILITIES.json +419 -0
- ciris_engine/config/PRICING_DATA.json +179 -0
- ciris_engine/config/__init__.py +50 -0
- ciris_engine/config/ciris_services.py +113 -0
- ciris_engine/config/model_capabilities.py +388 -0
- ciris_engine/config/pricing_models.py +276 -0
- ciris_engine/constants.py +35 -0
- ciris_engine/data/__init__.py +1 -0
- ciris_engine/data/covenant_1.0b.txt +978 -0
- ciris_engine/gui_static/11steps.svg +107 -0
- ciris_engine/gui_static/2x-schematics.png +0 -0
- ciris_engine/gui_static/404/index.html +1 -0
- ciris_engine/gui_static/404.html +1 -0
- ciris_engine/gui_static/_next/static/0edhkwDxd5UccTsCmtaBi/_buildManifest.js +1 -0
- ciris_engine/gui_static/_next/static/0edhkwDxd5UccTsCmtaBi/_ssgManifest.js +1 -0
- ciris_engine/gui_static/_next/static/U-3xTQao7hc2wnAi-Uekm/_buildManifest.js +1 -0
- ciris_engine/gui_static/_next/static/U-3xTQao7hc2wnAi-Uekm/_ssgManifest.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/3297-60e86ba0f8a7b040.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/3835-2aad4b7f5f8e4643.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/4499-99a0bc47de0b8975.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/4534-af88cd4ba6e99bff.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/4541-84b455f9e0dc4cfe.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/4789-61412711484754bb.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/6539-c6398bc9d7018430.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/704-8e827b26cc8c2d32.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/704-fb45d630f3192c6f.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/8072-de4952a2e6d2b33f.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/8315-b91d03a3949db0af.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/8386-f93a83ccbd789bd9.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/87c73c54-781a7f35148d5433.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/8903-fefea3339a02d41b.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/9090-e66485adf8d9d990.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/_not-found/page-a67d9808462c23b1.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/api-keys/page-2d7ee1583bbbd02e.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/api-keys/page-6a3c2bae6fe92b7b.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/consent/page-2ed3a035136bc4e8.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/consent/page-b2f5c91844a32422.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/page-25b90f89af3ea58c.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/page-b65d16c94ecaf69c.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/privacy/page-675b6d05c8f9184f.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/privacy/page-cbee2e1c8ab52145.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/settings/page-0f44da06697cf9f0.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/account/settings/page-563420253577edbf.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/adapters/page-1854631018bc32be.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/agents/page-8353752c176a7c70.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/agents/page-f61a529f110a6040.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/api-demo/page-7f19b9d20d39be28.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/api-demo/page-d1063938f249b8bd.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/audit/page-321b6728b8fff0bb.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/audit/page-ebac35ca961a1277.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/billing/page-6f3dc3bd02924f8e.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/billing/page-fa4a469f814c821a.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/comms/page-0d4f734269addd8f.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/comms/page-79227d426050089c.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/config/page-018d21d683b6e5bc.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/config/page-2aa5a5363ca2a371.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/consent/page-198373205fd316e2.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/consent/page-f2ca39e7713b13f8.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/dashboard/page-1dd5a196f643c60d.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/dashboard/page-530a04d3abbb8cda.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/docs/page-3193b06d094ab654.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/docs/page-330e996dedb87aba.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/layout-0a70f5fc460298b1.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/layout-21f2f99dd5b336e9.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/login/page-33240e6c6034a49d.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/login/page-68ffab6d54a7fdcd.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/logs/page-8a6167aecc4a475c.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/memory/page-9ca8c5d0056de3ff.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/memory/page-e961226941c18f81.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/page-6fdb065a787a4974.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/page-89f87d431be6064a.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/runtime/page-2e728b9c43aa164d.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/runtime/page-c7dd033dc40a72f0.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/services/page-ae9f0bdf11d01a95.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/services/page-b10feb79ca5d75e5.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/sessions/page-13ebe7ef1c16ae11.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/sessions/page-e6c82b16d617f785.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/setup/page-0beb5f5b5a5c20fc.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/setup/page-2595e729eae30c0e.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/status-dashboard/page-1037c987aecc3653.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/status-dashboard/page-2ffd147f6d3162ff.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/system/page-2c5798d58cafcd91.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/system/page-505b1ba4eceb01c3.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/test-auth/page-b0cad31d5cb1b2fa.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/test-auth/page-f3ecd7a8012df230.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/test-login/page-f35117fdc4105801.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/test-login/page-fb583a7924114906.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/test-sdk/page-50f116fd76935563.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/test-sdk/page-c37d8aa5ba623a44.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/tools/page-429aec7a707777ef.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/tools/page-5f705aad60e0c04e.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/users/page-13476b8b0f3808cc.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/users/page-7e500d154ed5bba4.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/wa/page-cc4a9d8a5cb44d08.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/app/wa/page-ec3e429efbc79230.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/framework-9d29490f5ba089ba.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/main-1f554952e47a82c4.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/main-app-26fa8aed029082e5.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/main-app-97b0486ef6bcef25.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/pages/_app-6ce685456e616eb2.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/pages/_error-d4bce98d93fe21e7.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
- ciris_engine/gui_static/_next/static/chunks/webpack-fcebd240b7f8477d.js +1 -0
- ciris_engine/gui_static/_next/static/css/16b94b1fe0cc6e37.css +3 -0
- ciris_engine/gui_static/_next/static/css/77a24ceaae86deff.css +3 -0
- ciris_engine/gui_static/_next/static/media/4cf2300e9c8272f7-s.p.woff2 +0 -0
- ciris_engine/gui_static/_next/static/media/747892c23ea88013-s.woff2 +0 -0
- ciris_engine/gui_static/_next/static/media/8d697b304b401681-s.woff2 +0 -0
- ciris_engine/gui_static/_next/static/media/93f479601ee12b01-s.p.woff2 +0 -0
- ciris_engine/gui_static/_next/static/media/9610d9e46709d722-s.woff2 +0 -0
- ciris_engine/gui_static/_next/static/media/ba015fad6dcf6784-s.woff2 +0 -0
- ciris_engine/gui_static/_next/static/media/d8298875641ec7d4-s.p.woff2 +0 -0
- ciris_engine/gui_static/account/api-keys/index.html +1 -0
- ciris_engine/gui_static/account/api-keys/index.txt +27 -0
- ciris_engine/gui_static/account/consent/index.html +1 -0
- ciris_engine/gui_static/account/consent/index.txt +27 -0
- ciris_engine/gui_static/account/index.html +1 -0
- ciris_engine/gui_static/account/index.txt +27 -0
- ciris_engine/gui_static/account/privacy/index.html +1 -0
- ciris_engine/gui_static/account/privacy/index.txt +27 -0
- ciris_engine/gui_static/account/settings/index.html +1 -0
- ciris_engine/gui_static/account/settings/index.txt +27 -0
- ciris_engine/gui_static/adapters/index.html +1 -0
- ciris_engine/gui_static/adapters/index.txt +27 -0
- ciris_engine/gui_static/agents/index.html +1 -0
- ciris_engine/gui_static/agents/index.txt +27 -0
- ciris_engine/gui_static/andrew-roberts-euBRXcx57T4-unsplash.jpg +0 -0
- ciris_engine/gui_static/api-demo/index.html +1 -0
- ciris_engine/gui_static/api-demo/index.txt +27 -0
- ciris_engine/gui_static/audit/index.html +1 -0
- ciris_engine/gui_static/audit/index.txt +27 -0
- ciris_engine/gui_static/billing/index.html +1 -0
- ciris_engine/gui_static/billing/index.txt +27 -0
- ciris_engine/gui_static/blurryinfo.png +0 -0
- ciris_engine/gui_static/chip-vincent-PkQDwfl9Flc-unsplash.jpg +0 -0
- ciris_engine/gui_static/ciris-architecture.svg +338 -0
- ciris_engine/gui_static/comms/index.html +1 -0
- ciris_engine/gui_static/comms/index.txt +27 -0
- ciris_engine/gui_static/config/index.html +1 -0
- ciris_engine/gui_static/config/index.txt +27 -0
- ciris_engine/gui_static/consent/index.html +1 -0
- ciris_engine/gui_static/consent/index.txt +27 -0
- ciris_engine/gui_static/dashboard/index.html +1 -0
- ciris_engine/gui_static/dashboard/index.txt +27 -0
- ciris_engine/gui_static/docs/index.html +1 -0
- ciris_engine/gui_static/docs/index.txt +27 -0
- ciris_engine/gui_static/eric.png +0 -0
- ciris_engine/gui_static/file.svg +1 -0
- ciris_engine/gui_static/globe.svg +1 -0
- ciris_engine/gui_static/index.html +1 -0
- ciris_engine/gui_static/index.txt +27 -0
- ciris_engine/gui_static/infogfx-1@2x.png +0 -0
- ciris_engine/gui_static/infogfx-2.png +0 -0
- ciris_engine/gui_static/infogfx-dark-1.png +0 -0
- ciris_engine/gui_static/kelly-vohs-soSTXmIxTDU-unsplash.jpg +0 -0
- ciris_engine/gui_static/login/index.html +1 -0
- ciris_engine/gui_static/login/index.txt +27 -0
- ciris_engine/gui_static/logs/index.html +1 -0
- ciris_engine/gui_static/logs/index.txt +27 -0
- ciris_engine/gui_static/memory/index.html +1 -0
- ciris_engine/gui_static/memory/index.txt +27 -0
- ciris_engine/gui_static/nathan-farrish-ArcTfEoBgzs-unsplash.jpg +0 -0
- ciris_engine/gui_static/next.svg +1 -0
- ciris_engine/gui_static/overview.svg +512 -0
- ciris_engine/gui_static/overview1.svg +407 -0
- ciris_engine/gui_static/overview2.svg +370 -0
- ciris_engine/gui_static/pipeline-visualization.svg +278 -0
- ciris_engine/gui_static/privacy-policy.html +160 -0
- ciris_engine/gui_static/runtime/index.html +8 -0
- ciris_engine/gui_static/runtime/index.txt +27 -0
- ciris_engine/gui_static/services/index.html +1 -0
- ciris_engine/gui_static/services/index.txt +27 -0
- ciris_engine/gui_static/sessions/index.html +1 -0
- ciris_engine/gui_static/sessions/index.txt +27 -0
- ciris_engine/gui_static/setup/index.html +1 -0
- ciris_engine/gui_static/setup/index.txt +27 -0
- ciris_engine/gui_static/status-dashboard/index.html +1 -0
- ciris_engine/gui_static/status-dashboard/index.txt +27 -0
- ciris_engine/gui_static/system/index.html +1 -0
- ciris_engine/gui_static/system/index.txt +27 -0
- ciris_engine/gui_static/terms-of-service.html +174 -0
- ciris_engine/gui_static/test-auth/index.html +1 -0
- ciris_engine/gui_static/test-auth/index.txt +27 -0
- ciris_engine/gui_static/test-login/index.html +1 -0
- ciris_engine/gui_static/test-login/index.txt +27 -0
- ciris_engine/gui_static/test-sdk/index.html +1 -0
- ciris_engine/gui_static/test-sdk/index.txt +27 -0
- ciris_engine/gui_static/tools/index.html +1 -0
- ciris_engine/gui_static/tools/index.txt +27 -0
- ciris_engine/gui_static/users/index.html +1 -0
- ciris_engine/gui_static/users/index.txt +27 -0
- ciris_engine/gui_static/vercel.svg +1 -0
- ciris_engine/gui_static/videos/video1.mp4 +0 -0
- ciris_engine/gui_static/videos/video3.mp4 +0 -0
- ciris_engine/gui_static/wa/index.html +1 -0
- ciris_engine/gui_static/wa/index.txt +27 -0
- ciris_engine/gui_static/window.svg +1 -0
- ciris_engine/logic/__init__.py +8 -0
- ciris_engine/logic/adapters/__init__.py +74 -0
- ciris_engine/logic/adapters/api/__init__.py +5 -0
- ciris_engine/logic/adapters/api/adapter.py +1037 -0
- ciris_engine/logic/adapters/api/api_communication.py +370 -0
- ciris_engine/logic/adapters/api/api_document.py +330 -0
- ciris_engine/logic/adapters/api/api_observer.py +24 -0
- ciris_engine/logic/adapters/api/api_runtime_control.py +388 -0
- ciris_engine/logic/adapters/api/api_tools.py +299 -0
- ciris_engine/logic/adapters/api/api_vision.py +215 -0
- ciris_engine/logic/adapters/api/app.py +272 -0
- ciris_engine/logic/adapters/api/auth.py +159 -0
- ciris_engine/logic/adapters/api/config.py +101 -0
- ciris_engine/logic/adapters/api/constants.py +55 -0
- ciris_engine/logic/adapters/api/dependencies/__init__.py +1 -0
- ciris_engine/logic/adapters/api/dependencies/auth.py +260 -0
- ciris_engine/logic/adapters/api/endpoints/__init__.py +1 -0
- ciris_engine/logic/adapters/api/endpoints/emergency.py +86 -0
- ciris_engine/logic/adapters/api/middleware/__init__.py +1 -0
- ciris_engine/logic/adapters/api/middleware/rate_limiter.py +302 -0
- ciris_engine/logic/adapters/api/models.py +29 -0
- ciris_engine/logic/adapters/api/routes/__init__.py +52 -0
- ciris_engine/logic/adapters/api/routes/agent.py +1762 -0
- ciris_engine/logic/adapters/api/routes/audit.py +707 -0
- ciris_engine/logic/adapters/api/routes/auth.py +1745 -0
- ciris_engine/logic/adapters/api/routes/billing.py +895 -0
- ciris_engine/logic/adapters/api/routes/config.py +329 -0
- ciris_engine/logic/adapters/api/routes/connectors.py +534 -0
- ciris_engine/logic/adapters/api/routes/consent.py +637 -0
- ciris_engine/logic/adapters/api/routes/dsar.py +637 -0
- ciris_engine/logic/adapters/api/routes/dsar_multi_source.py +484 -0
- ciris_engine/logic/adapters/api/routes/emergency.py +302 -0
- ciris_engine/logic/adapters/api/routes/memory.py +733 -0
- ciris_engine/logic/adapters/api/routes/memory_filters.py +230 -0
- ciris_engine/logic/adapters/api/routes/memory_models.py +112 -0
- ciris_engine/logic/adapters/api/routes/memory_queries.py +236 -0
- ciris_engine/logic/adapters/api/routes/memory_query_helpers.py +394 -0
- ciris_engine/logic/adapters/api/routes/memory_visualization.py +359 -0
- ciris_engine/logic/adapters/api/routes/memory_visualization_helpers.py +110 -0
- ciris_engine/logic/adapters/api/routes/partnership.py +541 -0
- ciris_engine/logic/adapters/api/routes/setup.py +1374 -0
- ciris_engine/logic/adapters/api/routes/system.py +3049 -0
- ciris_engine/logic/adapters/api/routes/system_extensions.py +952 -0
- ciris_engine/logic/adapters/api/routes/telemetry.py +1987 -0
- ciris_engine/logic/adapters/api/routes/telemetry_converters.py +141 -0
- ciris_engine/logic/adapters/api/routes/telemetry_helpers.py +111 -0
- ciris_engine/logic/adapters/api/routes/telemetry_logs_reader.py +280 -0
- ciris_engine/logic/adapters/api/routes/telemetry_metrics.py +131 -0
- ciris_engine/logic/adapters/api/routes/telemetry_models.py +190 -0
- ciris_engine/logic/adapters/api/routes/telemetry_otlp.py +878 -0
- ciris_engine/logic/adapters/api/routes/telemetry_resource_helpers.py +191 -0
- ciris_engine/logic/adapters/api/routes/tickets.py +541 -0
- ciris_engine/logic/adapters/api/routes/tools.py +556 -0
- ciris_engine/logic/adapters/api/routes/transparency.py +281 -0
- ciris_engine/logic/adapters/api/routes/users.py +981 -0
- ciris_engine/logic/adapters/api/routes/verification.py +373 -0
- ciris_engine/logic/adapters/api/routes/wa.py +369 -0
- ciris_engine/logic/adapters/api/service_configuration.py +177 -0
- ciris_engine/logic/adapters/api/services/__init__.py +1 -0
- ciris_engine/logic/adapters/api/services/auth_service.py +1417 -0
- ciris_engine/logic/adapters/api/services/oauth_security.py +68 -0
- ciris_engine/logic/adapters/base.py +141 -0
- ciris_engine/logic/adapters/base_adapter.py +73 -0
- ciris_engine/logic/adapters/base_observer.py +1141 -0
- ciris_engine/logic/adapters/base_vision.py +312 -0
- ciris_engine/logic/adapters/cirisnode_client.py +307 -0
- ciris_engine/logic/adapters/cli/__init__.py +3 -0
- ciris_engine/logic/adapters/cli/adapter.py +207 -0
- ciris_engine/logic/adapters/cli/cli_adapter.py +902 -0
- ciris_engine/logic/adapters/cli/cli_observer.py +268 -0
- ciris_engine/logic/adapters/cli/cli_tools.py +427 -0
- ciris_engine/logic/adapters/cli/cli_wa_service.py +134 -0
- ciris_engine/logic/adapters/cli/config.py +73 -0
- ciris_engine/logic/adapters/discord/__init__.py +3 -0
- ciris_engine/logic/adapters/discord/adapter.py +783 -0
- ciris_engine/logic/adapters/discord/ciris_discord_client.py +159 -0
- ciris_engine/logic/adapters/discord/config.py +177 -0
- ciris_engine/logic/adapters/discord/constants.py +185 -0
- ciris_engine/logic/adapters/discord/discord-stubs.pyi +50 -0
- ciris_engine/logic/adapters/discord/discord_adapter.py +1584 -0
- ciris_engine/logic/adapters/discord/discord_audit.py +150 -0
- ciris_engine/logic/adapters/discord/discord_channel_manager.py +351 -0
- ciris_engine/logic/adapters/discord/discord_connection_manager.py +313 -0
- ciris_engine/logic/adapters/discord/discord_embed_formatter.py +369 -0
- ciris_engine/logic/adapters/discord/discord_error_classifier.py +302 -0
- ciris_engine/logic/adapters/discord/discord_error_handler.py +316 -0
- ciris_engine/logic/adapters/discord/discord_guidance_handler.py +460 -0
- ciris_engine/logic/adapters/discord/discord_message_handler.py +207 -0
- ciris_engine/logic/adapters/discord/discord_observer.py +670 -0
- ciris_engine/logic/adapters/discord/discord_rate_limiter.py +249 -0
- ciris_engine/logic/adapters/discord/discord_reaction_handler.py +278 -0
- ciris_engine/logic/adapters/discord/discord_tool_handler.py +465 -0
- ciris_engine/logic/adapters/discord/discord_tool_service.py +790 -0
- ciris_engine/logic/adapters/discord/discord_tools.py +90 -0
- ciris_engine/logic/adapters/discord/discord_vision_helper.py +148 -0
- ciris_engine/logic/adapters/discord/py.typed +0 -0
- ciris_engine/logic/adapters/document_parser.py +320 -0
- ciris_engine/logic/audit/__init__.py +10 -0
- ciris_engine/logic/audit/hash_chain.py +313 -0
- ciris_engine/logic/audit/signature_manager.py +352 -0
- ciris_engine/logic/audit/verifier.py +408 -0
- ciris_engine/logic/buses/__init__.py +21 -0
- ciris_engine/logic/buses/base_bus.py +178 -0
- ciris_engine/logic/buses/bus_manager.py +121 -0
- ciris_engine/logic/buses/communication_bus.py +387 -0
- ciris_engine/logic/buses/llm_bus.py +722 -0
- ciris_engine/logic/buses/memory_bus.py +577 -0
- ciris_engine/logic/buses/prohibitions.py +502 -0
- ciris_engine/logic/buses/runtime_control_bus.py +539 -0
- ciris_engine/logic/buses/tool_bus.py +482 -0
- ciris_engine/logic/buses/wise_bus.py +684 -0
- ciris_engine/logic/config/__init__.py +25 -0
- ciris_engine/logic/config/bootstrap.py +255 -0
- ciris_engine/logic/config/config_accessor.py +202 -0
- ciris_engine/logic/config/db_paths.py +194 -0
- ciris_engine/logic/config/env_utils.py +39 -0
- ciris_engine/logic/conscience/__init__.py +16 -0
- ciris_engine/logic/conscience/build_deferral_package.py +0 -0
- ciris_engine/logic/conscience/core.py +688 -0
- ciris_engine/logic/conscience/interface.py +33 -0
- ciris_engine/logic/conscience/registry.py +76 -0
- ciris_engine/logic/conscience/thought_depth_guardrail.py +231 -0
- ciris_engine/logic/conscience/updated_status_conscience.py +156 -0
- ciris_engine/logic/context/__init__.py +10 -0
- ciris_engine/logic/context/batch_context.py +550 -0
- ciris_engine/logic/context/builder.py +149 -0
- ciris_engine/logic/context/channel_resolution.py +136 -0
- ciris_engine/logic/context/secrets_snapshot.py +52 -0
- ciris_engine/logic/context/system_snapshot.py +116 -0
- ciris_engine/logic/context/system_snapshot_helpers.py +1651 -0
- ciris_engine/logic/covenant/__init__.py +33 -0
- ciris_engine/logic/covenant/executor.py +303 -0
- ciris_engine/logic/covenant/extractor.py +382 -0
- ciris_engine/logic/covenant/handler.py +241 -0
- ciris_engine/logic/covenant/verifier.py +383 -0
- ciris_engine/logic/dma/__init__.py +15 -0
- ciris_engine/logic/dma/action_selection/__init__.py +11 -0
- ciris_engine/logic/dma/action_selection/action_instruction_generator.py +444 -0
- ciris_engine/logic/dma/action_selection/context_builder.py +508 -0
- ciris_engine/logic/dma/action_selection/faculty_integration.py +193 -0
- ciris_engine/logic/dma/action_selection/special_cases.py +132 -0
- ciris_engine/logic/dma/action_selection_pdma.py +365 -0
- ciris_engine/logic/dma/base_dma.py +335 -0
- ciris_engine/logic/dma/csdma.py +239 -0
- ciris_engine/logic/dma/dma_executor.py +575 -0
- ciris_engine/logic/dma/dsdma_base.py +410 -0
- ciris_engine/logic/dma/exceptions.py +4 -0
- ciris_engine/logic/dma/factory.py +150 -0
- ciris_engine/logic/dma/pdma.py +120 -0
- ciris_engine/logic/dma/prompt_loader.py +189 -0
- ciris_engine/logic/dma/prompts/action_selection_pdma.yml +58 -0
- ciris_engine/logic/dma/prompts/csdma_common_sense.yml +28 -0
- ciris_engine/logic/dma/prompts/dsdma_base.yml +17 -0
- ciris_engine/logic/dma/prompts/pdma_ethical.yml +42 -0
- ciris_engine/logic/formatters/__init__.py +26 -0
- ciris_engine/logic/formatters/crisis_resources.py +80 -0
- ciris_engine/logic/formatters/escalation.py +21 -0
- ciris_engine/logic/formatters/identity.py +224 -0
- ciris_engine/logic/formatters/prompt_blocks.py +64 -0
- ciris_engine/logic/formatters/system_snapshot.py +193 -0
- ciris_engine/logic/formatters/user_profiles.py +108 -0
- ciris_engine/logic/handlers/__init__.py +1 -0
- ciris_engine/logic/handlers/control/__init__.py +1 -0
- ciris_engine/logic/handlers/control/defer_handler.py +195 -0
- ciris_engine/logic/handlers/control/ponder_handler.py +154 -0
- ciris_engine/logic/handlers/control/reject_handler.py +81 -0
- ciris_engine/logic/handlers/external/__init__.py +1 -0
- ciris_engine/logic/handlers/external/observe_handler.py +154 -0
- ciris_engine/logic/handlers/external/speak_handler.py +250 -0
- ciris_engine/logic/handlers/external/tool_handler.py +148 -0
- ciris_engine/logic/handlers/memory/__init__.py +1 -0
- ciris_engine/logic/handlers/memory/forget_handler.py +107 -0
- ciris_engine/logic/handlers/memory/memorize_handler.py +391 -0
- ciris_engine/logic/handlers/memory/recall_handler.py +213 -0
- ciris_engine/logic/handlers/terminal/__init__.py +1 -0
- ciris_engine/logic/handlers/terminal/task_complete_handler.py +299 -0
- ciris_engine/logic/infrastructure/__init__.py +1 -0
- ciris_engine/logic/infrastructure/handlers/__init__.py +8 -0
- ciris_engine/logic/infrastructure/handlers/action_dispatcher.py +382 -0
- ciris_engine/logic/infrastructure/handlers/base_handler.py +450 -0
- ciris_engine/logic/infrastructure/handlers/exceptions.py +2 -0
- ciris_engine/logic/infrastructure/handlers/handler_registry.py +59 -0
- ciris_engine/logic/infrastructure/handlers/helpers.py +55 -0
- ciris_engine/logic/infrastructure/step_streaming.py +149 -0
- ciris_engine/logic/infrastructure/sub_services/__init__.py +1 -0
- ciris_engine/logic/infrastructure/sub_services/identity_variance_monitor.py +1035 -0
- ciris_engine/logic/infrastructure/sub_services/pattern_analysis_loop.py +758 -0
- ciris_engine/logic/infrastructure/sub_services/wa_cli_bootstrap.py +229 -0
- ciris_engine/logic/infrastructure/sub_services/wa_cli_display.py +176 -0
- ciris_engine/logic/infrastructure/sub_services/wa_cli_oauth.py +404 -0
- ciris_engine/logic/infrastructure/sub_services/wa_cli_wizard.py +181 -0
- ciris_engine/logic/persistence/__init__.py +130 -0
- ciris_engine/logic/persistence/analytics.py +97 -0
- ciris_engine/logic/persistence/db/__init__.py +28 -0
- ciris_engine/logic/persistence/db/core.py +520 -0
- ciris_engine/logic/persistence/db/dialect.py +380 -0
- ciris_engine/logic/persistence/db/execution_helpers.py +216 -0
- ciris_engine/logic/persistence/db/migration_runner.py +191 -0
- ciris_engine/logic/persistence/db/operations.py +313 -0
- ciris_engine/logic/persistence/db/query_builder.py +232 -0
- ciris_engine/logic/persistence/db/retry.py +154 -0
- ciris_engine/logic/persistence/db/setup.py +18 -0
- ciris_engine/logic/persistence/migrations/postgres/001_initial_schema.sql +4 -0
- ciris_engine/logic/persistence/migrations/postgres/002_add_retry_status.sql +3 -0
- ciris_engine/logic/persistence/migrations/postgres/003_add_task_update_tracking.sql +8 -0
- ciris_engine/logic/persistence/migrations/postgres/004_add_occurrence_id.sql +54 -0
- ciris_engine/logic/persistence/migrations/postgres/005_add_consolidation_locks.sql +22 -0
- ciris_engine/logic/persistence/migrations/postgres/006_add_correlation_id_unique_index.sql +16 -0
- ciris_engine/logic/persistence/migrations/postgres/007_add_dsar_tickets.sql +39 -0
- ciris_engine/logic/persistence/migrations/postgres/008_rename_to_tickets_add_sop.sql +123 -0
- ciris_engine/logic/persistence/migrations/postgres/009_add_ticket_status_columns.sql +39 -0
- ciris_engine/logic/persistence/migrations/postgres/010_add_images_to_tasks.sql +5 -0
- ciris_engine/logic/persistence/migrations/sqlite/001_initial_schema.sql +357 -0
- ciris_engine/logic/persistence/migrations/sqlite/002_add_retry_status.sql +3 -0
- ciris_engine/logic/persistence/migrations/sqlite/003_add_task_update_tracking.sql +8 -0
- ciris_engine/logic/persistence/migrations/sqlite/004_add_occurrence_id.sql +45 -0
- ciris_engine/logic/persistence/migrations/sqlite/005_add_consolidation_locks.sql +22 -0
- ciris_engine/logic/persistence/migrations/sqlite/006_add_correlation_id_unique_index.sql +16 -0
- ciris_engine/logic/persistence/migrations/sqlite/007_add_dsar_tickets.sql +39 -0
- ciris_engine/logic/persistence/migrations/sqlite/008_rename_to_tickets_add_sop.sql +120 -0
- ciris_engine/logic/persistence/migrations/sqlite/009_add_ticket_status_columns.sql +129 -0
- ciris_engine/logic/persistence/migrations/sqlite/010_add_images_to_tasks.sql +17 -0
- ciris_engine/logic/persistence/models/__init__.py +141 -0
- ciris_engine/logic/persistence/models/correlations.py +881 -0
- ciris_engine/logic/persistence/models/deferral.py +68 -0
- ciris_engine/logic/persistence/models/dsar.py +286 -0
- ciris_engine/logic/persistence/models/graph.py +362 -0
- ciris_engine/logic/persistence/models/identity.py +264 -0
- ciris_engine/logic/persistence/models/queue_status.py +139 -0
- ciris_engine/logic/persistence/models/tasks.py +1043 -0
- ciris_engine/logic/persistence/models/thoughts.py +400 -0
- ciris_engine/logic/persistence/models/tickets.py +518 -0
- ciris_engine/logic/persistence/stores/__init__.py +13 -0
- ciris_engine/logic/persistence/stores/auth_helpers.py +117 -0
- ciris_engine/logic/persistence/stores/authentication_store.py +414 -0
- ciris_engine/logic/persistence/utils.py +212 -0
- ciris_engine/logic/processors/__init__.py +30 -0
- ciris_engine/logic/processors/core/__init__.py +1 -0
- ciris_engine/logic/processors/core/base_processor.py +280 -0
- ciris_engine/logic/processors/core/main_processor.py +1777 -0
- ciris_engine/logic/processors/core/step_decorators.py +1583 -0
- ciris_engine/logic/processors/core/thought_processor/__init__.py +20 -0
- ciris_engine/logic/processors/core/thought_processor/action_execution.py +49 -0
- ciris_engine/logic/processors/core/thought_processor/conscience_execution.py +382 -0
- ciris_engine/logic/processors/core/thought_processor/finalize_action.py +66 -0
- ciris_engine/logic/processors/core/thought_processor/gather_context.py +120 -0
- ciris_engine/logic/processors/core/thought_processor/main.py +920 -0
- ciris_engine/logic/processors/core/thought_processor/perform_aspdma.py +86 -0
- ciris_engine/logic/processors/core/thought_processor/perform_dmas.py +106 -0
- ciris_engine/logic/processors/core/thought_processor/recursive_processing.py +237 -0
- ciris_engine/logic/processors/core/thought_processor/round_complete.py +52 -0
- ciris_engine/logic/processors/core/thought_processor/start_round.py +64 -0
- ciris_engine/logic/processors/exceptions.py +59 -0
- ciris_engine/logic/processors/states/__init__.py +1 -0
- ciris_engine/logic/processors/states/dream_processor.py +1381 -0
- ciris_engine/logic/processors/states/play_processor.py +141 -0
- ciris_engine/logic/processors/states/shutdown_processor.py +623 -0
- ciris_engine/logic/processors/states/solitude_processor.py +305 -0
- ciris_engine/logic/processors/states/wakeup_processor.py +802 -0
- ciris_engine/logic/processors/states/work_processor.py +742 -0
- ciris_engine/logic/processors/support/__init__.py +1 -0
- ciris_engine/logic/processors/support/dma_orchestrator.py +336 -0
- ciris_engine/logic/processors/support/processing_queue.py +133 -0
- ciris_engine/logic/processors/support/shutdown_condition_evaluator.py +294 -0
- ciris_engine/logic/processors/support/state_manager.py +358 -0
- ciris_engine/logic/processors/support/task_manager.py +303 -0
- ciris_engine/logic/processors/support/thought_escalation.py +116 -0
- ciris_engine/logic/processors/support/thought_manager.py +328 -0
- ciris_engine/logic/processors/support/thought_manager_enhanced.py +105 -0
- ciris_engine/logic/registries/__init__.py +34 -0
- ciris_engine/logic/registries/base.py +653 -0
- ciris_engine/logic/registries/circuit_breaker.py +275 -0
- ciris_engine/logic/registries/typed_registries.py +184 -0
- ciris_engine/logic/runtime/__init__.py +7 -0
- ciris_engine/logic/runtime/adapter_loader.py +261 -0
- ciris_engine/logic/runtime/adapter_manager.py +1053 -0
- ciris_engine/logic/runtime/ciris_runtime.py +2342 -0
- ciris_engine/logic/runtime/ciris_runtime_helpers.py +923 -0
- ciris_engine/logic/runtime/component_builder.py +361 -0
- ciris_engine/logic/runtime/identity_manager.py +219 -0
- ciris_engine/logic/runtime/module_loader.py +207 -0
- ciris_engine/logic/runtime/prevent_sideeffects.py +30 -0
- ciris_engine/logic/runtime/runtime_interface.py +23 -0
- ciris_engine/logic/runtime/service_initializer.py +1623 -0
- ciris_engine/logic/secrets/__init__.py +30 -0
- ciris_engine/logic/secrets/encryption.py +175 -0
- ciris_engine/logic/secrets/filter.py +295 -0
- ciris_engine/logic/secrets/service.py +652 -0
- ciris_engine/logic/secrets/store.py +669 -0
- ciris_engine/logic/services/__init__.py +1 -0
- ciris_engine/logic/services/adaptation/__init__.py +3 -0
- ciris_engine/logic/services/base_graph_service.py +142 -0
- ciris_engine/logic/services/base_infrastructure_service.py +69 -0
- ciris_engine/logic/services/base_scheduled_service.py +136 -0
- ciris_engine/logic/services/base_service.py +247 -0
- ciris_engine/logic/services/governance/__init__.py +3 -0
- ciris_engine/logic/services/governance/adaptive_filter/__init__.py +14 -0
- ciris_engine/logic/services/governance/adaptive_filter/service.py +818 -0
- ciris_engine/logic/services/governance/consent/__init__.py +53 -0
- ciris_engine/logic/services/governance/consent/air.py +403 -0
- ciris_engine/logic/services/governance/consent/decay.py +324 -0
- ciris_engine/logic/services/governance/consent/dsar_automation.py +589 -0
- ciris_engine/logic/services/governance/consent/exceptions.py +106 -0
- ciris_engine/logic/services/governance/consent/metrics.py +270 -0
- ciris_engine/logic/services/governance/consent/partnership.py +533 -0
- ciris_engine/logic/services/governance/consent/service.py +1256 -0
- ciris_engine/logic/services/governance/dsar/__init__.py +29 -0
- ciris_engine/logic/services/governance/dsar/orchestrator.py +977 -0
- ciris_engine/logic/services/governance/dsar/schemas.py +141 -0
- ciris_engine/logic/services/governance/dsar/signature_service.py +283 -0
- ciris_engine/logic/services/governance/self_observation/__init__.py +20 -0
- ciris_engine/logic/services/governance/self_observation/service.py +1153 -0
- ciris_engine/logic/services/governance/visibility/__init__.py +17 -0
- ciris_engine/logic/services/governance/visibility/service.py +512 -0
- ciris_engine/logic/services/governance/wise_authority/__init__.py +15 -0
- ciris_engine/logic/services/governance/wise_authority/service.py +827 -0
- ciris_engine/logic/services/graph/__init__.py +5 -0
- ciris_engine/logic/services/graph/audit_service/__init__.py +5 -0
- ciris_engine/logic/services/graph/audit_service/service.py +1675 -0
- ciris_engine/logic/services/graph/base.py +208 -0
- ciris_engine/logic/services/graph/config_service/__init__.py +5 -0
- ciris_engine/logic/services/graph/config_service/service.py +372 -0
- ciris_engine/logic/services/graph/incident_service/__init__.py +5 -0
- ciris_engine/logic/services/graph/incident_service/service.py +803 -0
- ciris_engine/logic/services/graph/memory_service.py +1120 -0
- ciris_engine/logic/services/graph/telemetry_service/__init__.py +5 -0
- ciris_engine/logic/services/graph/telemetry_service/exceptions.py +104 -0
- ciris_engine/logic/services/graph/telemetry_service/helpers.py +1337 -0
- ciris_engine/logic/services/graph/telemetry_service/service.py +2429 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/__init__.py +17 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/aggregation_helpers.py +355 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/cleanup_helpers.py +438 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/compressor.py +260 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/__init__.py +27 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/audit.py +326 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/conversation.py +291 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/memory.py +197 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/metrics.py +251 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/task.py +257 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/trace.py +363 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/data_converter.py +545 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/date_calculation_helpers.py +193 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/db_query_helpers.py +296 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/edge_helpers.py +92 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/edge_manager.py +896 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/extensive_helpers.py +322 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/period_manager.py +152 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/profound_helpers.py +277 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/query_manager.py +812 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/service.py +1692 -0
- ciris_engine/logic/services/graph/tsdb_consolidation/sql_builders.py +363 -0
- ciris_engine/logic/services/infrastructure/__init__.py +1 -0
- ciris_engine/logic/services/infrastructure/authentication/__init__.py +5 -0
- ciris_engine/logic/services/infrastructure/authentication/service.py +1634 -0
- ciris_engine/logic/services/infrastructure/database_maintenance/__init__.py +15 -0
- ciris_engine/logic/services/infrastructure/database_maintenance/service.py +764 -0
- ciris_engine/logic/services/infrastructure/resource_monitor/__init__.py +7 -0
- ciris_engine/logic/services/infrastructure/resource_monitor/ciris_billing_provider.py +755 -0
- ciris_engine/logic/services/infrastructure/resource_monitor/service.py +409 -0
- ciris_engine/logic/services/infrastructure/resource_monitor/simple_credit_provider.py +129 -0
- ciris_engine/logic/services/lifecycle/__init__.py +3 -0
- ciris_engine/logic/services/lifecycle/initialization/__init__.py +10 -0
- ciris_engine/logic/services/lifecycle/initialization/service.py +312 -0
- ciris_engine/logic/services/lifecycle/scheduler/__init__.py +5 -0
- ciris_engine/logic/services/lifecycle/scheduler/service.py +607 -0
- ciris_engine/logic/services/lifecycle/shutdown/__init__.py +9 -0
- ciris_engine/logic/services/lifecycle/shutdown/service.py +378 -0
- ciris_engine/logic/services/lifecycle/time/__init__.py +15 -0
- ciris_engine/logic/services/lifecycle/time/service.py +259 -0
- ciris_engine/logic/services/memory_service/__init__.py +8 -0
- ciris_engine/logic/services/mixins/__init__.py +13 -0
- ciris_engine/logic/services/mixins/example_usage.py +200 -0
- ciris_engine/logic/services/mixins/request_metrics.py +179 -0
- ciris_engine/logic/services/runtime/__init__.py +3 -0
- ciris_engine/logic/services/runtime/adapter_configuration/__init__.py +16 -0
- ciris_engine/logic/services/runtime/adapter_configuration/service.py +674 -0
- ciris_engine/logic/services/runtime/adapter_configuration/session.py +67 -0
- ciris_engine/logic/services/runtime/control_service/__init__.py +5 -0
- ciris_engine/logic/services/runtime/control_service/service.py +2269 -0
- ciris_engine/logic/services/runtime/llm_service/__init__.py +14 -0
- ciris_engine/logic/services/runtime/llm_service/pricing_calculator.py +279 -0
- ciris_engine/logic/services/runtime/llm_service/service.py +930 -0
- ciris_engine/logic/services/tools/__init__.py +5 -0
- ciris_engine/logic/services/tools/core_tool_service/__init__.py +8 -0
- ciris_engine/logic/services/tools/core_tool_service/service.py +852 -0
- ciris_engine/logic/setup/__init__.py +1 -0
- ciris_engine/logic/setup/first_run.py +250 -0
- ciris_engine/logic/setup/wizard.py +327 -0
- ciris_engine/logic/telemetry/__init__.py +46 -0
- ciris_engine/logic/telemetry/core.py +239 -0
- ciris_engine/logic/telemetry/hot_cold_config.py +133 -0
- ciris_engine/logic/telemetry/log_collector.py +190 -0
- ciris_engine/logic/telemetry/resource_monitor.py +7 -0
- ciris_engine/logic/telemetry/security.py +79 -0
- ciris_engine/logic/utils/__init__.py +18 -0
- ciris_engine/logic/utils/channel_utils.py +75 -0
- ciris_engine/logic/utils/consent/__init__.py +1 -0
- ciris_engine/logic/utils/consent/partnership_utils.py +172 -0
- ciris_engine/logic/utils/constants.py +92 -0
- ciris_engine/logic/utils/context_utils.py +145 -0
- ciris_engine/logic/utils/directory_setup.py +533 -0
- ciris_engine/logic/utils/graphql_context_provider.py +152 -0
- ciris_engine/logic/utils/identity_resolution.py +843 -0
- ciris_engine/logic/utils/incident_capture_handler.py +303 -0
- ciris_engine/logic/utils/initialization_manager.py +74 -0
- ciris_engine/logic/utils/jsondict_helpers.py +290 -0
- ciris_engine/logic/utils/log_sanitizer.py +97 -0
- ciris_engine/logic/utils/logging_config.py +151 -0
- ciris_engine/logic/utils/observability_decorators.py +544 -0
- ciris_engine/logic/utils/occurrence_utils.py +155 -0
- ciris_engine/logic/utils/path_resolution.py +281 -0
- ciris_engine/logic/utils/platform_detection.py +286 -0
- ciris_engine/logic/utils/privacy.py +266 -0
- ciris_engine/logic/utils/profile_loader.py +124 -0
- ciris_engine/logic/utils/profile_manager.py +16 -0
- ciris_engine/logic/utils/runtime_utils.py +69 -0
- ciris_engine/logic/utils/shutdown_manager.py +107 -0
- ciris_engine/logic/utils/task_formatters.py +60 -0
- ciris_engine/logic/utils/task_thought_factory.py +404 -0
- ciris_engine/logic/utils/thought_utils.py +54 -0
- ciris_engine/logic/utils/user_utils.py +70 -0
- ciris_engine/protocols/__init__.py +0 -0
- ciris_engine/protocols/adapters/__init__.py +35 -0
- ciris_engine/protocols/adapters/base.py +149 -0
- ciris_engine/protocols/adapters/configurable.py +265 -0
- ciris_engine/protocols/adapters/message.py +90 -0
- ciris_engine/protocols/audit/__init__.py +1 -0
- ciris_engine/protocols/buses/__init__.py +1 -0
- ciris_engine/protocols/config/__init__.py +1 -0
- ciris_engine/protocols/conscience/__init__.py +1 -0
- ciris_engine/protocols/consent.py +88 -0
- ciris_engine/protocols/context/__init__.py +1 -0
- ciris_engine/protocols/data/__init__.py +1 -0
- ciris_engine/protocols/dma/__init__.py +1 -0
- ciris_engine/protocols/dma/base.py +107 -0
- ciris_engine/protocols/faculties.py +34 -0
- ciris_engine/protocols/formatters/__init__.py +1 -0
- ciris_engine/protocols/handlers/__init__.py +1 -0
- ciris_engine/protocols/infrastructure/__init__.py +25 -0
- ciris_engine/protocols/infrastructure/base.py +377 -0
- ciris_engine/protocols/persistence/__init__.py +1 -0
- ciris_engine/protocols/pipeline_control.py +609 -0
- ciris_engine/protocols/processors/__init__.py +19 -0
- ciris_engine/protocols/processors/agent.py +299 -0
- ciris_engine/protocols/processors/base.py +130 -0
- ciris_engine/protocols/processors/orchestration.py +62 -0
- ciris_engine/protocols/registries/__init__.py +1 -0
- ciris_engine/protocols/runtime/__init__.py +1 -0
- ciris_engine/protocols/runtime/base.py +163 -0
- ciris_engine/protocols/secrets/__init__.py +1 -0
- ciris_engine/protocols/services/__init__.py +80 -0
- ciris_engine/protocols/services/adaptation/__init__.py +7 -0
- ciris_engine/protocols/services/adaptation/self_observation.py +265 -0
- ciris_engine/protocols/services/governance/__init__.py +20 -0
- ciris_engine/protocols/services/governance/communication.py +58 -0
- ciris_engine/protocols/services/governance/filter.py +56 -0
- ciris_engine/protocols/services/governance/visibility.py +32 -0
- ciris_engine/protocols/services/governance/wa_auth.py +192 -0
- ciris_engine/protocols/services/governance/wise_authority.py +75 -0
- ciris_engine/protocols/services/graph/__init__.py +19 -0
- ciris_engine/protocols/services/graph/audit.py +92 -0
- ciris_engine/protocols/services/graph/config.py +54 -0
- ciris_engine/protocols/services/graph/incident_management.py +103 -0
- ciris_engine/protocols/services/graph/memory.py +110 -0
- ciris_engine/protocols/services/graph/telemetry.py +51 -0
- ciris_engine/protocols/services/graph/tsdb_consolidation.py +87 -0
- ciris_engine/protocols/services/infrastructure/__init__.py +11 -0
- ciris_engine/protocols/services/infrastructure/authentication.py +159 -0
- ciris_engine/protocols/services/infrastructure/credit_gate.py +46 -0
- ciris_engine/protocols/services/infrastructure/database_maintenance.py +25 -0
- ciris_engine/protocols/services/infrastructure/resource_monitor.py +83 -0
- ciris_engine/protocols/services/lifecycle/__init__.py +13 -0
- ciris_engine/protocols/services/lifecycle/initialization.py +41 -0
- ciris_engine/protocols/services/lifecycle/scheduler.py +42 -0
- ciris_engine/protocols/services/lifecycle/shutdown.py +50 -0
- ciris_engine/protocols/services/lifecycle/time.py +31 -0
- ciris_engine/protocols/services/runtime/__init__.py +13 -0
- ciris_engine/protocols/services/runtime/llm.py +50 -0
- ciris_engine/protocols/services/runtime/runtime_control.py +193 -0
- ciris_engine/protocols/services/runtime/secrets.py +100 -0
- ciris_engine/protocols/services/runtime/tool.py +123 -0
- ciris_engine/protocols/telemetry/__init__.py +1 -0
- ciris_engine/protocols/utils/__init__.py +1 -0
- ciris_engine/schemas/__init__.py +112 -0
- ciris_engine/schemas/actions/__init__.py +37 -0
- ciris_engine/schemas/actions/parameters.py +137 -0
- ciris_engine/schemas/adapters/__init__.py +13 -0
- ciris_engine/schemas/adapters/cirisnode.py +135 -0
- ciris_engine/schemas/adapters/cli.py +97 -0
- ciris_engine/schemas/adapters/cli_tools.py +98 -0
- ciris_engine/schemas/adapters/discord.py +125 -0
- ciris_engine/schemas/adapters/graphql_core.py +144 -0
- ciris_engine/schemas/adapters/registration.py +47 -0
- ciris_engine/schemas/adapters/runtime_context.py +48 -0
- ciris_engine/schemas/adapters/tool_execution.py +45 -0
- ciris_engine/schemas/adapters/tools.py +96 -0
- ciris_engine/schemas/api/__init__.py +1 -0
- ciris_engine/schemas/api/agent.py +50 -0
- ciris_engine/schemas/api/audit.py +38 -0
- ciris_engine/schemas/api/auth.py +351 -0
- ciris_engine/schemas/api/config_security.py +242 -0
- ciris_engine/schemas/api/emergency.py +111 -0
- ciris_engine/schemas/api/responses.py +72 -0
- ciris_engine/schemas/api/runtime.py +26 -0
- ciris_engine/schemas/api/telemetry.py +109 -0
- ciris_engine/schemas/api/wa.py +90 -0
- ciris_engine/schemas/audit/__init__.py +13 -0
- ciris_engine/schemas/audit/core.py +139 -0
- ciris_engine/schemas/audit/hash_chain.py +58 -0
- ciris_engine/schemas/audit/verification.py +131 -0
- ciris_engine/schemas/buses/__init__.py +1 -0
- ciris_engine/schemas/config/__init__.py +41 -0
- ciris_engine/schemas/config/agent.py +279 -0
- ciris_engine/schemas/config/cognitive_state_behaviors.py +194 -0
- ciris_engine/schemas/config/default_dsar_sops.py +178 -0
- ciris_engine/schemas/config/essential.py +195 -0
- ciris_engine/schemas/config/tickets.py +86 -0
- ciris_engine/schemas/conscience/__init__.py +25 -0
- ciris_engine/schemas/conscience/context.py +34 -0
- ciris_engine/schemas/conscience/core.py +145 -0
- ciris_engine/schemas/conscience/results.py +24 -0
- ciris_engine/schemas/consent/__init__.py +5 -0
- ciris_engine/schemas/consent/core.py +404 -0
- ciris_engine/schemas/context/__init__.py +1 -0
- ciris_engine/schemas/covenant.py +382 -0
- ciris_engine/schemas/data/__init__.py +1 -0
- ciris_engine/schemas/dma/__init__.py +16 -0
- ciris_engine/schemas/dma/core.py +199 -0
- ciris_engine/schemas/dma/faculty.py +192 -0
- ciris_engine/schemas/dma/prompts.py +172 -0
- ciris_engine/schemas/dma/results.py +103 -0
- ciris_engine/schemas/formatters/__init__.py +1 -0
- ciris_engine/schemas/handlers/__init__.py +10 -0
- ciris_engine/schemas/handlers/context.py +119 -0
- ciris_engine/schemas/handlers/contexts.py +100 -0
- ciris_engine/schemas/handlers/core.py +167 -0
- ciris_engine/schemas/handlers/memory_schemas.py +67 -0
- ciris_engine/schemas/handlers/schemas.py +95 -0
- ciris_engine/schemas/identity.py +149 -0
- ciris_engine/schemas/infrastructure/__init__.py +1 -0
- ciris_engine/schemas/infrastructure/base.py +256 -0
- ciris_engine/schemas/infrastructure/behavioral_patterns.py +129 -0
- ciris_engine/schemas/infrastructure/feedback_loop.py +57 -0
- ciris_engine/schemas/infrastructure/identity_variance.py +141 -0
- ciris_engine/schemas/infrastructure/oauth.py +175 -0
- ciris_engine/schemas/infrastructure/wa_cli_wizard.py +54 -0
- ciris_engine/schemas/persistence/__init__.py +34 -0
- ciris_engine/schemas/persistence/core.py +140 -0
- ciris_engine/schemas/persistence/correlations.py +73 -0
- ciris_engine/schemas/persistence/postgres/__init__.py +1 -0
- ciris_engine/schemas/persistence/postgres/tables.py +280 -0
- ciris_engine/schemas/persistence/sqlite/__init__.py +1 -0
- ciris_engine/schemas/persistence/sqlite/tables.py +281 -0
- ciris_engine/schemas/platform.py +149 -0
- ciris_engine/schemas/processors/__init__.py +26 -0
- ciris_engine/schemas/processors/base.py +130 -0
- ciris_engine/schemas/processors/cognitive.py +77 -0
- ciris_engine/schemas/processors/context.py +35 -0
- ciris_engine/schemas/processors/core.py +152 -0
- ciris_engine/schemas/processors/dma.py +105 -0
- ciris_engine/schemas/processors/error.py +122 -0
- ciris_engine/schemas/processors/main.py +109 -0
- ciris_engine/schemas/processors/phase_results.py +21 -0
- ciris_engine/schemas/processors/results.py +99 -0
- ciris_engine/schemas/processors/solitude.py +79 -0
- ciris_engine/schemas/processors/state.py +202 -0
- ciris_engine/schemas/processors/state_example.py +177 -0
- ciris_engine/schemas/processors/states.py +21 -0
- ciris_engine/schemas/processors/status.py +34 -0
- ciris_engine/schemas/registries/__init__.py +1 -0
- ciris_engine/schemas/registries/base.py +66 -0
- ciris_engine/schemas/resources/__init__.py +15 -0
- ciris_engine/schemas/resources/crisis.py +315 -0
- ciris_engine/schemas/runtime/__init__.py +42 -0
- ciris_engine/schemas/runtime/adapter_management.py +186 -0
- ciris_engine/schemas/runtime/api.py +58 -0
- ciris_engine/schemas/runtime/audit.py +50 -0
- ciris_engine/schemas/runtime/bootstrap.py +33 -0
- ciris_engine/schemas/runtime/contexts.py +61 -0
- ciris_engine/schemas/runtime/core.py +161 -0
- ciris_engine/schemas/runtime/enums.py +167 -0
- ciris_engine/schemas/runtime/extended.py +232 -0
- ciris_engine/schemas/runtime/manifest.py +311 -0
- ciris_engine/schemas/runtime/memory.py +60 -0
- ciris_engine/schemas/runtime/messages.py +108 -0
- ciris_engine/schemas/runtime/models.py +156 -0
- ciris_engine/schemas/runtime/processing_context.py +43 -0
- ciris_engine/schemas/runtime/protocols_core.py +96 -0
- ciris_engine/schemas/runtime/resources.py +33 -0
- ciris_engine/schemas/runtime/system_context.py +417 -0
- ciris_engine/schemas/secrets/__init__.py +1 -0
- ciris_engine/schemas/secrets/core.py +267 -0
- ciris_engine/schemas/secrets/service.py +95 -0
- ciris_engine/schemas/services/__init__.py +33 -0
- ciris_engine/schemas/services/audit_summary_node.py +172 -0
- ciris_engine/schemas/services/authority/__init__.py +39 -0
- ciris_engine/schemas/services/authority/jwt.py +158 -0
- ciris_engine/schemas/services/authority/wa_updates.py +138 -0
- ciris_engine/schemas/services/authority/wise_authority.py +163 -0
- ciris_engine/schemas/services/authority_core.py +370 -0
- ciris_engine/schemas/services/capabilities.py +72 -0
- ciris_engine/schemas/services/community_core.py +95 -0
- ciris_engine/schemas/services/context.py +111 -0
- ciris_engine/schemas/services/conversation_summary_node.py +189 -0
- ciris_engine/schemas/services/core/__init__.py +153 -0
- ciris_engine/schemas/services/core/runtime.py +262 -0
- ciris_engine/schemas/services/core/runtime_config.py +117 -0
- ciris_engine/schemas/services/core/secrets.py +65 -0
- ciris_engine/schemas/services/correlation_node.py +179 -0
- ciris_engine/schemas/services/credit_gate.py +92 -0
- ciris_engine/schemas/services/discord_nodes.py +299 -0
- ciris_engine/schemas/services/feedback_core.py +131 -0
- ciris_engine/schemas/services/filters_core.py +270 -0
- ciris_engine/schemas/services/governance.py +26 -0
- ciris_engine/schemas/services/graph/__init__.py +26 -0
- ciris_engine/schemas/services/graph/attributes.py +254 -0
- ciris_engine/schemas/services/graph/audit.py +98 -0
- ciris_engine/schemas/services/graph/consolidation.py +338 -0
- ciris_engine/schemas/services/graph/edge_types.py +43 -0
- ciris_engine/schemas/services/graph/edges.py +88 -0
- ciris_engine/schemas/services/graph/incident.py +312 -0
- ciris_engine/schemas/services/graph/memory.py +84 -0
- ciris_engine/schemas/services/graph/node_data.py +174 -0
- ciris_engine/schemas/services/graph/query_results.py +82 -0
- ciris_engine/schemas/services/graph/telemetry.py +250 -0
- ciris_engine/schemas/services/graph/tsdb_consolidation.py +27 -0
- ciris_engine/schemas/services/graph/tsdb_models.py +107 -0
- ciris_engine/schemas/services/graph_core.py +196 -0
- ciris_engine/schemas/services/graph_typed_nodes.py +194 -0
- ciris_engine/schemas/services/infrastructure/__init__.py +1 -0
- ciris_engine/schemas/services/infrastructure/resource_monitor.py +20 -0
- ciris_engine/schemas/services/lifecycle/__init__.py +9 -0
- ciris_engine/schemas/services/lifecycle/initialization.py +33 -0
- ciris_engine/schemas/services/lifecycle/time.py +50 -0
- ciris_engine/schemas/services/llm.py +187 -0
- ciris_engine/schemas/services/metadata.py +43 -0
- ciris_engine/schemas/services/nodes.py +704 -0
- ciris_engine/schemas/services/operations.py +126 -0
- ciris_engine/schemas/services/requests.py +128 -0
- ciris_engine/schemas/services/resources_core.py +182 -0
- ciris_engine/schemas/services/runtime_control.py +1010 -0
- ciris_engine/schemas/services/shutdown.py +88 -0
- ciris_engine/schemas/services/special/__init__.py +0 -0
- ciris_engine/schemas/services/special/self_observation.py +396 -0
- ciris_engine/schemas/services/trace_summary_node.py +199 -0
- ciris_engine/schemas/services/visibility.py +98 -0
- ciris_engine/schemas/streaming/__init__.py +10 -0
- ciris_engine/schemas/streaming/reasoning_stream.py +95 -0
- ciris_engine/schemas/telemetry/__init__.py +0 -0
- ciris_engine/schemas/telemetry/collector.py +67 -0
- ciris_engine/schemas/telemetry/core.py +252 -0
- ciris_engine/schemas/telemetry/unified.py +59 -0
- ciris_engine/schemas/tools.py +72 -0
- ciris_engine/schemas/types.py +47 -0
- ciris_engine/schemas/utils/__init__.py +1 -0
- ciris_engine/schemas/utils/config_validator.py +54 -0
- ciris_engine/utils/__init__.py +1 -0
- ciris_engine/utils/serialization.py +35 -0
- ciris_sdk/__init__.py +124 -0
- ciris_sdk/auth_store.py +261 -0
- ciris_sdk/client.py +261 -0
- ciris_sdk/exceptions.py +73 -0
- ciris_sdk/model_types.py +258 -0
- ciris_sdk/models.py +354 -0
- ciris_sdk/pagination.py +214 -0
- ciris_sdk/rate_limiter.py +188 -0
- ciris_sdk/setup.py +17 -0
- ciris_sdk/telemetry_models.py +257 -0
- ciris_sdk/telemetry_responses.py +199 -0
- ciris_sdk/transport.py +177 -0
- ciris_sdk/websocket.py +400 -0
- main.py +766 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="150" viewBox="0 0 1200 150">
|
|
2
|
+
<title>Numbers 1–11, vector segments</title>
|
|
3
|
+
<style>
|
|
4
|
+
.seg { stroke:#000; stroke-width:8; stroke-linecap:round; fill:none; }
|
|
5
|
+
/* Example: animate a whole number group
|
|
6
|
+
#num-1 { transition: transform 300ms ease; }
|
|
7
|
+
#num-1:hover { transform: scale(1.15); transform-origin: 25px 50px; }
|
|
8
|
+
*/
|
|
9
|
+
</style>
|
|
10
|
+
|
|
11
|
+
<!-- Seven-seg coordinates for a single digit cell: 50x80 units -->
|
|
12
|
+
<defs>
|
|
13
|
+
<!-- Digit cell origin is (0,0), segments sized for 50x80 -->
|
|
14
|
+
<line id="seg-a" class="seg" x1="10" y1="10" x2="40" y2="10" />
|
|
15
|
+
<line id="seg-b" class="seg" x1="40" y1="10" x2="40" y2="40" />
|
|
16
|
+
<line id="seg-c" class="seg" x1="40" y1="40" x2="40" y2="70" />
|
|
17
|
+
<line id="seg-d" class="seg" x1="10" y1="70" x2="40" y2="70" />
|
|
18
|
+
<line id="seg-e" class="seg" x1="10" y1="40" x2="10" y2="70" />
|
|
19
|
+
<line id="seg-f" class="seg" x1="10" y1="10" x2="10" y2="40" />
|
|
20
|
+
<line id="seg-g" class="seg" x1="10" y1="40" x2="40" y2="40" />
|
|
21
|
+
</defs>
|
|
22
|
+
|
|
23
|
+
<!-- Helper: a single-digit block with chosen segments -->
|
|
24
|
+
<!-- Usage: copy the needed <use> elements for each digit -->
|
|
25
|
+
<!-- Digit -> segments:
|
|
26
|
+
0: a b c d e f
|
|
27
|
+
1: b c
|
|
28
|
+
2: a b d e g
|
|
29
|
+
3: a b c d g
|
|
30
|
+
4: b c f g
|
|
31
|
+
5: a c d f g
|
|
32
|
+
6: a c d e f g
|
|
33
|
+
7: a b c
|
|
34
|
+
8: a b c d e f g
|
|
35
|
+
9: a b c d f g
|
|
36
|
+
-->
|
|
37
|
+
|
|
38
|
+
<!-- row baseline y=35 to center vertically -->
|
|
39
|
+
<!-- Each cell is 60 units wide (50 cell + 10 gap) -->
|
|
40
|
+
|
|
41
|
+
<!-- 1 -->
|
|
42
|
+
<g id="num-1" transform="translate(0,35)">
|
|
43
|
+
<use href="#seg-b"/><use href="#seg-c"/>
|
|
44
|
+
</g>
|
|
45
|
+
|
|
46
|
+
<!-- 2 -->
|
|
47
|
+
<g id="num-2" transform="translate(100,35)">
|
|
48
|
+
<use href="#seg-a"/><use href="#seg-b"/><use href="#seg-d"/><use href="#seg-e"/><use href="#seg-g"/>
|
|
49
|
+
</g>
|
|
50
|
+
|
|
51
|
+
<!-- 3 -->
|
|
52
|
+
<g id="num-3" transform="translate(200,35)">
|
|
53
|
+
<use href="#seg-a"/><use href="#seg-b"/><use href="#seg-c"/><use href="#seg-d"/><use href="#seg-g"/>
|
|
54
|
+
</g>
|
|
55
|
+
|
|
56
|
+
<!-- 4 -->
|
|
57
|
+
<g id="num-4" transform="translate(300,35)">
|
|
58
|
+
<use href="#seg-b"/><use href="#seg-c"/><use href="#seg-f"/><use href="#seg-g"/>
|
|
59
|
+
</g>
|
|
60
|
+
|
|
61
|
+
<!-- 5 -->
|
|
62
|
+
<g id="num-5" transform="translate(400,35)">
|
|
63
|
+
<use href="#seg-a"/><use href="#seg-c"/><use href="#seg-d"/><use href="#seg-f"/><use href="#seg-g"/>
|
|
64
|
+
</g>
|
|
65
|
+
|
|
66
|
+
<!-- 6 -->
|
|
67
|
+
<g id="num-6" transform="translate(500,35)">
|
|
68
|
+
<use href="#seg-a"/><use href="#seg-c"/><use href="#seg-d"/><use href="#seg-e"/><use href="#seg-f"/><use href="#seg-g"/>
|
|
69
|
+
</g>
|
|
70
|
+
|
|
71
|
+
<!-- 7 -->
|
|
72
|
+
<g id="num-7" transform="translate(600,35)">
|
|
73
|
+
<use href="#seg-a"/><use href="#seg-b"/><use href="#seg-c"/>
|
|
74
|
+
</g>
|
|
75
|
+
|
|
76
|
+
<!-- 8 -->
|
|
77
|
+
<g id="num-8" transform="translate(700,35)">
|
|
78
|
+
<use href="#seg-a"/><use href="#seg-b"/><use href="#seg-c"/><use href="#seg-d"/><use href="#seg-e"/><use href="#seg-f"/><use href="#seg-g"/>
|
|
79
|
+
</g>
|
|
80
|
+
|
|
81
|
+
<!-- 9 -->
|
|
82
|
+
<g id="num-9" transform="translate(800,35)">
|
|
83
|
+
<use href="#seg-a"/><use href="#seg-b"/><use href="#seg-c"/><use href="#seg-d"/><use href="#seg-f"/><use href="#seg-g"/>
|
|
84
|
+
</g>
|
|
85
|
+
|
|
86
|
+
<!-- 10 (two digits: "1" + "0") -->
|
|
87
|
+
<g id="num-10" transform="translate(900,35)">
|
|
88
|
+
<!-- "1" -->
|
|
89
|
+
<g transform="translate(0,0)">
|
|
90
|
+
<use href="#seg-b"/><use href="#seg-c"/>
|
|
91
|
+
</g>
|
|
92
|
+
<!-- "0" -->
|
|
93
|
+
<g transform="translate(60,0)">
|
|
94
|
+
<use href="#seg-a"/><use href="#seg-b"/><use href="#seg-c"/><use href="#seg-d"/><use href="#seg-e"/><use href="#seg-f"/>
|
|
95
|
+
</g>
|
|
96
|
+
</g>
|
|
97
|
+
|
|
98
|
+
<!-- 11 (two digits: "1" + "1") -->
|
|
99
|
+
<g id="num-11" transform="translate(1050,35)">
|
|
100
|
+
<g transform="translate(0,0)">
|
|
101
|
+
<use href="#seg-b"/><use href="#seg-c"/>
|
|
102
|
+
</g>
|
|
103
|
+
<g transform="translate(60,0)">
|
|
104
|
+
<use href="#seg-b"/><use href="#seg-c"/>
|
|
105
|
+
</g>
|
|
106
|
+
</g>
|
|
107
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/d8298875641ec7d4-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/16b94b1fe0cc6e37.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-fcebd240b7f8477d.js"/><script src="/_next/static/chunks/87c73c54-781a7f35148d5433.js" async=""></script><script src="/_next/static/chunks/8315-b91d03a3949db0af.js" async=""></script><script src="/_next/static/chunks/main-app-26fa8aed029082e5.js" async=""></script><script src="/_next/static/chunks/4534-af88cd4ba6e99bff.js" async=""></script><script src="/_next/static/chunks/8903-fefea3339a02d41b.js" async=""></script><script src="/_next/static/chunks/8072-de4952a2e6d2b33f.js" async=""></script><script src="/_next/static/chunks/6539-c6398bc9d7018430.js" async=""></script><script src="/_next/static/chunks/704-8e827b26cc8c2d32.js" async=""></script><script src="/_next/static/chunks/3835-2aad4b7f5f8e4643.js" async=""></script><script src="/_next/static/chunks/app/layout-0a70f5fc460298b1.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><script>document.querySelectorAll('body link[rel="icon"], body link[rel="apple-touch-icon"]').forEach(el => document.head.appendChild(el))</script><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class=" __className_c7d6ee __variable_9a8899 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="min-h-screen bg-gray-50"><div class="fixed inset-x-0 max-w-2xl mx-auto top-2 z-50"><nav class="relative border border-gray-400/50 shadow-2xl rounded-full bg-gray-200/20 backdrop-blur-sm shadow-input flex justify-between items-center space-x-4 px-8 py-2 "><a href="/"><svg width="32" height="32" viewBox="0 0 61 60" class="h-12 w-12 text-brand-primary fill-brand-primary" xmlns="http://www.w3.org/2000/svg"><path d="M32.336 12.0436C32.4286 11.5339 32.9043 11.1903 33.4123 11.2561L33.4614 11.264L33.7724 11.3231C36.8714 11.9397 39.6944 13.3109 42.0437 15.239L42.2768 15.4338L42.3141 15.4668C42.6876 15.8173 42.7242 16.4031 42.3892 16.7983C42.0542 17.1933 41.4703 17.253 41.0634 16.942L41.0247 16.9106L40.8151 16.7359C38.706 15.0049 36.1737 13.7751 33.3944 13.2222L33.1157 13.169L33.0668 13.159C32.5681 13.0421 32.2435 12.5532 32.336 12.0436Z"></path><path d="M43.1071 17.5197C43.502 17.1844 44.0878 17.2208 44.4386 17.594L44.4718 17.631L44.6669 17.8644C46.5977 20.2139 47.9717 23.0395 48.5885 26.139L48.6476 26.4496L48.6552 26.4991C48.721 27.007 48.3777 27.4827 47.868 27.5753C47.3584 27.6678 46.8696 27.3432 46.7526 26.8446L46.7424 26.7957L46.6894 26.5169C46.1364 23.7377 44.9043 21.2031 43.1709 19.0938L42.9958 18.8844L42.9645 18.8455C42.6532 18.4388 42.7123 17.855 43.1071 17.5197Z"></path><path d="M26.7225 11.2561C27.2304 11.1903 27.7062 11.5339 27.7987 12.0436C27.8942 12.5696 27.5451 13.0734 27.0191 13.1689L26.7403 13.2222C23.8684 13.7935 21.2604 15.0877 19.1106 16.913C18.703 17.2591 18.0919 17.2091 17.7458 16.8015C17.3998 16.3939 17.4495 15.7828 17.8571 15.4367C20.3293 13.3377 23.348 11.8677 26.673 11.2639L26.7225 11.2561Z"></path><path d="M15.657 17.6345C16.0028 17.2267 16.6137 17.1764 17.0215 17.5221C17.4293 17.8679 17.4797 18.479 17.1339 18.8869C15.2518 21.1066 13.9309 23.8171 13.3895 26.7959L13.3795 26.8448C13.2625 27.3435 12.7735 27.6682 12.2639 27.5755C11.7378 27.4799 11.3889 26.9759 11.4845 26.4499L11.5437 26.1392C12.181 22.939 13.6268 20.029 15.657 17.6345Z"></path><path d="M46.7426 32.8925C46.8381 32.3664 47.3421 32.0174 47.8682 32.1129C48.3943 32.2085 48.7433 32.7123 48.6479 33.2383C48.0441 36.5631 46.574 39.5845 44.4748 42.0569L44.4415 42.0942C44.0907 42.4674 43.5049 42.5038 43.11 42.1685C42.7025 41.8224 42.6527 41.2114 42.9987 40.8038L43.1738 40.5944C44.9645 38.4152 46.218 35.7814 46.7426 32.8925Z"></path><path d="M41.0274 42.7752C41.4352 42.4294 42.0461 42.4795 42.3919 42.8873C42.7377 43.2951 42.6875 43.906 42.2798 44.2518C39.8051 46.3505 36.7866 47.8208 33.4614 48.4246C32.9354 48.5201 32.4316 48.171 32.3361 47.645C32.2405 47.1189 32.5896 46.6149 33.1157 46.5193C36.0975 45.9779 38.8052 44.6599 41.0274 42.7752Z"></path><path d="M17.7399 42.8864C18.0752 42.4916 18.659 42.4325 19.0657 42.7438L19.1046 42.7751L19.314 42.9502C21.4233 44.6836 23.958 45.9157 26.7371 46.4687L27.0159 46.5216L27.0648 46.5319C27.5634 46.6489 27.888 47.1377 27.7955 47.6473C27.7029 48.1569 27.2272 48.5003 26.7193 48.4345L26.6698 48.4269L26.3592 48.3678C23.2597 47.751 20.4341 46.377 18.0846 44.4462L17.8512 44.2511L17.8142 44.2179C17.441 43.8671 17.4046 43.2813 17.7399 42.8864Z"></path><path d="M12.267 32.1129C12.7767 32.0203 13.2657 32.3449 13.3826 32.8437L13.3926 32.8923L13.4459 33.1708C13.9988 35.9477 15.2284 38.4803 16.9598 40.5923L17.1346 40.8019L17.1659 40.8408C17.4767 41.2479 17.4167 41.8319 17.0214 42.1666C16.6261 42.5013 16.0405 42.4641 15.6901 42.0905L15.6569 42.0534L15.4624 41.8198C13.5348 39.4684 12.1634 36.6458 11.5468 33.5493L11.4876 33.2386L11.4798 33.1894C11.4138 32.6815 11.7573 32.2056 12.267 32.1129Z"></path><path d="M31.9221 30.8439C31.853 30.8439 31.7838 30.8439 31.7147 30.8439L29.1172 30.7941L29.0674 28.1967C28.9927 24.3267 31.0397 20.7417 34.4089 18.8386L34.4394 18.822L47.1418 12.244C47.482 12.0669 47.8472 12.4321 47.6701 12.7723L41.0755 25.5051C39.2055 28.8163 35.7146 30.8494 31.9221 30.8494V30.8439ZM31.0148 28.891L31.7506 28.9048C34.9013 28.9684 37.8224 27.3032 39.377 24.5619L43.7117 16.1941L35.3439 20.5287C32.6026 22.0833 30.9401 25.0045 31.001 28.1552L31.0148 28.891Z"></path><path d="M12.9896 47.4444C12.6493 47.6214 12.2842 47.2562 12.4612 46.916L19.0559 34.1832C20.9258 30.872 24.4168 28.8389 28.2092 28.8389C28.2784 28.8389 28.3475 28.8389 28.4167 28.8389L31.0142 28.8887L31.064 31.4861C31.1387 35.356 29.0917 38.941 25.7224 40.8442L25.692 40.8608L12.9896 47.4388V47.4444ZM20.7488 35.1237L16.4141 43.4914L24.7819 39.1568C27.5232 37.6022 29.1857 34.6811 29.1249 31.5304L29.111 30.7946L28.3752 30.7807C25.2383 30.7171 22.3034 32.3824 20.7488 35.1237Z"></path><path d="M47.6672 46.9155C47.8442 47.2558 47.4791 47.6209 47.1388 47.4439L34.406 40.8492C31.0368 38.9461 28.9898 35.3583 29.0645 31.4912L29.1143 28.8937L31.7117 28.8439C35.5789 28.7665 39.1694 30.8162 41.0726 34.1855L41.0892 34.2159L47.6672 46.9183V46.9155ZM35.3438 39.1563L43.7115 43.491L39.3769 35.1232C37.8223 32.3819 34.8956 30.7194 31.7505 30.7803L31.0147 30.7941L31.0008 31.5299C30.94 34.6806 32.6025 37.6017 35.3438 39.1563Z"></path><path d="M28.2073 30.8441C24.4176 30.8441 20.9239 28.8109 19.0539 25.4998L19.0373 25.4693L12.4593 12.7669C12.2823 12.4267 12.6474 12.0616 12.9876 12.2386L25.7205 18.8332C29.0897 20.7364 31.1367 24.3241 31.062 28.1913L31.0122 30.7887L28.4148 30.8385C28.3456 30.8385 28.2764 30.8385 28.2073 30.8385V30.8441ZM20.7496 24.562C22.3042 27.3033 25.2226 28.9769 28.376 28.905L29.1118 28.8911L29.1257 28.1553C29.1865 25.0046 27.524 22.0835 24.7827 20.5289L16.415 16.1943L20.7496 24.562Z"></path><path d="M34.7623 18.6488C35.0452 18.5252 35.3718 18.5436 35.6402 18.7012C35.9265 18.8694 36.1067 19.1725 36.1176 19.5044C36.2342 23.0677 34.8579 26.5765 32.2192 29.1134V29.1137L30.7364 30.5381C30.4591 30.8046 30.0503 30.8817 29.6951 30.7345C29.3398 30.5873 29.1052 30.2437 29.0975 29.8593L29.0646 28.1914V28.1912C28.9884 24.3248 31.0389 20.7323 34.4054 18.8312L34.4381 18.8136L34.7064 18.6753L34.7623 18.6488ZM34.0869 21.394C32.2478 22.9245 31.1191 25.1684 31.0079 27.5882C32.7132 25.8919 33.7709 23.7061 34.0869 21.394Z"></path><path d="M24.4942 18.7035C24.7805 18.5354 25.133 18.5259 25.4281 18.6781L25.6909 18.8134L25.7236 18.8312C29.0343 20.7025 31.0761 24.2151 31.0664 28.01L31.0642 28.1909L31.0323 29.7858C31.0469 30.0482 30.9554 30.3154 30.7571 30.5176C30.3852 30.8968 29.7772 30.9057 29.3945 30.5374L27.915 29.1132L27.7923 28.9935C25.2338 26.4668 23.9018 23.0147 24.0166 19.5068L24.0207 19.445C24.0504 19.1376 24.2257 18.8611 24.4942 18.7035ZM26.0475 21.3997C26.3637 23.7071 27.4192 25.8877 29.1203 27.5823C29.0074 25.1696 27.8804 22.9294 26.0475 21.3997Z"></path><path d="M30.4418 59.6377C30.3256 60.0028 29.8111 60.0028 29.6949 59.6377L24.4696 43.1843C23.211 38.6616 24.5304 33.8318 27.9135 30.5787L30.0684 28.5068L32.2233 30.5787C35.6063 33.8318 36.9258 38.6643 35.6672 43.1843L35.6561 43.2175L30.4391 59.6377H30.4418ZM26.3285 42.6477L30.0684 54.4179L33.8083 42.6477C34.8677 38.8165 33.7474 34.728 30.8816 31.9729L30.0684 31.1928L29.2551 31.9729C26.3893 34.728 25.269 38.8192 26.3285 42.6477Z"></path><path d="M20.1518 35.9118C19.0121 35.9118 17.8586 35.7597 16.7272 35.4444L16.694 35.4333L0.273854 30.2162C-0.0912847 30.1001 -0.0912847 29.5855 0.273854 29.4694L16.7272 24.244C21.25 22.9854 26.0798 24.3049 29.3328 27.6879L31.4047 29.8428L29.3328 31.9977C26.893 34.5343 23.568 35.9118 20.149 35.9118H20.1518ZM17.2639 33.5827C21.0951 34.6422 25.1835 33.5218 27.9387 30.6561L28.7215 29.8428L27.9387 29.0295C25.1835 26.1637 21.0923 25.0434 17.2639 26.1029L5.49368 29.8428L17.2639 33.5827Z"></path><path d="M40.0106 35.9118C36.5915 35.9118 33.2666 34.5343 30.8268 31.9977L28.7549 29.8428L30.8268 27.6879C34.0798 24.3049 38.9124 22.9854 43.4324 24.244L43.4655 24.2551L59.8857 29.4721C60.2509 29.5883 60.2509 30.1028 59.8857 30.219L43.4324 35.4444C42.301 35.7597 41.1502 35.9118 40.0078 35.9118H40.0106ZM32.2237 30.6561C34.9788 33.5218 39.0673 34.6422 42.8985 33.5827L54.6687 29.8428L42.8985 26.1029C39.0673 25.0434 34.9788 26.1637 32.2237 29.0295L31.4409 29.8428L32.2237 30.6561Z"></path><path d="M24.749 16.4571L29.6977 0.869557C29.8139 0.504418 30.3284 0.504418 30.4446 0.869557L35.3933 16.4516C35.504 16.7974 35.1278 17.0933 34.818 16.9052L30.0324 14.0256L25.3243 16.9108C25.0145 17.1016 24.6356 16.8029 24.7462 16.4571H24.749Z"></path></svg></a><div class="relative "><p class="cursor-pointer text-black hover:opacity-[0.9] ">System</p></div><div class="relative "><p class="cursor-pointer text-black hover:opacity-[0.9] ">Account</p></div></nav></div><main class=" container pt-10 sm:px-6 lg:px-8"><div class=" pt-20 sm:px-6 lg:px-8"><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--></div></main></div><div id="_rht_toaster" style="position:fixed;z-index:9999;top:16px;left:16px;right:16px;bottom:16px;pointer-events:none"></div><script src="/_next/static/chunks/webpack-fcebd240b7f8477d.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[3283,[],\"ClientSegmentRoot\"]\n3:I[1857,[\"4534\",\"static/chunks/4534-af88cd4ba6e99bff.js\",\"8903\",\"static/chunks/8903-fefea3339a02d41b.js\",\"8072\",\"static/chunks/8072-de4952a2e6d2b33f.js\",\"6539\",\"static/chunks/6539-c6398bc9d7018430.js\",\"704\",\"static/chunks/704-8e827b26cc8c2d32.js\",\"3835\",\"static/chunks/3835-2aad4b7f5f8e4643.js\",\"7177\",\"static/chunks/app/layout-0a70f5fc460298b1.js\"],\"default\"]\n4:I[7132,[],\"\"]\n5:I[5082,[],\"\"]\n7:I[700,[],\"OutletBoundary\"]\na:I[7748,[],\"AsyncMetadataOutlet\"]\nc:I[700,[],\"ViewportBoundary\"]\ne:I[700,[],\"MetadataBoundary\"]\n10:I[9699,[],\"\"]\n:HL[\"/_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/d8298875641ec7d4-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/16b94b1fe0cc6e37.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"U-3xTQao7hc2wnAi-Uekm\",\"p\":\"\",\"c\":[\"\",\"_not-found\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/16b94b1fe0cc6e37.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"$L2\",null,{\"Component\":\"$3\",\"slots\":{\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]},\"params\":{},\"promise\":\"$@6\"}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:1:props:children:1:props:slots:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:1:props:children:1:props:slots:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:1:props:children:1:props:slots:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:1:props:children:1:props:slots:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L7\",null,{\"children\":[\"$L8\",\"$L9\",[\"$\",\"$La\",null,{\"promise\":\"$@b\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$1\",\"PsQholoCldQ20faWt6pWVv\",{\"children\":[[\"$\",\"$Lc\",null,{\"children\":\"$Ld\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],[\"$\",\"$Le\",null,{\"children\":\"$Lf\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$10\",\"$undefined\"],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"11:\"$Sreact.suspense\"\n12:I[7748,[],\"AsyncMetadata\"]\n6:{}\nf:[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$11\",null,{\"fallback\":null,\"children\":[\"$\",\"$L12\",null,{\"promise\":\"$@13\"}]}]}]\n"])</script><script>self.__next_f.push([1,"9:null\n"])</script><script>self.__next_f.push([1,"d:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n8:null\n"])</script><script>self.__next_f.push([1,"b:{\"metadata\":[],\"error\":null,\"digest\":\"$undefined\"}\n13:{\"metadata\":\"$b:metadata\",\"error\":null,\"digest\":\"$undefined\"}\n"])</script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/d8298875641ec7d4-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/16b94b1fe0cc6e37.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-fcebd240b7f8477d.js"/><script src="/_next/static/chunks/87c73c54-781a7f35148d5433.js" async=""></script><script src="/_next/static/chunks/8315-b91d03a3949db0af.js" async=""></script><script src="/_next/static/chunks/main-app-26fa8aed029082e5.js" async=""></script><script src="/_next/static/chunks/4534-af88cd4ba6e99bff.js" async=""></script><script src="/_next/static/chunks/8903-fefea3339a02d41b.js" async=""></script><script src="/_next/static/chunks/8072-de4952a2e6d2b33f.js" async=""></script><script src="/_next/static/chunks/6539-c6398bc9d7018430.js" async=""></script><script src="/_next/static/chunks/704-8e827b26cc8c2d32.js" async=""></script><script src="/_next/static/chunks/3835-2aad4b7f5f8e4643.js" async=""></script><script src="/_next/static/chunks/app/layout-0a70f5fc460298b1.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><script>document.querySelectorAll('body link[rel="icon"], body link[rel="apple-touch-icon"]').forEach(el => document.head.appendChild(el))</script><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class=" __className_c7d6ee __variable_9a8899 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="min-h-screen bg-gray-50"><div class="fixed inset-x-0 max-w-2xl mx-auto top-2 z-50"><nav class="relative border border-gray-400/50 shadow-2xl rounded-full bg-gray-200/20 backdrop-blur-sm shadow-input flex justify-between items-center space-x-4 px-8 py-2 "><a href="/"><svg width="32" height="32" viewBox="0 0 61 60" class="h-12 w-12 text-brand-primary fill-brand-primary" xmlns="http://www.w3.org/2000/svg"><path d="M32.336 12.0436C32.4286 11.5339 32.9043 11.1903 33.4123 11.2561L33.4614 11.264L33.7724 11.3231C36.8714 11.9397 39.6944 13.3109 42.0437 15.239L42.2768 15.4338L42.3141 15.4668C42.6876 15.8173 42.7242 16.4031 42.3892 16.7983C42.0542 17.1933 41.4703 17.253 41.0634 16.942L41.0247 16.9106L40.8151 16.7359C38.706 15.0049 36.1737 13.7751 33.3944 13.2222L33.1157 13.169L33.0668 13.159C32.5681 13.0421 32.2435 12.5532 32.336 12.0436Z"></path><path d="M43.1071 17.5197C43.502 17.1844 44.0878 17.2208 44.4386 17.594L44.4718 17.631L44.6669 17.8644C46.5977 20.2139 47.9717 23.0395 48.5885 26.139L48.6476 26.4496L48.6552 26.4991C48.721 27.007 48.3777 27.4827 47.868 27.5753C47.3584 27.6678 46.8696 27.3432 46.7526 26.8446L46.7424 26.7957L46.6894 26.5169C46.1364 23.7377 44.9043 21.2031 43.1709 19.0938L42.9958 18.8844L42.9645 18.8455C42.6532 18.4388 42.7123 17.855 43.1071 17.5197Z"></path><path d="M26.7225 11.2561C27.2304 11.1903 27.7062 11.5339 27.7987 12.0436C27.8942 12.5696 27.5451 13.0734 27.0191 13.1689L26.7403 13.2222C23.8684 13.7935 21.2604 15.0877 19.1106 16.913C18.703 17.2591 18.0919 17.2091 17.7458 16.8015C17.3998 16.3939 17.4495 15.7828 17.8571 15.4367C20.3293 13.3377 23.348 11.8677 26.673 11.2639L26.7225 11.2561Z"></path><path d="M15.657 17.6345C16.0028 17.2267 16.6137 17.1764 17.0215 17.5221C17.4293 17.8679 17.4797 18.479 17.1339 18.8869C15.2518 21.1066 13.9309 23.8171 13.3895 26.7959L13.3795 26.8448C13.2625 27.3435 12.7735 27.6682 12.2639 27.5755C11.7378 27.4799 11.3889 26.9759 11.4845 26.4499L11.5437 26.1392C12.181 22.939 13.6268 20.029 15.657 17.6345Z"></path><path d="M46.7426 32.8925C46.8381 32.3664 47.3421 32.0174 47.8682 32.1129C48.3943 32.2085 48.7433 32.7123 48.6479 33.2383C48.0441 36.5631 46.574 39.5845 44.4748 42.0569L44.4415 42.0942C44.0907 42.4674 43.5049 42.5038 43.11 42.1685C42.7025 41.8224 42.6527 41.2114 42.9987 40.8038L43.1738 40.5944C44.9645 38.4152 46.218 35.7814 46.7426 32.8925Z"></path><path d="M41.0274 42.7752C41.4352 42.4294 42.0461 42.4795 42.3919 42.8873C42.7377 43.2951 42.6875 43.906 42.2798 44.2518C39.8051 46.3505 36.7866 47.8208 33.4614 48.4246C32.9354 48.5201 32.4316 48.171 32.3361 47.645C32.2405 47.1189 32.5896 46.6149 33.1157 46.5193C36.0975 45.9779 38.8052 44.6599 41.0274 42.7752Z"></path><path d="M17.7399 42.8864C18.0752 42.4916 18.659 42.4325 19.0657 42.7438L19.1046 42.7751L19.314 42.9502C21.4233 44.6836 23.958 45.9157 26.7371 46.4687L27.0159 46.5216L27.0648 46.5319C27.5634 46.6489 27.888 47.1377 27.7955 47.6473C27.7029 48.1569 27.2272 48.5003 26.7193 48.4345L26.6698 48.4269L26.3592 48.3678C23.2597 47.751 20.4341 46.377 18.0846 44.4462L17.8512 44.2511L17.8142 44.2179C17.441 43.8671 17.4046 43.2813 17.7399 42.8864Z"></path><path d="M12.267 32.1129C12.7767 32.0203 13.2657 32.3449 13.3826 32.8437L13.3926 32.8923L13.4459 33.1708C13.9988 35.9477 15.2284 38.4803 16.9598 40.5923L17.1346 40.8019L17.1659 40.8408C17.4767 41.2479 17.4167 41.8319 17.0214 42.1666C16.6261 42.5013 16.0405 42.4641 15.6901 42.0905L15.6569 42.0534L15.4624 41.8198C13.5348 39.4684 12.1634 36.6458 11.5468 33.5493L11.4876 33.2386L11.4798 33.1894C11.4138 32.6815 11.7573 32.2056 12.267 32.1129Z"></path><path d="M31.9221 30.8439C31.853 30.8439 31.7838 30.8439 31.7147 30.8439L29.1172 30.7941L29.0674 28.1967C28.9927 24.3267 31.0397 20.7417 34.4089 18.8386L34.4394 18.822L47.1418 12.244C47.482 12.0669 47.8472 12.4321 47.6701 12.7723L41.0755 25.5051C39.2055 28.8163 35.7146 30.8494 31.9221 30.8494V30.8439ZM31.0148 28.891L31.7506 28.9048C34.9013 28.9684 37.8224 27.3032 39.377 24.5619L43.7117 16.1941L35.3439 20.5287C32.6026 22.0833 30.9401 25.0045 31.001 28.1552L31.0148 28.891Z"></path><path d="M12.9896 47.4444C12.6493 47.6214 12.2842 47.2562 12.4612 46.916L19.0559 34.1832C20.9258 30.872 24.4168 28.8389 28.2092 28.8389C28.2784 28.8389 28.3475 28.8389 28.4167 28.8389L31.0142 28.8887L31.064 31.4861C31.1387 35.356 29.0917 38.941 25.7224 40.8442L25.692 40.8608L12.9896 47.4388V47.4444ZM20.7488 35.1237L16.4141 43.4914L24.7819 39.1568C27.5232 37.6022 29.1857 34.6811 29.1249 31.5304L29.111 30.7946L28.3752 30.7807C25.2383 30.7171 22.3034 32.3824 20.7488 35.1237Z"></path><path d="M47.6672 46.9155C47.8442 47.2558 47.4791 47.6209 47.1388 47.4439L34.406 40.8492C31.0368 38.9461 28.9898 35.3583 29.0645 31.4912L29.1143 28.8937L31.7117 28.8439C35.5789 28.7665 39.1694 30.8162 41.0726 34.1855L41.0892 34.2159L47.6672 46.9183V46.9155ZM35.3438 39.1563L43.7115 43.491L39.3769 35.1232C37.8223 32.3819 34.8956 30.7194 31.7505 30.7803L31.0147 30.7941L31.0008 31.5299C30.94 34.6806 32.6025 37.6017 35.3438 39.1563Z"></path><path d="M28.2073 30.8441C24.4176 30.8441 20.9239 28.8109 19.0539 25.4998L19.0373 25.4693L12.4593 12.7669C12.2823 12.4267 12.6474 12.0616 12.9876 12.2386L25.7205 18.8332C29.0897 20.7364 31.1367 24.3241 31.062 28.1913L31.0122 30.7887L28.4148 30.8385C28.3456 30.8385 28.2764 30.8385 28.2073 30.8385V30.8441ZM20.7496 24.562C22.3042 27.3033 25.2226 28.9769 28.376 28.905L29.1118 28.8911L29.1257 28.1553C29.1865 25.0046 27.524 22.0835 24.7827 20.5289L16.415 16.1943L20.7496 24.562Z"></path><path d="M34.7623 18.6488C35.0452 18.5252 35.3718 18.5436 35.6402 18.7012C35.9265 18.8694 36.1067 19.1725 36.1176 19.5044C36.2342 23.0677 34.8579 26.5765 32.2192 29.1134V29.1137L30.7364 30.5381C30.4591 30.8046 30.0503 30.8817 29.6951 30.7345C29.3398 30.5873 29.1052 30.2437 29.0975 29.8593L29.0646 28.1914V28.1912C28.9884 24.3248 31.0389 20.7323 34.4054 18.8312L34.4381 18.8136L34.7064 18.6753L34.7623 18.6488ZM34.0869 21.394C32.2478 22.9245 31.1191 25.1684 31.0079 27.5882C32.7132 25.8919 33.7709 23.7061 34.0869 21.394Z"></path><path d="M24.4942 18.7035C24.7805 18.5354 25.133 18.5259 25.4281 18.6781L25.6909 18.8134L25.7236 18.8312C29.0343 20.7025 31.0761 24.2151 31.0664 28.01L31.0642 28.1909L31.0323 29.7858C31.0469 30.0482 30.9554 30.3154 30.7571 30.5176C30.3852 30.8968 29.7772 30.9057 29.3945 30.5374L27.915 29.1132L27.7923 28.9935C25.2338 26.4668 23.9018 23.0147 24.0166 19.5068L24.0207 19.445C24.0504 19.1376 24.2257 18.8611 24.4942 18.7035ZM26.0475 21.3997C26.3637 23.7071 27.4192 25.8877 29.1203 27.5823C29.0074 25.1696 27.8804 22.9294 26.0475 21.3997Z"></path><path d="M30.4418 59.6377C30.3256 60.0028 29.8111 60.0028 29.6949 59.6377L24.4696 43.1843C23.211 38.6616 24.5304 33.8318 27.9135 30.5787L30.0684 28.5068L32.2233 30.5787C35.6063 33.8318 36.9258 38.6643 35.6672 43.1843L35.6561 43.2175L30.4391 59.6377H30.4418ZM26.3285 42.6477L30.0684 54.4179L33.8083 42.6477C34.8677 38.8165 33.7474 34.728 30.8816 31.9729L30.0684 31.1928L29.2551 31.9729C26.3893 34.728 25.269 38.8192 26.3285 42.6477Z"></path><path d="M20.1518 35.9118C19.0121 35.9118 17.8586 35.7597 16.7272 35.4444L16.694 35.4333L0.273854 30.2162C-0.0912847 30.1001 -0.0912847 29.5855 0.273854 29.4694L16.7272 24.244C21.25 22.9854 26.0798 24.3049 29.3328 27.6879L31.4047 29.8428L29.3328 31.9977C26.893 34.5343 23.568 35.9118 20.149 35.9118H20.1518ZM17.2639 33.5827C21.0951 34.6422 25.1835 33.5218 27.9387 30.6561L28.7215 29.8428L27.9387 29.0295C25.1835 26.1637 21.0923 25.0434 17.2639 26.1029L5.49368 29.8428L17.2639 33.5827Z"></path><path d="M40.0106 35.9118C36.5915 35.9118 33.2666 34.5343 30.8268 31.9977L28.7549 29.8428L30.8268 27.6879C34.0798 24.3049 38.9124 22.9854 43.4324 24.244L43.4655 24.2551L59.8857 29.4721C60.2509 29.5883 60.2509 30.1028 59.8857 30.219L43.4324 35.4444C42.301 35.7597 41.1502 35.9118 40.0078 35.9118H40.0106ZM32.2237 30.6561C34.9788 33.5218 39.0673 34.6422 42.8985 33.5827L54.6687 29.8428L42.8985 26.1029C39.0673 25.0434 34.9788 26.1637 32.2237 29.0295L31.4409 29.8428L32.2237 30.6561Z"></path><path d="M24.749 16.4571L29.6977 0.869557C29.8139 0.504418 30.3284 0.504418 30.4446 0.869557L35.3933 16.4516C35.504 16.7974 35.1278 17.0933 34.818 16.9052L30.0324 14.0256L25.3243 16.9108C25.0145 17.1016 24.6356 16.8029 24.7462 16.4571H24.749Z"></path></svg></a><div class="relative "><p class="cursor-pointer text-black hover:opacity-[0.9] ">System</p></div><div class="relative "><p class="cursor-pointer text-black hover:opacity-[0.9] ">Account</p></div></nav></div><main class=" container pt-10 sm:px-6 lg:px-8"><div class=" pt-20 sm:px-6 lg:px-8"><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--></div></main></div><div id="_rht_toaster" style="position:fixed;z-index:9999;top:16px;left:16px;right:16px;bottom:16px;pointer-events:none"></div><script src="/_next/static/chunks/webpack-fcebd240b7f8477d.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[3283,[],\"ClientSegmentRoot\"]\n3:I[1857,[\"4534\",\"static/chunks/4534-af88cd4ba6e99bff.js\",\"8903\",\"static/chunks/8903-fefea3339a02d41b.js\",\"8072\",\"static/chunks/8072-de4952a2e6d2b33f.js\",\"6539\",\"static/chunks/6539-c6398bc9d7018430.js\",\"704\",\"static/chunks/704-8e827b26cc8c2d32.js\",\"3835\",\"static/chunks/3835-2aad4b7f5f8e4643.js\",\"7177\",\"static/chunks/app/layout-0a70f5fc460298b1.js\"],\"default\"]\n4:I[7132,[],\"\"]\n5:I[5082,[],\"\"]\n7:I[700,[],\"OutletBoundary\"]\na:I[7748,[],\"AsyncMetadataOutlet\"]\nc:I[700,[],\"ViewportBoundary\"]\ne:I[700,[],\"MetadataBoundary\"]\n10:I[9699,[],\"\"]\n:HL[\"/_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/d8298875641ec7d4-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/16b94b1fe0cc6e37.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"U-3xTQao7hc2wnAi-Uekm\",\"p\":\"\",\"c\":[\"\",\"_not-found\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/16b94b1fe0cc6e37.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"$L2\",null,{\"Component\":\"$3\",\"slots\":{\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]},\"params\":{},\"promise\":\"$@6\"}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:1:props:children:1:props:slots:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:1:props:children:1:props:slots:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:1:props:children:1:props:slots:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:1:props:children:1:props:slots:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L7\",null,{\"children\":[\"$L8\",\"$L9\",[\"$\",\"$La\",null,{\"promise\":\"$@b\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$1\",\"PsQholoCldQ20faWt6pWVv\",{\"children\":[[\"$\",\"$Lc\",null,{\"children\":\"$Ld\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],[\"$\",\"$Le\",null,{\"children\":\"$Lf\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$10\",\"$undefined\"],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"11:\"$Sreact.suspense\"\n12:I[7748,[],\"AsyncMetadata\"]\n6:{}\nf:[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$11\",null,{\"fallback\":null,\"children\":[\"$\",\"$L12\",null,{\"promise\":\"$@13\"}]}]}]\n"])</script><script>self.__next_f.push([1,"9:null\n"])</script><script>self.__next_f.push([1,"d:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n8:null\n"])</script><script>self.__next_f.push([1,"b:{\"metadata\":[],\"error\":null,\"digest\":\"$undefined\"}\n13:{\"metadata\":\"$b:metadata\",\"error\":null,\"digest\":\"$undefined\"}\n"])</script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
self.__BUILD_MANIFEST=function(e,r,t){return{__rewrites:{afterFiles:[],beforeFiles:[],fallback:[]},__routerFilterStatic:{numItems:31,errorRate:1e-4,numBits:595,numHashes:14,bitArray:[0,0,1,1,e,r,e,r,e,e,r,r,r,r,e,r,r,e,e,e,r,e,e,e,r,e,r,r,r,e,r,r,e,r,e,r,r,e,r,r,e,r,e,r,e,r,r,r,r,r,r,r,r,e,e,r,e,r,e,r,r,e,e,e,r,e,e,e,r,r,e,r,r,e,e,r,e,e,e,e,e,r,r,e,r,r,e,e,r,e,r,e,e,e,e,e,r,r,e,e,r,r,e,r,e,r,r,r,e,e,r,e,r,r,e,e,e,r,e,r,e,e,e,r,e,e,e,e,e,r,e,e,e,r,e,e,e,e,r,e,e,r,e,e,r,e,r,e,r,r,e,e,e,e,r,e,e,e,r,e,e,e,r,e,r,r,e,r,r,r,e,r,e,r,e,e,r,r,r,e,e,r,r,e,e,e,e,e,e,r,r,r,r,e,e,r,r,r,r,r,e,e,r,e,e,e,e,e,e,r,e,r,e,e,e,e,r,r,r,e,r,e,e,e,r,e,r,r,e,e,r,e,e,e,e,r,e,r,r,r,r,e,r,r,r,e,r,e,e,r,e,r,e,e,r,e,e,e,e,e,r,e,e,r,e,r,e,r,e,e,r,r,r,r,r,r,e,r,r,r,e,r,r,e,e,r,r,e,e,r,r,r,r,e,r,r,e,r,e,r,e,e,e,e,e,r,e,r,e,e,e,r,e,e,e,r,e,e,r,e,r,r,r,e,r,r,r,r,e,r,r,r,e,e,r,e,e,r,r,r,r,r,r,e,e,r,r,r,e,r,r,e,e,e,r,e,r,r,r,r,r,r,e,r,r,e,e,r,r,r,r,e,r,r,e,r,e,e,e,e,r,e,r,e,r,r,r,e,e,e,r,e,r,e,e,e,e,e,r,r,r,r,e,r,e,r,e,e,r,e,e,e,e,r,r,r,r,e,r,r,r,r,e,e,r,r,e,e,r,e,e,r,r,e,r,r,e,r,r,e,e,e,e,e,e,e,e,r,e,e,r,r,r,e,e,r,r,r,r,e,r,r,e,e,e,e,r,r,r,r,e,r,r,e,e,r,r,e,e,e,r,r,r,r,e,r,r,r,r,e,r,r,e,e,e,e,r,e,r,r,e,r,e,e,r,r,r,e,e,e,r,r,r,r,r,e,r,r,r,r,r,r,e,e,e,r,e,r,e,e,e,r,r,r,e,r,r,e,e,e,r,r,e,e,e,e,e,r,e,e,r,e,r,e,e,e,e,e,e,r,e,e,r,e,e,r,e,r,e,e,e,r,r,e,r,r,e,e,e,r,r,e,e,e,r,e,r,e,r,e,r,e,r,e,e]},__routerFilterDynamic:{numItems:r,errorRate:1e-4,numBits:r,numHashes:null,bitArray:[]},"/_error":["static/chunks/pages/_error-d4bce98d93fe21e7.js"],sortedPages:["/_app","/_error"]}}(1,0,1e-4),self.__BUILD_MANIFEST_CB&&self.__BUILD_MANIFEST_CB();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
self.__BUILD_MANIFEST=function(e,r,t){return{__rewrites:{afterFiles:[],beforeFiles:[],fallback:[]},__routerFilterStatic:{numItems:32,errorRate:1e-4,numBits:614,numHashes:14,bitArray:[0,0,1,1,r,e,r,r,r,e,e,r,r,r,r,e,r,r,e,e,e,e,e,r,e,r,e,r,r,e,e,e,r,r,e,e,e,r,r,r,e,e,e,e,e,e,e,r,r,e,e,r,e,r,e,r,r,r,r,e,e,r,e,e,e,e,e,r,r,e,e,e,e,r,e,e,r,e,r,r,r,e,e,e,r,e,r,r,e,r,e,e,r,e,e,e,e,r,e,e,e,e,e,e,e,r,r,r,e,r,r,r,r,e,e,e,e,r,r,e,r,e,r,e,r,e,r,r,e,e,r,e,r,e,r,e,r,r,e,r,r,r,e,r,r,e,r,e,r,e,r,e,r,e,r,e,e,r,r,e,e,e,r,e,e,r,r,e,r,e,e,e,e,r,r,e,e,r,r,r,r,e,e,r,r,e,r,r,r,r,r,r,r,r,e,e,r,e,r,e,r,r,r,e,e,r,e,r,e,e,e,r,e,e,r,e,r,e,e,e,r,r,e,r,r,r,r,e,e,e,e,e,e,r,e,e,e,e,e,r,e,r,r,r,r,e,e,e,r,e,r,e,e,e,e,r,r,e,r,e,e,e,e,r,e,r,r,e,r,e,e,e,r,r,e,e,r,e,r,r,e,r,e,e,e,r,r,r,r,e,r,r,r,r,e,r,e,r,e,r,r,r,r,r,r,r,e,r,e,r,r,r,r,e,r,e,r,r,r,r,e,e,e,r,e,e,e,e,r,r,e,e,r,r,e,r,r,e,r,e,e,e,e,r,r,e,e,e,e,r,e,r,e,e,e,e,e,e,e,e,e,r,e,e,e,r,r,r,r,r,r,e,r,e,e,e,e,r,r,r,r,e,e,r,e,e,r,e,e,e,r,r,r,r,e,r,r,r,r,r,e,e,e,e,r,e,e,r,r,r,r,e,e,e,e,e,e,e,r,r,r,r,e,e,e,r,r,r,e,r,e,e,e,e,r,r,e,e,r,r,r,r,e,r,e,r,e,e,r,e,r,r,e,r,e,e,r,r,e,e,r,r,r,r,e,r,r,e,e,r,e,e,e,e,r,r,e,r,e,r,e,e,r,e,r,e,r,r,e,r,r,e,r,r,e,e,e,r,e,e,e,r,r,e,e,r,e,e,r,e,e,e,e,r,r,e,r,r,r,e,e,r,r,e,r,r,r,r,e,e,r,r,e,e,e,e,e,e,r,e,r,r,e,e,e,r,e,e,r,e,r,r,e,r,r,e,e,e,r,e,r,e,r,e,r,r,r,r,e,e,e,e,e,r,e,e,e,r,e,r,e,e,r,e,r,r,e,e,r,e,e,r,e,r,r,r,r,e,e,r,r,r,r,r,e,e,r,r,r,e,r,e,r,e]},__routerFilterDynamic:{numItems:r,errorRate:1e-4,numBits:r,numHashes:null,bitArray:[]},"/_error":["static/chunks/pages/_error-d4bce98d93fe21e7.js"],sortedPages:["/_app","/_error"]}}(1,0,1e-4),self.__BUILD_MANIFEST_CB&&self.__BUILD_MANIFEST_CB();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[3297],{3297:(e,t,r)=>{r.d(t,{I:()=>C});var s=r(1229),i=r(494),n=r(2210),u=r(2327),a=r(2153),h=r(7703),c=class extends u.Q{constructor(e,t){super(),this.options=t,this.#e=e,this.#t=null,this.#r=(0,a.T)(),this.options.experimental_prefetchInRender||this.#r.reject(Error("experimental_prefetchInRender feature flag is not enabled")),this.bindMethods(),this.setOptions(t)}#e;#s=void 0;#i=void 0;#n=void 0;#u;#a;#r;#t;#h;#c;#l;#o;#d;#p;#f=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){1===this.listeners.size&&(this.#s.addObserver(this),l(this.#s,this.options)?this.#y():this.updateResult(),this.#R())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return o(this.#s,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return o(this.#s,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#Q(),this.#v(),this.#s.removeObserver(this)}setOptions(e){let t=this.options,r=this.#s;if(this.options=this.#e.defaultQueryOptions(e),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled&&"function"!=typeof this.options.enabled&&"boolean"!=typeof(0,h.Eh)(this.options.enabled,this.#s))throw Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#b(),this.#s.setOptions(this.options),t._defaulted&&!(0,h.f8)(this.options,t)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#s,observer:this});let s=this.hasListeners();s&&d(this.#s,r,this.options,t)&&this.#y(),this.updateResult(),s&&(this.#s!==r||(0,h.Eh)(this.options.enabled,this.#s)!==(0,h.Eh)(t.enabled,this.#s)||(0,h.d2)(this.options.staleTime,this.#s)!==(0,h.d2)(t.staleTime,this.#s))&&this.#m();let i=this.#I();s&&(this.#s!==r||(0,h.Eh)(this.options.enabled,this.#s)!==(0,h.Eh)(t.enabled,this.#s)||i!==this.#p)&&this.#g(i)}getOptimisticResult(e){var t,r;let s=this.#e.getQueryCache().build(this.#e,e),i=this.createResult(s,e);return t=this,r=i,(0,h.f8)(t.getCurrentResult(),r)||(this.#n=i,this.#a=this.options,this.#u=this.#s.state),i}getCurrentResult(){return this.#n}trackResult(e,t){return new Proxy(e,{get:(e,r)=>(this.trackProp(r),t?.(r),Reflect.get(e,r))})}trackProp(e){this.#f.add(e)}getCurrentQuery(){return this.#s}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),r=this.#e.getQueryCache().build(this.#e,t);return r.fetch().then(()=>this.createResult(r,t))}fetch(e){return this.#y({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#n))}#y(e){this.#b();let t=this.#s.fetch(this.options,e);return e?.throwOnError||(t=t.catch(h.lQ)),t}#m(){this.#Q();let e=(0,h.d2)(this.options.staleTime,this.#s);if(h.S$||this.#n.isStale||!(0,h.gn)(e))return;let t=(0,h.j3)(this.#n.dataUpdatedAt,e);this.#o=setTimeout(()=>{this.#n.isStale||this.updateResult()},t+1)}#I(){return("function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.#s):this.options.refetchInterval)??!1}#g(e){this.#v(),this.#p=e,!h.S$&&!1!==(0,h.Eh)(this.options.enabled,this.#s)&&(0,h.gn)(this.#p)&&0!==this.#p&&(this.#d=setInterval(()=>{(this.options.refetchIntervalInBackground||s.m.isFocused())&&this.#y()},this.#p))}#R(){this.#m(),this.#g(this.#I())}#Q(){this.#o&&(clearTimeout(this.#o),this.#o=void 0)}#v(){this.#d&&(clearInterval(this.#d),this.#d=void 0)}createResult(e,t){let r,s=this.#s,i=this.options,u=this.#n,c=this.#u,o=this.#a,f=e!==s?e.state:this.#i,{state:y}=e,R={...y},Q=!1;if(t._optimisticResults){let r=this.hasListeners(),u=!r&&l(e,t),a=r&&d(e,s,t,i);(u||a)&&(R={...R,...(0,n.k)(y.data,e.options)}),"isRestoring"===t._optimisticResults&&(R.fetchStatus="idle")}let{error:v,errorUpdatedAt:b,status:m}=R;r=R.data;let I=!1;if(void 0!==t.placeholderData&&void 0===r&&"pending"===m){let e;u?.isPlaceholderData&&t.placeholderData===o?.placeholderData?(e=u.data,I=!0):e="function"==typeof t.placeholderData?t.placeholderData(this.#l?.state.data,this.#l):t.placeholderData,void 0!==e&&(m="success",r=(0,h.pl)(u?.data,e,t),Q=!0)}if(t.select&&void 0!==r&&!I)if(u&&r===c?.data&&t.select===this.#h)r=this.#c;else try{this.#h=t.select,r=t.select(r),r=(0,h.pl)(u?.data,r,t),this.#c=r,this.#t=null}catch(e){this.#t=e}this.#t&&(v=this.#t,r=this.#c,b=Date.now(),m="error");let g="fetching"===R.fetchStatus,E="pending"===m,O="error"===m,T=E&&g,S=void 0!==r,C={status:m,fetchStatus:R.fetchStatus,isPending:E,isSuccess:"success"===m,isError:O,isInitialLoading:T,isLoading:T,data:r,dataUpdatedAt:R.dataUpdatedAt,error:v,errorUpdatedAt:b,failureCount:R.fetchFailureCount,failureReason:R.fetchFailureReason,errorUpdateCount:R.errorUpdateCount,isFetched:R.dataUpdateCount>0||R.errorUpdateCount>0,isFetchedAfterMount:R.dataUpdateCount>f.dataUpdateCount||R.errorUpdateCount>f.errorUpdateCount,isFetching:g,isRefetching:g&&!E,isLoadingError:O&&!S,isPaused:"paused"===R.fetchStatus,isPlaceholderData:Q,isRefetchError:O&&S,isStale:p(e,t),refetch:this.refetch,promise:this.#r,isEnabled:!1!==(0,h.Eh)(t.enabled,e)};if(this.options.experimental_prefetchInRender){let t=e=>{"error"===C.status?e.reject(C.error):void 0!==C.data&&e.resolve(C.data)},r=()=>{t(this.#r=C.promise=(0,a.T)())},i=this.#r;switch(i.status){case"pending":e.queryHash===s.queryHash&&t(i);break;case"fulfilled":("error"===C.status||C.data!==i.value)&&r();break;case"rejected":("error"!==C.status||C.error!==i.reason)&&r()}}return C}updateResult(){let e=this.#n,t=this.createResult(this.#s,this.options);this.#u=this.#s.state,this.#a=this.options,void 0!==this.#u.data&&(this.#l=this.#s),(0,h.f8)(t,e)||(this.#n=t,this.#E({listeners:(()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,r="function"==typeof t?t():t;if("all"===r||!r&&!this.#f.size)return!0;let s=new Set(r??this.#f);return this.options.throwOnError&&s.add("error"),Object.keys(this.#n).some(t=>this.#n[t]!==e[t]&&s.has(t))})()}))}#b(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#s)return;let t=this.#s;this.#s=e,this.#i=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#R()}#E(e){i.jG.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#n)}),this.#e.getQueryCache().notify({query:this.#s,type:"observerResultsUpdated"})})}};function l(e,t){return!1!==(0,h.Eh)(t.enabled,e)&&void 0===e.state.data&&("error"!==e.state.status||!1!==t.retryOnMount)||void 0!==e.state.data&&o(e,t,t.refetchOnMount)}function o(e,t,r){if(!1!==(0,h.Eh)(t.enabled,e)&&"static"!==(0,h.d2)(t.staleTime,e)){let s="function"==typeof r?r(e):r;return"always"===s||!1!==s&&p(e,t)}return!1}function d(e,t,r,s){return(e!==t||!1===(0,h.Eh)(s.enabled,e))&&(!r.suspense||"error"!==e.state.status)&&p(e,r)}function p(e,t){return!1!==(0,h.Eh)(t.enabled,e)&&e.isStaleByTime((0,h.d2)(t.staleTime,e))}var f=r(7620),y=r(7606);r(4568);var R=f.createContext(function(){let e=!1;return{clearReset:()=>{e=!1},reset:()=>{e=!0},isReset:()=>e}}()),Q=()=>f.useContext(R),v=(e,t)=>{(e.suspense||e.throwOnError||e.experimental_prefetchInRender)&&!t.isReset()&&(e.retryOnMount=!1)},b=e=>{f.useEffect(()=>{e.clearReset()},[e])},m=e=>{let{result:t,errorResetBoundary:r,throwOnError:s,query:i,suspense:n}=e;return t.isError&&!r.isReset()&&!t.isFetching&&i&&(n&&void 0===t.data||(0,h.GU)(s,[t.error,i]))},I=f.createContext(!1),g=()=>f.useContext(I);I.Provider;var E=e=>{if(e.suspense){let t=e=>"static"===e?e:Math.max(e??1e3,1e3),r=e.staleTime;e.staleTime="function"==typeof r?(...e)=>t(r(...e)):t(r),"number"==typeof e.gcTime&&(e.gcTime=Math.max(e.gcTime,1e3))}},O=(e,t)=>e.isLoading&&e.isFetching&&!t,T=(e,t)=>e?.suspense&&t.isPending,S=(e,t,r)=>t.fetchOptimistic(e).catch(()=>{r.clearReset()});function C(e,t){return function(e,t,r){var s,n,u,a,c;let l=g(),o=Q(),d=(0,y.jE)(r),p=d.defaultQueryOptions(e);null==(n=d.getDefaultOptions().queries)||null==(s=n._experimental_beforeQuery)||s.call(n,p),p._optimisticResults=l?"isRestoring":"optimistic",E(p),v(p,o),b(o);let R=!d.getQueryCache().get(p.queryHash),[I]=f.useState(()=>new t(d,p)),C=I.getOptimisticResult(p),x=!l&&!1!==e.subscribed;if(f.useSyncExternalStore(f.useCallback(e=>{let t=x?I.subscribe(i.jG.batchCalls(e)):h.lQ;return I.updateResult(),t},[I,x]),()=>I.getCurrentResult(),()=>I.getCurrentResult()),f.useEffect(()=>{I.setOptions(p)},[p,I]),T(p,C))throw S(p,I,o);if(m({result:C,errorResetBoundary:o,throwOnError:p.throwOnError,query:d.getQueryCache().get(p.queryHash),suspense:p.suspense}))throw C.error;if(null==(a=d.getDefaultOptions().queries)||null==(u=a._experimental_afterQuery)||u.call(a,p,C),p.experimental_prefetchInRender&&!h.S$&&O(C,l)){let e=R?S(p,I,o):null==(c=d.getQueryCache().get(p.queryHash))?void 0:c.promise;null==e||e.catch(h.lQ).finally(()=>{I.updateResult()})}return p.notifyOnChangeProps?C:I.trackResult(C)}(e,c,t)}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[3835],{3120:(e,t,n)=>{n.d(t,{_:()=>l});var a=n(704);function o(){let e=window.location.hostname,t=window.location.pathname,n=t.startsWith("/agent/");if("agents.ciris.ai"!==e&&!n)return{mode:"standalone",agentId:"default",apiBase:"/v1"};{let e="default";e=n?t.split("/")[2]||"default":localStorage.getItem("selectedAgentId")||"default";let a="/api/".concat(e,"/v1");return{mode:"managed",agentId:e,apiBase:a}}}var i=n(5950);class r{configure(e,t){let n,{mode:a}=o();if("managed"===a)n="".concat(window.location.origin,"/api/").concat(e);else{let t=localStorage.getItem("agent_".concat(e,"_api_url"));n=t||window.location.origin}t||(t=i.a.getAccessToken()||void 0);let r={baseURL:n,authToken:t,agentId:e,mode:a};return this.hasConfigChanged(r)&&this.applyConfiguration(r),r}configureForOAuthCallback(e,t){let n,{mode:a}=o(),i={baseURL:"managed"===a?"".concat(window.location.origin,"/api/").concat(e):window.location.origin,authToken:t,agentId:e,mode:a};return this.applyConfiguration(i),this.storeConfiguration(i),i}getCurrentConfig(){return this.currentConfig}isConfiguredFor(e){return!!this.currentConfig&&this.currentConfig.agentId===e&&!!this.currentConfig.authToken}clear(){this.currentConfig=null,localStorage.removeItem("sdk_config"),this.log("SDK configuration cleared")}applyConfiguration(e){this.log("Applying SDK configuration:",e),a.AQ.setConfig({baseURL:e.baseURL,authToken:e.authToken}),this.currentConfig=e,this.log("SDK configured successfully")}hasConfigChanged(e){return!this.currentConfig||this.currentConfig.baseURL!==e.baseURL||this.currentConfig.authToken!==e.authToken||this.currentConfig.agentId!==e.agentId||this.currentConfig.mode!==e.mode}storeConfiguration(e){let t={baseURL:e.baseURL,agentId:e.agentId,mode:e.mode};localStorage.setItem("sdk_config",JSON.stringify(t)),"standalone"===e.mode&&e.baseURL!==window.location.origin&&localStorage.setItem("agent_".concat(e.agentId,"_api_url"),e.baseURL)}restoreConfiguration(){let e=localStorage.getItem("sdk_config");if(!e)return null;try{let t=JSON.parse(e),n=i.a.getAccessToken()||void 0;return{...t,authToken:n}}catch(e){return null}}log(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];this.debugMode&&console.log("[SDKConfigManager]",...t)}constructor(){this.currentConfig=null,this.debugMode=!1}}let l=new r},3835:(e,t,n)=>{n.d(t,{F:()=>f,f:()=>h});var a=n(4568),o=n(7620),i=n(9484),r=n(704),l=n(2942),s=n(3120),c=n(5950),g=n(4338);let u=(0,o.createContext)(null),d={agent_id:"datum",agent_name:"Datum (Local Dev)",status:"running",health:"healthy",api_url:g.env.NEXT_PUBLIC_CIRIS_API_URL||"http://localhost",api_port:8080,api_endpoint:g.env.NEXT_PUBLIC_CIRIS_API_URL||"http://localhost:8080",container_name:"ciris-agent-datum",created_at:new Date().toISOString(),started_at:new Date().toISOString(),update_available:!1};function f(e){let{children:t}=e,[n,g]=(0,o.useState)([]),[f,h]=(0,o.useState)(null),[_,C]=(0,o.useState)(new Map),[m,A]=(0,o.useState)(!1),[S,I]=(0,o.useState)(!1),[p,w]=(0,o.useState)(null),[y,k]=(0,o.useState)(!1),{user:v}=(0,i.A)(),b=(0,l.usePathname)(),R=async()=>{A(!0),w(null);try{let e=await r.AQ.manager.listAgents();if(g(e),k(!0),!f&&e.length>0){let t=e.find(e=>"running"===e.status)||e[0];await T(t.agent_id)}}catch(e){console.log("CIRIS Manager not available, using local dev agent"),g([d]),k(!1),f||await T(d.agent_id),e instanceof Error&&!e.message.includes("fetch")&&!e.message.includes("Failed to fetch")&&w(e)}finally{A(!1)}},L=async()=>{if(v&&f){I(!0);try{let e=await r.AQ.auth.getCurrentUser();if(e){let t={agentId:f.agent_id,apiRole:e.api_role,waRole:e.wa_role,isAuthority:"authority"===e.wa_role||"SYSTEM_ADMIN"===e.api_role,lastChecked:new Date};C(e=>{let n=new Map(e);return n.set(f.agent_id,t),n})}}catch(e){console.error("Failed to fetch role for agent ".concat(f.agent_id,":"),e)}I(!1)}},T=async e=>{let t=n.find(t=>t.agent_id===e);if(!t)return;console.log("[AgentContext] Selecting agent:",e),h(t);let a=c.a.getAccessToken()||void 0;s._.configure(e,a),localStorage.setItem("selectedAgentId",e),localStorage.setItem("selectedAgentName",t.agent_name),y||localStorage.setItem("agent_".concat(e,"_api_url"),"".concat(t.api_url,":").concat(t.api_port))},E=f&&_.get(f.agent_id)||null;return(0,o.useEffect)(()=>{let e=c.a.getAccessToken(),t=localStorage.getItem("selectedAgentId");e&&t&&(console.log("[AgentContext] Restoring SDK config for agent:",t),s._.configure(t,e)),R()},[]),(0,o.useEffect)(()=>{f&&v&&L()},[f,v]),(0,o.useEffect)(()=>{if(0===n.length||f)return;let e=b.match(/^\/agent\/([^\/]+)/);if(e&&e[1]){let t=e[1];if(n.find(e=>e.agent_id===t))return void T(t)}let t=localStorage.getItem("selectedAgentId");t&&T(t)},[n,b]),(0,a.jsx)(u.Provider,{value:{agents:n,currentAgent:f,currentAgentRole:E,agentRoles:_,selectAgent:T,refreshAgents:R,refreshAgentRoles:L,isLoadingAgents:m,isLoadingRoles:S,error:p,isManagerAvailable:y},children:t})}function h(){let e=(0,o.useContext)(u);if(!e)throw Error("useAgent must be used within an AgentProvider");return e}},9484:(e,t,n)=>{n.d(t,{A:()=>u,O:()=>g});var a=n(4568),o=n(7620),i=n(2942),r=n(3237),l=n(704),s=n(3120);let c=(0,o.createContext)(void 0);function g(e){let{children:t}=e,[n,g]=(0,o.useState)(null),[u,d]=(0,o.useState)(!0),[f,h]=(0,o.useState)(null),_=(0,i.useRouter)();(0,o.useEffect)(()=>{let e=window.location.pathname;"/login"===e||e.startsWith("/manager")?d(!1):C();let t=localStorage.getItem("manager_token");t&&h(t)},[]);let C=async()=>{try{if(l.AQ.isAuthenticated()){let e=await l.AQ.auth.getMe();g(e)}}catch(e){console.error("Auth check failed:",e)}finally{d(!1)}},m=(0,o.useCallback)(async(e,t)=>{try{let n=localStorage.getItem("selectedAgentId");if(!n)throw Error("No agent selected");s._.configure(n);let a=await l.AQ.login(e,t),o=l.AQ.auth.getAccessToken();o&&s._.configure(n,o),g(a),r.Ay.success("Welcome, ".concat(a.username||a.user_id,"!")),_.push("/")}catch(e){throw r.Ay.error(e.message||"Login failed"),e}},[_]),A=(0,o.useCallback)(async()=>{try{await l.AQ.logout(),g(null),r.Ay.success("Logged out successfully"),_.push("/login")}catch(e){console.error("Logout failed:",e),r.Ay.error("Logout failed")}},[_]),S=(0,o.useCallback)(e=>!!n&&(n.permissions.includes(e)||"SYSTEM_ADMIN"===n.role),[n]),I=(0,o.useCallback)(e=>{if(!n)return!1;let t=["OBSERVER","ADMIN","AUTHORITY","SYSTEM_ADMIN"];return t.indexOf(n.role)>=t.indexOf(e)},[n]),p=(0,o.useCallback)(e=>{l.AQ.setConfig({authToken:e})},[]),w=(0,o.useCallback)(()=>!!f,[f]);return(0,a.jsx)(c.Provider,{value:{user:n,loading:u,login:m,logout:A,hasPermission:S,hasRole:I,setUser:g,setToken:p,managerToken:f,setManagerToken:h,isManagerAuthenticated:w},children:t})}function u(){let e=(0,o.useContext)(c);if(void 0===e)throw Error("useAuth must be used within an AuthProvider");return e}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[4499],{1338:(e,r,s)=>{s.d(r,{L:()=>a});var t=s(4568),n=s(7620);class a extends n.Component{static getDerivedStateFromError(e){return{hasError:!0}}componentDidCatch(e,r){console.error("❌❌❌ CONSENT PAGE CRITICAL ERROR ❌❌❌"),console.error("Error:",e),console.error("Error Info:",r),console.error("Stack:",e.stack),this.setState({error:e,errorInfo:r}),alert("Critical error in Consent page: ".concat(e.message,"\n\nPlease refresh the page or contact support."))}render(){if(this.state.hasError){var e;return(0,t.jsx)("div",{className:"min-h-screen bg-red-50 flex items-center justify-center p-4",children:(0,t.jsxs)("div",{className:"max-w-2xl w-full bg-white rounded-lg shadow-xl p-6",children:[(0,t.jsxs)("div",{className:"flex items-center mb-4",children:[(0,t.jsx)("svg",{className:"h-12 w-12 text-red-600 mr-4",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",children:(0,t.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"})}),(0,t.jsx)("h1",{className:"text-2xl font-bold text-red-600",children:"Consent Page Error"})]}),(0,t.jsxs)("div",{className:"space-y-4",children:[(0,t.jsxs)("div",{className:"bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded",children:[(0,t.jsx)("p",{className:"font-bold",children:"Error Message:"}),(0,t.jsx)("p",{className:"font-mono text-sm mt-1",children:null==(e=this.state.error)?void 0:e.message})]}),!1,(0,t.jsxs)("div",{className:"flex space-x-4 mt-6",children:[(0,t.jsx)("button",{onClick:()=>window.location.reload(),className:"px-4 py-2 bg-red-600 text-white rounded hover:bg-red-700",children:"Reload Page"}),(0,t.jsx)("button",{onClick:()=>window.location.href="/",className:"px-4 py-2 bg-gray-600 text-white rounded hover:bg-gray-700",children:"Go to Home"})]})]})]})})}return this.props.children}constructor(e){super(e),this.state={hasError:!1,error:null,errorInfo:null}}}},3120:(e,r,s)=>{s.d(r,{_:()=>o});var t=s(704);function n(){let e=window.location.hostname,r=window.location.pathname,s=r.startsWith("/agent/");if("agents.ciris.ai"!==e&&!s)return{mode:"standalone",agentId:"default",apiBase:"/v1"};{let e="default";e=s?r.split("/")[2]||"default":localStorage.getItem("selectedAgentId")||"default";let t="/api/".concat(e,"/v1");return{mode:"managed",agentId:e,apiBase:t}}}var a=s(5950);class i{configure(e,r){let s,{mode:t}=n();if("managed"===t)s="".concat(window.location.origin,"/api/").concat(e);else{let r=localStorage.getItem("agent_".concat(e,"_api_url"));s=r||window.location.origin}r||(r=a.a.getAccessToken()||void 0);let i={baseURL:s,authToken:r,agentId:e,mode:t};return this.hasConfigChanged(i)&&this.applyConfiguration(i),i}configureForOAuthCallback(e,r){let s,{mode:t}=n(),a={baseURL:"managed"===t?"".concat(window.location.origin,"/api/").concat(e):window.location.origin,authToken:r,agentId:e,mode:t};return this.applyConfiguration(a),this.storeConfiguration(a),a}getCurrentConfig(){return this.currentConfig}isConfiguredFor(e){return!!this.currentConfig&&this.currentConfig.agentId===e&&!!this.currentConfig.authToken}clear(){this.currentConfig=null,localStorage.removeItem("sdk_config"),this.log("SDK configuration cleared")}applyConfiguration(e){this.log("Applying SDK configuration:",e),t.AQ.setConfig({baseURL:e.baseURL,authToken:e.authToken}),this.currentConfig=e,this.log("SDK configured successfully")}hasConfigChanged(e){return!this.currentConfig||this.currentConfig.baseURL!==e.baseURL||this.currentConfig.authToken!==e.authToken||this.currentConfig.agentId!==e.agentId||this.currentConfig.mode!==e.mode}storeConfiguration(e){let r={baseURL:e.baseURL,agentId:e.agentId,mode:e.mode};localStorage.setItem("sdk_config",JSON.stringify(r)),"standalone"===e.mode&&e.baseURL!==window.location.origin&&localStorage.setItem("agent_".concat(e.agentId,"_api_url"),e.baseURL)}restoreConfiguration(){let e=localStorage.getItem("sdk_config");if(!e)return null;try{let r=JSON.parse(e),s=a.a.getAccessToken()||void 0;return{...r,authToken:s}}catch(e){return null}}log(){for(var e=arguments.length,r=Array(e),s=0;s<e;s++)r[s]=arguments[s];this.debugMode&&console.log("[SDKConfigManager]",...r)}constructor(){this.currentConfig=null,this.debugMode=!1}}let o=new i},3457:(e,r,s)=>{s.d(r,{k:()=>n,u:()=>a});var t=s(4568);function n(){return(0,t.jsxs)("div",{className:"space-y-4",children:[(0,t.jsx)("div",{className:"bg-blue-50 border border-blue-200 rounded-lg p-4",children:(0,t.jsxs)("div",{className:"flex",children:[(0,t.jsx)("div",{className:"flex-shrink-0",children:(0,t.jsx)("svg",{className:"h-5 w-5 text-blue-400",fill:"currentColor",viewBox:"0 0 20 20",children:(0,t.jsx)("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z",clipRule:"evenodd"})})}),(0,t.jsxs)("div",{className:"ml-3",children:[(0,t.jsx)("h3",{className:"text-sm font-medium text-blue-800",children:"Consent Record Creation"}),(0,t.jsx)("div",{className:"mt-2 text-sm text-blue-700",children:(0,t.jsxs)("p",{children:["Consent records are automatically created ",(0,t.jsx)("strong",{children:"6-12 hours after your first Discord interaction"})," with CIRIS. This delay ensures meaningful engagement before establishing a consent relationship."]})})]})]})}),(0,t.jsx)("div",{className:"bg-amber-50 border border-amber-200 rounded-lg p-4",children:(0,t.jsxs)("div",{className:"flex",children:[(0,t.jsx)("div",{className:"flex-shrink-0",children:(0,t.jsx)("svg",{className:"h-5 w-5 text-amber-400",fill:"currentColor",viewBox:"0 0 20 20",children:(0,t.jsx)("path",{fillRule:"evenodd",d:"M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z",clipRule:"evenodd"})})}),(0,t.jsxs)("div",{className:"ml-3",children:[(0,t.jsx)("h3",{className:"text-sm font-medium text-amber-800",children:"Important Consent Rules"}),(0,t.jsxs)("div",{className:"mt-2 text-sm text-amber-700 space-y-2",children:[(0,t.jsxs)("p",{children:[(0,t.jsx)("strong",{children:"Downgrades:"})," Switching to TEMPORARY or ANONYMOUS creates a proactive opt-out and takes effect immediately."]}),(0,t.jsxs)("p",{children:[(0,t.jsx)("strong",{children:"Partnership Upgrades:"})," Always require mutual consent from both you and the agent. The agent must approve your partnership request."]})]})]})]})}),(0,t.jsx)("div",{className:"bg-gray-50 border border-gray-200 rounded-lg p-4",children:(0,t.jsxs)("div",{className:"flex",children:[(0,t.jsx)("div",{className:"flex-shrink-0",children:(0,t.jsx)("svg",{className:"h-5 w-5 text-gray-400",fill:"currentColor",viewBox:"0 0 20 20",children:(0,t.jsx)("path",{fillRule:"evenodd",d:"M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z",clipRule:"evenodd"})})}),(0,t.jsxs)("div",{className:"ml-3",children:[(0,t.jsx)("h3",{className:"text-sm font-medium text-gray-800",children:"Privacy & Access Control"}),(0,t.jsx)("div",{className:"mt-2 text-sm text-gray-700",children:(0,t.jsx)("p",{children:"You can only view and manage your own consent settings. Administrators can view consent records for all users for compliance purposes, but cannot modify them."})})]})]})})]})}function a(e){let{partnershipRequests:r}=e;if(!r||0===r.length)return null;let s=r.filter(e=>"agent"===e.from);return 0===s.length?null:(0,t.jsx)("div",{className:"bg-green-50 border border-green-200 rounded-lg p-4 mb-6",children:(0,t.jsxs)("div",{className:"flex items-start",children:[(0,t.jsx)("div",{className:"flex-shrink-0",children:(0,t.jsxs)("div",{className:"relative",children:[(0,t.jsx)("svg",{className:"h-6 w-6 text-green-400",fill:"currentColor",viewBox:"0 0 20 20",children:(0,t.jsx)("path",{d:"M8 9a3 3 0 100-6 3 3 0 000 6zM8 11a6 6 0 016 6H2a6 6 0 016-6zM16 7a1 1 0 10-2 0v1h-1a1 1 0 100 2h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1V7z"})}),(0,t.jsx)("span",{className:"absolute -top-1 -right-1 h-3 w-3 bg-green-400 rounded-full animate-pulse"})]})}),(0,t.jsxs)("div",{className:"ml-3 flex-1",children:[(0,t.jsx)("h3",{className:"text-sm font-medium text-green-800",children:"Partnership Request from Agent"}),(0,t.jsxs)("div",{className:"mt-2 text-sm text-green-700",children:[(0,t.jsx)("p",{children:"The agent has requested to establish a partnership with you! This would enable:"}),(0,t.jsxs)("ul",{className:"mt-2 list-disc list-inside space-y-1",children:[(0,t.jsx)("li",{children:"Enhanced personalization based on your preferences"}),(0,t.jsx)("li",{children:"Long-term memory of your interactions"}),(0,t.jsx)("li",{children:"Mutual growth and learning"})]}),s[0].message&&(0,t.jsxs)("p",{className:"mt-3 italic",children:['"',s[0].message,'"']}),(0,t.jsxs)("div",{className:"mt-4 flex space-x-3",children:[(0,t.jsx)("button",{className:"inline-flex items-center px-3 py-1.5 border border-transparent text-xs font-medium rounded-md text-white bg-green-600 hover:bg-green-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-green-500",children:"Accept Partnership"}),(0,t.jsx)("button",{className:"inline-flex items-center px-3 py-1.5 border border-gray-300 text-xs font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500",children:"Decline"})]})]})]})]})})}s(7620)},5003:(e,r,s)=>{s.d(r,{A:()=>l});var t=s(4568),n=s(7620),a=s(704),i=s(7192);let o=[{id:a.Lb.INTERACTION,name:"Interaction",description:"Learn from our conversations",icon:"\uD83D\uDCAC"},{id:a.Lb.PREFERENCE,name:"Preference",description:"Learn your preferences and patterns",icon:"⚙️"},{id:a.Lb.IMPROVEMENT,name:"Improvement",description:"Use for self-improvement",icon:"\uD83D\uDCC8"},{id:a.Lb.RESEARCH,name:"Research",description:"Use for research purposes",icon:"\uD83D\uDD2C"},{id:a.Lb.SHARING,name:"Sharing",description:"Share learnings with others",icon:"\uD83E\uDD32"}];function l(e){let{isOpen:r,onClose:s,onSuccess:l}=e,[c,d]=(0,n.useState)([]),[u,h]=(0,n.useState)(""),[m,g]=(0,n.useState)(!1),[x,f]=(0,n.useState)(null);if(!r)return null;let p=e=>{d(r=>r.includes(e)?r.filter(r=>r!==e):[...r,e])},b=async()=>{if(0===c.length)return void f("Please select at least one category");g(!0),f(null);try{console.log("Selected categories (raw):",c),console.log("Selected categories (values):",c.map(e=>String(e))),await a.AQ.consent.requestPartnership(c,u||"User requested partnership upgrade"),l(),s()}catch(e){f((0,i.PE)(e)),console.error("Partnership request failed:",e),console.error("Error details:",{status:null==e?void 0:e.status,detail:null==e?void 0:e.detail,message:null==e?void 0:e.message,type:null==e?void 0:e.type})}finally{g(!1)}};return(0,t.jsx)("div",{className:"fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50",children:(0,t.jsxs)("div",{className:"bg-white rounded-lg shadow-xl max-w-2xl w-full mx-4 max-h-[90vh] overflow-y-auto",children:[(0,t.jsxs)("div",{className:"border-b px-6 py-4",children:[(0,t.jsxs)("div",{className:"flex items-center justify-between",children:[(0,t.jsx)("h2",{className:"text-xl font-semibold text-gray-900",children:"Request Partnership"}),(0,t.jsx)("button",{onClick:s,className:"text-gray-400 hover:text-gray-500",children:(0,t.jsx)("svg",{className:"h-6 w-6",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:(0,t.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]}),(0,t.jsx)("p",{className:"mt-1 text-sm text-gray-600",children:"Partnership requires mutual consent. The agent will review your request."})]}),(0,t.jsxs)("div",{className:"px-6 py-4",children:[(0,t.jsxs)("div",{className:"mb-6",children:[(0,t.jsx)("h3",{className:"text-sm font-medium text-gray-900 mb-3",children:"Select what you'd like to share:"}),(0,t.jsx)("div",{className:"space-y-3",children:o.map(e=>(0,t.jsxs)("label",{className:"flex items-start cursor-pointer hover:bg-gray-50 p-3 rounded-lg transition-colors",children:[(0,t.jsx)("input",{type:"checkbox",checked:c.includes(e.id),onChange:()=>p(e.id),className:"mt-1 h-4 w-4 text-indigo-600 border-gray-300 rounded focus:ring-indigo-500"}),(0,t.jsxs)("div",{className:"ml-3 flex-1",children:[(0,t.jsxs)("div",{className:"flex items-center",children:[(0,t.jsx)("span",{className:"text-lg mr-2",children:e.icon}),(0,t.jsx)("span",{className:"font-medium text-gray-900",children:e.name})]}),(0,t.jsx)("p",{className:"text-sm text-gray-600 mt-1",children:e.description})]})]},e.id))})]}),(0,t.jsxs)("div",{className:"mb-6",children:[(0,t.jsx)("label",{htmlFor:"reason",className:"block text-sm font-medium text-gray-900 mb-2",children:"Tell the agent why you want to partner (optional):"}),(0,t.jsx)("textarea",{id:"reason",rows:4,value:u,onChange:e=>h(e.target.value),className:"w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:ring-indigo-500 focus:border-indigo-500",placeholder:"Share your goals and how partnership would help both of us grow..."})]}),x&&(0,t.jsx)("div",{className:"mb-4 p-3 bg-red-50 border border-red-200 rounded-md",children:(0,t.jsx)("p",{className:"text-sm text-red-600",children:x})}),(0,t.jsx)("div",{className:"bg-blue-50 border border-blue-200 rounded-lg p-4 mb-6",children:(0,t.jsxs)("div",{className:"flex",children:[(0,t.jsx)("div",{className:"flex-shrink-0",children:(0,t.jsx)("svg",{className:"h-5 w-5 text-blue-400",fill:"currentColor",viewBox:"0 0 20 20",children:(0,t.jsx)("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z",clipRule:"evenodd"})})}),(0,t.jsxs)("div",{className:"ml-3",children:[(0,t.jsx)("h3",{className:"text-sm font-medium text-blue-800",children:"About Partnership"}),(0,t.jsx)("div",{className:"mt-2 text-sm text-blue-700",children:(0,t.jsxs)("ul",{className:"list-disc pl-5 space-y-1",children:[(0,t.jsx)("li",{children:"The agent will review your request within 48 hours"}),(0,t.jsx)("li",{children:"You'll be notified when a decision is made"}),(0,t.jsx)("li",{children:"You can withdraw your request at any time"}),(0,t.jsx)("li",{children:"Partnership can be ended by either party"})]})})]})]})})]}),(0,t.jsx)("div",{className:"border-t px-6 py-4 bg-gray-50",children:(0,t.jsxs)("div",{className:"flex justify-end space-x-3",children:[(0,t.jsx)("button",{onClick:s,disabled:m,className:"px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 rounded-md hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500",children:"Cancel"}),(0,t.jsx)("button",{onClick:b,disabled:m||0===c.length,className:"px-4 py-2 text-sm font-medium text-white bg-indigo-600 border border-transparent rounded-md hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 disabled:opacity-50 disabled:cursor-not-allowed",children:m?"Submitting...":"Submit Request"})]})})]})})}},6264:(e,r,s)=>{s.d(r,{O:()=>o});var t=s(4568),n=s(7620),a=s(2942),i=s(9484);function o(e){let{children:r,requiredRole:s,requiredPermission:o}=e,{user:l,loading:c,hasRole:d,hasPermission:u}=(0,i.A)(),h=(0,a.useRouter)();return((0,n.useEffect)(()=>{if(!c){if(!l)return void h.push("/login");if(s&&!d(s)||o&&!u(o))return void h.push("/unauthorized")}},[l,c,s,o,d,u,h]),c)?(0,t.jsx)("div",{className:"flex items-center justify-center min-h-screen",children:(0,t.jsx)("div",{className:"text-lg",children:"Loading..."})}):l&&(!s||d(s))&&(!o||u(o))?(0,t.jsx)(t.Fragment,{children:r}):null}},7192:(e,r,s)=>{function t(e){if(!e)return"Unknown error";if("string"==typeof e)return e;if(Array.isArray(e))return e.map(e=>"string"==typeof e?e:e.msg?e.msg:e.message?e.message:JSON.stringify(e)).join("; ");if(e.detail){if(Array.isArray(e.detail))return e.detail.map(e=>{let r=Array.isArray(e.loc)?e.loc.join("."):e.loc||"",s=e.msg||e.message||"Validation error";return r?"".concat(r,": ").concat(s):s}).join("; ");if("string"==typeof e.detail)return e.detail;if("object"==typeof e.detail)return JSON.stringify(e.detail)}if(e.message&&"string"==typeof e.message)return e.message;if(e.error&&"string"==typeof e.error)return e.error;if(e.statusText&&"string"==typeof e.statusText)return e.statusText;try{let r=JSON.stringify(e);if(r.length>200)return"Complex error object (see console for details)";return r}catch(e){return"Unknown error (see console for details)"}}s.d(r,{PE:()=>t})},9484:(e,r,s)=>{s.d(r,{A:()=>u,O:()=>d});var t=s(4568),n=s(7620),a=s(2942),i=s(3237),o=s(704),l=s(3120);let c=(0,n.createContext)(void 0);function d(e){let{children:r}=e,[s,d]=(0,n.useState)(null),[u,h]=(0,n.useState)(!0),[m,g]=(0,n.useState)(null),x=(0,a.useRouter)();(0,n.useEffect)(()=>{let e=window.location.pathname;"/login"===e||e.startsWith("/manager")?h(!1):f();let r=localStorage.getItem("manager_token");r&&g(r)},[]);let f=async()=>{try{if(o.AQ.isAuthenticated()){let e=await o.AQ.auth.getMe();d(e)}}catch(e){console.error("Auth check failed:",e)}finally{h(!1)}},p=(0,n.useCallback)(async(e,r)=>{try{let s=localStorage.getItem("selectedAgentId");if(!s)throw Error("No agent selected");l._.configure(s);let t=await o.AQ.login(e,r),n=o.AQ.auth.getAccessToken();n&&l._.configure(s,n),d(t),i.Ay.success("Welcome, ".concat(t.username||t.user_id,"!")),x.push("/")}catch(e){throw i.Ay.error(e.message||"Login failed"),e}},[x]),b=(0,n.useCallback)(async()=>{try{await o.AQ.logout(),d(null),i.Ay.success("Logged out successfully"),x.push("/login")}catch(e){console.error("Logout failed:",e),i.Ay.error("Logout failed")}},[x]),v=(0,n.useCallback)(e=>!!s&&(s.permissions.includes(e)||"SYSTEM_ADMIN"===s.role),[s]),j=(0,n.useCallback)(e=>{if(!s)return!1;let r=["OBSERVER","ADMIN","AUTHORITY","SYSTEM_ADMIN"];return r.indexOf(s.role)>=r.indexOf(e)},[s]),y=(0,n.useCallback)(e=>{o.AQ.setConfig({authToken:e})},[]),N=(0,n.useCallback)(()=>!!m,[m]);return(0,t.jsx)(c.Provider,{value:{user:s,loading:u,login:p,logout:b,hasPermission:v,hasRole:j,setUser:d,setToken:y,managerToken:m,setManagerToken:g,isManagerAuthenticated:N},children:r})}function u(){let e=(0,n.useContext)(c);if(void 0===e)throw Error("useAuth must be used within an AuthProvider");return e}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[4534],{3237:(e,t,n)=>{function r(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}n.d(t,{l$:()=>ej,Ay:()=>eO});var o,i=n(7620);let a={data:""},s=e=>"object"==typeof window?((e?e.querySelector("#_goober"):window._goober)||Object.assign((e||document.head).appendChild(document.createElement("style")),{innerHTML:" ",id:"_goober"})).firstChild:e||a,l=/(?:([\u0080-\uFFFF\w-%@]+) *:? *([^{;]+?);|([^;}{]*?) *{)|(}\s*)/g,c=/\/\*[^]*?\*\/| +/g,u=/\n+/g,d=(e,t)=>{let n="",r="",o="";for(let i in e){let a=e[i];"@"==i[0]?"i"==i[1]?n=i+" "+a+";":r+="f"==i[1]?d(a,i):i+"{"+d(a,"k"==i[1]?"":t)+"}":"object"==typeof a?r+=d(a,t?t.replace(/([^,])+/g,e=>i.replace(/([^,]*:\S+\([^)]*\))|([^,])+/g,t=>/&/.test(t)?t.replace(/&/g,e):e?e+" "+t:t)):i):null!=a&&(i=/^--/.test(i)?i:i.replace(/[A-Z]/g,"-$&").toLowerCase(),o+=d.p?d.p(i,a):i+":"+a+";")}return n+(t&&o?t+"{"+o+"}":o)+r},p={},f=e=>{if("object"==typeof e){let t="";for(let n in e)t+=n+f(e[n]);return t}return e},m=(e,t,n,r,o)=>{let i=f(e),a=p[i]||(p[i]=(e=>{let t=0,n=11;for(;t<e.length;)n=101*n+e.charCodeAt(t++)>>>0;return"go"+n})(i));if(!p[a]){let t=i!==e?e:(e=>{let t,n,r=[{}];for(;t=l.exec(e.replace(c,""));)t[4]?r.shift():t[3]?(n=t[3].replace(u," ").trim(),r.unshift(r[0][n]=r[0][n]||{})):r[0][t[1]]=t[2].replace(u," ").trim();return r[0]})(e);p[a]=d(o?{["@keyframes "+a]:t}:t,n?"":"."+a)}let s=n&&p.g?p.g:null;return n&&(p.g=p[a]),((e,t,n,r)=>{r?t.data=t.data.replace(r,e):-1===t.data.indexOf(e)&&(t.data=n?e+t.data:t.data+e)})(p[a],t,r,s),a},g=(e,t,n)=>e.reduce((e,r,o)=>{let i=t[o];if(i&&i.call){let e=i(n),t=e&&e.props&&e.props.className||/^go/.test(e)&&e;i=t?"."+t:e&&"object"==typeof e?e.props?"":d(e,""):!1===e?"":e}return e+r+(null==i?"":i)},"");function h(e){let t=this||{},n=e.call?e(t.p):e;return m(n.unshift?n.raw?g(n,[].slice.call(arguments,1),t.p):n.reduce((e,n)=>Object.assign(e,n&&n.call?n(t.p):n),{}):n,s(t.target),t.g,t.o,t.k)}h.bind({g:1});let y,b,v,x=h.bind({k:1});function w(e,t){let n=this||{};return function(){let r=arguments;function o(i,a){let s=Object.assign({},i),l=s.className||o.className;n.p=Object.assign({theme:b&&b()},s),n.o=/ *go\d+/.test(l),s.className=h.apply(n,r)+(l?" "+l:""),t&&(s.ref=a);let c=e;return e[0]&&(c=s.as||e,delete s.as),v&&c[0]&&v(s),y(c,s)}return t?t(o):o}}function E(){let e=r(["\nfrom {\n transform: scale(0) rotate(45deg);\n opacity: 0;\n}\nto {\n transform: scale(1) rotate(45deg);\n opacity: 1;\n}"]);return E=function(){return e},e}function k(){let e=r(["\nfrom {\n transform: scale(0);\n opacity: 0;\n}\nto {\n transform: scale(1);\n opacity: 1;\n}"]);return k=function(){return e},e}function C(){let e=r(["\nfrom {\n transform: scale(0) rotate(90deg);\n opacity: 0;\n}\nto {\n transform: scale(1) rotate(90deg);\n opacity: 1;\n}"]);return C=function(){return e},e}function j(){let e=r(["\n width: 20px;\n opacity: 0;\n height: 20px;\n border-radius: 10px;\n background: ",";\n position: relative;\n transform: rotate(45deg);\n\n animation: "," 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)\n forwards;\n animation-delay: 100ms;\n\n &:after,\n &:before {\n content: '';\n animation: "," 0.15s ease-out forwards;\n animation-delay: 150ms;\n position: absolute;\n border-radius: 3px;\n opacity: 0;\n background: ",";\n bottom: 9px;\n left: 4px;\n height: 2px;\n width: 12px;\n }\n\n &:before {\n animation: "," 0.15s ease-out forwards;\n animation-delay: 180ms;\n transform: rotate(90deg);\n }\n"]);return j=function(){return e},e}function O(){let e=r(["\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n"]);return O=function(){return e},e}function D(){let e=r(["\n width: 12px;\n height: 12px;\n box-sizing: border-box;\n border: 2px solid;\n border-radius: 100%;\n border-color: ",";\n border-right-color: ",";\n animation: "," 1s linear infinite;\n"]);return D=function(){return e},e}function z(){let e=r(["\nfrom {\n transform: scale(0) rotate(45deg);\n opacity: 0;\n}\nto {\n transform: scale(1) rotate(45deg);\n opacity: 1;\n}"]);return z=function(){return e},e}function A(){let e=r(["\n0% {\n height: 0;\n width: 0;\n opacity: 0;\n}\n40% {\n height: 0;\n width: 6px;\n opacity: 1;\n}\n100% {\n opacity: 1;\n height: 10px;\n}"]);return A=function(){return e},e}function I(){let e=r(["\n width: 20px;\n opacity: 0;\n height: 20px;\n border-radius: 10px;\n background: ",";\n position: relative;\n transform: rotate(45deg);\n\n animation: "," 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)\n forwards;\n animation-delay: 100ms;\n &:after {\n content: '';\n box-sizing: border-box;\n animation: "," 0.2s ease-out forwards;\n opacity: 0;\n animation-delay: 200ms;\n position: absolute;\n border-right: 2px solid;\n border-bottom: 2px solid;\n border-color: ",";\n bottom: 6px;\n left: 6px;\n height: 10px;\n width: 6px;\n }\n"]);return I=function(){return e},e}function N(){let e=r(["\n position: absolute;\n"]);return N=function(){return e},e}function P(){let e=r(["\n position: relative;\n display: flex;\n justify-content: center;\n align-items: center;\n min-width: 20px;\n min-height: 20px;\n"]);return P=function(){return e},e}function U(){let e=r(["\nfrom {\n transform: scale(0.6);\n opacity: 0.4;\n}\nto {\n transform: scale(1);\n opacity: 1;\n}"]);return U=function(){return e},e}function _(){let e=r(["\n position: relative;\n transform: scale(0.6);\n opacity: 0.4;\n min-width: 20px;\n animation: "," 0.3s 0.12s cubic-bezier(0.175, 0.885, 0.32, 1.275)\n forwards;\n"]);return _=function(){return e},e}function F(){let e=r(["\n display: flex;\n align-items: center;\n background: #fff;\n color: #363636;\n line-height: 1.3;\n will-change: transform;\n box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05);\n max-width: 350px;\n pointer-events: auto;\n padding: 8px 10px;\n border-radius: 8px;\n"]);return F=function(){return e},e}function R(){let e=r(["\n display: flex;\n justify-content: center;\n margin: 4px 10px;\n color: inherit;\n flex: 1 1 auto;\n white-space: pre-line;\n"]);return R=function(){return e},e}function T(){let e=r(["\n z-index: 9999;\n > * {\n pointer-events: auto;\n }\n"]);return T=function(){return e},e}var M=e=>"function"==typeof e,S=(e,t)=>M(e)?e(t):e,B=(()=>{let e=0;return()=>(++e).toString()})(),H=(()=>{let e;return()=>{if(void 0===e&&"u">typeof window){let t=matchMedia("(prefers-reduced-motion: reduce)");e=!t||t.matches}return e}})(),L=(e,t)=>{switch(t.type){case 0:return{...e,toasts:[t.toast,...e.toasts].slice(0,20)};case 1:return{...e,toasts:e.toasts.map(e=>e.id===t.toast.id?{...e,...t.toast}:e)};case 2:let{toast:n}=t;return L(e,{type:+!!e.toasts.find(e=>e.id===n.id),toast:n});case 3:let{toastId:r}=t;return{...e,toasts:e.toasts.map(e=>e.id===r||void 0===r?{...e,dismissed:!0,visible:!1}:e)};case 4:return void 0===t.toastId?{...e,toasts:[]}:{...e,toasts:e.toasts.filter(e=>e.id!==t.toastId)};case 5:return{...e,pausedAt:t.time};case 6:let o=t.time-(e.pausedAt||0);return{...e,pausedAt:void 0,toasts:e.toasts.map(e=>({...e,pauseDuration:e.pauseDuration+o}))}}},$=[],q={toasts:[],pausedAt:void 0},Y=e=>{q=L(q,e),$.forEach(e=>{e(q)})},Z={blank:4e3,error:4e3,success:2e3,loading:1/0,custom:4e3},G=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},[t,n]=(0,i.useState)(q),r=(0,i.useRef)(q);(0,i.useEffect)(()=>(r.current!==q&&n(q),$.push(n),()=>{let e=$.indexOf(n);e>-1&&$.splice(e,1)}),[]);let o=t.toasts.map(t=>{var n,r,o;return{...e,...e[t.type],...t,removeDelay:t.removeDelay||(null==(n=e[t.type])?void 0:n.removeDelay)||(null==e?void 0:e.removeDelay),duration:t.duration||(null==(r=e[t.type])?void 0:r.duration)||(null==e?void 0:e.duration)||Z[t.type],style:{...e.style,...null==(o=e[t.type])?void 0:o.style,...t.style}}});return{...t,toasts:o}},J=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"blank",n=arguments.length>2?arguments[2]:void 0;return{createdAt:Date.now(),visible:!0,dismissed:!1,type:t,ariaProps:{role:"status","aria-live":"polite"},message:e,pauseDuration:0,...n,id:(null==n?void 0:n.id)||B()}},K=e=>(t,n)=>{let r=J(t,e,n);return Y({type:2,toast:r}),r.id},Q=(e,t)=>K("blank")(e,t);Q.error=K("error"),Q.success=K("success"),Q.loading=K("loading"),Q.custom=K("custom"),Q.dismiss=e=>{Y({type:3,toastId:e})},Q.remove=e=>Y({type:4,toastId:e}),Q.promise=(e,t,n)=>{let r=Q.loading(t.loading,{...n,...null==n?void 0:n.loading});return"function"==typeof e&&(e=e()),e.then(e=>{let o=t.success?S(t.success,e):void 0;return o?Q.success(o,{id:r,...n,...null==n?void 0:n.success}):Q.dismiss(r),e}).catch(e=>{let o=t.error?S(t.error,e):void 0;o?Q.error(o,{id:r,...n,...null==n?void 0:n.error}):Q.dismiss(r)}),e};var V=(e,t)=>{Y({type:1,toast:{id:e,height:t}})},W=()=>{Y({type:5,time:Date.now()})},X=new Map,ee=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1e3;if(X.has(e))return;let n=setTimeout(()=>{X.delete(e),Y({type:4,toastId:e})},t);X.set(e,n)},et=e=>{let{toasts:t,pausedAt:n}=G(e);(0,i.useEffect)(()=>{if(n)return;let e=Date.now(),r=t.map(t=>{if(t.duration===1/0)return;let n=(t.duration||0)+t.pauseDuration-(e-t.createdAt);if(n<0){t.visible&&Q.dismiss(t.id);return}return setTimeout(()=>Q.dismiss(t.id),n)});return()=>{r.forEach(e=>e&&clearTimeout(e))}},[t,n]);let r=(0,i.useCallback)(()=>{n&&Y({type:6,time:Date.now()})},[n]),o=(0,i.useCallback)((e,n)=>{let{reverseOrder:r=!1,gutter:o=8,defaultPosition:i}=n||{},a=t.filter(t=>(t.position||i)===(e.position||i)&&t.height),s=a.findIndex(t=>t.id===e.id),l=a.filter((e,t)=>t<s&&e.visible).length;return a.filter(e=>e.visible).slice(...r?[l+1]:[0,l]).reduce((e,t)=>e+(t.height||0)+o,0)},[t]);return(0,i.useEffect)(()=>{t.forEach(e=>{if(e.dismissed)ee(e.id,e.removeDelay);else{let t=X.get(e.id);t&&(clearTimeout(t),X.delete(e.id))}})},[t]),{toasts:t,handlers:{updateHeight:V,startPause:W,endPause:r,calculateOffset:o}}},en=x(E()),er=x(k()),eo=x(C()),ei=w("div")(j(),e=>e.primary||"#ff4b4b",en,er,e=>e.secondary||"#fff",eo),ea=x(O()),es=w("div")(D(),e=>e.secondary||"#e0e0e0",e=>e.primary||"#616161",ea),el=x(z()),ec=x(A()),eu=w("div")(I(),e=>e.primary||"#61d345",el,ec,e=>e.secondary||"#fff"),ed=w("div")(N()),ep=w("div")(P()),ef=x(U()),em=w("div")(_(),ef),eg=e=>{let{toast:t}=e,{icon:n,type:r,iconTheme:o}=t;return void 0!==n?"string"==typeof n?i.createElement(em,null,n):n:"blank"===r?null:i.createElement(ep,null,i.createElement(es,{...o}),"loading"!==r&&i.createElement(ed,null,"error"===r?i.createElement(ei,{...o}):i.createElement(eu,{...o})))},eh=e=>"\n0% {transform: translate3d(0,".concat(-200*e,"%,0) scale(.6); opacity:.5;}\n100% {transform: translate3d(0,0,0) scale(1); opacity:1;}\n"),ey=e=>"\n0% {transform: translate3d(0,0,-1px) scale(1); opacity:1;}\n100% {transform: translate3d(0,".concat(-150*e,"%,-1px) scale(.6); opacity:0;}\n"),eb=w("div")(F()),ev=w("div")(R()),ex=(e,t)=>{let n=e.includes("top")?1:-1,[r,o]=H()?["0%{opacity:0;} 100%{opacity:1;}","0%{opacity:1;} 100%{opacity:0;}"]:[eh(n),ey(n)];return{animation:t?"".concat(x(r)," 0.35s cubic-bezier(.21,1.02,.73,1) forwards"):"".concat(x(o)," 0.4s forwards cubic-bezier(.06,.71,.55,1)")}},ew=i.memo(e=>{let{toast:t,position:n,style:r,children:o}=e,a=t.height?ex(t.position||n||"top-center",t.visible):{opacity:0},s=i.createElement(eg,{toast:t}),l=i.createElement(ev,{...t.ariaProps},S(t.message,t));return i.createElement(eb,{className:t.className,style:{...a,...r,...t.style}},"function"==typeof o?o({icon:s,message:l}):i.createElement(i.Fragment,null,s,l))});o=i.createElement,d.p=void 0,y=o,b=void 0,v=void 0;var eE=e=>{let{id:t,className:n,style:r,onHeightUpdate:o,children:a}=e,s=i.useCallback(e=>{if(e){let n=()=>{o(t,e.getBoundingClientRect().height)};n(),new MutationObserver(n).observe(e,{subtree:!0,childList:!0,characterData:!0})}},[t,o]);return i.createElement("div",{ref:s,className:n,style:r},a)},ek=(e,t)=>{let n=e.includes("top"),r=e.includes("center")?{justifyContent:"center"}:e.includes("right")?{justifyContent:"flex-end"}:{};return{left:0,right:0,display:"flex",position:"absolute",transition:H()?void 0:"all 230ms cubic-bezier(.21,1.02,.73,1)",transform:"translateY(".concat(t*(n?1:-1),"px)"),...n?{top:0}:{bottom:0},...r}},eC=h(T()),ej=e=>{let{reverseOrder:t,position:n="top-center",toastOptions:r,gutter:o,children:a,containerStyle:s,containerClassName:l}=e,{toasts:c,handlers:u}=et(r);return i.createElement("div",{id:"_rht_toaster",style:{position:"fixed",zIndex:9999,top:16,left:16,right:16,bottom:16,pointerEvents:"none",...s},className:l,onMouseEnter:u.startPause,onMouseLeave:u.endPause},c.map(e=>{let r=e.position||n,s=ek(r,u.calculateOffset(e,{reverseOrder:t,gutter:o,defaultPosition:n}));return i.createElement(eE,{id:e.id,key:e.id,onHeightUpdate:u.updateHeight,className:e.visible?eC:"",style:s},"custom"===e.type?S(e.message,e):a?a(e):i.createElement(ew,{toast:e,position:r}))}))},eO=Q},7932:(e,t,n)=>{function r(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)e[r]=n[r]}return e}n.d(t,{A:()=>o});var o=function e(t,n){function o(e,o,i){if("undefined"!=typeof document){"number"==typeof(i=r({},n,i)).expires&&(i.expires=new Date(Date.now()+864e5*i.expires)),i.expires&&(i.expires=i.expires.toUTCString()),e=encodeURIComponent(e).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var a="";for(var s in i)i[s]&&(a+="; "+s,!0!==i[s]&&(a+="="+i[s].split(";")[0]));return document.cookie=e+"="+t.write(o,e)+a}}return Object.create({set:o,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var n=document.cookie?document.cookie.split("; "):[],r={},o=0;o<n.length;o++){var i=n[o].split("="),a=i.slice(1).join("=");try{var s=decodeURIComponent(i[0]);if(r[s]=t.read(a,s),e===s)break}catch(e){}}return e?r[e]:r}},remove:function(e,t){o(e,"",r({},t,{expires:-1}))},withAttributes:function(t){return e(this.converter,r({},this.attributes,t))},withConverter:function(t){return e(r({},this.converter,t),this.attributes)}},{attributes:{value:Object.freeze(n)},converter:{value:Object.freeze(t)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"})}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[4541],{4541:(t,e,n)=>{function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function a(t,e){if(e.length<t)throw TypeError(t+" argument"+(t>1?"s":"")+" required, but only "+e.length+" present")}function i(t){a(1,arguments);var e=Object.prototype.toString.call(t);return t instanceof Date||"object"===r(t)&&"[object Date]"===e?new Date(t.getTime()):"number"==typeof t||"[object Number]"===e?new Date(t):(("string"==typeof t||"[object String]"===e)&&"undefined"!=typeof console&&(console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments"),console.warn(Error().stack)),new Date(NaN))}function o(t){if(null===t||!0===t||!1===t)return NaN;var e=Number(t);return isNaN(e)?e:e<0?Math.ceil(e):Math.floor(e)}function u(t){a(1,arguments);var e=i(t),n=e.getUTCDay();return e.setUTCDate(e.getUTCDate()-(7*(n<1)+n-1)),e.setUTCHours(0,0,0,0),e}function s(t){a(1,arguments);var e=i(t),n=e.getUTCFullYear(),r=new Date(0);r.setUTCFullYear(n+1,0,4),r.setUTCHours(0,0,0,0);var o=u(r),s=new Date(0);s.setUTCFullYear(n,0,4),s.setUTCHours(0,0,0,0);var l=u(s);return e.getTime()>=o.getTime()?n+1:e.getTime()>=l.getTime()?n:n-1}n.d(e,{A:()=>F});var l={};function d(t,e){a(1,arguments);var n,r,u,s,d,c,h,f,m=o(null!=(n=null!=(r=null!=(u=null!=(s=null==e?void 0:e.weekStartsOn)?s:null==e||null==(d=e.locale)||null==(c=d.options)?void 0:c.weekStartsOn)?u:l.weekStartsOn)?r:null==(h=l.locale)||null==(f=h.options)?void 0:f.weekStartsOn)?n:0);if(!(m>=0&&m<=6))throw RangeError("weekStartsOn must be between 0 and 6 inclusively");var g=i(t),w=g.getUTCDay();return g.setUTCDate(g.getUTCDate()-(7*(w<m)+w-m)),g.setUTCHours(0,0,0,0),g}function c(t,e){a(1,arguments);var n,r,u,s,c,h,f,m,g=i(t),w=g.getUTCFullYear(),b=o(null!=(n=null!=(r=null!=(u=null!=(s=null==e?void 0:e.firstWeekContainsDate)?s:null==e||null==(c=e.locale)||null==(h=c.options)?void 0:h.firstWeekContainsDate)?u:l.firstWeekContainsDate)?r:null==(f=l.locale)||null==(m=f.options)?void 0:m.firstWeekContainsDate)?n:1);if(!(b>=1&&b<=7))throw RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var v=new Date(0);v.setUTCFullYear(w+1,0,b),v.setUTCHours(0,0,0,0);var y=d(v,e),p=new Date(0);p.setUTCFullYear(w,0,b),p.setUTCHours(0,0,0,0);var T=d(p,e);return g.getTime()>=y.getTime()?w+1:g.getTime()>=T.getTime()?w:w-1}function h(t,e){for(var n=Math.abs(t).toString();n.length<e;)n="0"+n;return(t<0?"-":"")+n}let f={y:function(t,e){var n=t.getUTCFullYear(),r=n>0?n:1-n;return h("yy"===e?r%100:r,e.length)},M:function(t,e){var n=t.getUTCMonth();return"M"===e?String(n+1):h(n+1,2)},d:function(t,e){return h(t.getUTCDate(),e.length)},h:function(t,e){return h(t.getUTCHours()%12||12,e.length)},H:function(t,e){return h(t.getUTCHours(),e.length)},m:function(t,e){return h(t.getUTCMinutes(),e.length)},s:function(t,e){return h(t.getUTCSeconds(),e.length)},S:function(t,e){var n=e.length;return h(Math.floor(t.getUTCMilliseconds()*Math.pow(10,n-3)),e.length)}};var m={midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"};function g(t,e){var n=t>0?"-":"+",r=Math.abs(t),a=Math.floor(r/60),i=r%60;return 0===i?n+String(a):n+String(a)+(e||"")+h(i,2)}function w(t,e){return t%60==0?(t>0?"-":"+")+h(Math.abs(t)/60,2):b(t,e)}function b(t,e){var n=Math.abs(t);return(t>0?"-":"+")+h(Math.floor(n/60),2)+(e||"")+h(n%60,2)}let v={G:function(t,e,n){var r=+(t.getUTCFullYear()>0);switch(e){case"G":case"GG":case"GGG":return n.era(r,{width:"abbreviated"});case"GGGGG":return n.era(r,{width:"narrow"});default:return n.era(r,{width:"wide"})}},y:function(t,e,n){if("yo"===e){var r=t.getUTCFullYear();return n.ordinalNumber(r>0?r:1-r,{unit:"year"})}return f.y(t,e)},Y:function(t,e,n,r){var a=c(t,r),i=a>0?a:1-a;return"YY"===e?h(i%100,2):"Yo"===e?n.ordinalNumber(i,{unit:"year"}):h(i,e.length)},R:function(t,e){return h(s(t),e.length)},u:function(t,e){return h(t.getUTCFullYear(),e.length)},Q:function(t,e,n){var r=Math.ceil((t.getUTCMonth()+1)/3);switch(e){case"Q":return String(r);case"QQ":return h(r,2);case"Qo":return n.ordinalNumber(r,{unit:"quarter"});case"QQQ":return n.quarter(r,{width:"abbreviated",context:"formatting"});case"QQQQQ":return n.quarter(r,{width:"narrow",context:"formatting"});default:return n.quarter(r,{width:"wide",context:"formatting"})}},q:function(t,e,n){var r=Math.ceil((t.getUTCMonth()+1)/3);switch(e){case"q":return String(r);case"qq":return h(r,2);case"qo":return n.ordinalNumber(r,{unit:"quarter"});case"qqq":return n.quarter(r,{width:"abbreviated",context:"standalone"});case"qqqqq":return n.quarter(r,{width:"narrow",context:"standalone"});default:return n.quarter(r,{width:"wide",context:"standalone"})}},M:function(t,e,n){var r=t.getUTCMonth();switch(e){case"M":case"MM":return f.M(t,e);case"Mo":return n.ordinalNumber(r+1,{unit:"month"});case"MMM":return n.month(r,{width:"abbreviated",context:"formatting"});case"MMMMM":return n.month(r,{width:"narrow",context:"formatting"});default:return n.month(r,{width:"wide",context:"formatting"})}},L:function(t,e,n){var r=t.getUTCMonth();switch(e){case"L":return String(r+1);case"LL":return h(r+1,2);case"Lo":return n.ordinalNumber(r+1,{unit:"month"});case"LLL":return n.month(r,{width:"abbreviated",context:"standalone"});case"LLLLL":return n.month(r,{width:"narrow",context:"standalone"});default:return n.month(r,{width:"wide",context:"standalone"})}},w:function(t,e,n,r){var u=function(t,e){a(1,arguments);var n=i(t);return Math.round((d(n,e).getTime()-(function(t,e){a(1,arguments);var n,r,i,u,s,h,f,m,g=o(null!=(n=null!=(r=null!=(i=null!=(u=null==e?void 0:e.firstWeekContainsDate)?u:null==e||null==(s=e.locale)||null==(h=s.options)?void 0:h.firstWeekContainsDate)?i:l.firstWeekContainsDate)?r:null==(f=l.locale)||null==(m=f.options)?void 0:m.firstWeekContainsDate)?n:1),w=c(t,e),b=new Date(0);return b.setUTCFullYear(w,0,g),b.setUTCHours(0,0,0,0),d(b,e)})(n,e).getTime())/6048e5)+1}(t,r);return"wo"===e?n.ordinalNumber(u,{unit:"week"}):h(u,e.length)},I:function(t,e,n){var r=function(t){a(1,arguments);var e=i(t);return Math.round((u(e).getTime()-(function(t){a(1,arguments);var e=s(t),n=new Date(0);return n.setUTCFullYear(e,0,4),n.setUTCHours(0,0,0,0),u(n)})(e).getTime())/6048e5)+1}(t);return"Io"===e?n.ordinalNumber(r,{unit:"week"}):h(r,e.length)},d:function(t,e,n){return"do"===e?n.ordinalNumber(t.getUTCDate(),{unit:"date"}):f.d(t,e)},D:function(t,e,n){var r=function(t){a(1,arguments);var e=i(t),n=e.getTime();return e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0),Math.floor((n-e.getTime())/864e5)+1}(t);return"Do"===e?n.ordinalNumber(r,{unit:"dayOfYear"}):h(r,e.length)},E:function(t,e,n){var r=t.getUTCDay();switch(e){case"E":case"EE":case"EEE":return n.day(r,{width:"abbreviated",context:"formatting"});case"EEEEE":return n.day(r,{width:"narrow",context:"formatting"});case"EEEEEE":return n.day(r,{width:"short",context:"formatting"});default:return n.day(r,{width:"wide",context:"formatting"})}},e:function(t,e,n,r){var a=t.getUTCDay(),i=(a-r.weekStartsOn+8)%7||7;switch(e){case"e":return String(i);case"ee":return h(i,2);case"eo":return n.ordinalNumber(i,{unit:"day"});case"eee":return n.day(a,{width:"abbreviated",context:"formatting"});case"eeeee":return n.day(a,{width:"narrow",context:"formatting"});case"eeeeee":return n.day(a,{width:"short",context:"formatting"});default:return n.day(a,{width:"wide",context:"formatting"})}},c:function(t,e,n,r){var a=t.getUTCDay(),i=(a-r.weekStartsOn+8)%7||7;switch(e){case"c":return String(i);case"cc":return h(i,e.length);case"co":return n.ordinalNumber(i,{unit:"day"});case"ccc":return n.day(a,{width:"abbreviated",context:"standalone"});case"ccccc":return n.day(a,{width:"narrow",context:"standalone"});case"cccccc":return n.day(a,{width:"short",context:"standalone"});default:return n.day(a,{width:"wide",context:"standalone"})}},i:function(t,e,n){var r=t.getUTCDay(),a=0===r?7:r;switch(e){case"i":return String(a);case"ii":return h(a,e.length);case"io":return n.ordinalNumber(a,{unit:"day"});case"iii":return n.day(r,{width:"abbreviated",context:"formatting"});case"iiiii":return n.day(r,{width:"narrow",context:"formatting"});case"iiiiii":return n.day(r,{width:"short",context:"formatting"});default:return n.day(r,{width:"wide",context:"formatting"})}},a:function(t,e,n){var r=t.getUTCHours()/12>=1?"pm":"am";switch(e){case"a":case"aa":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"aaa":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return n.dayPeriod(r,{width:"narrow",context:"formatting"});default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},b:function(t,e,n){var r,a=t.getUTCHours();switch(r=12===a?m.noon:0===a?m.midnight:a/12>=1?"pm":"am",e){case"b":case"bb":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"bbb":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return n.dayPeriod(r,{width:"narrow",context:"formatting"});default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},B:function(t,e,n){var r,a=t.getUTCHours();switch(r=a>=17?m.evening:a>=12?m.afternoon:a>=4?m.morning:m.night,e){case"B":case"BB":case"BBB":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"BBBBB":return n.dayPeriod(r,{width:"narrow",context:"formatting"});default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},h:function(t,e,n){if("ho"===e){var r=t.getUTCHours()%12;return 0===r&&(r=12),n.ordinalNumber(r,{unit:"hour"})}return f.h(t,e)},H:function(t,e,n){return"Ho"===e?n.ordinalNumber(t.getUTCHours(),{unit:"hour"}):f.H(t,e)},K:function(t,e,n){var r=t.getUTCHours()%12;return"Ko"===e?n.ordinalNumber(r,{unit:"hour"}):h(r,e.length)},k:function(t,e,n){var r=t.getUTCHours();return(0===r&&(r=24),"ko"===e)?n.ordinalNumber(r,{unit:"hour"}):h(r,e.length)},m:function(t,e,n){return"mo"===e?n.ordinalNumber(t.getUTCMinutes(),{unit:"minute"}):f.m(t,e)},s:function(t,e,n){return"so"===e?n.ordinalNumber(t.getUTCSeconds(),{unit:"second"}):f.s(t,e)},S:function(t,e){return f.S(t,e)},X:function(t,e,n,r){var a=(r._originalDate||t).getTimezoneOffset();if(0===a)return"Z";switch(e){case"X":return w(a);case"XXXX":case"XX":return b(a);default:return b(a,":")}},x:function(t,e,n,r){var a=(r._originalDate||t).getTimezoneOffset();switch(e){case"x":return w(a);case"xxxx":case"xx":return b(a);default:return b(a,":")}},O:function(t,e,n,r){var a=(r._originalDate||t).getTimezoneOffset();switch(e){case"O":case"OO":case"OOO":return"GMT"+g(a,":");default:return"GMT"+b(a,":")}},z:function(t,e,n,r){var a=(r._originalDate||t).getTimezoneOffset();switch(e){case"z":case"zz":case"zzz":return"GMT"+g(a,":");default:return"GMT"+b(a,":")}},t:function(t,e,n,r){return h(Math.floor((r._originalDate||t).getTime()/1e3),e.length)},T:function(t,e,n,r){return h((r._originalDate||t).getTime(),e.length)}};var y=function(t,e){switch(t){case"P":return e.date({width:"short"});case"PP":return e.date({width:"medium"});case"PPP":return e.date({width:"long"});default:return e.date({width:"full"})}},p=function(t,e){switch(t){case"p":return e.time({width:"short"});case"pp":return e.time({width:"medium"});case"ppp":return e.time({width:"long"});default:return e.time({width:"full"})}};let T={p:p,P:function(t,e){var n,r=t.match(/(P+)(p+)?/)||[],a=r[1],i=r[2];if(!i)return y(t,e);switch(a){case"P":n=e.dateTime({width:"short"});break;case"PP":n=e.dateTime({width:"medium"});break;case"PPP":n=e.dateTime({width:"long"});break;default:n=e.dateTime({width:"full"})}return n.replace("{{date}}",y(a,e)).replace("{{time}}",p(i,e))}};var C=["D","DD"],M=["YY","YYYY"];function D(t,e,n){if("YYYY"===t)throw RangeError("Use `yyyy` instead of `YYYY` (in `".concat(e,"`) for formatting years to the input `").concat(n,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if("YY"===t)throw RangeError("Use `yy` instead of `YY` (in `".concat(e,"`) for formatting years to the input `").concat(n,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if("D"===t)throw RangeError("Use `d` instead of `D` (in `".concat(e,"`) for formatting days of the month to the input `").concat(n,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if("DD"===t)throw RangeError("Use `dd` instead of `DD` (in `".concat(e,"`) for formatting days of the month to the input `").concat(n,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"))}var k={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}};function S(t){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.width?String(e.width):t.defaultWidth;return t.formats[n]||t.formats[t.defaultWidth]}}var x={date:S({formats:{full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},defaultWidth:"full"}),time:S({formats:{full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},defaultWidth:"full"}),dateTime:S({formats:{full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},defaultWidth:"full"})},U={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"};function P(t){return function(e,n){var r;if("formatting"===(null!=n&&n.context?String(n.context):"standalone")&&t.formattingValues){var a=t.defaultFormattingWidth||t.defaultWidth,i=null!=n&&n.width?String(n.width):a;r=t.formattingValues[i]||t.formattingValues[a]}else{var o=t.defaultWidth,u=null!=n&&n.width?String(n.width):t.defaultWidth;r=t.values[u]||t.values[o]}return r[t.argumentCallback?t.argumentCallback(e):e]}}function W(t){return function(e){var n,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=r.width,i=a&&t.matchPatterns[a]||t.matchPatterns[t.defaultMatchWidth],o=e.match(i);if(!o)return null;var u=o[0],s=a&&t.parsePatterns[a]||t.parsePatterns[t.defaultParseWidth],l=Array.isArray(s)?function(t,e){for(var n=0;n<t.length;n++)if(e(t[n]))return n}(s,function(t){return t.test(u)}):function(t,e){for(var n in t)if(t.hasOwnProperty(n)&&e(t[n]))return n}(s,function(t){return t.test(u)});return n=t.valueCallback?t.valueCallback(l):l,{value:n=r.valueCallback?r.valueCallback(n):n,rest:e.slice(u.length)}}}let Y={code:"en-US",formatDistance:function(t,e,n){var r,a=k[t];if(r="string"==typeof a?a:1===e?a.one:a.other.replace("{{count}}",e.toString()),null!=n&&n.addSuffix)if(n.comparison&&n.comparison>0)return"in "+r;else return r+" ago";return r},formatLong:x,formatRelative:function(t,e,n,r){return U[t]},localize:{ordinalNumber:function(t,e){var n=Number(t),r=n%100;if(r>20||r<10)switch(r%10){case 1:return n+"st";case 2:return n+"nd";case 3:return n+"rd"}return n+"th"},era:P({values:{narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},defaultWidth:"wide"}),quarter:P({values:{narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},defaultWidth:"wide",argumentCallback:function(t){return t-1}}),month:P({values:{narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},defaultWidth:"wide"}),day:P({values:{narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},defaultWidth:"wide"}),dayPeriod:P({values:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},defaultWidth:"wide",formattingValues:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},defaultFormattingWidth:"wide"})},match:{ordinalNumber:function(t){return function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=e.match(t.matchPattern);if(!r)return null;var a=r[0],i=e.match(t.parsePattern);if(!i)return null;var o=t.valueCallback?t.valueCallback(i[0]):i[0];return{value:o=n.valueCallback?n.valueCallback(o):o,rest:e.slice(a.length)}}}({matchPattern:/^(\d+)(th|st|nd|rd)?/i,parsePattern:/\d+/i,valueCallback:function(t){return parseInt(t,10)}}),era:W({matchPatterns:{narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},defaultMatchWidth:"wide",parsePatterns:{any:[/^b/i,/^(a|c)/i]},defaultParseWidth:"any"}),quarter:W({matchPatterns:{narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},defaultMatchWidth:"wide",parsePatterns:{any:[/1/i,/2/i,/3/i,/4/i]},defaultParseWidth:"any",valueCallback:function(t){return t+1}}),month:W({matchPatterns:{narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},defaultParseWidth:"any"}),day:W({matchPatterns:{narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},defaultParseWidth:"any"}),dayPeriod:W({matchPatterns:{narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},defaultMatchWidth:"any",parsePatterns:{any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},defaultParseWidth:"any"})},options:{weekStartsOn:0,firstWeekContainsDate:1}};var E=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,N=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,O=/^'([^]*?)'?$/,q=/''/g,H=/[a-zA-Z]/;function F(t,e,n){a(2,arguments);var u,s,d,c,h,f,m,g,w,b,y,p,k,S,x,U,P,W,F,j=String(e),z=null!=(s=null!=(d=null==n?void 0:n.locale)?d:l.locale)?s:Y,L=o(null!=(c=null!=(h=null!=(f=null!=(m=null==n?void 0:n.firstWeekContainsDate)?m:null==n||null==(g=n.locale)||null==(w=g.options)?void 0:w.firstWeekContainsDate)?f:l.firstWeekContainsDate)?h:null==(b=l.locale)||null==(y=b.options)?void 0:y.firstWeekContainsDate)?c:1);if(!(L>=1&&L<=7))throw RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var A=o(null!=(p=null!=(k=null!=(S=null!=(x=null==n?void 0:n.weekStartsOn)?x:null==n||null==(U=n.locale)||null==(P=U.options)?void 0:P.weekStartsOn)?S:l.weekStartsOn)?k:null==(W=l.locale)||null==(F=W.options)?void 0:F.weekStartsOn)?p:0);if(!(A>=0&&A<=6))throw RangeError("weekStartsOn must be between 0 and 6 inclusively");if(!z.localize)throw RangeError("locale must contain localize property");if(!z.formatLong)throw RangeError("locale must contain formatLong property");var Q=i(t);if(!function(t){return a(1,arguments),(!!function(t){return a(1,arguments),t instanceof Date||"object"===r(t)&&"[object Date]"===Object.prototype.toString.call(t)}(t)||"number"==typeof t)&&!isNaN(Number(i(t)))}(Q))throw RangeError("Invalid time value");var G=((u=new Date(Date.UTC(Q.getFullYear(),Q.getMonth(),Q.getDate(),Q.getHours(),Q.getMinutes(),Q.getSeconds(),Q.getMilliseconds()))).setUTCFullYear(Q.getFullYear()),Q.getTime()-u.getTime()),X=function(t,e){return a(2,arguments),function(t,e){return a(2,arguments),new Date(i(t).getTime()+o(e))}(t,-o(e))}(Q,G),B={firstWeekContainsDate:L,weekStartsOn:A,locale:z,_originalDate:Q};return j.match(N).map(function(t){var e=t[0];return"p"===e||"P"===e?(0,T[e])(t,z.formatLong):t}).join("").match(E).map(function(r){if("''"===r)return"'";var a,i,o=r[0];if("'"===o){return(i=(a=r).match(O))?i[1].replace(q,"'"):a}var u=v[o];if(u)return null!=n&&n.useAdditionalWeekYearTokens||-1===M.indexOf(r)||D(r,e,String(t)),null!=n&&n.useAdditionalDayOfYearTokens||-1===C.indexOf(r)||D(r,e,String(t)),u(X,r,z.localize,B);if(o.match(H))throw RangeError("Format string contains an unescaped latin alphabet character `"+o+"`");return r}).join("")}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[4789],{4893:(e,r,t)=>{t.d(r,{DP:()=>f,HG:()=>h,Nl:()=>o,O4:()=>c,Pi:()=>i,RR:()=>m,RY:()=>x,Rv:()=>j,XR:()=>n,Zu:()=>w,bN:()=>v,c1:()=>M,fC:()=>y,fK:()=>p,lm:()=>g,md:()=>C,mo:()=>s,uc:()=>N,ui:()=>d,vK:()=>u,xZ:()=>k,xm:()=>z});var l=t(4568);t(7620);let a={xs:{width:12,height:12},sm:{width:16,height:16},md:{width:20,height:20},lg:{width:24,height:24}},s=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z",clipRule:"evenodd"})})},i=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{fillRule:"evenodd",d:"M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z",clipRule:"evenodd"})})},n=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{d:"M11 17a1 1 0 001.447.894l4-2A1 1 0 0017 15V9.236a1 1 0 00-1.447-.894l-4 2a1 1 0 00-.553.894V17zM15.211 6.276a1 1 0 000-1.788l-4.764-2.382a1 1 0 00-.894 0L4.789 4.488a1 1 0 000 1.788l4.764 2.382a1 1 0 00.894 0l4.764-2.382zM4.447 8.342A1 1 0 003 9.236V15a1 1 0 00.553.894l4 2A1 1 0 009 17v-5.764a1 1 0 00-.553-.894l-4-2z"})})},o=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsxs)("svg",{className:"animate-spin ".concat(r),width:s,height:i,xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",children:[(0,l.jsx)("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),(0,l.jsx)("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]})},d=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",children:(0,l.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"})})},c=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",children:(0,l.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"})})},h=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",children:(0,l.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 3v2m6-2v2M9 19v2m6-2v2M5 9H3m2 6H3m18-6h-2m2 6h-2M7 19h10a2 2 0 002-2V7a2 2 0 00-2-2H7a2 2 0 00-2 2v10a2 2 0 002 2zM9 9h6v6H9V9z"})})},u=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{fillRule:"evenodd",d:"M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z",clipRule:"evenodd"})})},x=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{fillRule:"evenodd",d:"M18 8a6 6 0 01-7.743 5.743L10 14l-1 1-1 1H6v2H2v-4l4.257-4.257A6 6 0 1118 8zm-6-4a1 1 0 100 2 2 2 0 012 2 1 1 0 102 0 4 4 0 00-4-4z",clipRule:"evenodd"})})},m=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{fillRule:"evenodd",d:"M2 5a2 2 0 012-2h12a2 2 0 012 2v2a2 2 0 01-2 2H4a2 2 0 01-2-2V5zm14 1a1 1 0 11-2 0 1 1 0 012 0zM2 13a2 2 0 012-2h12a2 2 0 012 2v2a2 2 0 01-2 2H4a2 2 0 01-2-2v-2zm14 1a1 1 0 11-2 0 1 1 0 012 0z",clipRule:"evenodd"})})},v=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsxs)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:[(0,l.jsx)("path",{d:"M3 12v3c0 1.657 3.134 3 7 3s7-1.343 7-3v-3c0 1.657-3.134 3-7 3s-7-1.343-7-3z"}),(0,l.jsx)("path",{d:"M3 7v3c0 1.657 3.134 3 7 3s7-1.343 7-3V7c0 1.657-3.134 3-7 3S3 8.657 3 7z"}),(0,l.jsx)("path",{d:"M17 5c0 1.657-3.134 3-7 3S3 6.657 3 5s3.134-3 7-3 7 1.343 7 3z"})]})},g=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{fillRule:"evenodd",d:"M2.166 4.999A11.954 11.954 0 0010 1.944 11.954 11.954 0 0017.834 5c.11.65.166 1.32.166 2.001 0 5.225-3.34 9.67-8 11.317C5.34 16.67 2 12.225 2 7c0-.682.057-1.35.166-2.001zm11.541 3.708a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})})},f=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{fillRule:"evenodd",d:"M11.49 3.17c-.38-1.56-2.6-1.56-2.98 0a1.532 1.532 0 01-2.286.948c-1.372-.836-2.942.734-2.106 2.106.54.886.061 2.042-.947 2.287-1.561.379-1.561 2.6 0 2.978a1.532 1.532 0 01.947 2.287c-.836 1.372.734 2.942 2.106 2.106a1.532 1.532 0 012.287.947c.379 1.561 2.6 1.561 2.978 0a1.533 1.533 0 012.287-.947c1.372.836 2.942-.734 2.106-2.106a1.533 1.533 0 01.947-2.287c1.561-.379 1.561-2.6 0-2.978a1.532 1.532 0 01-.947-2.287c.836-1.372-.734-2.942-2.106-2.106a1.532 1.532 0 01-2.287-.947zM10 13a3 3 0 100-6 3 3 0 000 6z",clipRule:"evenodd"})})},j=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{d:"M8 9a3 3 0 100-6 3 3 0 000 6zM8 11a6 6 0 016 6H2a6 6 0 016-6zM16 7a1 1 0 10-2 0v1h-1a1 1 0 100 2h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1V7z"})})},p=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{fillRule:"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z",clipRule:"evenodd"})})},w=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{fillRule:"evenodd",d:"M2.166 4.999A11.954 11.954 0 0010 1.944 11.954 11.954 0 0017.834 5c.11.65.166 1.32.166 2.001 0 5.225-3.34 9.67-8 11.317C5.34 16.67 2 12.225 2 7c0-.682.057-1.35.166-2.001zm11.541 3.708a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})})},N=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{fillRule:"evenodd",d:"M9 2a1 1 0 00-.894.553L7.382 4H4a1 1 0 000 2v10a2 2 0 002 2h8a2 2 0 002-2V6a1 1 0 100-2h-3.382l-.724-1.447A1 1 0 0011 2H9zM7 8a1 1 0 012 0v6a1 1 0 11-2 0V8zm5-1a1 1 0 00-1 1v6a1 1 0 102 0V8a1 1 0 00-1-1z",clipRule:"evenodd"})})},M=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 20 20",fill:"currentColor",children:(0,l.jsx)("path",{fillRule:"evenodd",d:"M10 3a1 1 0 011 1v5h5a1 1 0 110 2h-5v5a1 1 0 11-2 0v-5H4a1 1 0 110-2h5V4a1 1 0 011-1z",clipRule:"evenodd"})})},y=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",children:(0,l.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M3.055 11H5a2 2 0 012 2v1a2 2 0 002 2 2 2 0 012 2v2.945M8 3.935V5.5A2.5 2.5 0 0010.5 8h.5a2 2 0 012 2 2 2 0 104 0 2 2 0 012-2h1.064M15 20.488V18a2 2 0 012-2h3.064M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})})},k=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",children:(0,l.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M13 10V3L4 14h7v7l9-11h-7z"})})},z=e=>{let{className:r="",size:t="md"}=e,{width:s,height:i}=a[t];return(0,l.jsx)("svg",{className:r,width:s,height:i,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",children:(0,l.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})})},C=e=>{let{status:r,className:t=""}=e;return(0,l.jsx)("span",{className:"w-3 h-3 rounded-full ".concat({green:"bg-green-500",yellow:"bg-yellow-500",red:"bg-red-500",gray:"bg-gray-500"}[r]," ").concat(t)})}},7192:(e,r,t)=>{function l(e){if(!e)return"Unknown error";if("string"==typeof e)return e;if(Array.isArray(e))return e.map(e=>"string"==typeof e?e:e.msg?e.msg:e.message?e.message:JSON.stringify(e)).join("; ");if(e.detail){if(Array.isArray(e.detail))return e.detail.map(e=>{let r=Array.isArray(e.loc)?e.loc.join("."):e.loc||"",t=e.msg||e.message||"Validation error";return r?"".concat(r,": ").concat(t):t}).join("; ");if("string"==typeof e.detail)return e.detail;if("object"==typeof e.detail)return JSON.stringify(e.detail)}if(e.message&&"string"==typeof e.message)return e.message;if(e.error&&"string"==typeof e.error)return e.error;if(e.statusText&&"string"==typeof e.statusText)return e.statusText;try{let r=JSON.stringify(e);if(r.length>200)return"Complex error object (see console for details)";return r}catch(e){return"Unknown error (see console for details)"}}t.d(r,{PE:()=>l})},8924:(e,r,t)=>{t.d(r,{A:()=>a});var l=t(4568);function a(e){let{isOpen:r,onClose:t,title:a="Error",message:s,details:i}=e;return r?(0,l.jsx)("div",{className:"fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50",children:(0,l.jsxs)("div",{className:"bg-white rounded-lg shadow-xl max-w-lg w-full mx-4 max-h-[90vh] overflow-y-auto",children:[(0,l.jsx)("div",{className:"border-b px-6 py-4 bg-red-50",children:(0,l.jsxs)("div",{className:"flex items-center justify-between",children:[(0,l.jsxs)("div",{className:"flex items-center",children:[(0,l.jsx)("svg",{className:"h-6 w-6 text-red-600 mr-2",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:(0,l.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})}),(0,l.jsx)("h2",{className:"text-xl font-semibold text-gray-900",children:a})]}),(0,l.jsx)("button",{onClick:t,className:"text-gray-400 hover:text-gray-500 transition-colors","aria-label":"Close error modal",children:(0,l.jsx)("svg",{className:"h-6 w-6",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:(0,l.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]})}),(0,l.jsxs)("div",{className:"px-6 py-4",children:[(0,l.jsx)("div",{className:"text-gray-700 text-base leading-relaxed",children:(e=>{let r=/(https?:\/\/[^\s]+)/g;return e.split(r).map((e,t)=>e.match(r)?(0,l.jsx)("a",{href:e,target:"_blank",rel:"noopener noreferrer",className:"text-indigo-600 hover:text-indigo-500 underline font-medium",children:e},t):(0,l.jsx)("span",{children:e},t))})(s)}),i&&(0,l.jsxs)("div",{className:"mt-4 p-3 bg-gray-50 rounded-md",children:[(0,l.jsx)("p",{className:"text-sm font-medium text-gray-600 mb-1",children:"Details:"}),(0,l.jsx)("pre",{className:"text-xs text-gray-500 overflow-x-auto",children:"string"==typeof i?i:JSON.stringify(i,null,2)})]}),s.toLowerCase().includes("discord")&&s.includes("http")&&(0,l.jsx)("div",{className:"mt-4 p-4 bg-indigo-50 border border-indigo-200 rounded-lg",children:(0,l.jsxs)("div",{className:"flex items-center",children:[(0,l.jsx)("svg",{className:"h-5 w-5 text-indigo-600 mr-2",fill:"currentColor",viewBox:"0 0 24 24",children:(0,l.jsx)("path",{d:"M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515a.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0a12.64 12.64 0 0 0-.617-1.25a.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057a19.9 19.9 0 0 0 5.993 3.03a.078.078 0 0 0 .084-.028a14.09 14.09 0 0 0 1.226-1.994a.076.076 0 0 0-.041-.106a13.107 13.107 0 0 1-1.872-.892a.077.077 0 0 1-.008-.128a10.2 10.2 0 0 0 .372-.292a.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127a12.299 12.299 0 0 1-1.873.892a.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028a19.839 19.839 0 0 0 6.002-3.03a.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419c0-1.333.956-2.419 2.157-2.419c1.21 0 2.176 1.096 2.157 2.42c0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419c0-1.333.955-2.419 2.157-2.419c1.21 0 2.176 1.096 2.157 2.42c0 1.333-.946 2.418-2.157 2.418z"})}),(0,l.jsx)("span",{className:"text-sm font-medium text-indigo-700",children:"Click the link above to join our Discord community!"})]})})]}),(0,l.jsx)("div",{className:"border-t px-6 py-4 bg-gray-50 flex justify-end",children:(0,l.jsx)("button",{onClick:t,className:"px-4 py-2 text-sm font-medium text-white bg-gray-600 border border-transparent rounded-md hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-gray-500 transition-colors",children:"Close"})})]})}):null}t(7620)}}]);
|