mycode-cli 0.3.0__tar.gz → 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (481) hide show
  1. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/PKG-INFO +1 -1
  2. mycode_cli-0.3.1/mycode/server/static/assets/EditDiff-duePA_xo.js +12 -0
  3. mycode_cli-0.3.0/mycode/server/static/assets/index-BgNwRXPa.css → mycode_cli-0.3.1/mycode/server/static/assets/index-Bi2yKki-.css +1 -1
  4. mycode_cli-0.3.0/mycode/server/static/assets/index--b2yTD3D.js → mycode_cli-0.3.1/mycode/server/static/assets/index-CfZ_AJkk.js +2 -2
  5. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/index.html +2 -2
  6. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/pyproject.toml +1 -1
  7. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/uv.lock +1 -1
  8. mycode_cli-0.3.1/web/src/components/Chat/EditDiff.tsx +476 -0
  9. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/Chat/ToolCard.tsx +12 -10
  10. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/types.ts +1 -1
  11. mycode_cli-0.3.0/mycode/server/static/assets/EditDiff-B-xuc0_M.js +0 -12
  12. mycode_cli-0.3.0/web/src/components/Chat/EditDiff.tsx +0 -339
  13. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/.basedpyright/baseline.json +0 -0
  14. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/.github/workflows/ci.yml +0 -0
  15. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/.github/workflows/publish.yml +0 -0
  16. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/.gitignore +0 -0
  17. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/.pre-commit-config.yaml +0 -0
  18. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/AGENTS.md +0 -0
  19. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/LICENSE +0 -0
  20. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/README.md +0 -0
  21. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/biome.json +0 -0
  22. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/docs/api.md +0 -0
  23. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/docs/config.md +0 -0
  24. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/docs/providers.md +0 -0
  25. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/docs/sessions.md +0 -0
  26. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/docs/web.md +0 -0
  27. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/hatch_build.py +0 -0
  28. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/__init__.py +0 -0
  29. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/cli/__init__.py +0 -0
  30. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/cli/chat.py +0 -0
  31. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/cli/main.py +0 -0
  32. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/cli/render.py +0 -0
  33. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/cli/runtime.py +0 -0
  34. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/cli/theme.py +0 -0
  35. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/__init__.py +0 -0
  36. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/agent.py +0 -0
  37. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/config.py +0 -0
  38. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/messages.py +0 -0
  39. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/models.py +0 -0
  40. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/models_catalog.json +0 -0
  41. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/providers/__init__.py +0 -0
  42. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/providers/anthropic_like.py +0 -0
  43. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/providers/base.py +0 -0
  44. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/providers/gemini.py +0 -0
  45. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/providers/openai_chat.py +0 -0
  46. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/providers/openai_responses.py +0 -0
  47. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/session.py +0 -0
  48. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/system_prompt.py +0 -0
  49. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/tools.py +0 -0
  50. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/core/utils.py +0 -0
  51. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/__init__.py +0 -0
  52. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/app.py +0 -0
  53. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/deps.py +0 -0
  54. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/routers/__init__.py +0 -0
  55. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/routers/chat.py +0 -0
  56. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/routers/sessions.py +0 -0
  57. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/routers/workspaces.py +0 -0
  58. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/run_manager.py +0 -0
  59. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/schemas.py +0 -0
  60. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
  61. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
  62. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
  63. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
  64. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
  65. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
  66. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
  67. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
  68. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
  69. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
  70. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
  71. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
  72. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
  73. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
  74. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
  75. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
  76. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
  77. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
  78. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
  79. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
  80. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
  81. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
  82. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
  83. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
  84. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
  85. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
  86. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
  87. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
  88. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
  89. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
  90. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
  91. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
  92. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
  93. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
  94. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
  95. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
  96. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
  97. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
  98. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
  99. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
  100. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
  101. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
  102. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
  103. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
  104. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
  105. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
  106. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
  107. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
  108. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
  109. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
  110. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
  111. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
  112. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
  113. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
  114. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
  115. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
  116. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
  117. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
  118. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
  119. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/abap-BdImnpbu.js +0 -0
  120. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/actionscript-3-CoDkCxhg.js +0 -0
  121. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/ada-bCR0ucgS.js +0 -0
  122. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/andromeeda-C4gqWexZ.js +0 -0
  123. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/angular-html-DA-rfuFy.js +0 -0
  124. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/angular-ts-BrjP3tb8.js +0 -0
  125. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/apache-Pmp26Uib.js +0 -0
  126. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/apex-D8_7TLub.js +0 -0
  127. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/apl-CORt7UWP.js +0 -0
  128. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/applescript-Co6uUVPk.js +0 -0
  129. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/ara-BRHolxvo.js +0 -0
  130. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/asciidoc-Ve4PFQV2.js +0 -0
  131. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/asm-D_Q5rh1f.js +0 -0
  132. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/astro-HNnZUWAn.js +0 -0
  133. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/aurora-x-D-2ljcwZ.js +0 -0
  134. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/awk-DMzUqQB5.js +0 -0
  135. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/ayu-dark-DYE7WIF3.js +0 -0
  136. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/ayu-light-BA47KaF1.js +0 -0
  137. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/ayu-mirage-32ctXXKs.js +0 -0
  138. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/ballerina-BFfxhgS-.js +0 -0
  139. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/bat-BkioyH1T.js +0 -0
  140. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/beancount-k_qm7-4y.js +0 -0
  141. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/berry-uYugtg8r.js +0 -0
  142. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/bibtex-CHM0blh-.js +0 -0
  143. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/bicep-Bmn6On1c.js +0 -0
  144. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/bird2-BIv1doCn.js +0 -0
  145. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/blade-BjGOyj-B.js +0 -0
  146. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/bsl-BO_Y6i37.js +0 -0
  147. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/c-BIGW1oBm.js +0 -0
  148. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/c3-eo99z4R2.js +0 -0
  149. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/cadence-Bv_4Rxtq.js +0 -0
  150. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/cairo-KRGpt6FW.js +0 -0
  151. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/catppuccin-frappe-DFWUc33u.js +0 -0
  152. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/catppuccin-latte-C9dUb6Cb.js +0 -0
  153. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/catppuccin-macchiato-DQyhUUbL.js +0 -0
  154. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/catppuccin-mocha-D87Tk5Gz.js +0 -0
  155. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/clarity-D53aC0YG.js +0 -0
  156. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/clojure-P80f7IUj.js +0 -0
  157. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/cmake-D1j8_8rp.js +0 -0
  158. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/cobol-nBiQ_Alo.js +0 -0
  159. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/codeowners-Bp6g37R7.js +0 -0
  160. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/codeql-DsOJ9woJ.js +0 -0
  161. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/coffee-Ch7k5sss.js +0 -0
  162. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/common-lisp-Cg-RD9OK.js +0 -0
  163. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/coq-DkFqJrB1.js +0 -0
  164. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/cpp-CofmeUqb.js +0 -0
  165. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/crystal-DNxU26gB.js +0 -0
  166. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/csharp-COcwbKMJ.js +0 -0
  167. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/css-CLj8gQPS.js +0 -0
  168. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/csv-fuZLfV_i.js +0 -0
  169. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/cue-D82EKSYY.js +0 -0
  170. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/cypher-COkxafJQ.js +0 -0
  171. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/d-85-TOEBH.js +0 -0
  172. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/dark-plus-C3mMm8J8.js +0 -0
  173. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/dart-bE4Kk8sk.js +0 -0
  174. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/dax-CEL-wOlO.js +0 -0
  175. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/desktop-BmXAJ9_W.js +0 -0
  176. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/diff-D97Zzqfu.js +0 -0
  177. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/docker-BcOcwvcX.js +0 -0
  178. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/dotenv-Da5cRb03.js +0 -0
  179. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/dracula-BzJJZx-M.js +0 -0
  180. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/dracula-soft-BXkSAIEj.js +0 -0
  181. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/dream-maker-BtqSS_iP.js +0 -0
  182. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/edge-FbVlp4U3.js +0 -0
  183. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/elixir-CkH2-t6x.js +0 -0
  184. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/elm-DbKCFpqz.js +0 -0
  185. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/emacs-lisp-CXvaQtF9.js +0 -0
  186. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/erb-BYCe7drp.js +0 -0
  187. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/erlang-DsQrWhSR.js +0 -0
  188. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/everforest-dark-BgDCqdQA.js +0 -0
  189. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/everforest-light-C8M2exoo.js +0 -0
  190. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/fennel-BYunw83y.js +0 -0
  191. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/fish-BvzEVeQv.js +0 -0
  192. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/fluent-C4IJs8-o.js +0 -0
  193. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/fortran-fixed-form-CkoXwp7k.js +0 -0
  194. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/fortran-free-form-BxgE0vQu.js +0 -0
  195. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/fsharp-CXgrBDvD.js +0 -0
  196. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gdresource-BOOCDP_w.js +0 -0
  197. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gdscript-C5YyOfLZ.js +0 -0
  198. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gdshader-DkwncUOv.js +0 -0
  199. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/genie-D0YGMca9.js +0 -0
  200. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gherkin-DyxjwDmM.js +0 -0
  201. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/git-commit-F4YmCXRG.js +0 -0
  202. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/git-rebase-r7XF79zn.js +0 -0
  203. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/github-dark-DHJKELXO.js +0 -0
  204. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/github-dark-default-Cuk6v7N8.js +0 -0
  205. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/github-dark-dimmed-DH5Ifo-i.js +0 -0
  206. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/github-dark-high-contrast-E3gJ1_iC.js +0 -0
  207. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/github-light-DAi9KRSo.js +0 -0
  208. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/github-light-default-D7oLnXFd.js +0 -0
  209. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/github-light-high-contrast-BfjtVDDH.js +0 -0
  210. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gleam-BspZqrRM.js +0 -0
  211. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/glimmer-js-ByusRIyA.js +0 -0
  212. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/glimmer-ts-BfAWNZQY.js +0 -0
  213. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/glsl-DplSGwfg.js +0 -0
  214. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gn-n2N0HUVH.js +0 -0
  215. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gnuplot-DdkO51Og.js +0 -0
  216. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/go-C27-OAKa.js +0 -0
  217. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/graphql-ChdNCCLP.js +0 -0
  218. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/groovy-gcz8RCvz.js +0 -0
  219. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gruvbox-dark-hard-CFHQjOhq.js +0 -0
  220. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gruvbox-dark-medium-GsRaNv29.js +0 -0
  221. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gruvbox-dark-soft-CVdnzihN.js +0 -0
  222. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gruvbox-light-hard-CH1njM8p.js +0 -0
  223. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gruvbox-light-medium-DRw_LuNl.js +0 -0
  224. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/gruvbox-light-soft-hJgmCMqR.js +0 -0
  225. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/hack-i7_Ulhet.js +0 -0
  226. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/haml-D5jkg6IW.js +0 -0
  227. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/handlebars-BpdQsYii.js +0 -0
  228. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/haskell-Df6bDoY_.js +0 -0
  229. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/haxe-CzTSHFRz.js +0 -0
  230. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/hcl-BWvSN4gD.js +0 -0
  231. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/hjson-D5-asLiD.js +0 -0
  232. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/hlsl-D3lLCCz7.js +0 -0
  233. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/horizon-BUw7H-hv.js +0 -0
  234. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/horizon-bright-CUuTKBJd.js +0 -0
  235. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/houston-DnULxvSX.js +0 -0
  236. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/html-derivative-DlHx6ybY.js +0 -0
  237. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/html-pp8916En.js +0 -0
  238. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/http-jrhK8wxY.js +0 -0
  239. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/hurl-irOxFIW8.js +0 -0
  240. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/hxml-Bvhsp5Yf.js +0 -0
  241. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/hy-DFXneXwc.js +0 -0
  242. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/imba-DGztddWO.js +0 -0
  243. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/ini-BEwlwnbL.js +0 -0
  244. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/java-CylS5w8V.js +0 -0
  245. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/javascript-wDzz0qaB.js +0 -0
  246. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/jinja-f2NsQr07.js +0 -0
  247. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/jison-wvAkD_A8.js +0 -0
  248. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/json-Cp-IABpG.js +0 -0
  249. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/json5-C9tS-k6U.js +0 -0
  250. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/jsonc-Des-eS-w.js +0 -0
  251. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/jsonl-DcaNXYhu.js +0 -0
  252. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/jsonnet-DFQXde-d.js +0 -0
  253. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/jssm-C2t-YnRu.js +0 -0
  254. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/jsx-g9-lgVsj.js +0 -0
  255. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/julia-CxzCAyBv.js +0 -0
  256. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/just-VxiPbLrw.js +0 -0
  257. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/kanagawa-dragon-CkXjmgJE.js +0 -0
  258. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/kanagawa-lotus-CfQXZHmo.js +0 -0
  259. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/kanagawa-wave-DWedfzmr.js +0 -0
  260. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/kdl-DV7GczEv.js +0 -0
  261. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/kotlin-BdnUsdx6.js +0 -0
  262. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/kusto-wEQ09or8.js +0 -0
  263. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/laserwave-DUszq2jm.js +0 -0
  264. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/latex-CWtU0Tv5.js +0 -0
  265. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/lean-BZvkOJ9d.js +0 -0
  266. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/less-B1dDrJ26.js +0 -0
  267. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/light-plus-B7mTdjB0.js +0 -0
  268. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/liquid-C0sCDyMI.js +0 -0
  269. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/llvm-DjAJT7YJ.js +0 -0
  270. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/log-2UxHyX5q.js +0 -0
  271. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/logo-BtOb2qkB.js +0 -0
  272. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/lua-BaeVxFsk.js +0 -0
  273. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/luau-C-HG3fhB.js +0 -0
  274. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/make-CHLpvVh8.js +0 -0
  275. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/markdown-Cvjx9yec.js +0 -0
  276. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/marko-DjSrsDqO.js +0 -0
  277. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/material-theme-D5KoaKCx.js +0 -0
  278. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/material-theme-darker-BfHTSMKl.js +0 -0
  279. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/material-theme-lighter-B0m2ddpp.js +0 -0
  280. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/material-theme-ocean-CyktbL80.js +0 -0
  281. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/material-theme-palenight-Csfq5Kiy.js +0 -0
  282. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/matlab-D7o27uSR.js +0 -0
  283. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/mdc-DTYItulj.js +0 -0
  284. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/mdx-Cmh6b_Ma.js +0 -0
  285. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/mermaid-mWjccvbQ.js +0 -0
  286. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/min-dark-CafNBF8u.js +0 -0
  287. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/min-light-CTRr51gU.js +0 -0
  288. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/mipsasm-CKIfxQSi.js +0 -0
  289. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/mojo-rZm6bMo-.js +0 -0
  290. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/monokai-D4h5O-jR.js +0 -0
  291. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/moonbit-_H4v1dQx.js +0 -0
  292. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/move-IF9eRakj.js +0 -0
  293. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/narrat-DRg8JJMk.js +0 -0
  294. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/nextflow-C-mBbutL.js +0 -0
  295. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/nextflow-groovy-vE_lwT2v.js +0 -0
  296. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/nginx-BpAMiNFr.js +0 -0
  297. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/night-owl-C39BiMTA.js +0 -0
  298. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/night-owl-light-CMTm3GFP.js +0 -0
  299. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/nim-BIad80T-.js +0 -0
  300. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/nix-CwoSXNpI.js +0 -0
  301. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/nord-Ddv68eIx.js +0 -0
  302. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/nushell-Cz2AlsmD.js +0 -0
  303. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/objective-c-DXmwc3jG.js +0 -0
  304. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/objective-cpp-CLxacb5B.js +0 -0
  305. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/ocaml-C0hk2d4L.js +0 -0
  306. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/odin-BBf5iR-q.js +0 -0
  307. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/one-dark-pro-DVMEJ2y_.js +0 -0
  308. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/one-light-C3Wv6jpd.js +0 -0
  309. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/openscad-C4EeE6gA.js +0 -0
  310. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/pascal-D93ZcfNL.js +0 -0
  311. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/perl-NvoQZIq0.js +0 -0
  312. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/php-R6g_5hLQ.js +0 -0
  313. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/pkl-u5AG7uiY.js +0 -0
  314. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/plastic-3e1v2bzS.js +0 -0
  315. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/plsql-ChMvpjG-.js +0 -0
  316. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/po-BTJTHyun.js +0 -0
  317. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/poimandres-CS3Unz2-.js +0 -0
  318. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/polar-C0HS_06l.js +0 -0
  319. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/postcss-CXtECtnM.js +0 -0
  320. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/powerquery-CEu0bR-o.js +0 -0
  321. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/powershell-Dpen1YoG.js +0 -0
  322. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/prisma-Dd19v3D-.js +0 -0
  323. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/prolog-CbFg5uaA.js +0 -0
  324. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/proto-C7zT0LnQ.js +0 -0
  325. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/pug-DKIMFp6K.js +0 -0
  326. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/puppet-BMWR74SV.js +0 -0
  327. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/purescript-CklMAg4u.js +0 -0
  328. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/python-B6aJPvgy.js +0 -0
  329. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/qml-3beO22l8.js +0 -0
  330. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/qmldir-C8lEn-DE.js +0 -0
  331. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/qss-IeuSbFQv.js +0 -0
  332. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/r-Dspwwk_N.js +0 -0
  333. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/racket-BqYA7rlc.js +0 -0
  334. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/raku-DXvB9xmW.js +0 -0
  335. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/razor-BDqjjVU7.js +0 -0
  336. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/red-bN70gL4F.js +0 -0
  337. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/reg-C-SQnVFl.js +0 -0
  338. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/regexp-CDVJQ6XC.js +0 -0
  339. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/rel-C3B-1QV4.js +0 -0
  340. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/riscv-BM1_JUlF.js +0 -0
  341. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/ron-D8l8udqQ.js +0 -0
  342. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/rose-pine-dawn-DHQR4-dF.js +0 -0
  343. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/rose-pine-moon-D4_iv3hh.js +0 -0
  344. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/rose-pine-qdsjHGoJ.js +0 -0
  345. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/rosmsg-BJDFO7_C.js +0 -0
  346. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/rst-CRjBmOyv.js +0 -0
  347. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/ruby-Wjq7vjNf.js +0 -0
  348. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/rust-B1yitclQ.js +0 -0
  349. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/sas-cz2c8ADy.js +0 -0
  350. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/sass-Cj5Yp3dK.js +0 -0
  351. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/scala-C151Ov-r.js +0 -0
  352. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/scheme-C98Dy4si.js +0 -0
  353. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/scss-D5BDwBP9.js +0 -0
  354. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/sdbl-DVxCFoDh.js +0 -0
  355. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/shaderlab-Dg9Lc6iA.js +0 -0
  356. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/shellscript-Yzrsuije.js +0 -0
  357. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/shellsession-BADoaaVG.js +0 -0
  358. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/slack-dark-BthQWCQV.js +0 -0
  359. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/slack-ochin-DqwNpetd.js +0 -0
  360. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/smalltalk-BERRCDM3.js +0 -0
  361. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/snazzy-light-Bw305WKR.js +0 -0
  362. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/solarized-dark-DXbdFlpD.js +0 -0
  363. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/solarized-light-L9t79GZl.js +0 -0
  364. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/solidity-rGO070M0.js +0 -0
  365. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/soy-8wufbnw4.js +0 -0
  366. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/sparql-rVzFXLq3.js +0 -0
  367. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/splunk-BtCnVYZw.js +0 -0
  368. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/sql-BLtJtn59.js +0 -0
  369. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/ssh-config-_ykCGR6B.js +0 -0
  370. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/stata-BH5u7GGu.js +0 -0
  371. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/stylus-BEDo0Tqx.js +0 -0
  372. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/surrealql-Bq5Q-fJD.js +0 -0
  373. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/svelte-Cy7k_4gC.js +0 -0
  374. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/swift-D82vCrfD.js +0 -0
  375. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/synthwave-84-CbfX1IO0.js +0 -0
  376. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/system-verilog-CnnmHF94.js +0 -0
  377. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/systemd-4A_iFExJ.js +0 -0
  378. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/talonscript-CkByrt1z.js +0 -0
  379. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/tasl-QIJgUcNo.js +0 -0
  380. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/tcl-dwOrl1Do.js +0 -0
  381. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/templ-DhtptRzy.js +0 -0
  382. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/terraform-BETggiCN.js +0 -0
  383. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/tex-idrVyKtj.js +0 -0
  384. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/tokyo-night-hegEt444.js +0 -0
  385. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/toml-vGWfd6FD.js +0 -0
  386. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/ts-tags-DQrlYJgV.js +0 -0
  387. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/tsv-B_m7g4N7.js +0 -0
  388. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/tsx-COt5Ahok.js +0 -0
  389. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/turtle-BsS91CYL.js +0 -0
  390. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/twig-xg9kU7Mw.js +0 -0
  391. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/typescript-BPQ3VLAy.js +0 -0
  392. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/typespec-CAFt9gP4.js +0 -0
  393. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/typst-DHCkPAjA.js +0 -0
  394. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/v-BcVCzyr7.js +0 -0
  395. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/vala-CsfeWuGM.js +0 -0
  396. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/vb-D17OF-Vu.js +0 -0
  397. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/verilog-BQ8w6xss.js +0 -0
  398. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/vesper-DU1UobuO.js +0 -0
  399. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/vhdl-CeAyd5Ju.js +0 -0
  400. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/viml-CJc9bBzg.js +0 -0
  401. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/vitesse-black-Bkuqu6BP.js +0 -0
  402. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/vitesse-dark-D0r3Knsf.js +0 -0
  403. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/vitesse-light-CVO1_9PV.js +0 -0
  404. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/vue-D2xRrEX4.js +0 -0
  405. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/vue-html-AaS7Mt5G.js +0 -0
  406. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/vue-vine-BoDAl6tE.js +0 -0
  407. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/vyper-CDx5xZoG.js +0 -0
  408. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/wasm-CG6Dc4jp.js +0 -0
  409. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/wasm-MzD3tlZU.js +0 -0
  410. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/wenyan-BV7otONQ.js +0 -0
  411. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/wgsl-Dx-B1_4e.js +0 -0
  412. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/wikitext-BhOHFoWU.js +0 -0
  413. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/wit-5i3qLPDT.js +0 -0
  414. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/wolfram-lXgVvXCa.js +0 -0
  415. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/xml-sdJ4AIDG.js +0 -0
  416. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/xsl-CtQFsRM5.js +0 -0
  417. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/yaml-Buea-lGh.js +0 -0
  418. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/zenscript-DVFEvuxE.js +0 -0
  419. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/assets/zig-VOosw3JB.js +0 -0
  420. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/mycode/server/static/favicon_slashes.svg +0 -0
  421. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/scripts/__init__.py +0 -0
  422. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/scripts/build_web.py +0 -0
  423. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/scripts/release.sh +0 -0
  424. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/scripts/update_models_catalog.py +0 -0
  425. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/conftest.py +0 -0
  426. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_agent_loop.py +0 -0
  427. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_agent_provider_request.py +0 -0
  428. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_bash.py +0 -0
  429. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_cli.py +0 -0
  430. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_cli_imports.py +0 -0
  431. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_compact.py +0 -0
  432. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_config.py +0 -0
  433. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_instructions.py +0 -0
  434. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_models.py +0 -0
  435. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_provider_adapters.py +0 -0
  436. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_rewind.py +0 -0
  437. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_run_manager.py +0 -0
  438. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_server_app.py +0 -0
  439. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_session.py +0 -0
  440. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_skills.py +0 -0
  441. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/tests/test_tools.py +0 -0
  442. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/index.html +0 -0
  443. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/package.json +0 -0
  444. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/pnpm-lock.yaml +0 -0
  445. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/postcss.config.js +0 -0
  446. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/public/favicon_slashes.svg +0 -0
  447. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/App.tsx +0 -0
  448. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/Chat/CodeBlock.tsx +0 -0
  449. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/Chat/HighlightedCode.tsx +0 -0
  450. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/Chat/InputArea.tsx +0 -0
  451. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/Chat/MarkdownBlock.test.tsx +0 -0
  452. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/Chat/MarkdownBlock.tsx +0 -0
  453. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/Chat/MessageBubble.tsx +0 -0
  454. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/Chat/MessageList.tsx +0 -0
  455. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/Chat/ReasoningBlock.tsx +0 -0
  456. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/Layout.tsx +0 -0
  457. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/MobileHeader.tsx +0 -0
  458. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/Sidebar.tsx +0 -0
  459. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/ThemeProvider.tsx +0 -0
  460. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/UI/Button.tsx +0 -0
  461. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/components/WorkspacePicker.tsx +0 -0
  462. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/hooks/sessionSelection.test.ts +0 -0
  463. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/hooks/sessionSelection.ts +0 -0
  464. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/hooks/useChat.test.tsx +0 -0
  465. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/hooks/useChat.ts +0 -0
  466. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/index.css +0 -0
  467. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/main.tsx +0 -0
  468. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/test/setup.ts +0 -0
  469. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/utils/clipboard.ts +0 -0
  470. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/utils/cn.ts +0 -0
  471. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/utils/config.ts +0 -0
  472. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/utils/highlighter.ts +0 -0
  473. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/utils/messages.test.ts +0 -0
  474. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/utils/messages.ts +0 -0
  475. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/utils/storage.test.ts +0 -0
  476. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/utils/storage.ts +0 -0
  477. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/src/vite-env.d.ts +0 -0
  478. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/tailwind.config.js +0 -0
  479. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/tsconfig.json +0 -0
  480. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/vite.config.ts +0 -0
  481. {mycode_cli-0.3.0 → mycode_cli-0.3.1}/web/vitest.config.ts +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mycode-cli
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Minimal coding agent with web UI
5
5
  Project-URL: Homepage, https://github.com/legibet/mycode
6
6
  Project-URL: Repository, https://github.com/legibet/mycode
@@ -0,0 +1,12 @@
1
+ import{r as N,h as D,a as _,l as O,j as g,c as q,S as A}from"./index-CfZ_AJkk.js";class R{diff(e,n,t={}){let l;typeof t=="function"?(l=t,t={}):"callback"in t&&(l=t.callback);const o=this.castInput(e,t),i=this.castInput(n,t),c=this.removeEmpty(this.tokenize(o,t)),s=this.removeEmpty(this.tokenize(i,t));return this.diffWithOptionsObj(c,s,t,l)}diffWithOptionsObj(e,n,t,l){var o;const i=h=>{if(h=this.postProcess(h,t),l){setTimeout(function(){l(h)},0);return}else return h},c=n.length,s=e.length;let a=1,d=c+s;t.maxEditLength!=null&&(d=Math.min(d,t.maxEditLength));const u=(o=t.timeout)!==null&&o!==void 0?o:1/0,x=Date.now()+u,f=[{oldPos:-1,lastComponent:void 0}];let p=this.extractCommon(f[0],n,e,0,t);if(f[0].oldPos+1>=s&&p+1>=c)return i(this.buildValues(f[0].lastComponent,n,e));let v=-1/0,L=1/0;const P=()=>{for(let h=Math.max(v,-a);h<=Math.min(L,a);h+=2){let y;const C=f[h-1],w=f[h+1];C&&(f[h-1]=void 0);let m=!1;if(w){const k=w.oldPos-h;m=w&&0<=k&&k<c}const T=C&&C.oldPos+1<s;if(!m&&!T){f[h]=void 0;continue}if(!T||m&&C.oldPos<w.oldPos?y=this.addToPath(w,!0,!1,0,t):y=this.addToPath(C,!1,!0,1,t),p=this.extractCommon(y,n,e,h,t),y.oldPos+1>=s&&p+1>=c)return i(this.buildValues(y.lastComponent,n,e))||!0;f[h]=y,y.oldPos+1>=s&&(L=Math.min(L,h-1)),p+1>=c&&(v=Math.max(v,h+1))}a++};if(l)(function h(){setTimeout(function(){if(a>d||Date.now()>x)return l(void 0);P()||h()},0)})();else for(;a<=d&&Date.now()<=x;){const h=P();if(h)return h}}addToPath(e,n,t,l,o){const i=e.lastComponent;return i&&!o.oneChangePerToken&&i.added===n&&i.removed===t?{oldPos:e.oldPos+l,lastComponent:{count:i.count+1,added:n,removed:t,previousComponent:i.previousComponent}}:{oldPos:e.oldPos+l,lastComponent:{count:1,added:n,removed:t,previousComponent:i}}}extractCommon(e,n,t,l,o){const i=n.length,c=t.length;let s=e.oldPos,a=s-l,d=0;for(;a+1<i&&s+1<c&&this.equals(t[s+1],n[a+1],o);)a++,s++,d++,o.oneChangePerToken&&(e.lastComponent={count:1,previousComponent:e.lastComponent,added:!1,removed:!1});return d&&!o.oneChangePerToken&&(e.lastComponent={count:d,previousComponent:e.lastComponent,added:!1,removed:!1}),e.oldPos=s,a}equals(e,n,t){return t.comparator?t.comparator(e,n):e===n||!!t.ignoreCase&&e.toLowerCase()===n.toLowerCase()}removeEmpty(e){const n=[];for(let t=0;t<e.length;t++)e[t]&&n.push(e[t]);return n}castInput(e,n){return e}tokenize(e,n){return Array.from(e)}join(e){return e.join("")}postProcess(e,n){return e}get useLongestToken(){return!1}buildValues(e,n,t){const l=[];let o;for(;e;)l.push(e),o=e.previousComponent,delete e.previousComponent,e=o;l.reverse();const i=l.length;let c=0,s=0,a=0;for(;c<i;c++){const d=l[c];if(d.removed)d.value=this.join(t.slice(a,a+d.count)),a+=d.count;else{if(!d.added&&this.useLongestToken){let u=n.slice(s,s+d.count);u=u.map(function(x,f){const p=t[a+f];return p.length>x.length?p:x}),d.value=this.join(u)}else d.value=this.join(n.slice(s,s+d.count));s+=d.count,d.added||(a+=d.count)}}return l}}class z extends R{constructor(){super(...arguments),this.tokenize=V}equals(e,n,t){return t.ignoreWhitespace?((!t.newlineIsToken||!e.includes(`
2
+ `))&&(e=e.trim()),(!t.newlineIsToken||!n.includes(`
3
+ `))&&(n=n.trim())):t.ignoreNewlineAtEof&&!t.newlineIsToken&&(e.endsWith(`
4
+ `)&&(e=e.slice(0,-1)),n.endsWith(`
5
+ `)&&(n=n.slice(0,-1))),super.equals(e,n,t)}}const B=new z;function W(r,e,n){return B.diff(r,e,n)}function V(r,e){e.stripTrailingCr&&(r=r.replace(/\r\n/g,`
6
+ `));const n=[],t=r.split(/(\n|\r\n)/);t[t.length-1]||t.pop();for(let l=0;l<t.length;l++){const o=t[l];l%2&&!e.newlineIsToken?n[n.length-1]+=o:n.push(o)}return n}const F={js:"javascript",mjs:"javascript",cjs:"javascript",jsx:"jsx",ts:"typescript",tsx:"tsx",py:"python",rb:"ruby",rs:"rust",go:"go",java:"java",kt:"kotlin",swift:"swift",c:"c",cpp:"cpp",h:"c",hpp:"cpp",cs:"csharp",php:"php",html:"html",css:"css",scss:"scss",less:"less",json:"json",jsonc:"jsonc",yaml:"yaml",yml:"yaml",toml:"toml",md:"markdown",mdx:"mdx",sh:"bash",bash:"bash",zsh:"bash",sql:"sql",graphql:"graphql",gql:"graphql",xml:"xml",svg:"xml",vue:"vue",svelte:"svelte"};function X(r){const e=r?.split(".").pop()?.toLowerCase();return e?F[e]??"text":"text"}function j(r){return r.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;")}function G(r){const e=r.indexOf("<code>"),n=r.lastIndexOf("</code>");return e===-1||n===-1?[]:r.slice(e+6,n).split('<span class="line">').slice(1).map(i=>{const c=i.lastIndexOf("</span>");return c===-1?i:i.slice(0,c)})}function E(r,e,n){const t=q(r,e,{lang:n,...A});return t?G(t):e.split(`
7
+ `).map(j)}const $=3;function H(r,e,n,t){const l=W(r||"",e||"");let o=0,i=0,c=0;const s=[];for(const u of l){const x=u.value.replace(/\n$/,"").split(`
8
+ `);if(u.removed)for(const f of x)s.push({key:`r-${i}`,type:"removed",ln:null,html:n[i++]??j(f)});else if(u.added)for(const f of x)s.push({key:`a-${c}`,type:"added",ln:o++,html:t[c++]??j(f)});else for(const f of x)s.push({key:`c-${o}-${i}`,type:"context",ln:o++,html:n[i++]??j(f)}),c++}const a=new Uint8Array(s.length);for(let u=0;u<s.length;u++)if(s[u].type!=="context"){const x=Math.max(0,u-$),f=Math.min(s.length-1,u+$);for(let p=x;p<=f;p++)a[p]=1}return s.some(u=>u.type!=="context")?s.filter((u,x)=>a[x]):s}function S(r,e,n,t,l,o){const i=l.join(`
9
+ `),c=o.join(`
10
+ `),s=[i,n||"",c].filter(Boolean).join(`
11
+ `),a=E(r,s,e),d=[i,t||"",c].filter(Boolean).join(`
12
+ `),u=E(r,d,e),x=l.length,f=o.length;return{oldHighlighted:a.slice(x,a.length-f),newHighlighted:u.slice(x,u.length-f),ctxBeforeHtml:l.map((p,v)=>a[v]??j(p)),ctxAfterHtml:o.map((p,v)=>a[a.length-f+v]??j(p))}}function J(r,e,n){const t=[];for(let l=0;l<r.length;l++){l>0&&t.push({key:`sep-${l}`,type:"separator",ln:null,html:""});const o=r[l],{oldHighlighted:i,newHighlighted:c}=S(e,n,o.oldText,o.newText,[],[]),s=H(o.oldText,o.newText,i,c);for(const a of s)t.push({...a,key:`e${l}-${a.key}`})}return t}function K(r,e,n){if(!r.every(o=>o.meta!=null))return J(r,e,n);const t=[];let l=-1/0;for(let o=0;o<r.length;o++){const i=r[o],c=i.meta,s=c.start_line,a=c.new_line_count,d=c.context_before??[],u=c.context_after??[],x=s-d.length;let f=d;if(l>-1/0){const m=l-x;m>0?f=d.slice(m):m<0&&t.push({key:`sep-${o}`,type:"separator",ln:null,html:""})}let p=u;if(o<r.length-1){const m=r[o+1].meta??null,T=m?.start_line??1,k=m?.context_before??[],b=T-k.length,I=s+a;if(I+u.length>b){const M=Math.max(0,b-I);p=u.slice(0,M)}}const{oldHighlighted:v,newHighlighted:L,ctxBeforeHtml:P,ctxAfterHtml:h}=S(e,n,i.oldText,i.newText,f,p);let y=s-f.length;for(let m=0;m<f.length;m++)t.push({key:`e${o}-cb-${y}`,type:"context",ln:y++,html:P[m]??j(f[m])});const C=H(i.oldText,i.newText,v,L);for(const m of C)t.push({...m,key:`e${o}-${m.key}`,ln:m.ln!==null?m.ln+s:null});let w=s+a;for(let m=0;m<p.length;m++)t.push({key:`e${o}-ca-${w}`,type:"context",ln:w++,html:h[m]??j(p[m])});l=s+a+p.length}return t}function Y({path:r,edits:e}){const n=N.use(D),t=_(X(r));let o=n.getLoadedLanguages().includes(t)?t:"text";if(o==="text"&&t!=="text"){const s=O(n,t),a=N.use(s);a&&(o=a)}const i=K(e,n,o),c=e.some(s=>s.meta!=null);return g.jsxs("div",{className:"rounded-md bg-code overflow-hidden",children:[r&&g.jsx("div",{className:"px-3 pt-2",children:g.jsx("span",{className:"text-[11px] font-mono text-muted-foreground/30 tracking-wider select-none",children:r})}),g.jsx("div",{className:"overflow-x-auto scrollbar-subtle",children:g.jsx("table",{className:"w-full border-collapse",style:{fontFamily:'"DM Mono", "JetBrains Mono", monospace',fontSize:"13px",lineHeight:"1.5"},children:g.jsx("tbody",{children:i.map(s=>s.type==="separator"?g.jsx("tr",{children:g.jsx("td",{colSpan:c?3:2,className:"text-center text-muted-foreground/20 select-none py-0.5 text-xs",children:"···"})},s.key):g.jsxs("tr",{className:s.type==="removed"?"diff-line-removed":s.type==="added"?"diff-line-added":"",children:[c&&g.jsx("td",{className:"diff-ln select-none w-8 min-w-8 text-right align-top pr-2 text-muted-foreground/20 tabular-nums",children:s.ln??""}),g.jsx("td",{className:`select-none w-5 min-w-5 text-center align-top ${s.type==="removed"?"diff-gutter-removed":s.type==="added"?"diff-gutter-added":"text-transparent"}`,children:s.type==="removed"?"−":s.type==="added"?"+":" "}),g.jsx("td",{className:"pr-3 whitespace-pre",children:g.jsx("span",{className:"shiki",dangerouslySetInnerHTML:{__html:s.html}})})]},s.key))})})})]})}export{Y as default};
@@ -1 +1 @@
1
- @font-face{font-display:block;font-family:KaTeX_AMS;font-style:normal;font-weight:400;src:url(/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2) format("woff2"),url(/assets/KaTeX_AMS-Regular-DMm9YOAa.woff) format("woff"),url(/assets/KaTeX_AMS-Regular-DRggAlZN.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Caligraphic;font-style:normal;font-weight:700;src:url(/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2) format("woff2"),url(/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff) format("woff"),url(/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Caligraphic;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2) format("woff2"),url(/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff) format("woff"),url(/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Fraktur;font-style:normal;font-weight:700;src:url(/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2) format("woff2"),url(/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff) format("woff"),url(/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Fraktur;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2) format("woff2"),url(/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff) format("woff"),url(/assets/KaTeX_Fraktur-Regular-CB_wures.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Main;font-style:normal;font-weight:700;src:url(/assets/KaTeX_Main-Bold-Cx986IdX.woff2) format("woff2"),url(/assets/KaTeX_Main-Bold-Jm3AIy58.woff) format("woff"),url(/assets/KaTeX_Main-Bold-waoOVXN0.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Main;font-style:italic;font-weight:700;src:url(/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2) format("woff2"),url(/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff) format("woff"),url(/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Main;font-style:italic;font-weight:400;src:url(/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2) format("woff2"),url(/assets/KaTeX_Main-Italic-BMLOBm91.woff) format("woff"),url(/assets/KaTeX_Main-Italic-3WenGoN9.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Main;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Main-Regular-B22Nviop.woff2) format("woff2"),url(/assets/KaTeX_Main-Regular-Dr94JaBh.woff) format("woff"),url(/assets/KaTeX_Main-Regular-ypZvNtVU.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Math;font-style:italic;font-weight:700;src:url(/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2) format("woff2"),url(/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff) format("woff"),url(/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Math;font-style:italic;font-weight:400;src:url(/assets/KaTeX_Math-Italic-t53AETM-.woff2) format("woff2"),url(/assets/KaTeX_Math-Italic-DA0__PXp.woff) format("woff"),url(/assets/KaTeX_Math-Italic-flOr_0UB.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_SansSerif;font-style:normal;font-weight:700;src:url(/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2) format("woff2"),url(/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff) format("woff"),url(/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_SansSerif;font-style:italic;font-weight:400;src:url(/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2) format("woff2"),url(/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff) format("woff"),url(/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_SansSerif;font-style:normal;font-weight:400;src:url(/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2) format("woff2"),url(/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff) format("woff"),url(/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Script;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Script-Regular-D3wIWfF6.woff2) format("woff2"),url(/assets/KaTeX_Script-Regular-D5yQViql.woff) format("woff"),url(/assets/KaTeX_Script-Regular-C5JkGWo-.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Size1;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2) format("woff2"),url(/assets/KaTeX_Size1-Regular-C195tn64.woff) format("woff"),url(/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Size2;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2) format("woff2"),url(/assets/KaTeX_Size2-Regular-oD1tc_U0.woff) format("woff"),url(/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Size3;font-style:normal;font-weight:400;src:url(data:font/woff2;base64,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) format("woff2"),url(/assets/KaTeX_Size3-Regular-CTq5MqoE.woff) format("woff"),url(/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Size4;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2) format("woff2"),url(/assets/KaTeX_Size4-Regular-BF-4gkZK.woff) format("woff"),url(/assets/KaTeX_Size4-Regular-DWFBv043.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Typewriter;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2) format("woff2"),url(/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff) format("woff"),url(/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf) format("truetype")}.katex{font: 1.21em KaTeX_Main,Times New Roman,serif;line-height:1.2;position:relative;text-indent:0;text-rendering:auto}.katex *{-ms-high-contrast-adjust:none!important;border-color:currentColor}.katex .katex-version:after{content:"0.16.40"}.katex .katex-mathml{clip:rect(1px,1px,1px,1px);border:0;height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.katex .katex-html>.newline{display:block}.katex .base{position:relative;white-space:nowrap;width:-moz-min-content;width:min-content}.katex .base,.katex .strut{display:inline-block}.katex .textbf{font-weight:700}.katex .textit{font-style:italic}.katex .textrm{font-family:KaTeX_Main}.katex .textsf{font-family:KaTeX_SansSerif}.katex .texttt{font-family:KaTeX_Typewriter}.katex .mathnormal{font-family:KaTeX_Math;font-style:italic}.katex .mathit{font-family:KaTeX_Main;font-style:italic}.katex .mathrm{font-style:normal}.katex .mathbf{font-family:KaTeX_Main;font-weight:700}.katex .boldsymbol{font-family:KaTeX_Math;font-style:italic;font-weight:700}.katex .amsrm,.katex .mathbb,.katex .textbb{font-family:KaTeX_AMS}.katex .mathcal{font-family:KaTeX_Caligraphic}.katex .mathfrak,.katex .textfrak{font-family:KaTeX_Fraktur}.katex .mathboldfrak,.katex .textboldfrak{font-family:KaTeX_Fraktur;font-weight:700}.katex .mathtt{font-family:KaTeX_Typewriter}.katex .mathscr,.katex .textscr{font-family:KaTeX_Script}.katex .mathsf,.katex .textsf{font-family:KaTeX_SansSerif}.katex .mathboldsf,.katex .textboldsf{font-family:KaTeX_SansSerif;font-weight:700}.katex .mathitsf,.katex .mathsfit,.katex .textitsf{font-family:KaTeX_SansSerif;font-style:italic}.katex .mainrm{font-family:KaTeX_Main;font-style:normal}.katex .vlist-t{border-collapse:collapse;display:inline-table;table-layout:fixed}.katex .vlist-r{display:table-row}.katex .vlist{display:table-cell;position:relative;vertical-align:bottom}.katex .vlist>span{display:block;height:0;position:relative}.katex .vlist>span>span{display:inline-block}.katex .vlist>span>.pstrut{overflow:hidden;width:0}.katex .vlist-t2{margin-right:-2px}.katex .vlist-s{display:table-cell;font-size:1px;min-width:2px;vertical-align:bottom;width:2px}.katex .vbox{align-items:baseline;display:inline-flex;flex-direction:column}.katex .hbox{width:100%}.katex .hbox,.katex .thinbox{display:inline-flex;flex-direction:row}.katex .thinbox{max-width:0;width:0}.katex .msupsub{text-align:left}.katex .mfrac>span>span{text-align:center}.katex .mfrac .frac-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline,.katex .hline,.katex .mfrac .frac-line,.katex .overline .overline-line,.katex .rule,.katex .underline .underline-line{min-height:1px}.katex .mspace{display:inline-block}.katex .smash{display:inline;line-height:0}.katex .clap,.katex .llap,.katex .rlap{position:relative;width:0}.katex .clap>.inner,.katex .llap>.inner,.katex .rlap>.inner{position:absolute}.katex .clap>.fix,.katex .llap>.fix,.katex .rlap>.fix{display:inline-block}.katex .llap>.inner{right:0}.katex .clap>.inner,.katex .rlap>.inner{left:0}.katex .clap>.inner>span{margin-left:-50%;margin-right:50%}.katex .rule{border:0 solid;display:inline-block;position:relative}.katex .hline,.katex .overline .overline-line,.katex .underline .underline-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline{border-bottom-style:dashed;display:inline-block;width:100%}.katex .sqrt>.root{margin-left:.2777777778em;margin-right:-.5555555556em}.katex .fontsize-ensurer.reset-size1.size1,.katex .sizing.reset-size1.size1{font-size:1em}.katex .fontsize-ensurer.reset-size1.size2,.katex .sizing.reset-size1.size2{font-size:1.2em}.katex .fontsize-ensurer.reset-size1.size3,.katex .sizing.reset-size1.size3{font-size:1.4em}.katex .fontsize-ensurer.reset-size1.size4,.katex .sizing.reset-size1.size4{font-size:1.6em}.katex .fontsize-ensurer.reset-size1.size5,.katex .sizing.reset-size1.size5{font-size:1.8em}.katex .fontsize-ensurer.reset-size1.size6,.katex .sizing.reset-size1.size6{font-size:2em}.katex .fontsize-ensurer.reset-size1.size7,.katex .sizing.reset-size1.size7{font-size:2.4em}.katex .fontsize-ensurer.reset-size1.size8,.katex .sizing.reset-size1.size8{font-size:2.88em}.katex .fontsize-ensurer.reset-size1.size9,.katex .sizing.reset-size1.size9{font-size:3.456em}.katex .fontsize-ensurer.reset-size1.size10,.katex .sizing.reset-size1.size10{font-size:4.148em}.katex .fontsize-ensurer.reset-size1.size11,.katex .sizing.reset-size1.size11{font-size:4.976em}.katex .fontsize-ensurer.reset-size2.size1,.katex .sizing.reset-size2.size1{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size2.size2,.katex .sizing.reset-size2.size2{font-size:1em}.katex .fontsize-ensurer.reset-size2.size3,.katex .sizing.reset-size2.size3{font-size:1.1666666667em}.katex .fontsize-ensurer.reset-size2.size4,.katex .sizing.reset-size2.size4{font-size:1.3333333333em}.katex .fontsize-ensurer.reset-size2.size5,.katex .sizing.reset-size2.size5{font-size:1.5em}.katex .fontsize-ensurer.reset-size2.size6,.katex .sizing.reset-size2.size6{font-size:1.6666666667em}.katex .fontsize-ensurer.reset-size2.size7,.katex .sizing.reset-size2.size7{font-size:2em}.katex .fontsize-ensurer.reset-size2.size8,.katex .sizing.reset-size2.size8{font-size:2.4em}.katex .fontsize-ensurer.reset-size2.size9,.katex .sizing.reset-size2.size9{font-size:2.88em}.katex .fontsize-ensurer.reset-size2.size10,.katex .sizing.reset-size2.size10{font-size:3.4566666667em}.katex .fontsize-ensurer.reset-size2.size11,.katex .sizing.reset-size2.size11{font-size:4.1466666667em}.katex .fontsize-ensurer.reset-size3.size1,.katex .sizing.reset-size3.size1{font-size:.7142857143em}.katex .fontsize-ensurer.reset-size3.size2,.katex .sizing.reset-size3.size2{font-size:.8571428571em}.katex .fontsize-ensurer.reset-size3.size3,.katex .sizing.reset-size3.size3{font-size:1em}.katex .fontsize-ensurer.reset-size3.size4,.katex .sizing.reset-size3.size4{font-size:1.1428571429em}.katex .fontsize-ensurer.reset-size3.size5,.katex .sizing.reset-size3.size5{font-size:1.2857142857em}.katex .fontsize-ensurer.reset-size3.size6,.katex .sizing.reset-size3.size6{font-size:1.4285714286em}.katex .fontsize-ensurer.reset-size3.size7,.katex .sizing.reset-size3.size7{font-size:1.7142857143em}.katex .fontsize-ensurer.reset-size3.size8,.katex .sizing.reset-size3.size8{font-size:2.0571428571em}.katex .fontsize-ensurer.reset-size3.size9,.katex .sizing.reset-size3.size9{font-size:2.4685714286em}.katex .fontsize-ensurer.reset-size3.size10,.katex .sizing.reset-size3.size10{font-size:2.9628571429em}.katex .fontsize-ensurer.reset-size3.size11,.katex .sizing.reset-size3.size11{font-size:3.5542857143em}.katex .fontsize-ensurer.reset-size4.size1,.katex .sizing.reset-size4.size1{font-size:.625em}.katex .fontsize-ensurer.reset-size4.size2,.katex .sizing.reset-size4.size2{font-size:.75em}.katex .fontsize-ensurer.reset-size4.size3,.katex .sizing.reset-size4.size3{font-size:.875em}.katex .fontsize-ensurer.reset-size4.size4,.katex .sizing.reset-size4.size4{font-size:1em}.katex .fontsize-ensurer.reset-size4.size5,.katex .sizing.reset-size4.size5{font-size:1.125em}.katex .fontsize-ensurer.reset-size4.size6,.katex .sizing.reset-size4.size6{font-size:1.25em}.katex .fontsize-ensurer.reset-size4.size7,.katex .sizing.reset-size4.size7{font-size:1.5em}.katex .fontsize-ensurer.reset-size4.size8,.katex .sizing.reset-size4.size8{font-size:1.8em}.katex .fontsize-ensurer.reset-size4.size9,.katex .sizing.reset-size4.size9{font-size:2.16em}.katex .fontsize-ensurer.reset-size4.size10,.katex .sizing.reset-size4.size10{font-size:2.5925em}.katex .fontsize-ensurer.reset-size4.size11,.katex .sizing.reset-size4.size11{font-size:3.11em}.katex .fontsize-ensurer.reset-size5.size1,.katex .sizing.reset-size5.size1{font-size:.5555555556em}.katex .fontsize-ensurer.reset-size5.size2,.katex .sizing.reset-size5.size2{font-size:.6666666667em}.katex .fontsize-ensurer.reset-size5.size3,.katex .sizing.reset-size5.size3{font-size:.7777777778em}.katex .fontsize-ensurer.reset-size5.size4,.katex .sizing.reset-size5.size4{font-size:.8888888889em}.katex .fontsize-ensurer.reset-size5.size5,.katex .sizing.reset-size5.size5{font-size:1em}.katex .fontsize-ensurer.reset-size5.size6,.katex .sizing.reset-size5.size6{font-size:1.1111111111em}.katex .fontsize-ensurer.reset-size5.size7,.katex .sizing.reset-size5.size7{font-size:1.3333333333em}.katex .fontsize-ensurer.reset-size5.size8,.katex .sizing.reset-size5.size8{font-size:1.6em}.katex .fontsize-ensurer.reset-size5.size9,.katex .sizing.reset-size5.size9{font-size:1.92em}.katex .fontsize-ensurer.reset-size5.size10,.katex .sizing.reset-size5.size10{font-size:2.3044444444em}.katex .fontsize-ensurer.reset-size5.size11,.katex .sizing.reset-size5.size11{font-size:2.7644444444em}.katex .fontsize-ensurer.reset-size6.size1,.katex .sizing.reset-size6.size1{font-size:.5em}.katex .fontsize-ensurer.reset-size6.size2,.katex .sizing.reset-size6.size2{font-size:.6em}.katex .fontsize-ensurer.reset-size6.size3,.katex .sizing.reset-size6.size3{font-size:.7em}.katex .fontsize-ensurer.reset-size6.size4,.katex .sizing.reset-size6.size4{font-size:.8em}.katex .fontsize-ensurer.reset-size6.size5,.katex .sizing.reset-size6.size5{font-size:.9em}.katex .fontsize-ensurer.reset-size6.size6,.katex .sizing.reset-size6.size6{font-size:1em}.katex .fontsize-ensurer.reset-size6.size7,.katex .sizing.reset-size6.size7{font-size:1.2em}.katex .fontsize-ensurer.reset-size6.size8,.katex .sizing.reset-size6.size8{font-size:1.44em}.katex .fontsize-ensurer.reset-size6.size9,.katex .sizing.reset-size6.size9{font-size:1.728em}.katex .fontsize-ensurer.reset-size6.size10,.katex .sizing.reset-size6.size10{font-size:2.074em}.katex .fontsize-ensurer.reset-size6.size11,.katex .sizing.reset-size6.size11{font-size:2.488em}.katex .fontsize-ensurer.reset-size7.size1,.katex .sizing.reset-size7.size1{font-size:.4166666667em}.katex .fontsize-ensurer.reset-size7.size2,.katex .sizing.reset-size7.size2{font-size:.5em}.katex .fontsize-ensurer.reset-size7.size3,.katex .sizing.reset-size7.size3{font-size:.5833333333em}.katex .fontsize-ensurer.reset-size7.size4,.katex .sizing.reset-size7.size4{font-size:.6666666667em}.katex .fontsize-ensurer.reset-size7.size5,.katex .sizing.reset-size7.size5{font-size:.75em}.katex .fontsize-ensurer.reset-size7.size6,.katex .sizing.reset-size7.size6{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size7.size7,.katex .sizing.reset-size7.size7{font-size:1em}.katex .fontsize-ensurer.reset-size7.size8,.katex .sizing.reset-size7.size8{font-size:1.2em}.katex .fontsize-ensurer.reset-size7.size9,.katex .sizing.reset-size7.size9{font-size:1.44em}.katex .fontsize-ensurer.reset-size7.size10,.katex .sizing.reset-size7.size10{font-size:1.7283333333em}.katex .fontsize-ensurer.reset-size7.size11,.katex .sizing.reset-size7.size11{font-size:2.0733333333em}.katex .fontsize-ensurer.reset-size8.size1,.katex .sizing.reset-size8.size1{font-size:.3472222222em}.katex .fontsize-ensurer.reset-size8.size2,.katex .sizing.reset-size8.size2{font-size:.4166666667em}.katex .fontsize-ensurer.reset-size8.size3,.katex .sizing.reset-size8.size3{font-size:.4861111111em}.katex .fontsize-ensurer.reset-size8.size4,.katex .sizing.reset-size8.size4{font-size:.5555555556em}.katex .fontsize-ensurer.reset-size8.size5,.katex .sizing.reset-size8.size5{font-size:.625em}.katex .fontsize-ensurer.reset-size8.size6,.katex .sizing.reset-size8.size6{font-size:.6944444444em}.katex .fontsize-ensurer.reset-size8.size7,.katex .sizing.reset-size8.size7{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size8.size8,.katex .sizing.reset-size8.size8{font-size:1em}.katex .fontsize-ensurer.reset-size8.size9,.katex .sizing.reset-size8.size9{font-size:1.2em}.katex .fontsize-ensurer.reset-size8.size10,.katex .sizing.reset-size8.size10{font-size:1.4402777778em}.katex .fontsize-ensurer.reset-size8.size11,.katex .sizing.reset-size8.size11{font-size:1.7277777778em}.katex .fontsize-ensurer.reset-size9.size1,.katex .sizing.reset-size9.size1{font-size:.2893518519em}.katex .fontsize-ensurer.reset-size9.size2,.katex .sizing.reset-size9.size2{font-size:.3472222222em}.katex .fontsize-ensurer.reset-size9.size3,.katex .sizing.reset-size9.size3{font-size:.4050925926em}.katex .fontsize-ensurer.reset-size9.size4,.katex .sizing.reset-size9.size4{font-size:.462962963em}.katex .fontsize-ensurer.reset-size9.size5,.katex .sizing.reset-size9.size5{font-size:.5208333333em}.katex .fontsize-ensurer.reset-size9.size6,.katex .sizing.reset-size9.size6{font-size:.5787037037em}.katex .fontsize-ensurer.reset-size9.size7,.katex .sizing.reset-size9.size7{font-size:.6944444444em}.katex .fontsize-ensurer.reset-size9.size8,.katex .sizing.reset-size9.size8{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size9.size9,.katex .sizing.reset-size9.size9{font-size:1em}.katex .fontsize-ensurer.reset-size9.size10,.katex .sizing.reset-size9.size10{font-size:1.2002314815em}.katex .fontsize-ensurer.reset-size9.size11,.katex .sizing.reset-size9.size11{font-size:1.4398148148em}.katex .fontsize-ensurer.reset-size10.size1,.katex .sizing.reset-size10.size1{font-size:.2410800386em}.katex .fontsize-ensurer.reset-size10.size2,.katex .sizing.reset-size10.size2{font-size:.2892960463em}.katex .fontsize-ensurer.reset-size10.size3,.katex .sizing.reset-size10.size3{font-size:.337512054em}.katex .fontsize-ensurer.reset-size10.size4,.katex .sizing.reset-size10.size4{font-size:.3857280617em}.katex .fontsize-ensurer.reset-size10.size5,.katex .sizing.reset-size10.size5{font-size:.4339440694em}.katex .fontsize-ensurer.reset-size10.size6,.katex .sizing.reset-size10.size6{font-size:.4821600771em}.katex .fontsize-ensurer.reset-size10.size7,.katex .sizing.reset-size10.size7{font-size:.5785920926em}.katex .fontsize-ensurer.reset-size10.size8,.katex .sizing.reset-size10.size8{font-size:.6943105111em}.katex .fontsize-ensurer.reset-size10.size9,.katex .sizing.reset-size10.size9{font-size:.8331726133em}.katex .fontsize-ensurer.reset-size10.size10,.katex .sizing.reset-size10.size10{font-size:1em}.katex .fontsize-ensurer.reset-size10.size11,.katex .sizing.reset-size10.size11{font-size:1.1996142719em}.katex .fontsize-ensurer.reset-size11.size1,.katex .sizing.reset-size11.size1{font-size:.2009646302em}.katex .fontsize-ensurer.reset-size11.size2,.katex .sizing.reset-size11.size2{font-size:.2411575563em}.katex .fontsize-ensurer.reset-size11.size3,.katex .sizing.reset-size11.size3{font-size:.2813504823em}.katex .fontsize-ensurer.reset-size11.size4,.katex .sizing.reset-size11.size4{font-size:.3215434084em}.katex .fontsize-ensurer.reset-size11.size5,.katex .sizing.reset-size11.size5{font-size:.3617363344em}.katex .fontsize-ensurer.reset-size11.size6,.katex .sizing.reset-size11.size6{font-size:.4019292605em}.katex .fontsize-ensurer.reset-size11.size7,.katex .sizing.reset-size11.size7{font-size:.4823151125em}.katex .fontsize-ensurer.reset-size11.size8,.katex .sizing.reset-size11.size8{font-size:.578778135em}.katex .fontsize-ensurer.reset-size11.size9,.katex .sizing.reset-size11.size9{font-size:.6945337621em}.katex .fontsize-ensurer.reset-size11.size10,.katex .sizing.reset-size11.size10{font-size:.8336012862em}.katex .fontsize-ensurer.reset-size11.size11,.katex .sizing.reset-size11.size11{font-size:1em}.katex .delimsizing.size1{font-family:KaTeX_Size1}.katex .delimsizing.size2{font-family:KaTeX_Size2}.katex .delimsizing.size3{font-family:KaTeX_Size3}.katex .delimsizing.size4{font-family:KaTeX_Size4}.katex .delimsizing.mult .delim-size1>span{font-family:KaTeX_Size1}.katex .delimsizing.mult .delim-size4>span{font-family:KaTeX_Size4}.katex .nulldelimiter{display:inline-block;width:.12em}.katex .delimcenter,.katex .op-symbol{position:relative}.katex .op-symbol.small-op{font-family:KaTeX_Size1}.katex .op-symbol.large-op{font-family:KaTeX_Size2}.katex .accent>.vlist-t,.katex .op-limits>.vlist-t{text-align:center}.katex .accent .accent-body{position:relative}.katex .accent .accent-body:not(.accent-full){width:0}.katex .overlay{display:block}.katex .mtable .vertical-separator{display:inline-block;min-width:1px}.katex .mtable .arraycolsep{display:inline-block}.katex .mtable .col-align-c>.vlist-t{text-align:center}.katex .mtable .col-align-l>.vlist-t{text-align:left}.katex .mtable .col-align-r>.vlist-t{text-align:right}.katex .svg-align{text-align:left}.katex svg{fill:currentColor;stroke:currentColor;display:block;height:inherit;position:absolute;width:100%}.katex svg path{stroke:none}.katex svg{fill-rule:nonzero;fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1}.katex img{border-style:none;max-height:none;max-width:none;min-height:0;min-width:0}.katex .stretchy{display:block;overflow:hidden;position:relative;width:100%}.katex .stretchy:after,.katex .stretchy:before{content:""}.katex .hide-tail{overflow:hidden;position:relative;width:100%}.katex .halfarrow-left{left:0;overflow:hidden;position:absolute;width:50.2%}.katex .halfarrow-right{overflow:hidden;position:absolute;right:0;width:50.2%}.katex .brace-left{left:0;overflow:hidden;position:absolute;width:25.1%}.katex .brace-center{left:25%;overflow:hidden;position:absolute;width:50%}.katex .brace-right{overflow:hidden;position:absolute;right:0;width:25.1%}.katex .x-arrow-pad{padding:0 .5em}.katex .cd-arrow-pad{padding:0 .55556em 0 .27778em}.katex .mover,.katex .munder,.katex .x-arrow{text-align:center}.katex .boxpad{padding:0 .3em}.katex .fbox,.katex .fcolorbox{border:.04em solid;box-sizing:border-box}.katex .cancel-pad{padding:0 .2em}.katex .cancel-lap{margin-left:-.2em;margin-right:-.2em}.katex .sout{border-bottom-style:solid;border-bottom-width:.08em}.katex .angl{border-right:.049em solid;border-top:.049em solid;box-sizing:border-box;margin-right:.03889em}.katex .anglpad{padding:0 .03889em}.katex .eqn-num:before{content:"(" counter(katexEqnNo) ")";counter-increment:katexEqnNo}.katex .mml-eqn-num:before{content:"(" counter(mmlEqnNo) ")";counter-increment:mmlEqnNo}.katex .mtr-glue{width:50%}.katex .cd-vert-arrow{display:inline-block;position:relative}.katex .cd-label-left{display:inline-block;position:absolute;right:calc(50% + .3em);text-align:left}.katex .cd-label-right{display:inline-block;left:calc(50% + .3em);position:absolute;text-align:right}.katex-display{display:block;margin:1em 0;text-align:center}.katex-display>.katex{display:block;text-align:center;white-space:nowrap}.katex-display>.katex>.katex-html{display:block;position:relative}.katex-display>.katex>.katex-html>.tag{position:absolute;right:0}.katex-display.leqno>.katex>.katex-html>.tag{left:0;right:auto}.katex-display.fleqn>.katex{padding-left:2em;text-align:left}body{counter-reset:katexEqnNo mmlEqnNo}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Satoshi,system-ui,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:DM Mono,JetBrains Mono,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}:root{color-scheme:dark;--background: 216 60% 10%;--foreground: 210 25% 87%;--card: 216 55% 11%;--card-foreground: 210 25% 87%;--popover: 216 55% 11%;--popover-foreground: 210 25% 87%;--primary: 210 25% 87%;--primary-foreground: 216 60% 10%;--secondary: 216 50% 13%;--secondary-foreground: 210 20% 80%;--muted: 216 45% 15%;--muted-foreground: 210 18% 50%;--accent: 204 50% 58%;--accent-foreground: 216 60% 8%;--destructive: 0 60% 50%;--destructive-foreground: 0 0% 98%;--border: 216 40% 18%;--input: 216 40% 18%;--ring: 204 50% 58%;--radius: .5rem;--scrollbar-thumb: hsl(var(--border) / .9);--scrollbar-thumb-hover: hsl(var(--muted-foreground) / .45);--scrollbar-track: transparent;--code-background: 216 65% 7%;--diff-removed-bg: rgba(248, 81, 73, .1);--diff-added-bg: rgba(63, 185, 80, .1);--diff-removed-indicator: rgba(248, 81, 73, .5);--diff-added-indicator: rgba(63, 185, 80, .5);--sidebar-bg: 216 65% 7%}.light{color-scheme:light;--background: 216 40% 97%;--foreground: 216 55% 13%;--card: 216 35% 95%;--card-foreground: 216 55% 13%;--popover: 216 35% 95%;--popover-foreground: 216 55% 13%;--primary: 216 55% 13%;--primary-foreground: 216 40% 97%;--secondary: 216 30% 92%;--secondary-foreground: 216 40% 20%;--muted: 216 28% 93%;--muted-foreground: 210 15% 48%;--accent: 204 60% 40%;--accent-foreground: 216 40% 97%;--destructive: 0 70% 50%;--destructive-foreground: 0 0% 98%;--border: 216 25% 86%;--input: 216 25% 86%;--ring: 204 60% 40%;--radius: .5rem;--code-background: 220 14% 94%;--diff-removed-bg: rgba(255, 99, 71, .08);--diff-added-bg: rgba(46, 160, 67, .08);--diff-removed-indicator: rgba(208, 58, 40, .55);--diff-added-indicator: rgba(36, 134, 54, .55);--sidebar-bg: 216 35% 95%}html,body,#root{height:100%;width:100%;overflow:hidden}*{border-color:hsl(var(--border))}body{background-color:hsl(var(--background));color:hsl(var(--foreground));font-feature-settings:"ss01","ss02","cv01";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overscroll-behavior:none}.light body{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.inset-y-0{top:0;bottom:0}.-right-1{right:-.25rem}.-top-1{top:-.25rem}.bottom-0{bottom:0}.left-0{left:0}.left-2\.5{left:.625rem}.left-3{left:.75rem}.right-0{right:0}.right-1{right:.25rem}.right-2{right:.5rem}.right-2\.5{right:.625rem}.top-0{top:0}.top-1{top:.25rem}.top-1\.5{top:.375rem}.top-1\/2{top:50%}.z-10{z-index:10}.z-40{z-index:40}.z-\[100\]{z-index:100}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-auto{margin-left:auto;margin-right:auto}.my-3{margin-top:.75rem;margin-bottom:.75rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-ml-2{margin-left:-.5rem}.-mr-2{margin-right:-.5rem}.mb-0\.5{margin-bottom:.125rem}.mb-1{margin-bottom:.25rem}.mb-2\.5{margin-bottom:.625rem}.ml-0\.5{margin-left:.125rem}.ml-1{margin-left:.25rem}.ml-1\.5{margin-left:.375rem}.mr-2{margin-right:.5rem}.mt-1{margin-top:.25rem}.mt-1\.5{margin-top:.375rem}.mt-2{margin-top:.5rem}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-1\.5{height:.375rem}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-2\.5{height:.625rem}.h-24{height:6rem}.h-3{height:.75rem}.h-3\.5{height:.875rem}.h-36{height:9rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[1\.5px\]{height:1.5px}.h-\[1px\]{height:1px}.h-\[3px\]{height:3px}.h-full{height:100%}.h-screen{height:100vh}.max-h-64{max-height:16rem}.max-h-\[200px\]{max-height:200px}.max-h-\[240px\]{max-height:240px}.max-h-\[300px\]{max-height:300px}.max-h-\[82vh\]{max-height:82vh}.min-h-0{min-height:0px}.min-h-\[44px\]{min-height:44px}.w-1\.5{width:.375rem}.w-1\/3{width:33.333333%}.w-10{width:2.5rem}.w-14{width:3.5rem}.w-2\.5{width:.625rem}.w-3{width:.75rem}.w-3\.5{width:.875rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-64{width:16rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-\[1\.5px\]{width:1.5px}.w-\[2px\]{width:2px}.w-\[3px\]{width:3px}.w-full{width:100%}.min-w-0{min-width:0px}.min-w-28{min-width:7rem}.min-w-32{min-width:8rem}.min-w-5{min-width:1.25rem}.min-w-8{min-width:2rem}.max-w-4xl{max-width:56rem}.max-w-\[60\%\]{max-width:60%}.max-w-\[85\%\]{max-width:85%}.max-w-full{max-width:100%}.max-w-none{max-width:none}.max-w-xl{max-width:36rem}.max-w-xs{max-width:20rem}.flex-1{flex:1 1 0%}.flex-shrink-0,.shrink-0{flex-shrink:0}.border-collapse{border-collapse:collapse}.-translate-y-1\/2{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-rotate-90{--tw-rotate: -90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.animate-backdrop-in{animation:backdrop-in .2s ease-out both}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.animate-sheet-in{animation:sheet-slide-up .35s cubic-bezier(.32,.72,0,1) both}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.resize-none{resize:none}.grid-rows-\[0fr\]{grid-template-rows:0fr}.grid-rows-\[1fr\]{grid-template-rows:1fr}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-0\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-2\.5{gap:.625rem}.gap-3{gap:.75rem}.gap-6{gap:1.5rem}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem * var(--tw-space-y-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.self-end{align-self:flex-end}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overscroll-contain{overscroll-behavior:contain}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.whitespace-pre{white-space:pre}.whitespace-pre-wrap{white-space:pre-wrap}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-xl{border-radius:.75rem}.rounded-t-2xl{border-top-left-radius:1rem;border-top-right-radius:1rem}.rounded-t-lg{border-top-left-radius:var(--radius);border-top-right-radius:var(--radius)}.border{border-width:1px}.border-0{border-width:0px}.border-b{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-accent\/20{border-color:hsl(var(--accent) / .2)}.border-accent\/50{border-color:hsl(var(--accent) / .5)}.border-border\/20{border-color:hsl(var(--border) / .2)}.border-border\/25{border-color:hsl(var(--border) / .25)}.border-border\/30{border-color:hsl(var(--border) / .3)}.border-border\/40{border-color:hsl(var(--border) / .4)}.border-border\/50{border-color:hsl(var(--border) / .5)}.border-border\/60{border-color:hsl(var(--border) / .6)}.border-input{border-color:hsl(var(--input))}.bg-accent{background-color:hsl(var(--accent))}.bg-accent\/15{background-color:hsl(var(--accent) / .15)}.bg-accent\/30{background-color:hsl(var(--accent) / .3)}.bg-accent\/5{background-color:hsl(var(--accent) / .05)}.bg-accent\/50{background-color:hsl(var(--accent) / .5)}.bg-accent\/60{background-color:hsl(var(--accent) / .6)}.bg-accent\/70{background-color:hsl(var(--accent) / .7)}.bg-background{background-color:hsl(var(--background))}.bg-background\/60{background-color:hsl(var(--background) / .6)}.bg-black\/50{background-color:#00000080}.bg-border\/60{background-color:hsl(var(--border) / .6)}.bg-card{background-color:hsl(var(--card))}.bg-code{background-color:hsl(var(--code-background))}.bg-destructive{background-color:hsl(var(--destructive))}.bg-destructive\/10{background-color:hsl(var(--destructive) / .1)}.bg-foreground{background-color:hsl(var(--foreground))}.bg-muted-foreground\/30{background-color:hsl(var(--muted-foreground) / .3)}.bg-muted\/30{background-color:hsl(var(--muted) / .3)}.bg-primary{background-color:hsl(var(--primary))}.bg-red-500\/\[0\.05\]{background-color:#ef44440d}.bg-secondary{background-color:hsl(var(--secondary))}.bg-secondary\/20{background-color:hsl(var(--secondary) / .2)}.bg-secondary\/40{background-color:hsl(var(--secondary) / .4)}.bg-sidebar-bg{background-color:hsl(var(--sidebar-bg))}.bg-transparent{background-color:transparent}.bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.from-background{--tw-gradient-from: hsl(var(--background)) var(--tw-gradient-from-position);--tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.via-background\/80{--tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), hsl(var(--background) / .8) var(--tw-gradient-via-position), var(--tw-gradient-to)}.to-transparent{--tw-gradient-to: transparent var(--tw-gradient-to-position)}.fill-current{fill:currentColor}.object-cover{-o-object-fit:cover;object-fit:cover}.p-0{padding:0}.p-8{padding:2rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.pb-1{padding-bottom:.25rem}.pb-1\.5{padding-bottom:.375rem}.pb-2\.5{padding-bottom:.625rem}.pb-4{padding-bottom:1rem}.pl-1{padding-left:.25rem}.pl-12{padding-left:3rem}.pr-10{padding-right:2.5rem}.pr-14{padding-right:3.5rem}.pr-2{padding-right:.5rem}.pr-3{padding-right:.75rem}.pt-1{padding-top:.25rem}.pt-2{padding-top:.5rem}.pt-2\.5{padding-top:.625rem}.pt-3{padding-top:.75rem}.pt-6{padding-top:1.5rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-top{vertical-align:top}.align-middle{vertical-align:middle}.font-display{font-family:DM Mono,monospace}.font-mono{font-family:DM Mono,JetBrains Mono,monospace}.font-sans{font-family:Satoshi,system-ui,sans-serif}.text-2xl{font-size:1.5rem;line-height:2rem}.text-2xs{font-size:.6875rem;line-height:1rem}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[12px\]{font-size:12px}.text-\[13px\]{font-size:13px}.text-base{font-size:1rem;line-height:1.5rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.italic{font-style:italic}.tabular-nums{--tw-numeric-spacing: tabular-nums;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.leading-6{line-height:1.5rem}.leading-\[1\.5\]{line-height:1.5}.leading-relaxed{line-height:1.625}.tracking-\[0\.16em\]{letter-spacing:.16em}.tracking-tight{letter-spacing:-.025em}.tracking-tighter{letter-spacing:-.05em}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.text-accent{color:hsl(var(--accent))}.text-accent\/40{color:hsl(var(--accent) / .4)}.text-accent\/50{color:hsl(var(--accent) / .5)}.text-accent\/60{color:hsl(var(--accent) / .6)}.text-accent\/80{color:hsl(var(--accent) / .8)}.text-background{color:hsl(var(--background))}.text-border{color:hsl(var(--border))}.text-destructive{color:hsl(var(--destructive))}.text-destructive-foreground{color:hsl(var(--destructive-foreground))}.text-destructive\/70{color:hsl(var(--destructive) / .7)}.text-destructive\/80{color:hsl(var(--destructive) / .8)}.text-emerald-400{--tw-text-opacity: 1;color:rgb(52 211 153 / var(--tw-text-opacity, 1))}.text-emerald-500\/40{color:#10b98166}.text-emerald-500\/60{color:#10b98199}.text-foreground{color:hsl(var(--foreground))}.text-foreground\/60{color:hsl(var(--foreground) / .6)}.text-foreground\/65{color:hsl(var(--foreground) / .65)}.text-foreground\/70{color:hsl(var(--foreground) / .7)}.text-foreground\/80{color:hsl(var(--foreground) / .8)}.text-foreground\/90{color:hsl(var(--foreground) / .9)}.text-muted-foreground{color:hsl(var(--muted-foreground))}.text-muted-foreground\/20{color:hsl(var(--muted-foreground) / .2)}.text-muted-foreground\/25{color:hsl(var(--muted-foreground) / .25)}.text-muted-foreground\/30{color:hsl(var(--muted-foreground) / .3)}.text-muted-foreground\/35{color:hsl(var(--muted-foreground) / .35)}.text-muted-foreground\/40{color:hsl(var(--muted-foreground) / .4)}.text-muted-foreground\/50{color:hsl(var(--muted-foreground) / .5)}.text-muted-foreground\/60{color:hsl(var(--muted-foreground) / .6)}.text-muted-foreground\/70{color:hsl(var(--muted-foreground) / .7)}.text-muted-foreground\/80{color:hsl(var(--muted-foreground) / .8)}.text-primary-foreground{color:hsl(var(--primary-foreground))}.text-red-400\/60{color:#f8717199}.text-red-400\/70{color:#f87171b3}.text-red-400\/80{color:#f87171cc}.text-secondary-foreground{color:hsl(var(--secondary-foreground))}.text-transparent{color:transparent}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.caret-accent{caret-color:hsl(var(--accent))}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-30{opacity:.3}.shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-2xl{--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.ring-offset-background{--tw-ring-offset-color: hsl(var(--background))}.\!filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-\[3px\]{--tw-backdrop-blur: blur(3px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-sm{--tw-backdrop-blur: blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-\[grid-template-rows\,opacity\]{transition-property:grid-template-rows,opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-150{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.ease-\[cubic-bezier\(0\.4\,0\,0\.2\,1\)\]{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.\[overflow-wrap\:anywhere\]{overflow-wrap:anywhere}::-webkit-scrollbar{width:4px;height:4px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{border-radius:9999px;background-color:hsl(var(--border))}::-webkit-scrollbar-thumb:hover{background-color:hsl(var(--muted-foreground) / .4)}::-webkit-scrollbar-corner{background:transparent}@media(pointer:coarse){.scrollbar-subtle{scrollbar-width:thin;scrollbar-color:var(--scrollbar-thumb) var(--scrollbar-track)}.scrollbar-subtle::-webkit-scrollbar{width:3px;height:3px}.scrollbar-subtle::-webkit-scrollbar-track{background:var(--scrollbar-track)}.scrollbar-subtle::-webkit-scrollbar-thumb{background-color:var(--scrollbar-thumb);border-radius:9999px}.scrollbar-subtle::-webkit-scrollbar-thumb:hover{background-color:var(--scrollbar-thumb-hover)}}@media(hover:hover)and (pointer:fine){.session-row-inactive:hover{background-color:hsl(var(--secondary) / .2);color:hsl(var(--foreground))}.group .session-delete-button{opacity:0}.group:hover .session-delete-button{opacity:1}.session-delete-icon:hover{color:hsl(var(--destructive))}}.prose{max-width:none;color:hsl(var(--foreground))}.prose h1,.prose h2,.prose h3,.prose h4{font-weight:600;letter-spacing:-.025em;color:hsl(var(--foreground))}.prose h1{margin-top:2rem;margin-bottom:1rem;font-size:1.25rem;line-height:1.75rem}.prose h2{margin-top:1.5rem;margin-bottom:.75rem;font-size:1.125rem;line-height:1.75rem}.prose h3{margin-top:1.25rem;margin-bottom:.5rem;font-size:1rem;line-height:1.5rem}.prose p{line-height:1.625}.prose p:not(:first-child){margin-top:.75rem}.prose p{overflow-wrap:anywhere}.prose blockquote{margin-top:1rem;border-left-width:2px;border-color:hsl(var(--accent) / .4);padding-left:1rem;font-style:italic;color:hsl(var(--muted-foreground));overflow-wrap:anywhere}.prose ul{margin-top:.75rem;margin-bottom:.75rem;margin-left:1rem;list-style-type:disc}.prose ul>li{margin-top:.25rem}.prose ol{margin-top:.75rem;margin-bottom:.75rem;margin-left:1rem;list-style-type:decimal}.prose ol>li{margin-top:.25rem}.prose li{line-height:1.625;overflow-wrap:anywhere}.prose pre{margin-top:1rem;margin-bottom:1rem;overflow-x:auto;border-radius:var(--radius);background-color:hsl(var(--code-background))}.prose pre code{border-radius:0;background-color:transparent;padding:0;font-family:DM Mono,JetBrains Mono,monospace;font-size:13px;font-weight:400;line-height:1.625;color:hsl(var(--foreground))}.prose .katex{font-size:1.05em}.prose .katex-display{margin-top:1rem;margin-bottom:1rem;overflow-x:auto;overflow-y:hidden;padding-top:.25rem;padding-bottom:.25rem}.prose a{color:hsl(var(--accent));text-decoration-line:underline;text-decoration-color:hsl(var(--accent) / .4);text-underline-offset:2px;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.prose a:hover{text-decoration-color:hsl(var(--accent))}.prose a{overflow-wrap:anywhere}.prose strong{font-weight:600;color:hsl(var(--foreground))}.prose hr{margin-top:1.5rem;margin-bottom:1.5rem;border-color:hsl(var(--border))}.prose table{width:100%;min-width:-moz-max-content;min-width:max-content;border-collapse:collapse;font-size:.875rem;line-height:1.25rem}.prose thead{border-bottom-width:1px;border-color:hsl(var(--border))}.prose th{padding:.5rem .75rem;text-align:left;font-size:.75rem;line-height:1rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:hsl(var(--foreground));overflow-wrap:anywhere}.prose td{border-bottom-width:1px;border-color:hsl(var(--border) / .3);padding:.5rem .75rem;color:hsl(var(--foreground) / .8);overflow-wrap:anywhere}.prose tbody tr:hover{background-color:hsl(var(--muted) / .2)}.prose ul:has(>li>input[type=checkbox]){margin-left:0;list-style-type:none}.prose li>input[type=checkbox]{margin-right:.5rem;accent-color:hsl(var(--accent))}.prose del{color:hsl(var(--muted-foreground));text-decoration-line:line-through}.shiki,.shiki span{color:var(--shiki-dark);background-color:transparent;font-style:var(--shiki-dark-font-style);font-weight:var(--shiki-dark-font-weight);-webkit-text-decoration:var(--shiki-dark-text-decoration);text-decoration:var(--shiki-dark-text-decoration)}.light .shiki,.light .shiki span{color:var(--shiki-light);font-style:var(--shiki-light-font-style);font-weight:var(--shiki-light-font-weight);-webkit-text-decoration:var(--shiki-light-text-decoration);text-decoration:var(--shiki-light-text-decoration)}.shiki-wrapper pre.shiki{margin:0;padding:0;overflow:visible}.diff-line-removed{background-color:var(--diff-removed-bg)}.diff-line-added{background-color:var(--diff-added-bg)}.diff-gutter-removed{color:var(--diff-removed-indicator)}.diff-gutter-added{color:var(--diff-added-indicator)}@keyframes cursor-blink{0%,to{opacity:1}50%{opacity:0}}@keyframes fade-in-up{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}@keyframes sheet-slide-up{0%{transform:translateY(100%)}to{transform:translateY(0)}}@keyframes dialog-enter{0%{opacity:0;transform:scale(.96) translateY(6px)}to{opacity:1;transform:scale(1) translateY(0)}}@keyframes dialog-exit{0%{opacity:1;transform:scale(1) translateY(0)}to{opacity:0;transform:scale(.96) translateY(6px)}}@keyframes backdrop-in{0%{opacity:0}to{opacity:1}}@keyframes backdrop-out{0%{opacity:1}to{opacity:0}}@keyframes breathing{0%,to{opacity:1}50%{opacity:.4}}@keyframes thinking{0%,to{opacity:1}50%{opacity:.55}}@keyframes progress-line{0%{transform:translate(-100%)}to{transform:translate(100%)}}.animate-cursor-blink{animation:cursor-blink 1s step-end infinite}.animate-fade-in-up{animation:fade-in-up .2s ease-out both}.animate-progress-line{animation:progress-line 1.5s ease-in-out infinite}.animate-breathing{animation:breathing 2s ease-in-out infinite}.animate-thinking{animation:thinking 2.5s ease-in-out infinite}@media(prefers-reduced-motion:reduce){*,:before,:after{animation-duration:0ms!important;animation-iteration-count:1!important;animation-delay:0ms!important;transition-duration:0ms!important;scroll-behavior:auto!important}}.scroll-fade-top{mask-image:linear-gradient(to bottom,transparent,black 48px);-webkit-mask-image:linear-gradient(to bottom,transparent,black 48px)}.placeholder\:text-muted-foreground\/30::-moz-placeholder{color:hsl(var(--muted-foreground) / .3)}.placeholder\:text-muted-foreground\/30::placeholder{color:hsl(var(--muted-foreground) / .3)}.placeholder\:text-muted-foreground\/40::-moz-placeholder{color:hsl(var(--muted-foreground) / .4)}.placeholder\:text-muted-foreground\/40::placeholder{color:hsl(var(--muted-foreground) / .4)}.focus-within\:border-border\/50:focus-within{border-color:hsl(var(--border) / .5)}.focus-within\:shadow-md:focus-within{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hover\:border-accent\/40:hover{border-color:hsl(var(--accent) / .4)}.hover\:bg-accent:hover{background-color:hsl(var(--accent))}.hover\:bg-accent\/25:hover{background-color:hsl(var(--accent) / .25)}.hover\:bg-destructive\/10:hover{background-color:hsl(var(--destructive) / .1)}.hover\:bg-destructive\/90:hover{background-color:hsl(var(--destructive) / .9)}.hover\:bg-muted\/20:hover{background-color:hsl(var(--muted) / .2)}.hover\:bg-muted\/50:hover{background-color:hsl(var(--muted) / .5)}.hover\:bg-muted\/60:hover{background-color:hsl(var(--muted) / .6)}.hover\:bg-muted\/70:hover{background-color:hsl(var(--muted) / .7)}.hover\:bg-primary\/90:hover{background-color:hsl(var(--primary) / .9)}.hover\:bg-secondary\/20:hover{background-color:hsl(var(--secondary) / .2)}.hover\:bg-secondary\/40:hover{background-color:hsl(var(--secondary) / .4)}.hover\:bg-secondary\/80:hover{background-color:hsl(var(--secondary) / .8)}.hover\:text-accent:hover{color:hsl(var(--accent))}.hover\:text-accent-foreground:hover{color:hsl(var(--accent-foreground))}.hover\:text-destructive:hover{color:hsl(var(--destructive))}.hover\:text-foreground:hover{color:hsl(var(--foreground))}.hover\:text-foreground\/60:hover{color:hsl(var(--foreground) / .6)}.hover\:text-muted-foreground:hover{color:hsl(var(--muted-foreground))}.hover\:text-muted-foreground\/70:hover{color:hsl(var(--muted-foreground) / .7)}.hover\:opacity-90:hover{opacity:.9}.focus\:border-accent\/50:focus{border-color:hsl(var(--accent) / .5)}.focus\:bg-secondary\/40:focus{background-color:hsl(var(--secondary) / .4)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus-visible\:bg-muted\/50:focus-visible{background-color:hsl(var(--muted) / .5)}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\:ring-1:focus-visible{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus-visible\:ring-2:focus-visible{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus-visible\:ring-ring:focus-visible{--tw-ring-color: hsl(var(--ring))}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width: 2px}.active\:scale-90:active{--tw-scale-x: .9;--tw-scale-y: .9;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\:scale-95:active{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\:scale-\[0\.97\]:active{--tw-scale-x: .97;--tw-scale-y: .97;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\:bg-accent\/30:active{background-color:hsl(var(--accent) / .3)}.active\:bg-muted\/70:active{background-color:hsl(var(--muted) / .7)}.active\:bg-secondary\/30:active{background-color:hsl(var(--secondary) / .3)}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-25:disabled{opacity:.25}.disabled\:opacity-50:disabled{opacity:.5}.group:hover .group-hover\:text-accent\/60{color:hsl(var(--accent) / .6)}.group:hover .group-hover\:text-accent\/70{color:hsl(var(--accent) / .7)}.group:hover .group-hover\:text-foreground{color:hsl(var(--foreground))}.group:hover .group-hover\:text-foreground\/80{color:hsl(var(--foreground) / .8)}.group\/code:hover .group-hover\/code\:opacity-100,.group\/msg:hover .group-hover\/msg\:opacity-100,.group\/thumb:hover .group-hover\/thumb\:opacity-100,.group\/user:hover .group-hover\/user\:opacity-100{opacity:1}@supports (height:100dvh){.supports-\[height\:100dvh\]\:h-dvh{height:100dvh}}@media not all and (min-width:768px){.max-md\:fixed{position:fixed}.max-md\:inset-y-0{top:0;bottom:0}.max-md\:left-0{left:0}.max-md\:left-2{left:.5rem}.max-md\:right-2{right:.5rem}.max-md\:z-50{z-index:50}.max-md\:max-w-none{max-width:none}.max-md\:-translate-x-full{--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.max-md\:translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.max-md\:gap-5{gap:1.25rem}.max-md\:overscroll-y-contain{overscroll-behavior-y:contain}.max-md\:px-3{padding-left:.75rem;padding-right:.75rem}.max-md\:px-4{padding-left:1rem;padding-right:1rem}.max-md\:py-2{padding-top:.5rem;padding-bottom:.5rem}.max-md\:py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.max-md\:pb-\[max\(0\.5rem\,env\(safe-area-inset-bottom\)\)\]{padding-bottom:max(.5rem,env(safe-area-inset-bottom))}.max-md\:pl-11{padding-left:2.75rem}.max-md\:opacity-100{opacity:1}.max-md\:opacity-60{opacity:.6}.max-md\:transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.max-md\:duration-300{transition-duration:.3s}.max-md\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}}@media(min-width:640px){.sm\:hidden{display:none}.sm\:max-h-\[520px\]{max-height:520px}.sm\:w-\[440px\]{width:440px}.sm\:animate-dialog-in{animation:dialog-enter .2s ease-out both}.sm\:items-center{align-items:center}.sm\:justify-center{justify-content:center}.sm\:rounded-xl{border-radius:.75rem}}@media(min-width:768px){.md\:hidden{display:none}.md\:text-sm{font-size:.875rem;line-height:1.25rem}}
1
+ @font-face{font-display:block;font-family:KaTeX_AMS;font-style:normal;font-weight:400;src:url(/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2) format("woff2"),url(/assets/KaTeX_AMS-Regular-DMm9YOAa.woff) format("woff"),url(/assets/KaTeX_AMS-Regular-DRggAlZN.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Caligraphic;font-style:normal;font-weight:700;src:url(/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2) format("woff2"),url(/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff) format("woff"),url(/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Caligraphic;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2) format("woff2"),url(/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff) format("woff"),url(/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Fraktur;font-style:normal;font-weight:700;src:url(/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2) format("woff2"),url(/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff) format("woff"),url(/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Fraktur;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2) format("woff2"),url(/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff) format("woff"),url(/assets/KaTeX_Fraktur-Regular-CB_wures.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Main;font-style:normal;font-weight:700;src:url(/assets/KaTeX_Main-Bold-Cx986IdX.woff2) format("woff2"),url(/assets/KaTeX_Main-Bold-Jm3AIy58.woff) format("woff"),url(/assets/KaTeX_Main-Bold-waoOVXN0.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Main;font-style:italic;font-weight:700;src:url(/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2) format("woff2"),url(/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff) format("woff"),url(/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Main;font-style:italic;font-weight:400;src:url(/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2) format("woff2"),url(/assets/KaTeX_Main-Italic-BMLOBm91.woff) format("woff"),url(/assets/KaTeX_Main-Italic-3WenGoN9.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Main;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Main-Regular-B22Nviop.woff2) format("woff2"),url(/assets/KaTeX_Main-Regular-Dr94JaBh.woff) format("woff"),url(/assets/KaTeX_Main-Regular-ypZvNtVU.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Math;font-style:italic;font-weight:700;src:url(/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2) format("woff2"),url(/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff) format("woff"),url(/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Math;font-style:italic;font-weight:400;src:url(/assets/KaTeX_Math-Italic-t53AETM-.woff2) format("woff2"),url(/assets/KaTeX_Math-Italic-DA0__PXp.woff) format("woff"),url(/assets/KaTeX_Math-Italic-flOr_0UB.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_SansSerif;font-style:normal;font-weight:700;src:url(/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2) format("woff2"),url(/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff) format("woff"),url(/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_SansSerif;font-style:italic;font-weight:400;src:url(/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2) format("woff2"),url(/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff) format("woff"),url(/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_SansSerif;font-style:normal;font-weight:400;src:url(/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2) format("woff2"),url(/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff) format("woff"),url(/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Script;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Script-Regular-D3wIWfF6.woff2) format("woff2"),url(/assets/KaTeX_Script-Regular-D5yQViql.woff) format("woff"),url(/assets/KaTeX_Script-Regular-C5JkGWo-.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Size1;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2) format("woff2"),url(/assets/KaTeX_Size1-Regular-C195tn64.woff) format("woff"),url(/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Size2;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2) format("woff2"),url(/assets/KaTeX_Size2-Regular-oD1tc_U0.woff) format("woff"),url(/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Size3;font-style:normal;font-weight:400;src:url(data:font/woff2;base64,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) format("woff2"),url(/assets/KaTeX_Size3-Regular-CTq5MqoE.woff) format("woff"),url(/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Size4;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2) format("woff2"),url(/assets/KaTeX_Size4-Regular-BF-4gkZK.woff) format("woff"),url(/assets/KaTeX_Size4-Regular-DWFBv043.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Typewriter;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2) format("woff2"),url(/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff) format("woff"),url(/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf) format("truetype")}.katex{font: 1.21em KaTeX_Main,Times New Roman,serif;line-height:1.2;position:relative;text-indent:0;text-rendering:auto}.katex *{-ms-high-contrast-adjust:none!important;border-color:currentColor}.katex .katex-version:after{content:"0.16.40"}.katex .katex-mathml{clip:rect(1px,1px,1px,1px);border:0;height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.katex .katex-html>.newline{display:block}.katex .base{position:relative;white-space:nowrap;width:-moz-min-content;width:min-content}.katex .base,.katex .strut{display:inline-block}.katex .textbf{font-weight:700}.katex .textit{font-style:italic}.katex .textrm{font-family:KaTeX_Main}.katex .textsf{font-family:KaTeX_SansSerif}.katex .texttt{font-family:KaTeX_Typewriter}.katex .mathnormal{font-family:KaTeX_Math;font-style:italic}.katex .mathit{font-family:KaTeX_Main;font-style:italic}.katex .mathrm{font-style:normal}.katex .mathbf{font-family:KaTeX_Main;font-weight:700}.katex .boldsymbol{font-family:KaTeX_Math;font-style:italic;font-weight:700}.katex .amsrm,.katex .mathbb,.katex .textbb{font-family:KaTeX_AMS}.katex .mathcal{font-family:KaTeX_Caligraphic}.katex .mathfrak,.katex .textfrak{font-family:KaTeX_Fraktur}.katex .mathboldfrak,.katex .textboldfrak{font-family:KaTeX_Fraktur;font-weight:700}.katex .mathtt{font-family:KaTeX_Typewriter}.katex .mathscr,.katex .textscr{font-family:KaTeX_Script}.katex .mathsf,.katex .textsf{font-family:KaTeX_SansSerif}.katex .mathboldsf,.katex .textboldsf{font-family:KaTeX_SansSerif;font-weight:700}.katex .mathitsf,.katex .mathsfit,.katex .textitsf{font-family:KaTeX_SansSerif;font-style:italic}.katex .mainrm{font-family:KaTeX_Main;font-style:normal}.katex .vlist-t{border-collapse:collapse;display:inline-table;table-layout:fixed}.katex .vlist-r{display:table-row}.katex .vlist{display:table-cell;position:relative;vertical-align:bottom}.katex .vlist>span{display:block;height:0;position:relative}.katex .vlist>span>span{display:inline-block}.katex .vlist>span>.pstrut{overflow:hidden;width:0}.katex .vlist-t2{margin-right:-2px}.katex .vlist-s{display:table-cell;font-size:1px;min-width:2px;vertical-align:bottom;width:2px}.katex .vbox{align-items:baseline;display:inline-flex;flex-direction:column}.katex .hbox{width:100%}.katex .hbox,.katex .thinbox{display:inline-flex;flex-direction:row}.katex .thinbox{max-width:0;width:0}.katex .msupsub{text-align:left}.katex .mfrac>span>span{text-align:center}.katex .mfrac .frac-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline,.katex .hline,.katex .mfrac .frac-line,.katex .overline .overline-line,.katex .rule,.katex .underline .underline-line{min-height:1px}.katex .mspace{display:inline-block}.katex .smash{display:inline;line-height:0}.katex .clap,.katex .llap,.katex .rlap{position:relative;width:0}.katex .clap>.inner,.katex .llap>.inner,.katex .rlap>.inner{position:absolute}.katex .clap>.fix,.katex .llap>.fix,.katex .rlap>.fix{display:inline-block}.katex .llap>.inner{right:0}.katex .clap>.inner,.katex .rlap>.inner{left:0}.katex .clap>.inner>span{margin-left:-50%;margin-right:50%}.katex .rule{border:0 solid;display:inline-block;position:relative}.katex .hline,.katex .overline .overline-line,.katex .underline .underline-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline{border-bottom-style:dashed;display:inline-block;width:100%}.katex .sqrt>.root{margin-left:.2777777778em;margin-right:-.5555555556em}.katex .fontsize-ensurer.reset-size1.size1,.katex .sizing.reset-size1.size1{font-size:1em}.katex .fontsize-ensurer.reset-size1.size2,.katex .sizing.reset-size1.size2{font-size:1.2em}.katex .fontsize-ensurer.reset-size1.size3,.katex .sizing.reset-size1.size3{font-size:1.4em}.katex .fontsize-ensurer.reset-size1.size4,.katex .sizing.reset-size1.size4{font-size:1.6em}.katex .fontsize-ensurer.reset-size1.size5,.katex .sizing.reset-size1.size5{font-size:1.8em}.katex .fontsize-ensurer.reset-size1.size6,.katex .sizing.reset-size1.size6{font-size:2em}.katex .fontsize-ensurer.reset-size1.size7,.katex .sizing.reset-size1.size7{font-size:2.4em}.katex .fontsize-ensurer.reset-size1.size8,.katex .sizing.reset-size1.size8{font-size:2.88em}.katex .fontsize-ensurer.reset-size1.size9,.katex .sizing.reset-size1.size9{font-size:3.456em}.katex .fontsize-ensurer.reset-size1.size10,.katex .sizing.reset-size1.size10{font-size:4.148em}.katex .fontsize-ensurer.reset-size1.size11,.katex .sizing.reset-size1.size11{font-size:4.976em}.katex .fontsize-ensurer.reset-size2.size1,.katex .sizing.reset-size2.size1{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size2.size2,.katex .sizing.reset-size2.size2{font-size:1em}.katex .fontsize-ensurer.reset-size2.size3,.katex .sizing.reset-size2.size3{font-size:1.1666666667em}.katex .fontsize-ensurer.reset-size2.size4,.katex .sizing.reset-size2.size4{font-size:1.3333333333em}.katex .fontsize-ensurer.reset-size2.size5,.katex .sizing.reset-size2.size5{font-size:1.5em}.katex .fontsize-ensurer.reset-size2.size6,.katex .sizing.reset-size2.size6{font-size:1.6666666667em}.katex .fontsize-ensurer.reset-size2.size7,.katex .sizing.reset-size2.size7{font-size:2em}.katex .fontsize-ensurer.reset-size2.size8,.katex .sizing.reset-size2.size8{font-size:2.4em}.katex .fontsize-ensurer.reset-size2.size9,.katex .sizing.reset-size2.size9{font-size:2.88em}.katex .fontsize-ensurer.reset-size2.size10,.katex .sizing.reset-size2.size10{font-size:3.4566666667em}.katex .fontsize-ensurer.reset-size2.size11,.katex .sizing.reset-size2.size11{font-size:4.1466666667em}.katex .fontsize-ensurer.reset-size3.size1,.katex .sizing.reset-size3.size1{font-size:.7142857143em}.katex .fontsize-ensurer.reset-size3.size2,.katex .sizing.reset-size3.size2{font-size:.8571428571em}.katex .fontsize-ensurer.reset-size3.size3,.katex .sizing.reset-size3.size3{font-size:1em}.katex .fontsize-ensurer.reset-size3.size4,.katex .sizing.reset-size3.size4{font-size:1.1428571429em}.katex .fontsize-ensurer.reset-size3.size5,.katex .sizing.reset-size3.size5{font-size:1.2857142857em}.katex .fontsize-ensurer.reset-size3.size6,.katex .sizing.reset-size3.size6{font-size:1.4285714286em}.katex .fontsize-ensurer.reset-size3.size7,.katex .sizing.reset-size3.size7{font-size:1.7142857143em}.katex .fontsize-ensurer.reset-size3.size8,.katex .sizing.reset-size3.size8{font-size:2.0571428571em}.katex .fontsize-ensurer.reset-size3.size9,.katex .sizing.reset-size3.size9{font-size:2.4685714286em}.katex .fontsize-ensurer.reset-size3.size10,.katex .sizing.reset-size3.size10{font-size:2.9628571429em}.katex .fontsize-ensurer.reset-size3.size11,.katex .sizing.reset-size3.size11{font-size:3.5542857143em}.katex .fontsize-ensurer.reset-size4.size1,.katex .sizing.reset-size4.size1{font-size:.625em}.katex .fontsize-ensurer.reset-size4.size2,.katex .sizing.reset-size4.size2{font-size:.75em}.katex .fontsize-ensurer.reset-size4.size3,.katex .sizing.reset-size4.size3{font-size:.875em}.katex .fontsize-ensurer.reset-size4.size4,.katex .sizing.reset-size4.size4{font-size:1em}.katex .fontsize-ensurer.reset-size4.size5,.katex .sizing.reset-size4.size5{font-size:1.125em}.katex .fontsize-ensurer.reset-size4.size6,.katex .sizing.reset-size4.size6{font-size:1.25em}.katex .fontsize-ensurer.reset-size4.size7,.katex .sizing.reset-size4.size7{font-size:1.5em}.katex .fontsize-ensurer.reset-size4.size8,.katex .sizing.reset-size4.size8{font-size:1.8em}.katex .fontsize-ensurer.reset-size4.size9,.katex .sizing.reset-size4.size9{font-size:2.16em}.katex .fontsize-ensurer.reset-size4.size10,.katex .sizing.reset-size4.size10{font-size:2.5925em}.katex .fontsize-ensurer.reset-size4.size11,.katex .sizing.reset-size4.size11{font-size:3.11em}.katex .fontsize-ensurer.reset-size5.size1,.katex .sizing.reset-size5.size1{font-size:.5555555556em}.katex .fontsize-ensurer.reset-size5.size2,.katex .sizing.reset-size5.size2{font-size:.6666666667em}.katex .fontsize-ensurer.reset-size5.size3,.katex .sizing.reset-size5.size3{font-size:.7777777778em}.katex .fontsize-ensurer.reset-size5.size4,.katex .sizing.reset-size5.size4{font-size:.8888888889em}.katex .fontsize-ensurer.reset-size5.size5,.katex .sizing.reset-size5.size5{font-size:1em}.katex .fontsize-ensurer.reset-size5.size6,.katex .sizing.reset-size5.size6{font-size:1.1111111111em}.katex .fontsize-ensurer.reset-size5.size7,.katex .sizing.reset-size5.size7{font-size:1.3333333333em}.katex .fontsize-ensurer.reset-size5.size8,.katex .sizing.reset-size5.size8{font-size:1.6em}.katex .fontsize-ensurer.reset-size5.size9,.katex .sizing.reset-size5.size9{font-size:1.92em}.katex .fontsize-ensurer.reset-size5.size10,.katex .sizing.reset-size5.size10{font-size:2.3044444444em}.katex .fontsize-ensurer.reset-size5.size11,.katex .sizing.reset-size5.size11{font-size:2.7644444444em}.katex .fontsize-ensurer.reset-size6.size1,.katex .sizing.reset-size6.size1{font-size:.5em}.katex .fontsize-ensurer.reset-size6.size2,.katex .sizing.reset-size6.size2{font-size:.6em}.katex .fontsize-ensurer.reset-size6.size3,.katex .sizing.reset-size6.size3{font-size:.7em}.katex .fontsize-ensurer.reset-size6.size4,.katex .sizing.reset-size6.size4{font-size:.8em}.katex .fontsize-ensurer.reset-size6.size5,.katex .sizing.reset-size6.size5{font-size:.9em}.katex .fontsize-ensurer.reset-size6.size6,.katex .sizing.reset-size6.size6{font-size:1em}.katex .fontsize-ensurer.reset-size6.size7,.katex .sizing.reset-size6.size7{font-size:1.2em}.katex .fontsize-ensurer.reset-size6.size8,.katex .sizing.reset-size6.size8{font-size:1.44em}.katex .fontsize-ensurer.reset-size6.size9,.katex .sizing.reset-size6.size9{font-size:1.728em}.katex .fontsize-ensurer.reset-size6.size10,.katex .sizing.reset-size6.size10{font-size:2.074em}.katex .fontsize-ensurer.reset-size6.size11,.katex .sizing.reset-size6.size11{font-size:2.488em}.katex .fontsize-ensurer.reset-size7.size1,.katex .sizing.reset-size7.size1{font-size:.4166666667em}.katex .fontsize-ensurer.reset-size7.size2,.katex .sizing.reset-size7.size2{font-size:.5em}.katex .fontsize-ensurer.reset-size7.size3,.katex .sizing.reset-size7.size3{font-size:.5833333333em}.katex .fontsize-ensurer.reset-size7.size4,.katex .sizing.reset-size7.size4{font-size:.6666666667em}.katex .fontsize-ensurer.reset-size7.size5,.katex .sizing.reset-size7.size5{font-size:.75em}.katex .fontsize-ensurer.reset-size7.size6,.katex .sizing.reset-size7.size6{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size7.size7,.katex .sizing.reset-size7.size7{font-size:1em}.katex .fontsize-ensurer.reset-size7.size8,.katex .sizing.reset-size7.size8{font-size:1.2em}.katex .fontsize-ensurer.reset-size7.size9,.katex .sizing.reset-size7.size9{font-size:1.44em}.katex .fontsize-ensurer.reset-size7.size10,.katex .sizing.reset-size7.size10{font-size:1.7283333333em}.katex .fontsize-ensurer.reset-size7.size11,.katex .sizing.reset-size7.size11{font-size:2.0733333333em}.katex .fontsize-ensurer.reset-size8.size1,.katex .sizing.reset-size8.size1{font-size:.3472222222em}.katex .fontsize-ensurer.reset-size8.size2,.katex .sizing.reset-size8.size2{font-size:.4166666667em}.katex .fontsize-ensurer.reset-size8.size3,.katex .sizing.reset-size8.size3{font-size:.4861111111em}.katex .fontsize-ensurer.reset-size8.size4,.katex .sizing.reset-size8.size4{font-size:.5555555556em}.katex .fontsize-ensurer.reset-size8.size5,.katex .sizing.reset-size8.size5{font-size:.625em}.katex .fontsize-ensurer.reset-size8.size6,.katex .sizing.reset-size8.size6{font-size:.6944444444em}.katex .fontsize-ensurer.reset-size8.size7,.katex .sizing.reset-size8.size7{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size8.size8,.katex .sizing.reset-size8.size8{font-size:1em}.katex .fontsize-ensurer.reset-size8.size9,.katex .sizing.reset-size8.size9{font-size:1.2em}.katex .fontsize-ensurer.reset-size8.size10,.katex .sizing.reset-size8.size10{font-size:1.4402777778em}.katex .fontsize-ensurer.reset-size8.size11,.katex .sizing.reset-size8.size11{font-size:1.7277777778em}.katex .fontsize-ensurer.reset-size9.size1,.katex .sizing.reset-size9.size1{font-size:.2893518519em}.katex .fontsize-ensurer.reset-size9.size2,.katex .sizing.reset-size9.size2{font-size:.3472222222em}.katex .fontsize-ensurer.reset-size9.size3,.katex .sizing.reset-size9.size3{font-size:.4050925926em}.katex .fontsize-ensurer.reset-size9.size4,.katex .sizing.reset-size9.size4{font-size:.462962963em}.katex .fontsize-ensurer.reset-size9.size5,.katex .sizing.reset-size9.size5{font-size:.5208333333em}.katex .fontsize-ensurer.reset-size9.size6,.katex .sizing.reset-size9.size6{font-size:.5787037037em}.katex .fontsize-ensurer.reset-size9.size7,.katex .sizing.reset-size9.size7{font-size:.6944444444em}.katex .fontsize-ensurer.reset-size9.size8,.katex .sizing.reset-size9.size8{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size9.size9,.katex .sizing.reset-size9.size9{font-size:1em}.katex .fontsize-ensurer.reset-size9.size10,.katex .sizing.reset-size9.size10{font-size:1.2002314815em}.katex .fontsize-ensurer.reset-size9.size11,.katex .sizing.reset-size9.size11{font-size:1.4398148148em}.katex .fontsize-ensurer.reset-size10.size1,.katex .sizing.reset-size10.size1{font-size:.2410800386em}.katex .fontsize-ensurer.reset-size10.size2,.katex .sizing.reset-size10.size2{font-size:.2892960463em}.katex .fontsize-ensurer.reset-size10.size3,.katex .sizing.reset-size10.size3{font-size:.337512054em}.katex .fontsize-ensurer.reset-size10.size4,.katex .sizing.reset-size10.size4{font-size:.3857280617em}.katex .fontsize-ensurer.reset-size10.size5,.katex .sizing.reset-size10.size5{font-size:.4339440694em}.katex .fontsize-ensurer.reset-size10.size6,.katex .sizing.reset-size10.size6{font-size:.4821600771em}.katex .fontsize-ensurer.reset-size10.size7,.katex .sizing.reset-size10.size7{font-size:.5785920926em}.katex .fontsize-ensurer.reset-size10.size8,.katex .sizing.reset-size10.size8{font-size:.6943105111em}.katex .fontsize-ensurer.reset-size10.size9,.katex .sizing.reset-size10.size9{font-size:.8331726133em}.katex .fontsize-ensurer.reset-size10.size10,.katex .sizing.reset-size10.size10{font-size:1em}.katex .fontsize-ensurer.reset-size10.size11,.katex .sizing.reset-size10.size11{font-size:1.1996142719em}.katex .fontsize-ensurer.reset-size11.size1,.katex .sizing.reset-size11.size1{font-size:.2009646302em}.katex .fontsize-ensurer.reset-size11.size2,.katex .sizing.reset-size11.size2{font-size:.2411575563em}.katex .fontsize-ensurer.reset-size11.size3,.katex .sizing.reset-size11.size3{font-size:.2813504823em}.katex .fontsize-ensurer.reset-size11.size4,.katex .sizing.reset-size11.size4{font-size:.3215434084em}.katex .fontsize-ensurer.reset-size11.size5,.katex .sizing.reset-size11.size5{font-size:.3617363344em}.katex .fontsize-ensurer.reset-size11.size6,.katex .sizing.reset-size11.size6{font-size:.4019292605em}.katex .fontsize-ensurer.reset-size11.size7,.katex .sizing.reset-size11.size7{font-size:.4823151125em}.katex .fontsize-ensurer.reset-size11.size8,.katex .sizing.reset-size11.size8{font-size:.578778135em}.katex .fontsize-ensurer.reset-size11.size9,.katex .sizing.reset-size11.size9{font-size:.6945337621em}.katex .fontsize-ensurer.reset-size11.size10,.katex .sizing.reset-size11.size10{font-size:.8336012862em}.katex .fontsize-ensurer.reset-size11.size11,.katex .sizing.reset-size11.size11{font-size:1em}.katex .delimsizing.size1{font-family:KaTeX_Size1}.katex .delimsizing.size2{font-family:KaTeX_Size2}.katex .delimsizing.size3{font-family:KaTeX_Size3}.katex .delimsizing.size4{font-family:KaTeX_Size4}.katex .delimsizing.mult .delim-size1>span{font-family:KaTeX_Size1}.katex .delimsizing.mult .delim-size4>span{font-family:KaTeX_Size4}.katex .nulldelimiter{display:inline-block;width:.12em}.katex .delimcenter,.katex .op-symbol{position:relative}.katex .op-symbol.small-op{font-family:KaTeX_Size1}.katex .op-symbol.large-op{font-family:KaTeX_Size2}.katex .accent>.vlist-t,.katex .op-limits>.vlist-t{text-align:center}.katex .accent .accent-body{position:relative}.katex .accent .accent-body:not(.accent-full){width:0}.katex .overlay{display:block}.katex .mtable .vertical-separator{display:inline-block;min-width:1px}.katex .mtable .arraycolsep{display:inline-block}.katex .mtable .col-align-c>.vlist-t{text-align:center}.katex .mtable .col-align-l>.vlist-t{text-align:left}.katex .mtable .col-align-r>.vlist-t{text-align:right}.katex .svg-align{text-align:left}.katex svg{fill:currentColor;stroke:currentColor;display:block;height:inherit;position:absolute;width:100%}.katex svg path{stroke:none}.katex svg{fill-rule:nonzero;fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1}.katex img{border-style:none;max-height:none;max-width:none;min-height:0;min-width:0}.katex .stretchy{display:block;overflow:hidden;position:relative;width:100%}.katex .stretchy:after,.katex .stretchy:before{content:""}.katex .hide-tail{overflow:hidden;position:relative;width:100%}.katex .halfarrow-left{left:0;overflow:hidden;position:absolute;width:50.2%}.katex .halfarrow-right{overflow:hidden;position:absolute;right:0;width:50.2%}.katex .brace-left{left:0;overflow:hidden;position:absolute;width:25.1%}.katex .brace-center{left:25%;overflow:hidden;position:absolute;width:50%}.katex .brace-right{overflow:hidden;position:absolute;right:0;width:25.1%}.katex .x-arrow-pad{padding:0 .5em}.katex .cd-arrow-pad{padding:0 .55556em 0 .27778em}.katex .mover,.katex .munder,.katex .x-arrow{text-align:center}.katex .boxpad{padding:0 .3em}.katex .fbox,.katex .fcolorbox{border:.04em solid;box-sizing:border-box}.katex .cancel-pad{padding:0 .2em}.katex .cancel-lap{margin-left:-.2em;margin-right:-.2em}.katex .sout{border-bottom-style:solid;border-bottom-width:.08em}.katex .angl{border-right:.049em solid;border-top:.049em solid;box-sizing:border-box;margin-right:.03889em}.katex .anglpad{padding:0 .03889em}.katex .eqn-num:before{content:"(" counter(katexEqnNo) ")";counter-increment:katexEqnNo}.katex .mml-eqn-num:before{content:"(" counter(mmlEqnNo) ")";counter-increment:mmlEqnNo}.katex .mtr-glue{width:50%}.katex .cd-vert-arrow{display:inline-block;position:relative}.katex .cd-label-left{display:inline-block;position:absolute;right:calc(50% + .3em);text-align:left}.katex .cd-label-right{display:inline-block;left:calc(50% + .3em);position:absolute;text-align:right}.katex-display{display:block;margin:1em 0;text-align:center}.katex-display>.katex{display:block;text-align:center;white-space:nowrap}.katex-display>.katex>.katex-html{display:block;position:relative}.katex-display>.katex>.katex-html>.tag{position:absolute;right:0}.katex-display.leqno>.katex>.katex-html>.tag{left:0;right:auto}.katex-display.fleqn>.katex{padding-left:2em;text-align:left}body{counter-reset:katexEqnNo mmlEqnNo}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Satoshi,system-ui,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:DM Mono,JetBrains Mono,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}:root{color-scheme:dark;--background: 216 60% 10%;--foreground: 210 25% 87%;--card: 216 55% 11%;--card-foreground: 210 25% 87%;--popover: 216 55% 11%;--popover-foreground: 210 25% 87%;--primary: 210 25% 87%;--primary-foreground: 216 60% 10%;--secondary: 216 50% 13%;--secondary-foreground: 210 20% 80%;--muted: 216 45% 15%;--muted-foreground: 210 18% 50%;--accent: 204 50% 58%;--accent-foreground: 216 60% 8%;--destructive: 0 60% 50%;--destructive-foreground: 0 0% 98%;--border: 216 40% 18%;--input: 216 40% 18%;--ring: 204 50% 58%;--radius: .5rem;--scrollbar-thumb: hsl(var(--border) / .9);--scrollbar-thumb-hover: hsl(var(--muted-foreground) / .45);--scrollbar-track: transparent;--code-background: 216 65% 7%;--diff-removed-bg: rgba(248, 81, 73, .1);--diff-added-bg: rgba(63, 185, 80, .1);--diff-removed-indicator: rgba(248, 81, 73, .5);--diff-added-indicator: rgba(63, 185, 80, .5);--sidebar-bg: 216 65% 7%}.light{color-scheme:light;--background: 216 40% 97%;--foreground: 216 55% 13%;--card: 216 35% 95%;--card-foreground: 216 55% 13%;--popover: 216 35% 95%;--popover-foreground: 216 55% 13%;--primary: 216 55% 13%;--primary-foreground: 216 40% 97%;--secondary: 216 30% 92%;--secondary-foreground: 216 40% 20%;--muted: 216 28% 93%;--muted-foreground: 210 15% 48%;--accent: 204 60% 40%;--accent-foreground: 216 40% 97%;--destructive: 0 70% 50%;--destructive-foreground: 0 0% 98%;--border: 216 25% 86%;--input: 216 25% 86%;--ring: 204 60% 40%;--radius: .5rem;--code-background: 220 14% 94%;--diff-removed-bg: rgba(255, 99, 71, .08);--diff-added-bg: rgba(46, 160, 67, .08);--diff-removed-indicator: rgba(208, 58, 40, .55);--diff-added-indicator: rgba(36, 134, 54, .55);--sidebar-bg: 216 35% 95%}html,body,#root{height:100%;width:100%;overflow:hidden}*{border-color:hsl(var(--border))}body{background-color:hsl(var(--background));color:hsl(var(--foreground));font-feature-settings:"ss01","ss02","cv01";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overscroll-behavior:none}.light body{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.inset-y-0{top:0;bottom:0}.-right-1{right:-.25rem}.-top-1{top:-.25rem}.bottom-0{bottom:0}.left-0{left:0}.left-2\.5{left:.625rem}.left-3{left:.75rem}.right-0{right:0}.right-1{right:.25rem}.right-2{right:.5rem}.right-2\.5{right:.625rem}.top-0{top:0}.top-1{top:.25rem}.top-1\.5{top:.375rem}.top-1\/2{top:50%}.z-10{z-index:10}.z-40{z-index:40}.z-\[100\]{z-index:100}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-auto{margin-left:auto;margin-right:auto}.my-3{margin-top:.75rem;margin-bottom:.75rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-ml-2{margin-left:-.5rem}.-mr-2{margin-right:-.5rem}.mb-0\.5{margin-bottom:.125rem}.mb-1{margin-bottom:.25rem}.mb-2\.5{margin-bottom:.625rem}.ml-0\.5{margin-left:.125rem}.ml-1{margin-left:.25rem}.ml-1\.5{margin-left:.375rem}.mr-2{margin-right:.5rem}.mt-1{margin-top:.25rem}.mt-1\.5{margin-top:.375rem}.mt-2{margin-top:.5rem}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-1\.5{height:.375rem}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-2\.5{height:.625rem}.h-24{height:6rem}.h-3{height:.75rem}.h-3\.5{height:.875rem}.h-36{height:9rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[1\.5px\]{height:1.5px}.h-\[1px\]{height:1px}.h-\[3px\]{height:3px}.h-full{height:100%}.h-screen{height:100vh}.max-h-64{max-height:16rem}.max-h-\[200px\]{max-height:200px}.max-h-\[240px\]{max-height:240px}.max-h-\[300px\]{max-height:300px}.max-h-\[82vh\]{max-height:82vh}.min-h-0{min-height:0px}.min-h-\[44px\]{min-height:44px}.w-1\.5{width:.375rem}.w-1\/3{width:33.333333%}.w-10{width:2.5rem}.w-14{width:3.5rem}.w-2\.5{width:.625rem}.w-3{width:.75rem}.w-3\.5{width:.875rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-64{width:16rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-\[1\.5px\]{width:1.5px}.w-\[2px\]{width:2px}.w-\[3px\]{width:3px}.w-full{width:100%}.min-w-0{min-width:0px}.min-w-28{min-width:7rem}.min-w-32{min-width:8rem}.min-w-5{min-width:1.25rem}.min-w-8{min-width:2rem}.max-w-4xl{max-width:56rem}.max-w-\[60\%\]{max-width:60%}.max-w-\[85\%\]{max-width:85%}.max-w-full{max-width:100%}.max-w-none{max-width:none}.max-w-xl{max-width:36rem}.max-w-xs{max-width:20rem}.flex-1{flex:1 1 0%}.flex-shrink-0,.shrink-0{flex-shrink:0}.border-collapse{border-collapse:collapse}.-translate-y-1\/2{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-rotate-90{--tw-rotate: -90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.animate-backdrop-in{animation:backdrop-in .2s ease-out both}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.animate-sheet-in{animation:sheet-slide-up .35s cubic-bezier(.32,.72,0,1) both}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.resize-none{resize:none}.grid-rows-\[0fr\]{grid-template-rows:0fr}.grid-rows-\[1fr\]{grid-template-rows:1fr}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-0\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-2\.5{gap:.625rem}.gap-3{gap:.75rem}.gap-6{gap:1.5rem}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.self-end{align-self:flex-end}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overscroll-contain{overscroll-behavior:contain}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.whitespace-pre{white-space:pre}.whitespace-pre-wrap{white-space:pre-wrap}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-xl{border-radius:.75rem}.rounded-t-2xl{border-top-left-radius:1rem;border-top-right-radius:1rem}.rounded-t-lg{border-top-left-radius:var(--radius);border-top-right-radius:var(--radius)}.border{border-width:1px}.border-0{border-width:0px}.border-b{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-accent\/20{border-color:hsl(var(--accent) / .2)}.border-accent\/50{border-color:hsl(var(--accent) / .5)}.border-border\/20{border-color:hsl(var(--border) / .2)}.border-border\/25{border-color:hsl(var(--border) / .25)}.border-border\/30{border-color:hsl(var(--border) / .3)}.border-border\/40{border-color:hsl(var(--border) / .4)}.border-border\/50{border-color:hsl(var(--border) / .5)}.border-border\/60{border-color:hsl(var(--border) / .6)}.border-input{border-color:hsl(var(--input))}.bg-accent{background-color:hsl(var(--accent))}.bg-accent\/15{background-color:hsl(var(--accent) / .15)}.bg-accent\/30{background-color:hsl(var(--accent) / .3)}.bg-accent\/5{background-color:hsl(var(--accent) / .05)}.bg-accent\/50{background-color:hsl(var(--accent) / .5)}.bg-accent\/60{background-color:hsl(var(--accent) / .6)}.bg-accent\/70{background-color:hsl(var(--accent) / .7)}.bg-background{background-color:hsl(var(--background))}.bg-background\/60{background-color:hsl(var(--background) / .6)}.bg-black\/50{background-color:#00000080}.bg-border\/60{background-color:hsl(var(--border) / .6)}.bg-card{background-color:hsl(var(--card))}.bg-code{background-color:hsl(var(--code-background))}.bg-destructive{background-color:hsl(var(--destructive))}.bg-destructive\/10{background-color:hsl(var(--destructive) / .1)}.bg-foreground{background-color:hsl(var(--foreground))}.bg-muted-foreground\/30{background-color:hsl(var(--muted-foreground) / .3)}.bg-muted\/30{background-color:hsl(var(--muted) / .3)}.bg-primary{background-color:hsl(var(--primary))}.bg-red-500\/\[0\.05\]{background-color:#ef44440d}.bg-secondary{background-color:hsl(var(--secondary))}.bg-secondary\/20{background-color:hsl(var(--secondary) / .2)}.bg-secondary\/40{background-color:hsl(var(--secondary) / .4)}.bg-sidebar-bg{background-color:hsl(var(--sidebar-bg))}.bg-transparent{background-color:transparent}.bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.from-background{--tw-gradient-from: hsl(var(--background)) var(--tw-gradient-from-position);--tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.via-background\/80{--tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), hsl(var(--background) / .8) var(--tw-gradient-via-position), var(--tw-gradient-to)}.to-transparent{--tw-gradient-to: transparent var(--tw-gradient-to-position)}.fill-current{fill:currentColor}.object-cover{-o-object-fit:cover;object-fit:cover}.p-0{padding:0}.p-8{padding:2rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.pb-1{padding-bottom:.25rem}.pb-1\.5{padding-bottom:.375rem}.pb-2\.5{padding-bottom:.625rem}.pb-4{padding-bottom:1rem}.pl-1{padding-left:.25rem}.pl-12{padding-left:3rem}.pr-10{padding-right:2.5rem}.pr-14{padding-right:3.5rem}.pr-2{padding-right:.5rem}.pr-3{padding-right:.75rem}.pt-1{padding-top:.25rem}.pt-2{padding-top:.5rem}.pt-2\.5{padding-top:.625rem}.pt-3{padding-top:.75rem}.pt-6{padding-top:1.5rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-top{vertical-align:top}.align-middle{vertical-align:middle}.font-display{font-family:DM Mono,monospace}.font-mono{font-family:DM Mono,JetBrains Mono,monospace}.font-sans{font-family:Satoshi,system-ui,sans-serif}.text-2xl{font-size:1.5rem;line-height:2rem}.text-2xs{font-size:.6875rem;line-height:1rem}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[12px\]{font-size:12px}.text-\[13px\]{font-size:13px}.text-base{font-size:1rem;line-height:1.5rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.italic{font-style:italic}.tabular-nums{--tw-numeric-spacing: tabular-nums;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.leading-6{line-height:1.5rem}.leading-\[1\.5\]{line-height:1.5}.leading-relaxed{line-height:1.625}.tracking-\[0\.16em\]{letter-spacing:.16em}.tracking-tight{letter-spacing:-.025em}.tracking-tighter{letter-spacing:-.05em}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.text-accent{color:hsl(var(--accent))}.text-accent\/40{color:hsl(var(--accent) / .4)}.text-accent\/50{color:hsl(var(--accent) / .5)}.text-accent\/60{color:hsl(var(--accent) / .6)}.text-accent\/80{color:hsl(var(--accent) / .8)}.text-background{color:hsl(var(--background))}.text-border{color:hsl(var(--border))}.text-destructive{color:hsl(var(--destructive))}.text-destructive-foreground{color:hsl(var(--destructive-foreground))}.text-destructive\/70{color:hsl(var(--destructive) / .7)}.text-destructive\/80{color:hsl(var(--destructive) / .8)}.text-emerald-400{--tw-text-opacity: 1;color:rgb(52 211 153 / var(--tw-text-opacity, 1))}.text-emerald-500\/40{color:#10b98166}.text-emerald-500\/60{color:#10b98199}.text-foreground{color:hsl(var(--foreground))}.text-foreground\/60{color:hsl(var(--foreground) / .6)}.text-foreground\/65{color:hsl(var(--foreground) / .65)}.text-foreground\/70{color:hsl(var(--foreground) / .7)}.text-foreground\/80{color:hsl(var(--foreground) / .8)}.text-foreground\/90{color:hsl(var(--foreground) / .9)}.text-muted-foreground{color:hsl(var(--muted-foreground))}.text-muted-foreground\/20{color:hsl(var(--muted-foreground) / .2)}.text-muted-foreground\/25{color:hsl(var(--muted-foreground) / .25)}.text-muted-foreground\/30{color:hsl(var(--muted-foreground) / .3)}.text-muted-foreground\/35{color:hsl(var(--muted-foreground) / .35)}.text-muted-foreground\/40{color:hsl(var(--muted-foreground) / .4)}.text-muted-foreground\/50{color:hsl(var(--muted-foreground) / .5)}.text-muted-foreground\/60{color:hsl(var(--muted-foreground) / .6)}.text-muted-foreground\/70{color:hsl(var(--muted-foreground) / .7)}.text-muted-foreground\/80{color:hsl(var(--muted-foreground) / .8)}.text-primary-foreground{color:hsl(var(--primary-foreground))}.text-red-400\/60{color:#f8717199}.text-red-400\/70{color:#f87171b3}.text-red-400\/80{color:#f87171cc}.text-secondary-foreground{color:hsl(var(--secondary-foreground))}.text-transparent{color:transparent}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.caret-accent{caret-color:hsl(var(--accent))}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-30{opacity:.3}.shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-2xl{--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.ring-offset-background{--tw-ring-offset-color: hsl(var(--background))}.\!filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-\[3px\]{--tw-backdrop-blur: blur(3px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-sm{--tw-backdrop-blur: blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-\[grid-template-rows\,opacity\]{transition-property:grid-template-rows,opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-150{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.ease-\[cubic-bezier\(0\.4\,0\,0\.2\,1\)\]{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.\[overflow-wrap\:anywhere\]{overflow-wrap:anywhere}::-webkit-scrollbar{width:4px;height:4px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{border-radius:9999px;background-color:hsl(var(--border))}::-webkit-scrollbar-thumb:hover{background-color:hsl(var(--muted-foreground) / .4)}::-webkit-scrollbar-corner{background:transparent}@media(pointer:coarse){.scrollbar-subtle{scrollbar-width:thin;scrollbar-color:var(--scrollbar-thumb) var(--scrollbar-track)}.scrollbar-subtle::-webkit-scrollbar{width:3px;height:3px}.scrollbar-subtle::-webkit-scrollbar-track{background:var(--scrollbar-track)}.scrollbar-subtle::-webkit-scrollbar-thumb{background-color:var(--scrollbar-thumb);border-radius:9999px}.scrollbar-subtle::-webkit-scrollbar-thumb:hover{background-color:var(--scrollbar-thumb-hover)}}@media(hover:hover)and (pointer:fine){.session-row-inactive:hover{background-color:hsl(var(--secondary) / .2);color:hsl(var(--foreground))}.group .session-delete-button{opacity:0}.group:hover .session-delete-button{opacity:1}.session-delete-icon:hover{color:hsl(var(--destructive))}}.prose{max-width:none;color:hsl(var(--foreground))}.prose h1,.prose h2,.prose h3,.prose h4{font-weight:600;letter-spacing:-.025em;color:hsl(var(--foreground))}.prose h1{margin-top:2rem;margin-bottom:1rem;font-size:1.25rem;line-height:1.75rem}.prose h2{margin-top:1.5rem;margin-bottom:.75rem;font-size:1.125rem;line-height:1.75rem}.prose h3{margin-top:1.25rem;margin-bottom:.5rem;font-size:1rem;line-height:1.5rem}.prose p{line-height:1.625}.prose p:not(:first-child){margin-top:.75rem}.prose p{overflow-wrap:anywhere}.prose blockquote{margin-top:1rem;border-left-width:2px;border-color:hsl(var(--accent) / .4);padding-left:1rem;font-style:italic;color:hsl(var(--muted-foreground));overflow-wrap:anywhere}.prose ul{margin-top:.75rem;margin-bottom:.75rem;margin-left:1rem;list-style-type:disc}.prose ul>li{margin-top:.25rem}.prose ol{margin-top:.75rem;margin-bottom:.75rem;margin-left:1rem;list-style-type:decimal}.prose ol>li{margin-top:.25rem}.prose li{line-height:1.625;overflow-wrap:anywhere}.prose pre{margin-top:1rem;margin-bottom:1rem;overflow-x:auto;border-radius:var(--radius);background-color:hsl(var(--code-background))}.prose pre code{border-radius:0;background-color:transparent;padding:0;font-family:DM Mono,JetBrains Mono,monospace;font-size:13px;font-weight:400;line-height:1.625;color:hsl(var(--foreground))}.prose .katex{font-size:1.05em}.prose .katex-display{margin-top:1rem;margin-bottom:1rem;overflow-x:auto;overflow-y:hidden;padding-top:.25rem;padding-bottom:.25rem}.prose a{color:hsl(var(--accent));text-decoration-line:underline;text-decoration-color:hsl(var(--accent) / .4);text-underline-offset:2px;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.prose a:hover{text-decoration-color:hsl(var(--accent))}.prose a{overflow-wrap:anywhere}.prose strong{font-weight:600;color:hsl(var(--foreground))}.prose hr{margin-top:1.5rem;margin-bottom:1.5rem;border-color:hsl(var(--border))}.prose table{width:100%;min-width:-moz-max-content;min-width:max-content;border-collapse:collapse;font-size:.875rem;line-height:1.25rem}.prose thead{border-bottom-width:1px;border-color:hsl(var(--border))}.prose th{padding:.5rem .75rem;text-align:left;font-size:.75rem;line-height:1rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:hsl(var(--foreground));overflow-wrap:anywhere}.prose td{border-bottom-width:1px;border-color:hsl(var(--border) / .3);padding:.5rem .75rem;color:hsl(var(--foreground) / .8);overflow-wrap:anywhere}.prose tbody tr:hover{background-color:hsl(var(--muted) / .2)}.prose ul:has(>li>input[type=checkbox]){margin-left:0;list-style-type:none}.prose li>input[type=checkbox]{margin-right:.5rem;accent-color:hsl(var(--accent))}.prose del{color:hsl(var(--muted-foreground));text-decoration-line:line-through}.shiki,.shiki span{color:var(--shiki-dark);background-color:transparent;font-style:var(--shiki-dark-font-style);font-weight:var(--shiki-dark-font-weight);-webkit-text-decoration:var(--shiki-dark-text-decoration);text-decoration:var(--shiki-dark-text-decoration)}.light .shiki,.light .shiki span{color:var(--shiki-light);font-style:var(--shiki-light-font-style);font-weight:var(--shiki-light-font-weight);-webkit-text-decoration:var(--shiki-light-text-decoration);text-decoration:var(--shiki-light-text-decoration)}.shiki-wrapper pre.shiki{margin:0;padding:0;overflow:visible}.diff-line-removed{background-color:var(--diff-removed-bg)}.diff-line-added{background-color:var(--diff-added-bg)}.diff-gutter-removed{color:var(--diff-removed-indicator)}.diff-gutter-added{color:var(--diff-added-indicator)}@keyframes cursor-blink{0%,to{opacity:1}50%{opacity:0}}@keyframes fade-in-up{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}@keyframes sheet-slide-up{0%{transform:translateY(100%)}to{transform:translateY(0)}}@keyframes dialog-enter{0%{opacity:0;transform:scale(.96) translateY(6px)}to{opacity:1;transform:scale(1) translateY(0)}}@keyframes dialog-exit{0%{opacity:1;transform:scale(1) translateY(0)}to{opacity:0;transform:scale(.96) translateY(6px)}}@keyframes backdrop-in{0%{opacity:0}to{opacity:1}}@keyframes backdrop-out{0%{opacity:1}to{opacity:0}}@keyframes breathing{0%,to{opacity:1}50%{opacity:.4}}@keyframes thinking{0%,to{opacity:1}50%{opacity:.55}}@keyframes progress-line{0%{transform:translate(-100%)}to{transform:translate(100%)}}.animate-cursor-blink{animation:cursor-blink 1s step-end infinite}.animate-fade-in-up{animation:fade-in-up .2s ease-out both}.animate-progress-line{animation:progress-line 1.5s ease-in-out infinite}.animate-breathing{animation:breathing 2s ease-in-out infinite}.animate-thinking{animation:thinking 2.5s ease-in-out infinite}@media(prefers-reduced-motion:reduce){*,:before,:after{animation-duration:0ms!important;animation-iteration-count:1!important;animation-delay:0ms!important;transition-duration:0ms!important;scroll-behavior:auto!important}}.scroll-fade-top{mask-image:linear-gradient(to bottom,transparent,black 48px);-webkit-mask-image:linear-gradient(to bottom,transparent,black 48px)}.placeholder\:text-muted-foreground\/30::-moz-placeholder{color:hsl(var(--muted-foreground) / .3)}.placeholder\:text-muted-foreground\/30::placeholder{color:hsl(var(--muted-foreground) / .3)}.placeholder\:text-muted-foreground\/40::-moz-placeholder{color:hsl(var(--muted-foreground) / .4)}.placeholder\:text-muted-foreground\/40::placeholder{color:hsl(var(--muted-foreground) / .4)}.focus-within\:border-border\/50:focus-within{border-color:hsl(var(--border) / .5)}.focus-within\:shadow-md:focus-within{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hover\:border-accent\/40:hover{border-color:hsl(var(--accent) / .4)}.hover\:bg-accent:hover{background-color:hsl(var(--accent))}.hover\:bg-accent\/25:hover{background-color:hsl(var(--accent) / .25)}.hover\:bg-destructive\/10:hover{background-color:hsl(var(--destructive) / .1)}.hover\:bg-destructive\/90:hover{background-color:hsl(var(--destructive) / .9)}.hover\:bg-muted\/20:hover{background-color:hsl(var(--muted) / .2)}.hover\:bg-muted\/50:hover{background-color:hsl(var(--muted) / .5)}.hover\:bg-muted\/60:hover{background-color:hsl(var(--muted) / .6)}.hover\:bg-muted\/70:hover{background-color:hsl(var(--muted) / .7)}.hover\:bg-primary\/90:hover{background-color:hsl(var(--primary) / .9)}.hover\:bg-secondary\/20:hover{background-color:hsl(var(--secondary) / .2)}.hover\:bg-secondary\/40:hover{background-color:hsl(var(--secondary) / .4)}.hover\:bg-secondary\/80:hover{background-color:hsl(var(--secondary) / .8)}.hover\:text-accent:hover{color:hsl(var(--accent))}.hover\:text-accent-foreground:hover{color:hsl(var(--accent-foreground))}.hover\:text-destructive:hover{color:hsl(var(--destructive))}.hover\:text-foreground:hover{color:hsl(var(--foreground))}.hover\:text-foreground\/60:hover{color:hsl(var(--foreground) / .6)}.hover\:text-muted-foreground:hover{color:hsl(var(--muted-foreground))}.hover\:text-muted-foreground\/70:hover{color:hsl(var(--muted-foreground) / .7)}.hover\:opacity-90:hover{opacity:.9}.focus\:border-accent\/50:focus{border-color:hsl(var(--accent) / .5)}.focus\:bg-secondary\/40:focus{background-color:hsl(var(--secondary) / .4)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus-visible\:bg-muted\/50:focus-visible{background-color:hsl(var(--muted) / .5)}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\:ring-1:focus-visible{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus-visible\:ring-2:focus-visible{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus-visible\:ring-ring:focus-visible{--tw-ring-color: hsl(var(--ring))}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width: 2px}.active\:scale-90:active{--tw-scale-x: .9;--tw-scale-y: .9;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\:scale-95:active{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\:scale-\[0\.97\]:active{--tw-scale-x: .97;--tw-scale-y: .97;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\:bg-accent\/30:active{background-color:hsl(var(--accent) / .3)}.active\:bg-muted\/70:active{background-color:hsl(var(--muted) / .7)}.active\:bg-secondary\/30:active{background-color:hsl(var(--secondary) / .3)}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-25:disabled{opacity:.25}.disabled\:opacity-50:disabled{opacity:.5}.group:hover .group-hover\:text-accent\/60{color:hsl(var(--accent) / .6)}.group:hover .group-hover\:text-accent\/70{color:hsl(var(--accent) / .7)}.group:hover .group-hover\:text-foreground{color:hsl(var(--foreground))}.group:hover .group-hover\:text-foreground\/80{color:hsl(var(--foreground) / .8)}.group\/code:hover .group-hover\/code\:opacity-100,.group\/msg:hover .group-hover\/msg\:opacity-100,.group\/thumb:hover .group-hover\/thumb\:opacity-100,.group\/user:hover .group-hover\/user\:opacity-100{opacity:1}@supports (height:100dvh){.supports-\[height\:100dvh\]\:h-dvh{height:100dvh}}@media not all and (min-width:768px){.max-md\:fixed{position:fixed}.max-md\:inset-y-0{top:0;bottom:0}.max-md\:left-0{left:0}.max-md\:left-2{left:.5rem}.max-md\:right-2{right:.5rem}.max-md\:z-50{z-index:50}.max-md\:max-w-none{max-width:none}.max-md\:-translate-x-full{--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.max-md\:translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.max-md\:gap-5{gap:1.25rem}.max-md\:overscroll-y-contain{overscroll-behavior-y:contain}.max-md\:px-3{padding-left:.75rem;padding-right:.75rem}.max-md\:px-4{padding-left:1rem;padding-right:1rem}.max-md\:py-2{padding-top:.5rem;padding-bottom:.5rem}.max-md\:py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.max-md\:pb-\[max\(0\.5rem\,env\(safe-area-inset-bottom\)\)\]{padding-bottom:max(.5rem,env(safe-area-inset-bottom))}.max-md\:pl-11{padding-left:2.75rem}.max-md\:opacity-100{opacity:1}.max-md\:opacity-60{opacity:.6}.max-md\:transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.max-md\:duration-300{transition-duration:.3s}.max-md\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}}@media(min-width:640px){.sm\:hidden{display:none}.sm\:max-h-\[520px\]{max-height:520px}.sm\:w-\[440px\]{width:440px}.sm\:animate-dialog-in{animation:dialog-enter .2s ease-out both}.sm\:items-center{align-items:center}.sm\:justify-center{justify-content:center}.sm\:rounded-xl{border-radius:.75rem}}@media(min-width:768px){.md\:hidden{display:none}.md\:text-sm{font-size:.875rem;line-height:1.25rem}}
@@ -456,10 +456,10 @@ XID_Start XIDS`.split(/\s/).map(e=>[Oc(e),e])),II=new Map([["s",sn(383)],[sn(383
456
456
  `);ne.useEffect(()=>()=>{s.current!==null&&window.clearTimeout(s.current)},[]);const g=async()=>{try{await t7(d),l(!0),s.current!==null&&window.clearTimeout(s.current),s.current=window.setTimeout(()=>{l(!1),s.current=null},2e3)}catch{}};return p?z.jsx("code",{className:dt("px-1.5 py-0.5 rounded bg-code font-mono text-[13px] text-accent font-medium",e),...n,children:t}):z.jsxs("div",{"data-code-block":!0,className:"group/code relative my-3 rounded-md bg-code overflow-x-auto scrollbar-subtle",children:[c&&z.jsx("span",{className:"absolute top-1.5 left-3 text-[11px] font-mono text-muted-foreground/50 uppercase tracking-wider select-none",children:c}),z.jsx("button",{type:"button","aria-label":"Copy code",onClick:g,className:dt("absolute top-1 right-1 z-10 flex items-center justify-center h-7 w-7 rounded-md transition duration-150",r?"text-emerald-400 opacity-100":"text-muted-foreground/40 max-md:opacity-60 opacity-0 group-hover/code:opacity-100 hover:text-foreground/60 hover:bg-muted/20"),title:"Copy",children:r?z.jsx(p1,{className:"h-3.5 w-3.5"}):z.jsx(B6,{className:"h-3.5 w-3.5"})}),z.jsx("div",{className:dt("px-3 pb-2.5",c?"pt-6":"pt-2"),children:z.jsx(wB,{language:c,code:d})})]})}const kB=[yO,CO],EB=[oM],AB={pre:({children:e})=>e,code:SB,table:({children:e,...t})=>z.jsx("div",{className:"my-4 overflow-x-auto scrollbar-subtle",children:z.jsx("table",{...t,children:e})})};function TB(e){let t="",n=0,r="",l=0;for(;n<e.length;){const s=n===0||e[n-1]===`
457
457
  `,u=e.indexOf(`
458
458
  `,n),c=u===-1?e.length:u+1;if(s){const f=e.slice(n,c),d=/^( {0,3})(`{3,}|~{3,})/.exec(f);if(r){t+=f,d&&d[2]?.[0]===r&&d[2].length>=l&&(r="",l=0),n=c;continue}if(d){t+=f,r=d[2]?.[0]||"",l=d[2]?.length||0,n=c;continue}if(f.startsWith(" ")||f.startsWith(" ")){t+=f,n=c;continue}}if(e[n]==="`"){let f=1;for(;e[n+f]==="`";)f+=1;const d="`".repeat(f),p=e.indexOf(d,n+f);if(p!==-1){t+=e.slice(n,p+f),n=p+f;continue}}if(e[n]==="\\"&&e[n+1]==="["){const f=e.indexOf("\\]",n+2);if(f!==-1){t+=`$$${e.slice(n+2,f)}$$`,n=f+2;continue}}if(e[n]==="\\"&&e[n+1]==="("){const f=e.indexOf("\\)",n+2);if(f!==-1){const d=e.slice(n+2,f);if(!d.includes(`
459
- `)){t+=`$${d}$`,n=f+2;continue}}}t+=e[n],n+=1}return t}const CB=ne.memo(function({content:t}){return z.jsx("div",{className:"prose prose-sm max-w-none dark:prose-invert",children:z.jsx(jT,{remarkPlugins:kB,rehypePlugins:EB,components:AB,children:TB(t)})})}),RB=ne.memo(function({content:t,isStreaming:n}){const[r,l]=ne.useState(null),s=r??!!n;return t?z.jsxs("div",{className:"rounded-lg bg-secondary/20 px-3 py-2",children:[z.jsxs("button",{type:"button",className:"flex w-full items-center gap-1.5 select-none cursor-pointer text-left","aria-expanded":s,onClick:()=>l(!s),children:[z.jsx("span",{className:dt("text-xs transition-colors duration-200",n?"text-accent/60 animate-thinking font-medium":"text-muted-foreground/50"),children:"Thinking"}),z.jsx(I6,{className:dt("h-3 w-3 text-muted-foreground/25 transition-transform duration-200",!s&&"-rotate-90"),"aria-hidden":"true"})]}),z.jsx("div",{className:dt("grid transition-[grid-template-rows,opacity] duration-250 ease-out",s?"grid-rows-[1fr] opacity-100":"grid-rows-[0fr] opacity-0"),children:z.jsx("div",{className:"overflow-hidden",children:z.jsx("div",{className:"pt-2 text-[13px] text-muted-foreground/70 whitespace-pre-wrap italic leading-relaxed",children:t})})})]}):null});let im;function MB(){return im||(im=N(()=>import("./EditDiff-B-xuc0_M.js"),[])),im}const DB=ne.lazy(MB);function OB(e){return(e.path===void 0||typeof e.path=="string")&&Array.isArray(e.edits)}function NB(e){if(!e)return null;try{const t=JSON.parse(e);if(t.status==="ok"&&Array.isArray(t.edits))return t.edits.filter(n=>typeof n?.start_line=="number")}catch{}return null}function zB({edits:e}){return z.jsx("div",{className:"rounded-md bg-code px-3 py-2 font-mono text-[13px] leading-[1.5] overflow-x-auto scrollbar-subtle whitespace-pre-wrap space-y-1",children:e.map((t,n)=>z.jsxs("div",{children:[t.oldText&&z.jsx("div",{className:"diff-line-removed px-1",children:t.oldText}),t.newText&&z.jsx("div",{className:"diff-line-added px-1",children:t.newText})]},n))})}const f6={read:{icon:O0,label:"read"},write:{icon:__,label:"write"},edit:{icon:D_,label:"edit"},bash:{icon:g1,label:"bash"}},LB="rounded-md px-3 py-2 font-mono text-[13px] leading-relaxed overflow-x-auto overflow-y-auto scrollbar-subtle whitespace-pre-wrap max-h-[240px]";function Ql({text:e,isError:t}){return e?z.jsx("div",{className:dt(LB,t?"bg-red-500/[0.05] text-red-400/70":"bg-code text-muted-foreground/80"),children:e}):null}function IB(e,t){if(!t)return"";switch(e){case"bash":return typeof t.command=="string"?t.command:"";case"read":case"write":case"edit":return typeof t.path=="string"?t.path:"";default:return Object.entries(t).filter(([n])=>n!=="content"&&n!=="prompt").map(([,n])=>typeof n=="object"?"…":String(n)).join(" ")}}function BB(e){if(!e)return null;const t=e.edits;if(!Array.isArray(t))return null;let n=0,r=0;for(const l of t){if(typeof l?.oldText!="string"||typeof l?.newText!="string")continue;const s=new Map;for(const c of l.oldText.split(`
459
+ `)){t+=`$${d}$`,n=f+2;continue}}}t+=e[n],n+=1}return t}const CB=ne.memo(function({content:t}){return z.jsx("div",{className:"prose prose-sm max-w-none dark:prose-invert",children:z.jsx(jT,{remarkPlugins:kB,rehypePlugins:EB,components:AB,children:TB(t)})})}),RB=ne.memo(function({content:t,isStreaming:n}){const[r,l]=ne.useState(null),s=r??!!n;return t?z.jsxs("div",{className:"rounded-lg bg-secondary/20 px-3 py-2",children:[z.jsxs("button",{type:"button",className:"flex w-full items-center gap-1.5 select-none cursor-pointer text-left","aria-expanded":s,onClick:()=>l(!s),children:[z.jsx("span",{className:dt("text-xs transition-colors duration-200",n?"text-accent/60 animate-thinking font-medium":"text-muted-foreground/50"),children:"Thinking"}),z.jsx(I6,{className:dt("h-3 w-3 text-muted-foreground/25 transition-transform duration-200",!s&&"-rotate-90"),"aria-hidden":"true"})]}),z.jsx("div",{className:dt("grid transition-[grid-template-rows,opacity] duration-250 ease-out",s?"grid-rows-[1fr] opacity-100":"grid-rows-[0fr] opacity-0"),children:z.jsx("div",{className:"overflow-hidden",children:z.jsx("div",{className:"pt-2 text-[13px] text-muted-foreground/70 whitespace-pre-wrap italic leading-relaxed",children:t})})})]}):null});let im;function MB(){return im||(im=N(()=>import("./EditDiff-duePA_xo.js"),[])),im}const DB=ne.lazy(MB);function OB(e){return(e.path===void 0||typeof e.path=="string")&&Array.isArray(e.edits)}function NB(e){if(!e)return null;try{const t=JSON.parse(e);if(t.status==="ok"&&Array.isArray(t.edits))return t.edits.filter(n=>typeof n?.start_line=="number")}catch{}return null}function zB({edits:e}){return z.jsx("div",{className:"rounded-md bg-code px-3 py-2 font-mono text-[13px] leading-[1.5] overflow-x-auto scrollbar-subtle whitespace-pre-wrap",children:e.map((t,n)=>z.jsxs("div",{children:[n>0&&z.jsx("div",{className:"text-center text-muted-foreground/20 select-none text-xs py-0.5",children:"···"}),t.oldText&&z.jsx("div",{className:"diff-line-removed px-1",children:t.oldText}),t.newText&&z.jsx("div",{className:"diff-line-added px-1",children:t.newText})]},n))})}const f6={read:{icon:O0,label:"read"},write:{icon:__,label:"write"},edit:{icon:D_,label:"edit"},bash:{icon:g1,label:"bash"}},LB="rounded-md px-3 py-2 font-mono text-[13px] leading-relaxed overflow-x-auto overflow-y-auto scrollbar-subtle whitespace-pre-wrap max-h-[240px]";function Ql({text:e,isError:t}){return e?z.jsx("div",{className:dt(LB,t?"bg-red-500/[0.05] text-red-400/70":"bg-code text-muted-foreground/80"),children:e}):null}function IB(e,t){if(!t)return"";switch(e){case"bash":return typeof t.command=="string"?t.command:"";case"read":case"write":case"edit":return typeof t.path=="string"?t.path:"";default:return Object.entries(t).filter(([n])=>n!=="content"&&n!=="prompt").map(([,n])=>typeof n=="object"?"…":String(n)).join(" ")}}function BB(e){if(!e)return null;const t=e.edits;if(!Array.isArray(t))return null;let n=0,r=0;for(const l of t){if(typeof l?.oldText!="string"||typeof l?.newText!="string")continue;const s=new Map;for(const c of l.oldText.split(`
460
460
  `))s.set(c,(s.get(c)??0)+1);const u=new Map;for(const c of l.newText.split(`
461
461
  `))u.set(c,(u.get(c)??0)+1);for(const[c,f]of s){const d=u.get(c)??0;f>d&&(r+=f-d)}for(const[c,f]of u){const d=s.get(c)??0;f>d&&(n+=f-d)}}return{added:n,removed:r}}function M8(e){if(!e)return"";const t=typeof e.offset=="number"?e.offset:null,n=typeof e.limit=="number"?e.limit:null;return t!=null&&n!=null?`:${t}-${t+n}`:t!=null?`:${t}`:n!=null?`:1-${n}`:""}function jB(e){if(!e)return"";const t=e.content;return typeof t!="string"?"":`${t.split(`
462
- `).length} lines`}const qB="shrink-0 ml-1.5 text-[12px] font-mono text-muted-foreground/30";function HB({name:e,args:t}){if(e==="edit"){const r=BB(t);return!r||r.added===0&&r.removed===0?null:z.jsxs("span",{className:"shrink-0 ml-1.5 text-[12px] font-mono tabular-nums",children:[z.jsxs("span",{className:"text-emerald-500/60",children:["+",r.added]}),z.jsxs("span",{className:"text-red-400/60 ml-1",children:["−",r.removed]})]})}const n=e==="read"?M8(t):e==="write"?jB(t):"";return n?z.jsx("span",{className:qB,children:n}):null}function PB({args:e,display:t,isError:n}){const r=typeof e?.command=="string"?e.command:"";return z.jsxs("div",{className:"pt-2 space-y-2",children:[r&&z.jsxs("div",{className:"rounded-md bg-code px-3 py-2 font-mono text-[13px] leading-[1.5] overflow-x-auto scrollbar-subtle",children:[z.jsx("span",{className:"text-muted-foreground/30 select-none",children:"$ "}),z.jsx("span",{className:"text-foreground/65 whitespace-pre-wrap break-all",children:r})]}),z.jsx(Ql,{text:t,isError:n})]})}function UB({args:e,display:t,isError:n}){const r=typeof e?.path=="string"?e.path:"",l=M8(e);return z.jsxs("div",{className:"pt-2 space-y-2",children:[r&&z.jsxs("div",{className:"font-mono text-[13px] text-muted-foreground/40 truncate",children:[r,l&&z.jsx("span",{className:"text-muted-foreground/30",children:l})]}),z.jsx(Ql,{text:t,isError:n})]})}function VB({args:e,display:t,isError:n}){const r=typeof e?.path=="string"?e.path:"",l=typeof e?.content=="string"?e.content:"";return z.jsxs("div",{className:"pt-2 space-y-2",children:[r&&z.jsx("div",{className:"font-mono text-[13px] text-muted-foreground/40 truncate",children:r}),l&&!n&&z.jsx("div",{className:"rounded-md bg-code px-3 py-2 font-mono text-[13px] leading-[1.5] overflow-x-auto overflow-y-auto scrollbar-subtle whitespace-pre-wrap max-h-[240px] text-foreground/65",children:l}),n&&z.jsx(Ql,{text:t,isError:!0})]})}function GB({args:e,modelText:t,display:n,isError:r}){if(e&&OB(e)&&e.edits?.length){const l=NB(t);return z.jsxs("div",{className:"pt-2 space-y-2",children:[z.jsx(ne.Suspense,{fallback:z.jsx(zB,{edits:e.edits}),children:e.edits.map((s,u)=>z.jsx(DB,{path:e.path,oldText:s.oldText,newText:s.newText,meta:l?.[u]??null},u))}),r&&z.jsx(Ql,{text:n,isError:!0})]})}return z.jsxs("div",{className:"pt-2 space-y-2",children:[e&&Object.keys(e).length>0&&z.jsx(D8,{args:e}),z.jsx(Ql,{text:n,isError:r})]})}function D8({args:e}){return z.jsx("div",{className:"rounded-md bg-code px-3 py-2 font-mono text-[13px] leading-relaxed overflow-x-auto scrollbar-subtle",children:Object.entries(e).map(([t,n])=>z.jsxs("div",{children:[z.jsxs("span",{className:"text-accent/50",children:[t,": "]}),z.jsx("span",{className:"text-foreground/65 break-all whitespace-pre-wrap",children:typeof n=="object"?JSON.stringify(n,null,2):String(n)})]},t))})}const FB=ne.memo(function({name:t,args:n,output:r,modelText:l,displayText:s,pending:u,isError:c}){const f=typeof s=="string"?s:typeof r=="string"?r:"",d=!!c||typeof l=="string"&&l.startsWith("error:"),[p,g]=ne.useState(null),b=p??d,v=u?"pending":d?"error":"success",E=(Object.hasOwn(f6,t)?f6[t]:{icon:g1}).icon,D=IB(t,n);return z.jsxs("div",{className:dt("relative rounded-lg px-3 py-2",v==="error"?"bg-red-500/[0.05]":"bg-secondary/20"),children:[v==="pending"&&z.jsx("div",{className:"absolute top-0 left-0 right-0 h-[1px] overflow-hidden rounded-t-lg",children:z.jsx("div",{className:"h-full w-1/3 bg-accent/30 animate-progress-line"})}),z.jsxs("button",{type:"button",className:"flex w-full items-center gap-1.5 select-none cursor-pointer text-left","aria-expanded":b,onClick:()=>g(!b),children:[z.jsx(E,{className:dt("h-3.5 w-3.5 shrink-0 transition-colors duration-200",v==="error"?"text-red-400/80":v==="pending"?"text-accent/50":"text-foreground/60"),"aria-hidden":"true"}),z.jsx("span",{className:dt("text-[13px] font-medium shrink-0 transition-colors duration-200",v==="error"?"text-red-400/80":v==="pending"?"text-foreground/70":"text-foreground/60"),children:t}),!b&&D&&z.jsx("span",{className:"pl-1 text-[13px] text-muted-foreground/40 font-mono truncate",children:D}),!b&&z.jsx(HB,{name:t,args:n}),z.jsx("span",{className:"flex-1"}),v==="success"&&z.jsx(p1,{className:"h-3 w-3 text-emerald-500/40 shrink-0","aria-hidden":"true"}),z.jsx(I6,{className:dt("h-3 w-3 text-muted-foreground/25 transition-transform duration-200 shrink-0",!b&&"-rotate-90"),"aria-hidden":"true"})]}),z.jsx("div",{className:dt("grid transition-[grid-template-rows,opacity] duration-250 ease-out",b?"grid-rows-[1fr] opacity-100":"grid-rows-[0fr] opacity-0"),children:z.jsx("div",{className:"overflow-hidden",children:t==="bash"?z.jsx(PB,{args:n,display:f,isError:d}):t==="read"?z.jsx(UB,{args:n,display:f,isError:d}):t==="write"?z.jsx(VB,{args:n,display:f,isError:d}):t==="edit"?z.jsx(GB,{args:n,modelText:l,display:f,isError:d}):z.jsxs("div",{className:"pt-2 space-y-2",children:[n&&Object.keys(n).length>0&&z.jsx(D8,{args:n}),z.jsx(Ql,{text:f,isError:d})]})})})]})});function am(e){return e.meta}class lm extends ne.Component{state={hasError:!1,resetKey:this.props.resetKey};static getDerivedStateFromProps(t,n){return t.resetKey===n.resetKey?null:{hasError:!1,resetKey:t.resetKey}}static getDerivedStateFromError(){return{hasError:!0}}componentDidCatch(t){console.error("Chat block render failed:",t)}render(){return this.state.hasError?this.props.fallback:this.props.children}}const $B=ne.memo(function({role:t,blocks:n,sourceIndex:r,synthetic:l,isStreaming:s,isLoading:u,index:c,onRewindAndSend:f}){const d=t==="user",[p,g]=ne.useState(!1),[b,v]=ne.useState(!1),[_,E]=ne.useState(""),D=ne.useRef(null),A=ne.useRef(null),C=ne.useMemo(()=>n.filter(Q=>Q?.type==="text"&&!am(Q)?.attachment),[n]),L=ne.useMemo(()=>C.map(Q=>Q.text).join(`
462
+ `).length} lines`}const qB="shrink-0 ml-1.5 text-[12px] font-mono text-muted-foreground/30";function HB({name:e,args:t}){if(e==="edit"){const r=BB(t);return!r||r.added===0&&r.removed===0?null:z.jsxs("span",{className:"shrink-0 ml-1.5 text-[12px] font-mono tabular-nums",children:[z.jsxs("span",{className:"text-emerald-500/60",children:["+",r.added]}),z.jsxs("span",{className:"text-red-400/60 ml-1",children:["−",r.removed]})]})}const n=e==="read"?M8(t):e==="write"?jB(t):"";return n?z.jsx("span",{className:qB,children:n}):null}function PB({args:e,display:t,isError:n}){const r=typeof e?.command=="string"?e.command:"";return z.jsxs("div",{className:"pt-2 space-y-2",children:[r&&z.jsxs("div",{className:"rounded-md bg-code px-3 py-2 font-mono text-[13px] leading-[1.5] overflow-x-auto scrollbar-subtle",children:[z.jsx("span",{className:"text-muted-foreground/30 select-none",children:"$ "}),z.jsx("span",{className:"text-foreground/65 whitespace-pre-wrap break-all",children:r})]}),z.jsx(Ql,{text:t,isError:n})]})}function UB({args:e,display:t,isError:n}){const r=typeof e?.path=="string"?e.path:"",l=M8(e);return z.jsxs("div",{className:"pt-2 space-y-2",children:[r&&z.jsxs("div",{className:"font-mono text-[13px] text-muted-foreground/40 truncate",children:[r,l&&z.jsx("span",{className:"text-muted-foreground/30",children:l})]}),z.jsx(Ql,{text:t,isError:n})]})}function VB({args:e,display:t,isError:n}){const r=typeof e?.path=="string"?e.path:"",l=typeof e?.content=="string"?e.content:"";return z.jsxs("div",{className:"pt-2 space-y-2",children:[r&&z.jsx("div",{className:"font-mono text-[13px] text-muted-foreground/40 truncate",children:r}),l&&!n&&z.jsx("div",{className:"rounded-md bg-code px-3 py-2 font-mono text-[13px] leading-[1.5] overflow-x-auto overflow-y-auto scrollbar-subtle whitespace-pre-wrap max-h-[240px] text-foreground/65",children:l}),n&&z.jsx(Ql,{text:t,isError:!0})]})}function GB({args:e,modelText:t,display:n,isError:r}){if(e&&OB(e)&&e.edits?.length){const l=NB(t),s=e.edits.map((u,c)=>({oldText:u.oldText,newText:u.newText,meta:l?.[c]??null}));return z.jsxs("div",{className:"pt-2 space-y-2",children:[z.jsx(ne.Suspense,{fallback:z.jsx(zB,{edits:e.edits}),children:z.jsx(DB,{path:e.path,edits:s})}),r&&z.jsx(Ql,{text:n,isError:!0})]})}return z.jsxs("div",{className:"pt-2 space-y-2",children:[e&&Object.keys(e).length>0&&z.jsx(D8,{args:e}),z.jsx(Ql,{text:n,isError:r})]})}function D8({args:e}){return z.jsx("div",{className:"rounded-md bg-code px-3 py-2 font-mono text-[13px] leading-relaxed overflow-x-auto scrollbar-subtle",children:Object.entries(e).map(([t,n])=>z.jsxs("div",{children:[z.jsxs("span",{className:"text-accent/50",children:[t,": "]}),z.jsx("span",{className:"text-foreground/65 break-all whitespace-pre-wrap",children:typeof n=="object"?JSON.stringify(n,null,2):String(n)})]},t))})}const FB=ne.memo(function({name:t,args:n,output:r,modelText:l,displayText:s,pending:u,isError:c}){const f=typeof s=="string"?s:typeof r=="string"?r:"",d=!!c||typeof l=="string"&&l.startsWith("error:"),[p,g]=ne.useState(null),b=p??d,v=u?"pending":d?"error":"success",E=(Object.hasOwn(f6,t)?f6[t]:{icon:g1}).icon,D=IB(t,n);return z.jsxs("div",{className:dt("relative rounded-lg px-3 py-2",v==="error"?"bg-red-500/[0.05]":"bg-secondary/20"),children:[v==="pending"&&z.jsx("div",{className:"absolute top-0 left-0 right-0 h-[1px] overflow-hidden rounded-t-lg",children:z.jsx("div",{className:"h-full w-1/3 bg-accent/30 animate-progress-line"})}),z.jsxs("button",{type:"button",className:"flex w-full items-center gap-1.5 select-none cursor-pointer text-left","aria-expanded":b,onClick:()=>g(!b),children:[z.jsx(E,{className:dt("h-3.5 w-3.5 shrink-0 transition-colors duration-200",v==="error"?"text-red-400/80":v==="pending"?"text-accent/50":"text-foreground/60"),"aria-hidden":"true"}),z.jsx("span",{className:dt("text-[13px] font-medium shrink-0 transition-colors duration-200",v==="error"?"text-red-400/80":v==="pending"?"text-foreground/70":"text-foreground/60"),children:t}),!b&&D&&z.jsx("span",{className:"pl-1 text-[13px] text-muted-foreground/40 font-mono truncate",children:D}),!b&&z.jsx(HB,{name:t,args:n}),z.jsx("span",{className:"flex-1"}),v==="success"&&z.jsx(p1,{className:"h-3 w-3 text-emerald-500/40 shrink-0","aria-hidden":"true"}),z.jsx(I6,{className:dt("h-3 w-3 text-muted-foreground/25 transition-transform duration-200 shrink-0",!b&&"-rotate-90"),"aria-hidden":"true"})]}),z.jsx("div",{className:dt("grid transition-[grid-template-rows,opacity] duration-250 ease-out",b?"grid-rows-[1fr] opacity-100":"grid-rows-[0fr] opacity-0"),children:z.jsx("div",{className:"overflow-hidden",children:t==="bash"?z.jsx(PB,{args:n,display:f,isError:d}):t==="read"?z.jsx(UB,{args:n,display:f,isError:d}):t==="write"?z.jsx(VB,{args:n,display:f,isError:d}):t==="edit"?z.jsx(GB,{args:n,modelText:l,display:f,isError:d}):z.jsxs("div",{className:"pt-2 space-y-2",children:[n&&Object.keys(n).length>0&&z.jsx(D8,{args:n}),z.jsx(Ql,{text:f,isError:d})]})})})]})});function am(e){return e.meta}class lm extends ne.Component{state={hasError:!1,resetKey:this.props.resetKey};static getDerivedStateFromProps(t,n){return t.resetKey===n.resetKey?null:{hasError:!1,resetKey:t.resetKey}}static getDerivedStateFromError(){return{hasError:!0}}componentDidCatch(t){console.error("Chat block render failed:",t)}render(){return this.state.hasError?this.props.fallback:this.props.children}}const $B=ne.memo(function({role:t,blocks:n,sourceIndex:r,synthetic:l,isStreaming:s,isLoading:u,index:c,onRewindAndSend:f}){const d=t==="user",[p,g]=ne.useState(!1),[b,v]=ne.useState(!1),[_,E]=ne.useState(""),D=ne.useRef(null),A=ne.useRef(null),C=ne.useMemo(()=>n.filter(Q=>Q?.type==="text"&&!am(Q)?.attachment),[n]),L=ne.useMemo(()=>C.map(Q=>Q.text).join(`
463
463
 
464
464
  `),[C]),Z=ne.useMemo(()=>n.filter(Q=>Q?.type==="text"&&!!am(Q)?.attachment),[n]),K=ne.useMemo(()=>n.filter(Q=>Q?.type==="image"),[n]),I=ne.useMemo(()=>n.filter(Q=>Q?.type==="document"),[n]);ne.useEffect(()=>()=>{A.current!==null&&window.clearTimeout(A.current)},[]);const Y=ne.useCallback(async()=>{if(L)try{await t7(L),g(!0),A.current!==null&&window.clearTimeout(A.current),A.current=window.setTimeout(()=>{g(!1),A.current=null},2e3)}catch{}},[L]),W=d&&!!L&&K.length===0&&I.length===0&&Z.length===0&&typeof r=="number"&&!l&&!u&&f,q=ne.useCallback(()=>{E(L),v(!0)},[L]);ne.useEffect(()=>{if(b&&D.current){const Q=D.current;Q.focus(),Q.style.height="auto",Q.style.height=`${Q.scrollHeight}px`}},[b]);const U=ne.useCallback(()=>{const Q=_.trim();!Q||!f||typeof r!="number"||(v(!1),f(r,Q))},[_,f,r]),ie=ne.useCallback(()=>{v(!1)},[]),ae=ne.useCallback(Q=>{Q.key==="Enter"&&!Q.shiftKey?(Q.preventDefault(),U()):Q.key==="Escape"&&ie()},[U,ie]),Ee=z.jsx("div",{className:"rounded-lg bg-destructive/10 px-3 py-2 text-xs text-destructive/80",children:"Failed to render this block."});return d?b?z.jsx("div",{className:"flex justify-end px-5 max-md:px-4 animate-fade-in-up",style:{animationDelay:`${Math.min(c*30,150)}ms`},children:z.jsxs("div",{className:"max-w-[85%] w-full flex flex-col gap-2",children:[z.jsx("textarea",{ref:D,name:"edit-message","aria-label":"Edit message",value:_,onChange:Q=>{E(Q.target.value),Q.target.style.height="auto",Q.target.style.height=`${Math.min(Q.target.scrollHeight,300)}px`},onKeyDown:ae,className:"w-full resize-none rounded-2xl bg-card px-4 py-2.5 text-base md:text-sm leading-relaxed text-foreground/90 border border-border/50 focus:outline-none focus:border-accent/50 max-h-[300px]"}),z.jsxs("div",{className:"flex justify-end gap-2",children:[z.jsx("button",{type:"button",onClick:ie,className:"px-3 py-1 text-xs rounded-lg text-muted-foreground hover:text-foreground transition-colors",children:"Cancel"}),z.jsx("button",{type:"button",onClick:U,disabled:!_.trim(),className:dt("px-3 py-1 text-xs rounded-lg transition-colors",_.trim()?"bg-foreground text-background hover:opacity-90":"text-muted-foreground/40"),children:"Send"})]})]})}):z.jsxs("div",{className:"group/user flex justify-end px-5 max-md:px-4 animate-fade-in-up",style:{animationDelay:`${Math.min(c*30,150)}ms`},children:[W&&z.jsx("button",{type:"button","aria-label":"Edit message",onClick:q,className:"self-end mr-2 mb-0.5 opacity-0 group-hover/user:opacity-100 max-md:opacity-60 transition-opacity duration-150 h-6 w-6 flex items-center justify-center rounded text-muted-foreground/40 hover:text-muted-foreground/70",title:"Edit & resend",children:z.jsx(k_,{className:"h-3 w-3"})}),z.jsxs("div",{className:"max-w-[85%] flex flex-col gap-1.5 items-end",children:[K.length>0&&z.jsx("div",{className:"flex flex-wrap gap-2 justify-end",children:K.map((Q,le)=>z.jsx("img",{src:`data:${Q.mime_type};base64,${Q.data}`,alt:Q.name??"Image",className:"max-h-64 max-w-full rounded-xl"},Q.renderKey??le))}),I.length>0&&z.jsx("div",{className:"flex flex-wrap gap-2 justify-end",children:I.map((Q,le)=>z.jsxs("div",{className:"min-w-32 max-w-xs rounded-xl border border-border/30 bg-muted/30 px-3 py-2 text-sm text-foreground/80",children:[z.jsxs("div",{className:"flex items-center gap-2",children:[z.jsx(O0,{className:"h-4 w-4 shrink-0 text-accent/80"}),z.jsx("span",{className:"font-medium",children:"PDF"})]}),z.jsx("div",{className:"mt-1 break-all text-xs text-muted-foreground",children:Q.name??"document.pdf"})]},Q.renderKey??le))}),Z.length>0&&z.jsx("div",{className:"flex flex-wrap gap-2 justify-end",children:Z.map((Q,le)=>{const F=am(Q)?.path;return z.jsxs("div",{className:"min-w-32 max-w-xs rounded-xl border border-border/30 bg-muted/30 px-3 py-2 text-sm text-foreground/80",children:[z.jsxs("div",{className:"flex items-center gap-2",children:[z.jsx(O0,{className:"h-4 w-4 shrink-0 text-accent/80"}),z.jsx("span",{className:"font-medium",children:"Text"})]}),z.jsx("div",{className:"mt-1 break-all text-xs text-muted-foreground",children:typeof F=="string"?F:"attached-file"})]},Q.renderKey??le)})}),L&&z.jsx("div",{className:"rounded-2xl bg-card px-4 py-2.5 text-sm leading-relaxed text-foreground/90 whitespace-pre-wrap [overflow-wrap:anywhere]",children:L})]})]}):z.jsxs("div",{className:"group/msg relative px-5 max-md:px-4 animate-fade-in-up",style:{animationDelay:`${Math.min(c*30,150)}ms`},children:[z.jsxs("div",{className:"flex flex-col gap-3 text-foreground/90 leading-relaxed text-sm",children:[n.map(Q=>{if(Q.type==="thinking"){const le=Q.renderKey||`thinking:${Q.text||"block"}`;return z.jsx(lm,{fallback:Ee,resetKey:`${le}:${Q.text}`,children:z.jsx(RB,{content:Q.text,isStreaming:s})},le)}if(Q.type==="text"){const le=Q.renderKey||`text:${Q.text||"block"}`;return z.jsx(lm,{fallback:Ee,resetKey:`${le}:${Q.text}`,children:z.jsx(CB,{content:Q.text})},le)}if(Q.type==="tool_use"){const le=Q.renderKey||Q.id||`tool:${Q.name||"tool"}`,F=`${le}:${JSON.stringify(Q.input)}:${Q.runtime?.pending?"1":"0"}:${Q.runtime?.isError?"1":"0"}:${Q.runtime?.output??""}:${Q.runtime?.modelText??""}:${Q.runtime?.displayText??""}`;return z.jsx(lm,{fallback:Ee,resetKey:F,children:z.jsx(FB,{name:Q.name,args:Q.input,output:Q.runtime?.output,modelText:Q.runtime?.modelText,displayText:Q.runtime?.displayText,pending:Q.runtime?.pending,isError:Q.runtime?.isError})},le)}return null}),s&&z.jsx("span",{className:"inline-block w-[1.5px] h-4 bg-accent/50 animate-cursor-blink ml-0.5 align-middle"})]}),!d&&L&&!s&&z.jsx("div",{className:"mt-2 max-md:opacity-60 opacity-0 group-hover/msg:opacity-100 transition-opacity duration-150",children:z.jsx("button",{type:"button","aria-label":"Copy to clipboard",onClick:Y,className:dt("flex items-center justify-center h-6 w-6 rounded transition-colors duration-150",p?"text-emerald-400":"text-muted-foreground/40 hover:text-muted-foreground/70"),title:"Copy",children:p?z.jsx(p1,{className:"h-3.5 w-3.5"}):z.jsx(B6,{className:"h-3.5 w-3.5"})})})]})}),YB=120,XB=ne.memo(function({messages:t,loading:n,onRewindAndSend:r}){const l=ne.useRef(null),s=ne.useRef(null),u=ne.useRef(!0),c=ne.useRef(0),f=ne.useCallback(()=>{const d=l.current;d&&(u.current=d.scrollHeight-d.scrollTop-d.clientHeight<YB)},[]);return ne.useLayoutEffect(()=>{const d=c.current;c.current=t.length,!(!t.length||!u.current)&&s.current?.scrollIntoView({behavior:n||d===0?"auto":"smooth",block:"end"})},[n,t]),t.length===0?z.jsx("div",{className:"flex flex-1 flex-col items-center justify-center p-8",children:z.jsx("div",{className:"text-center",children:z.jsxs("h1",{className:"font-display text-2xl tracking-tighter text-foreground/70",children:["mycode",z.jsx("span",{className:"inline-block w-[2px] h-5 bg-accent/60 ml-0.5 align-middle animate-cursor-blink"})]})})}):z.jsx("div",{ref:l,onScroll:f,className:"flex-1 overflow-y-auto pb-4 pt-6",children:z.jsxs("div",{className:"mx-auto max-w-4xl max-md:max-w-none flex flex-col gap-6 max-md:gap-5",children:[t.map((d,p)=>z.jsx($B,{role:d.role,blocks:d.content,sourceIndex:d.sourceIndex,synthetic:d.meta?.synthetic,isStreaming:n&&p===t.length-1&&d.role==="assistant",isLoading:n,index:p,onRewindAndSend:r},d.renderKey||`msg-${p}`)),z.jsx("div",{ref:s,className:"h-4"})]})})});function QB({children:e}){return z.jsx("div",{className:dt("flex h-screen min-h-0 w-full flex-col overflow-hidden supports-[height:100dvh]:h-dvh bg-background font-sans text-foreground antialiased","transition-colors duration-500"),children:e})}function ZB({title:e,onMenuToggle:t,onCreateSession:n}){return z.jsxs("header",{className:"flex md:hidden h-12 shrink-0 items-center justify-between px-4 border-b border-border/40 bg-background",children:[z.jsx("button",{type:"button","aria-label":"Toggle menu",onClick:t,className:"flex items-center justify-center h-10 w-10 -ml-2 text-muted-foreground hover:text-foreground active:scale-90 transition",children:z.jsx(g_,{className:"h-5 w-5"})}),z.jsx("span",{className:"text-xs font-mono text-foreground/70 truncate max-w-[60%] text-center",children:e||"mycode"}),z.jsx("button",{type:"button","aria-label":"New chat",onClick:n,className:"flex items-center justify-center h-10 w-10 -mr-2 text-muted-foreground hover:text-foreground active:scale-90 transition",children:z.jsx(q6,{className:"h-5 w-5"})})]})}function wp(e){return e===""||e==="auto"||e==="none"||e==="low"||e==="medium"||e==="high"||e==="xhigh"}function KB(e,t,n){const r=e?.providers?.[t];if(!r?.supports_reasoning_effort||!(r.reasoning_models||[]).includes(n))return"";const s=r.reasoning_effort||e?.default_reasoning_effort;return wp(s)?s:""}function WB(e,t){const n=t?.providers||{},r=!e.provider||!n[e.provider],l=r?t?.default?.provider||"":e.provider,s=n[l],u=!s?.models?.includes(e.model),c=u?s?.models?.[0]||"":e.model,f=r||u?"":e.reasoningEffort;return{...e,provider:l,model:c,reasoningEffort:f}}const JB={primary:"bg-primary text-primary-foreground hover:bg-primary/90",secondary:"bg-secondary text-secondary-foreground hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground",danger:"bg-destructive text-destructive-foreground hover:bg-destructive/90",outline:"border border-input bg-transparent hover:bg-accent hover:text-accent-foreground"},ej={sm:"h-8 px-3 text-xs",md:"h-10 px-4 py-2",lg:"h-11 px-8",icon:"h-9 w-9 p-0"},O8=ne.forwardRef(({className:e,variant:t="primary",size:n="md",isLoading:r,disabled:l,children:s,...u},c)=>z.jsxs("button",{ref:c,disabled:l||r,className:dt("inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 active:scale-[0.97]",JB[t],ej[n],e),...u,children:[r&&z.jsx(m_,{className:"mr-2 h-4 w-4 animate-spin","aria-hidden":"true"}),s]}));O8.displayName="Button";var tj=A6();const tc=e=>e.replace(/\\/g,"/"),nj=e=>/^([a-zA-Z]:[\\/]|\/)/.test(e),h6=(e,t)=>{const n=tc(t);return[...e].sort((l,s)=>s.length-l.length).find(l=>{const s=tc(l).replace(/\/+$/,"");return n===s||n.startsWith(`${s}/`)})||e[0]},d6=(e,t)=>{const n=tc(e).replace(/\/+$/,""),r=tc(t);return r===n?"":(r.startsWith(n)?r.slice(n.length):r).replace(/^\/+/,"")},rj=e=>{if(!e||e==="/"||e==="\\")return"/";const t=e.replace(/[\\/]+$/,"");if(/\/Users\/[^/]+$/.test(t)||/\/home\/[^/]+$/.test(t))return"~";const n=t.split(/[/\\]/);return n[n.length-1]||e};function m6(e){return e instanceof Error?e.message:"Unknown error"}function ij({open:e,onClose:t,currentCwd:n,cwdHistory:r=[],onSelect:l}){const[s,u]=ne.useState({roots:[],root:"",path:"",current:"",entries:[],loading:!1,error:""}),[c,f]=ne.useState(""),d=ne.useRef(0),p=ne.useRef(null);ne.useEffect(()=>{if(e&&window.matchMedia("(min-width: 640px)").matches){const I=setTimeout(()=>p.current?.focus(),50);return()=>clearTimeout(I)}},[e]);const g=ne.useRef(s.current);g.current!==s.current&&(g.current=s.current,c&&f(""));const b=ne.useCallback(async()=>{const I=await fetch("/api/workspaces/roots");if(!I.ok)throw new Error("Failed to load roots");return(await I.json()).roots||[]},[]),v=ne.useCallback(async(I,Y="")=>{const W=++d.current;u(q=>({...q,loading:!0,error:""}));try{const q=new URLSearchParams({root:I});Y&&q.set("path",Y);const U=await fetch(`/api/workspaces/browse?${q.toString()}`);if(!U.ok)throw new Error("Failed to browse directory");const ie=await U.json();if(ie.error)throw new Error(ie.error);if(d.current!==W)return;u(ae=>({...ae,root:ie.root,path:ie.path,current:ie.current,entries:ie.entries||[],loading:!1,error:""}))}catch(q){if(d.current!==W)return;u(U=>({...U,loading:!1,error:m6(q)}))}},[]);ne.useEffect(()=>{if(!e)return;let I=!0;return(async()=>{try{const W=await b();if(!I)return;if(!W.length){u(q=>({...q,roots:[],loading:!1,error:"No workspace roots configured."}));return}if(u(q=>({...q,roots:W})),f(""),n){const q=h6(W,n);q&&await v(q,d6(q,n))}else{const q=W[0];q&&await v(q,"")}}catch(W){I&&u(q=>({...q,loading:!1,error:m6(W)}))}})(),()=>{I=!1}},[e,v,n,b]);const _=ne.useMemo(()=>{const I=c.trim().toLowerCase();return I?s.entries.filter(Y=>Y.name.toLowerCase().includes(I)):s.entries},[c,s.entries]),E=ne.useCallback(async I=>{const Y=I.trim();if(!(!Y||!s.roots.length))if(nj(Y)){const W=h6(s.roots,Y);if(!W){u(q=>({...q,error:"Path is outside any configured workspace root."}));return}await v(W,d6(W,Y))}else{const W=s.path?`${s.path}/${Y}`:Y;await v(s.root,W)}},[s.roots,s.root,s.path,v]),D=ne.useCallback(()=>{if(!s.root||!s.path)return;const I=s.path.split("/");v(s.root,I.slice(0,-1).join("/"))},[s.root,s.path,v]),A=ne.useCallback(()=>{s.current&&(l(s.current),t())},[s.current,l,t]),C=ne.useCallback(I=>{if(I.key==="Enter"){const Y=_.length===1?_[0]:null;Y?v(s.root,Y.path):c.trim()&&E(c)}else if(I.key==="Tab"){I.preventDefault();const Y=_[0];Y&&v(s.root,Y.path)}else I.key==="Escape"?c?f(""):t():I.key==="Backspace"&&!c&&D()},[c,_,s.root,v,E,t,D]),L=s.path?s.path.split("/"):[],Z=r.filter(I=>I!==s.current),K=Z.length>0&&!c.trim();return e?tj.createPortal(z.jsxs("div",{className:"fixed inset-0 z-[100] flex items-end sm:items-center sm:justify-center",role:"dialog","aria-modal":"true","aria-label":"Select Workspace",children:[z.jsx("div",{className:"absolute inset-0 bg-black/50 backdrop-blur-[3px] animate-backdrop-in",onClick:t,"aria-hidden":"true"}),z.jsxs("div",{className:dt("relative flex flex-col overflow-hidden","bg-background border border-border/40 shadow-2xl","w-full rounded-t-2xl max-h-[82vh]","animate-sheet-in","sm:rounded-xl sm:w-[440px] sm:max-h-[520px]","sm:animate-dialog-in"),children:[z.jsx("div",{className:"sm:hidden flex justify-center pt-2.5 pb-1 shrink-0","aria-hidden":"true",children:z.jsx("div",{className:"w-10 h-[3px] rounded-full bg-border/60"})}),z.jsxs("div",{className:"flex items-center min-h-[44px] px-4 border-b border-border/30 shrink-0 gap-1",children:[z.jsxs("div",{className:"flex-1 flex items-center overflow-x-auto scrollbar-none min-w-0 gap-0.5",children:[z.jsx("button",{type:"button",onClick:()=>s.root&&void v(s.root,""),className:dt("shrink-0 px-1.5 py-0.5 rounded text-xs font-mono cursor-pointer","transition-colors hover:bg-muted/60 hover:text-foreground",L.length===0?"text-foreground font-medium":"text-muted-foreground"),children:rj(s.root)||"~"}),L.map((I,Y)=>{const W=L.slice(0,Y+1).join("/");return z.jsxs("div",{className:"flex items-center shrink-0",children:[z.jsx("span",{className:"text-border select-none mx-0.5 text-xs","aria-hidden":"true",children:"/"}),z.jsx("button",{type:"button",onClick:()=>{v(s.root,W)},className:dt("px-1.5 py-0.5 rounded text-xs font-mono cursor-pointer whitespace-nowrap","transition-colors hover:bg-muted/60 hover:text-foreground",Y===L.length-1?"text-foreground font-medium":"text-muted-foreground"),children:I})]},W)})]}),z.jsx("button",{type:"button",onClick:t,className:dt("flex items-center justify-center w-8 h-8 rounded-lg shrink-0 cursor-pointer","text-muted-foreground/50 transition-colors","hover:bg-muted/70 hover:text-foreground","focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"),"aria-label":"Close",children:z.jsx(wm,{className:"h-3.5 w-3.5"})})]}),z.jsxs("div",{className:"flex items-center gap-2.5 px-4 py-2.5 border-b border-border/20 shrink-0",children:[z.jsx(T_,{className:"h-3.5 w-3.5 shrink-0 text-muted-foreground/30"}),z.jsx("input",{ref:p,name:"workspace-filter",value:c,onChange:I=>f(I.target.value),onKeyDown:C,placeholder:"Filter or type a path…",spellCheck:!1,autoComplete:"off",autoCorrect:"off",autoCapitalize:"off",className:"w-full bg-transparent text-sm font-mono focus-visible:outline-none text-foreground placeholder:text-muted-foreground/30 caret-accent","aria-label":"Filter directories or enter a path"}),c&&z.jsx("button",{type:"button",onClick:()=>f(""),className:"shrink-0 text-muted-foreground/40 hover:text-muted-foreground transition-colors","aria-label":"Clear filter",children:z.jsx(wm,{className:"h-3 w-3"})})]}),z.jsxs("div",{className:"flex-1 overflow-y-auto overscroll-contain",children:[s.loading&&z.jsx("div",{className:"flex items-center justify-center h-36",children:z.jsx("div",{className:"flex items-end gap-1",children:[0,1,2].map(I=>z.jsx("div",{className:"w-[3px] rounded-full bg-muted-foreground/30 animate-pulse",style:{height:`${12+I*4}px`,animationDelay:`${I*120}ms`}},I))})}),!s.loading&&s.error&&z.jsx("div",{className:"flex items-center justify-center h-36 px-6 text-center",children:z.jsx("p",{className:"text-xs text-destructive leading-relaxed",children:s.error})}),!s.loading&&!s.error&&z.jsxs("div",{className:"py-1",children:[K&&z.jsxs(z.Fragment,{children:[z.jsx("div",{className:"px-4 pt-3 pb-1.5",children:z.jsx("span",{className:"text-[10px] font-semibold uppercase tracking-widest text-muted-foreground/40 select-none",children:"Recent"})}),Z.map(I=>z.jsxs("button",{type:"button",onClick:()=>{l(I),t()},className:"group flex items-center gap-3 w-full min-h-[44px] px-4 py-2 text-left cursor-pointer transition-colors hover:bg-muted/50 active:bg-muted/70 focus-visible:outline-none focus-visible:bg-muted/50",children:[z.jsx(a_,{className:"h-3.5 w-3.5 shrink-0 text-muted-foreground/35 group-hover:text-accent/60 transition-colors"}),z.jsx("span",{className:"truncate text-xs font-mono text-muted-foreground group-hover:text-foreground/80 transition-colors",children:I})]},I)),_.length>0&&z.jsx("div",{className:"mx-4 mt-1 mb-1 border-b border-border/20"})]}),_.length===0&&!K&&z.jsxs("div",{className:"flex flex-col items-center justify-center gap-3 h-36 text-muted-foreground/30",children:[z.jsx(q3,{className:"h-10 w-10",strokeWidth:1}),z.jsx("p",{className:"text-xs",children:c.trim()?"No matches":"This folder is empty"})]}),_.map(I=>z.jsxs("button",{type:"button",onClick:()=>{v(s.root,I.path)},className:"group flex items-center gap-3 w-full min-h-[44px] px-4 py-2 text-left cursor-pointer transition-colors hover:bg-muted/50 active:bg-muted/70 focus-visible:outline-none focus-visible:bg-muted/50",children:[z.jsx(q3,{className:"h-3.5 w-3.5 shrink-0 text-accent/40 group-hover:text-accent/70 transition-colors"}),z.jsx("span",{className:"truncate text-sm font-mono text-foreground/70 group-hover:text-foreground transition-colors",children:I.name})]},I.path))]})]}),z.jsxs("div",{className:"flex items-center gap-3 h-12 px-4 border-t border-border/20 shrink-0",children:[z.jsx(j6,{className:"h-3.5 w-3.5 shrink-0 text-muted-foreground/30"}),z.jsx("span",{className:"flex-1 min-w-0 truncate text-xs font-mono text-muted-foreground/60",title:s.current,children:s.current||"—"}),z.jsx("button",{type:"button",onClick:A,disabled:!s.current,className:dt("shrink-0 px-3.5 h-7 rounded-md text-xs font-semibold cursor-pointer","transition-colors","bg-accent/15 text-accent border border-accent/20","hover:bg-accent/25 hover:border-accent/40 active:bg-accent/30","focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring","disabled:opacity-25 disabled:cursor-not-allowed"),children:"Open"})]})]})]}),document.body):null}const sm="w-full bg-secondary/20 px-2.5 py-2 text-base md:text-sm font-mono text-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring rounded-md border-0 focus:bg-secondary/40 disabled:opacity-50 transition-colors cursor-pointer",aj=[{key:"light",icon:L_,label:"Light"},{key:"dark",icon:v_,label:"Dark"},{key:"system",icon:h_,label:"Auto"}];function lj(e){return e?Object.entries(e).filter(t=>t[1]!==void 0):[]}const sj=ne.memo(function({className:t,sessions:n,activeSession:r,onSelectSession:l,onCreateSession:s,onDeleteSession:u,config:c,onUpdateConfig:f,cwdHistory:d,remoteConfig:p,theme:g,setTheme:b}){const[v,_]=ne.useState("chat"),[E,D]=ne.useState(!1),A=q=>{f({...c,cwd:q})},C=q=>{const ie=p?.providers?.[q]?.models?.[0]||"";f({...c,provider:q,model:ie,apiBase:"",apiKey:"",reasoningEffort:""})},L=lj(p?.providers),Z=p?.providers?.[c.provider],K=Z?.models||[],I=Z?.reasoning_models||[],Y=Z?.supports_reasoning_effort&&I.includes(c.model),W=p?.reasoning_effort_options||[];return z.jsxs("div",{className:dt("flex w-64 flex-col border-r border-border/60 bg-sidebar-bg",t),children:[z.jsxs("div",{className:"flex h-14 shrink-0 items-center justify-between px-4 border-b border-border/30",children:[z.jsxs("div",{className:"flex items-center gap-2.5",children:[z.jsx(g1,{className:"h-4 w-4 text-accent"}),z.jsx("span",{className:"font-display text-sm tracking-tight text-foreground font-medium",children:"mycode"})]}),z.jsx("button",{type:"button",onClick:s,"aria-label":"New chat",className:"h-7 w-7 flex items-center justify-center rounded-lg text-muted-foreground/50 hover:text-foreground hover:bg-secondary/40 active:scale-95 transition-colors",title:"New chat",children:z.jsx(q6,{className:"h-3.5 w-3.5"})})]}),z.jsxs("div",{className:"relative flex shrink-0 border-b border-border/30",role:"tablist",children:[z.jsxs("button",{type:"button",role:"tab","aria-selected":v==="chat",onClick:()=>_("chat"),className:dt("flex-1 flex items-center justify-center gap-1.5 py-2.5 text-xs transition-colors duration-200",v==="chat"?"text-foreground font-medium":"text-muted-foreground hover:text-foreground"),children:[z.jsx(H3,{className:"h-3 w-3"}),"History"]}),z.jsxs("button",{type:"button",role:"tab","aria-selected":v==="settings",onClick:()=>_("settings"),className:dt("flex-1 flex items-center justify-center gap-1.5 py-2.5 text-xs transition-colors duration-200",v==="settings"?"text-foreground font-medium":"text-muted-foreground hover:text-foreground"),children:[z.jsx(R_,{className:"h-3 w-3"}),"Settings"]}),z.jsx("div",{className:"absolute bottom-0 h-[1.5px] bg-accent/70 rounded-full transition-all duration-300 ease-[cubic-bezier(0.4,0,0.2,1)]",style:{left:v==="chat"?"12px":"50%",width:"calc(50% - 24px)",transform:v==="settings"?"translateX(12px)":"none"}})]}),z.jsxs("div",{className:"flex-1 overflow-hidden flex flex-col min-h-0",children:[v==="chat"&&z.jsx("div",{className:"flex h-full flex-col",children:z.jsxs("div",{className:"flex-1 overflow-y-auto pb-4",children:[n.filter(q=>!q.isDraft).map(q=>{const U=r?.id===q.id,ie=q.is_running;return z.jsxs("div",{className:"group relative",children:[U&&z.jsx("div",{className:"absolute left-0 top-0 bottom-0 w-[2px] bg-accent"}),z.jsxs("button",{type:"button","aria-current":U?"true":void 0,className:dt("session-row flex w-full items-center gap-2 px-4 py-2 pr-10 text-xs cursor-pointer text-left transition-colors active:bg-secondary/30",U?"bg-secondary/40 text-foreground":"session-row-inactive text-muted-foreground"),onClick:()=>l(q.id),children:[z.jsx("span",{className:"truncate flex-1",children:q.title||"New Chat"}),ie&&z.jsx("span",{className:"shrink-0 h-1.5 w-1.5 rounded-full bg-accent animate-breathing"})]}),!U&&z.jsx(O8,{variant:"ghost",size:"icon",className:"session-delete-button absolute right-2 top-1/2 h-5 w-5 -translate-y-1/2 transition-opacity","aria-label":"Delete session",onClick:ae=>{ae.stopPropagation(),u(q.id)},children:z.jsx(j_,{className:"session-delete-icon h-3 w-3 text-muted-foreground"})})]},q.id)}),n.length===0&&z.jsxs("div",{className:"py-12 text-center text-xs text-muted-foreground/60 flex flex-col items-center gap-2",children:[z.jsx(H3,{className:"h-4 w-4 opacity-30"}),"No history"]})]})}),v==="settings"&&z.jsxs("div",{className:"h-full overflow-y-auto px-4 py-5 space-y-6",children:[z.jsxs("div",{children:[z.jsx("div",{className:"text-2xs font-mono text-muted-foreground/60 mb-2.5 uppercase tracking-wider",children:"Appearance"}),z.jsx("div",{className:"flex items-center gap-1",children:aj.map(({key:q,icon:U,label:ie})=>z.jsx("button",{type:"button",onClick:()=>b(q),"aria-label":ie,title:ie,className:dt("flex items-center justify-center h-9 w-9 rounded-md transition-colors",g===q?"text-accent bg-secondary/40":"text-muted-foreground hover:text-foreground hover:bg-secondary/20"),children:z.jsx(U,{className:"h-3.5 w-3.5"})},q))})]}),z.jsxs("div",{children:[z.jsxs("div",{className:"flex items-center justify-between mb-2.5",children:[z.jsx("span",{className:"text-2xs font-mono text-muted-foreground/60 uppercase tracking-wider",children:"Workspace"}),z.jsx("button",{type:"button","aria-label":"Open workspace",onClick:()=>D(!0),className:"text-muted-foreground/50 hover:text-accent transition-colors",children:z.jsx(j6,{className:"h-3 w-3"})})]}),z.jsx("p",{className:"break-all font-mono text-2xs leading-relaxed text-muted-foreground",title:c.cwd==="."?p?.cwd||".":c.cwd,children:c.cwd==="."?p?.cwd||".":c.cwd})]}),z.jsxs("div",{className:"space-y-4",children:[p?.providers&&Object.keys(p.providers).length>0&&z.jsxs("div",{children:[z.jsx("label",{htmlFor:"provider-select",className:"text-2xs font-mono text-muted-foreground/60 uppercase tracking-wider",children:"Provider"}),z.jsx("select",{id:"provider-select",value:c.provider,onChange:q=>C(q.target.value),className:dt(sm,"mt-1.5"),children:L.map(([q,U])=>z.jsxs("option",{value:q,children:[U.name," (",U.type,")"]},q))})]}),K.length>0?z.jsxs("div",{children:[z.jsx("label",{htmlFor:"model-input",className:"text-2xs font-mono text-muted-foreground/60 uppercase tracking-wider",children:"Model"}),z.jsx("select",{id:"model-input",value:c.model,onChange:q=>{const U=q.target.value;return f({...c,model:U,reasoningEffort:""})},className:dt(sm,"mt-1.5"),children:K.map(q=>z.jsx("option",{value:q,children:q},q))})]}):z.jsx("div",{className:"text-center text-2xs text-muted-foreground/40 py-2",children:"No models available"}),Y&&z.jsxs("div",{children:[z.jsx("label",{htmlFor:"effort-select",className:"text-2xs font-mono text-muted-foreground/60 uppercase tracking-wider",children:"Reasoning effort"}),z.jsx("select",{id:"effort-select",value:c.reasoningEffort||KB(p,c.provider,c.model)||"auto",onChange:q=>{const U=q.target.value;wp(U)&&f({...c,reasoningEffort:U})},className:dt(sm,"mt-1.5"),children:W.map(q=>z.jsx("option",{value:q,children:q},q))})]})]})]})]}),z.jsx(ij,{open:E,onClose:()=>D(!1),currentCwd:c.cwd,cwdHistory:d,onSelect:A})]})}),N8=ne.createContext(null);function z8(e){return e!=="system"?e:window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}function p6(e){const t=window.document.documentElement,n=z8(e);return t.classList.remove("light","dark"),n==="light"?t.classList.add("light"):t.classList.add("dark"),t.style.colorScheme=n,n}function oj({children:e,defaultTheme:t="system",storageKey:n="vite-ui-theme"}){const[r,l]=ne.useState(()=>{const d=localStorage.getItem(n);return d==="light"||d==="dark"||d==="system"?d:t}),[s,u]=ne.useState(()=>z8(r));ne.useEffect(()=>{u(p6(r))},[r]),ne.useEffect(()=>{if(r!=="system")return;const d=window.matchMedia("(prefers-color-scheme: dark)"),p=()=>{u(p6("system"))};return d.addEventListener("change",p),()=>d.removeEventListener("change",p)},[r]);const c=ne.useCallback(d=>{localStorage.setItem(n,d),l(d)},[n]),f=ne.useMemo(()=>({theme:r,resolvedTheme:s,setTheme:c}),[r,s,c]);return z.jsx(N8.Provider,{value:f,children:e})}const uj=()=>{const e=ne.useContext(N8);if(!e)throw new Error("useTheme must be used within a ThemeProvider");return e};function D0(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)}function tr(e){return Array.isArray(e?.content)?e.content:[]}function om(e,t=null){const n={...e};return n.meta&&(n.meta={...n.meta}),t&&(n.renderKey=t),n}function Ya(e,t=[],n=null){const r={role:e,content:t};return n&&(r.renderKey=n),r}function Io(e){return{type:"text",text:e}}function cj(e){return e.replaceAll("&","&amp;").replaceAll('"',"&quot;").replaceAll("<","&lt;").replaceAll(">","&gt;")}function fj(e,t,n){const r={type:"text",text:`<file name="${cj(t)}">
465
465
  ${e}
@@ -24,8 +24,8 @@
24
24
  rel="stylesheet" />
25
25
  <link rel="icon" type="image/svg+xml" href="/favicon_slashes.svg" />
26
26
  <title>mycode</title>
27
- <script type="module" crossorigin src="/assets/index--b2yTD3D.js"></script>
28
- <link rel="stylesheet" crossorigin href="/assets/index-BgNwRXPa.css">
27
+ <script type="module" crossorigin src="/assets/index-CfZ_AJkk.js"></script>
28
+ <link rel="stylesheet" crossorigin href="/assets/index-Bi2yKki-.css">
29
29
  </head>
30
30
 
31
31
  <body>
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "mycode-cli"
7
- version = "0.3.0"
7
+ version = "0.3.1"
8
8
  description = "Minimal coding agent with web UI"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
@@ -540,7 +540,7 @@ wheels = [
540
540
 
541
541
  [[package]]
542
542
  name = "mycode-cli"
543
- version = "0.3.0"
543
+ version = "0.3.1"
544
544
  source = { editable = "." }
545
545
  dependencies = [
546
546
  { name = "anthropic" },