@heal-dev/heal-playwright-tracer 1.0.0 → 1.0.8

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 (704) hide show
  1. package/README.md +94 -116
  2. package/dist/application/babel-playwright-tracer-plugin/index.js +16 -2
  3. package/dist/application/commander-cli-adapter/commander-cli-adapter.d.ts +24 -0
  4. package/dist/application/commander-cli-adapter/commander-cli-adapter.js +133 -0
  5. package/dist/application/heal-config/index.d.ts +1 -1
  6. package/dist/application/heal-config/registry.js +2 -1
  7. package/dist/application/heal-config/types.d.ts +187 -6
  8. package/dist/application/playwright-fixture/index.js +247 -48
  9. package/dist/application/playwright-fixture/wire-all-pages.d.ts +37 -0
  10. package/dist/application/playwright-fixture/wire-all-pages.js +71 -0
  11. package/dist/application/trace-event-recorder-runtime/index.d.ts +5 -0
  12. package/dist/application/trace-event-recorder-runtime/index.js +11 -1
  13. package/dist/bin/heal-tracer.d.ts +7 -0
  14. package/dist/bin/heal-tracer.js +16 -0
  15. package/dist/domain/code-hook-injector/service/statement-analysis/async-enclosing-function-detector.d.ts +11 -0
  16. package/dist/domain/code-hook-injector/service/statement-analysis/async-enclosing-function-detector.js +21 -0
  17. package/dist/domain/code-hook-injector/service/trace-hook/preprocess-call.d.ts +10 -0
  18. package/dist/domain/code-hook-injector/service/trace-hook/preprocess-call.js +17 -0
  19. package/dist/domain/persistence/execution-history-schema.d.ts +112 -0
  20. package/dist/domain/persistence/execution-history-schema.js +10 -0
  21. package/dist/domain/persistence/index.d.ts +7 -0
  22. package/dist/domain/persistence/index.js +10 -0
  23. package/dist/domain/persistence/test-status.d.ts +6 -0
  24. package/dist/domain/persistence/test-status.js +7 -0
  25. package/dist/domain/trace-event-recorder/model/console-trace-schema.d.ts +36 -0
  26. package/dist/domain/trace-event-recorder/model/console-trace-schema.js +7 -0
  27. package/dist/domain/trace-event-recorder/model/global-names.d.ts +1 -0
  28. package/dist/domain/trace-event-recorder/model/global-names.js +9 -1
  29. package/dist/domain/trace-event-recorder/model/network-trace-schema.d.ts +105 -0
  30. package/dist/domain/trace-event-recorder/model/network-trace-schema.js +7 -0
  31. package/dist/domain/trace-event-recorder/model/statement-trace-schema.d.ts +68 -2
  32. package/dist/domain/trace-event-recorder/model/statement-trace-schema.js +1 -1
  33. package/dist/domain/trace-event-recorder/model/trace-schema.d.ts +1 -0
  34. package/dist/domain/trace-event-recorder/service/projectors/statement-projector.d.ts +10 -1
  35. package/dist/domain/trace-event-recorder/service/projectors/statement-projector.js +39 -3
  36. package/dist/domain/trace-event-recorder/service/serializers/error-serializer.js +28 -10
  37. package/dist/domain/trace-event-recorder/service/serializers/index.d.ts +7 -0
  38. package/dist/domain/trace-event-recorder/service/serializers/index.js +13 -0
  39. package/dist/domain/trace-event-recorder/service/trace-event-recorder.d.ts +25 -0
  40. package/dist/domain/trace-event-recorder/service/trace-event-recorder.js +33 -0
  41. package/dist/index.d.ts +1 -1
  42. package/dist/infrastructure/artifact-summary-printer/artifact-summary-printer.d.ts +20 -0
  43. package/dist/infrastructure/artifact-summary-printer/artifact-summary-printer.js +24 -0
  44. package/dist/infrastructure/artifact-summary-printer/index.d.ts +7 -0
  45. package/dist/infrastructure/artifact-summary-printer/index.js +10 -0
  46. package/dist/infrastructure/heal-reporter/crash-error-classifier.d.ts +13 -0
  47. package/dist/infrastructure/heal-reporter/crash-error-classifier.js +65 -0
  48. package/dist/infrastructure/heal-reporter/failing-statement-finder.d.ts +14 -0
  49. package/dist/infrastructure/heal-reporter/failing-statement-finder.js +118 -0
  50. package/dist/infrastructure/heal-reporter/heal-tracer-reporter.d.ts +134 -0
  51. package/dist/infrastructure/heal-reporter/heal-tracer-reporter.js +537 -0
  52. package/dist/infrastructure/heal-reporter/index.d.ts +14 -0
  53. package/dist/infrastructure/heal-reporter/index.js +23 -0
  54. package/dist/infrastructure/heal-reporter/ndjson-tail-inspector.d.ts +8 -0
  55. package/dist/infrastructure/heal-reporter/ndjson-tail-inspector.js +75 -0
  56. package/dist/infrastructure/heal-traces-layout/execution-id-resolver.d.ts +14 -0
  57. package/dist/infrastructure/heal-traces-layout/execution-id-resolver.js +52 -0
  58. package/dist/infrastructure/heal-traces-layout/heal-traces-layout.d.ts +37 -0
  59. package/dist/infrastructure/heal-traces-layout/heal-traces-layout.js +116 -0
  60. package/dist/infrastructure/heal-traces-layout/index.d.ts +7 -0
  61. package/dist/infrastructure/heal-traces-layout/index.js +14 -0
  62. package/dist/infrastructure/local-viewer-adapter/discover-traces.d.ts +70 -0
  63. package/dist/infrastructure/local-viewer-adapter/discover-traces.js +280 -0
  64. package/dist/infrastructure/local-viewer-adapter/local-viewer-server.d.ts +44 -0
  65. package/dist/infrastructure/local-viewer-adapter/local-viewer-server.js +398 -0
  66. package/dist/infrastructure/local-viewer-adapter/ndjson-trace-loader.d.ts +25 -0
  67. package/dist/infrastructure/local-viewer-adapter/ndjson-trace-loader.js +74 -0
  68. package/dist/infrastructure/playwright-console-capture-adapter/console-capture-session.d.ts +40 -0
  69. package/dist/infrastructure/playwright-console-capture-adapter/console-capture-session.js +243 -0
  70. package/dist/infrastructure/playwright-console-capture-adapter/index.d.ts +7 -0
  71. package/dist/infrastructure/playwright-console-capture-adapter/index.js +20 -0
  72. package/dist/infrastructure/playwright-locator-screenshot-adapter/assertion-wrapper.js +22 -9
  73. package/dist/infrastructure/playwright-locator-screenshot-adapter/index.d.ts +1 -1
  74. package/dist/infrastructure/playwright-locator-screenshot-adapter/index.js +2 -2
  75. package/dist/infrastructure/playwright-locator-screenshot-adapter/locator-patch.js +19 -7
  76. package/dist/infrastructure/playwright-locator-screenshot-adapter/overlay-helpers.d.ts +2 -2
  77. package/dist/infrastructure/playwright-locator-screenshot-adapter/overlay-helpers.js +22 -9
  78. package/dist/infrastructure/playwright-locator-screenshot-adapter/screenshot-capture-session.d.ts +14 -3
  79. package/dist/infrastructure/playwright-locator-screenshot-adapter/screenshot-capture-session.js +94 -25
  80. package/dist/infrastructure/playwright-network-capture-adapter/body-preview.d.ts +43 -0
  81. package/dist/infrastructure/playwright-network-capture-adapter/body-preview.js +107 -0
  82. package/dist/infrastructure/playwright-network-capture-adapter/index.d.ts +10 -0
  83. package/dist/infrastructure/playwright-network-capture-adapter/index.js +27 -0
  84. package/dist/infrastructure/playwright-network-capture-adapter/network-capture-session.d.ts +55 -0
  85. package/dist/infrastructure/playwright-network-capture-adapter/network-capture-session.js +630 -0
  86. package/dist/infrastructure/playwright-network-capture-adapter/network-coalescer.d.ts +54 -0
  87. package/dist/infrastructure/playwright-network-capture-adapter/network-coalescer.js +96 -0
  88. package/dist/infrastructure/playwright-network-capture-adapter/redaction.d.ts +14 -0
  89. package/dist/infrastructure/playwright-network-capture-adapter/redaction.js +44 -0
  90. package/dist/infrastructure/playwright-test-context-adapter/playwright-test-context-adapter.d.ts +6 -1
  91. package/dist/infrastructure/playwright-test-context-adapter/playwright-test-context-adapter.js +5 -1
  92. package/dist/infrastructure/stdout-capture-adapter/stdout-capture-session.js +1 -1
  93. package/dist/util/logger.d.ts +17 -0
  94. package/dist/util/logger.js +60 -0
  95. package/dist/util/with-timeout.d.ts +6 -0
  96. package/dist/util/with-timeout.js +33 -0
  97. package/package.json +20 -3
  98. package/tracer-viewer-bundle/assets/abap-BdImnpbu.js +13 -0
  99. package/tracer-viewer-bundle/assets/abap-BdImnpbu.js.map +1 -0
  100. package/tracer-viewer-bundle/assets/actionscript-3-CoDkCxhg.js +13 -0
  101. package/tracer-viewer-bundle/assets/actionscript-3-CoDkCxhg.js.map +1 -0
  102. package/tracer-viewer-bundle/assets/ada-bCR0ucgS.js +13 -0
  103. package/tracer-viewer-bundle/assets/ada-bCR0ucgS.js.map +1 -0
  104. package/tracer-viewer-bundle/assets/andromeeda-C4gqWexZ.js +12 -0
  105. package/tracer-viewer-bundle/assets/andromeeda-C4gqWexZ.js.map +1 -0
  106. package/tracer-viewer-bundle/assets/angular-html-DA-rfuFy.js +41 -0
  107. package/tracer-viewer-bundle/assets/angular-html-DA-rfuFy.js.map +1 -0
  108. package/tracer-viewer-bundle/assets/angular-ts-BrjP3tb8.js +30 -0
  109. package/tracer-viewer-bundle/assets/angular-ts-BrjP3tb8.js.map +1 -0
  110. package/tracer-viewer-bundle/assets/apache-Pmp26Uib.js +13 -0
  111. package/tracer-viewer-bundle/assets/apache-Pmp26Uib.js.map +1 -0
  112. package/tracer-viewer-bundle/assets/apex-D8_7TLub.js +13 -0
  113. package/tracer-viewer-bundle/assets/apex-D8_7TLub.js.map +1 -0
  114. package/tracer-viewer-bundle/assets/apl-CORt7UWP.js +19 -0
  115. package/tracer-viewer-bundle/assets/apl-CORt7UWP.js.map +1 -0
  116. package/tracer-viewer-bundle/assets/applescript-Co6uUVPk.js +13 -0
  117. package/tracer-viewer-bundle/assets/applescript-Co6uUVPk.js.map +1 -0
  118. package/tracer-viewer-bundle/assets/ara-BRHolxvo.js +13 -0
  119. package/tracer-viewer-bundle/assets/ara-BRHolxvo.js.map +1 -0
  120. package/tracer-viewer-bundle/assets/asciidoc-Ve4PFQV2.js +13 -0
  121. package/tracer-viewer-bundle/assets/asciidoc-Ve4PFQV2.js.map +1 -0
  122. package/tracer-viewer-bundle/assets/asm-D_Q5rh1f.js +13 -0
  123. package/tracer-viewer-bundle/assets/asm-D_Q5rh1f.js.map +1 -0
  124. package/tracer-viewer-bundle/assets/astro-HNnZUWAn.js +19 -0
  125. package/tracer-viewer-bundle/assets/astro-HNnZUWAn.js.map +1 -0
  126. package/tracer-viewer-bundle/assets/aurora-x-D-2ljcwZ.js +12 -0
  127. package/tracer-viewer-bundle/assets/aurora-x-D-2ljcwZ.js.map +1 -0
  128. package/tracer-viewer-bundle/assets/awk-DMzUqQB5.js +13 -0
  129. package/tracer-viewer-bundle/assets/awk-DMzUqQB5.js.map +1 -0
  130. package/tracer-viewer-bundle/assets/ayu-dark-DYE7WIF3.js +12 -0
  131. package/tracer-viewer-bundle/assets/ayu-dark-DYE7WIF3.js.map +1 -0
  132. package/tracer-viewer-bundle/assets/ayu-light-BA47KaF1.js +12 -0
  133. package/tracer-viewer-bundle/assets/ayu-light-BA47KaF1.js.map +1 -0
  134. package/tracer-viewer-bundle/assets/ayu-mirage-32ctXXKs.js +12 -0
  135. package/tracer-viewer-bundle/assets/ayu-mirage-32ctXXKs.js.map +1 -0
  136. package/tracer-viewer-bundle/assets/ballerina-BFfxhgS-.js +13 -0
  137. package/tracer-viewer-bundle/assets/ballerina-BFfxhgS-.js.map +1 -0
  138. package/tracer-viewer-bundle/assets/bat-BkioyH1T.js +13 -0
  139. package/tracer-viewer-bundle/assets/bat-BkioyH1T.js.map +1 -0
  140. package/tracer-viewer-bundle/assets/beancount-k_qm7-4y.js +13 -0
  141. package/tracer-viewer-bundle/assets/beancount-k_qm7-4y.js.map +1 -0
  142. package/tracer-viewer-bundle/assets/berry-uYugtg8r.js +13 -0
  143. package/tracer-viewer-bundle/assets/berry-uYugtg8r.js.map +1 -0
  144. package/tracer-viewer-bundle/assets/bibtex-CHM0blh-.js +13 -0
  145. package/tracer-viewer-bundle/assets/bibtex-CHM0blh-.js.map +1 -0
  146. package/tracer-viewer-bundle/assets/bicep-Bmn6On1c.js +13 -0
  147. package/tracer-viewer-bundle/assets/bicep-Bmn6On1c.js.map +1 -0
  148. package/tracer-viewer-bundle/assets/bird2-BIv1doCn.js +13 -0
  149. package/tracer-viewer-bundle/assets/bird2-BIv1doCn.js.map +1 -0
  150. package/tracer-viewer-bundle/assets/blade-BjGOyj-B.js +21 -0
  151. package/tracer-viewer-bundle/assets/blade-BjGOyj-B.js.map +1 -0
  152. package/tracer-viewer-bundle/assets/bsl-BO_Y6i37.js +14 -0
  153. package/tracer-viewer-bundle/assets/bsl-BO_Y6i37.js.map +1 -0
  154. package/tracer-viewer-bundle/assets/c-BIGW1oBm.js +13 -0
  155. package/tracer-viewer-bundle/assets/c-BIGW1oBm.js.map +1 -0
  156. package/tracer-viewer-bundle/assets/c3-eo99z4R2.js +13 -0
  157. package/tracer-viewer-bundle/assets/c3-eo99z4R2.js.map +1 -0
  158. package/tracer-viewer-bundle/assets/cadence-Bv_4Rxtq.js +13 -0
  159. package/tracer-viewer-bundle/assets/cadence-Bv_4Rxtq.js.map +1 -0
  160. package/tracer-viewer-bundle/assets/cairo-KRGpt6FW.js +14 -0
  161. package/tracer-viewer-bundle/assets/cairo-KRGpt6FW.js.map +1 -0
  162. package/tracer-viewer-bundle/assets/catppuccin-frappe-DFWUc33u.js +12 -0
  163. package/tracer-viewer-bundle/assets/catppuccin-frappe-DFWUc33u.js.map +1 -0
  164. package/tracer-viewer-bundle/assets/catppuccin-latte-C9dUb6Cb.js +12 -0
  165. package/tracer-viewer-bundle/assets/catppuccin-latte-C9dUb6Cb.js.map +1 -0
  166. package/tracer-viewer-bundle/assets/catppuccin-macchiato-DQyhUUbL.js +12 -0
  167. package/tracer-viewer-bundle/assets/catppuccin-macchiato-DQyhUUbL.js.map +1 -0
  168. package/tracer-viewer-bundle/assets/catppuccin-mocha-D87Tk5Gz.js +12 -0
  169. package/tracer-viewer-bundle/assets/catppuccin-mocha-D87Tk5Gz.js.map +1 -0
  170. package/tracer-viewer-bundle/assets/clarity-D53aC0YG.js +13 -0
  171. package/tracer-viewer-bundle/assets/clarity-D53aC0YG.js.map +1 -0
  172. package/tracer-viewer-bundle/assets/clojure-P80f7IUj.js +13 -0
  173. package/tracer-viewer-bundle/assets/clojure-P80f7IUj.js.map +1 -0
  174. package/tracer-viewer-bundle/assets/cmake-D1j8_8rp.js +13 -0
  175. package/tracer-viewer-bundle/assets/cmake-D1j8_8rp.js.map +1 -0
  176. package/tracer-viewer-bundle/assets/cobol-nBiQ_Alo.js +17 -0
  177. package/tracer-viewer-bundle/assets/cobol-nBiQ_Alo.js.map +1 -0
  178. package/tracer-viewer-bundle/assets/codeowners-Bp6g37R7.js +13 -0
  179. package/tracer-viewer-bundle/assets/codeowners-Bp6g37R7.js.map +1 -0
  180. package/tracer-viewer-bundle/assets/codeql-DsOJ9woJ.js +13 -0
  181. package/tracer-viewer-bundle/assets/codeql-DsOJ9woJ.js.map +1 -0
  182. package/tracer-viewer-bundle/assets/coffee-Ch7k5sss.js +14 -0
  183. package/tracer-viewer-bundle/assets/coffee-Ch7k5sss.js.map +1 -0
  184. package/tracer-viewer-bundle/assets/common-lisp-Cg-RD9OK.js +13 -0
  185. package/tracer-viewer-bundle/assets/common-lisp-Cg-RD9OK.js.map +1 -0
  186. package/tracer-viewer-bundle/assets/coq-DkFqJrB1.js +13 -0
  187. package/tracer-viewer-bundle/assets/coq-DkFqJrB1.js.map +1 -0
  188. package/tracer-viewer-bundle/assets/cpp-CofmeUqb.js +23 -0
  189. package/tracer-viewer-bundle/assets/cpp-CofmeUqb.js.map +1 -0
  190. package/tracer-viewer-bundle/assets/crystal-DNxU26gB.js +19 -0
  191. package/tracer-viewer-bundle/assets/crystal-DNxU26gB.js.map +1 -0
  192. package/tracer-viewer-bundle/assets/csharp-COcwbKMJ.js +13 -0
  193. package/tracer-viewer-bundle/assets/csharp-COcwbKMJ.js.map +1 -0
  194. package/tracer-viewer-bundle/assets/css-CLj8gQPS.js +13 -0
  195. package/tracer-viewer-bundle/assets/css-CLj8gQPS.js.map +1 -0
  196. package/tracer-viewer-bundle/assets/csv-fuZLfV_i.js +13 -0
  197. package/tracer-viewer-bundle/assets/csv-fuZLfV_i.js.map +1 -0
  198. package/tracer-viewer-bundle/assets/cue-D82EKSYY.js +13 -0
  199. package/tracer-viewer-bundle/assets/cue-D82EKSYY.js.map +1 -0
  200. package/tracer-viewer-bundle/assets/cypher-COkxafJQ.js +13 -0
  201. package/tracer-viewer-bundle/assets/cypher-COkxafJQ.js.map +1 -0
  202. package/tracer-viewer-bundle/assets/d-85-TOEBH.js +13 -0
  203. package/tracer-viewer-bundle/assets/d-85-TOEBH.js.map +1 -0
  204. package/tracer-viewer-bundle/assets/dark-plus-C3mMm8J8.js +12 -0
  205. package/tracer-viewer-bundle/assets/dark-plus-C3mMm8J8.js.map +1 -0
  206. package/tracer-viewer-bundle/assets/dart-bE4Kk8sk.js +13 -0
  207. package/tracer-viewer-bundle/assets/dart-bE4Kk8sk.js.map +1 -0
  208. package/tracer-viewer-bundle/assets/dax-CEL-wOlO.js +13 -0
  209. package/tracer-viewer-bundle/assets/dax-CEL-wOlO.js.map +1 -0
  210. package/tracer-viewer-bundle/assets/desktop-BmXAJ9_W.js +13 -0
  211. package/tracer-viewer-bundle/assets/desktop-BmXAJ9_W.js.map +1 -0
  212. package/tracer-viewer-bundle/assets/diff-D97Zzqfu.js +13 -0
  213. package/tracer-viewer-bundle/assets/diff-D97Zzqfu.js.map +1 -0
  214. package/tracer-viewer-bundle/assets/docker-BcOcwvcX.js +13 -0
  215. package/tracer-viewer-bundle/assets/docker-BcOcwvcX.js.map +1 -0
  216. package/tracer-viewer-bundle/assets/dotenv-Da5cRb03.js +13 -0
  217. package/tracer-viewer-bundle/assets/dotenv-Da5cRb03.js.map +1 -0
  218. package/tracer-viewer-bundle/assets/dracula-BzJJZx-M.js +12 -0
  219. package/tracer-viewer-bundle/assets/dracula-BzJJZx-M.js.map +1 -0
  220. package/tracer-viewer-bundle/assets/dracula-soft-BXkSAIEj.js +12 -0
  221. package/tracer-viewer-bundle/assets/dracula-soft-BXkSAIEj.js.map +1 -0
  222. package/tracer-viewer-bundle/assets/dream-maker-BtqSS_iP.js +13 -0
  223. package/tracer-viewer-bundle/assets/dream-maker-BtqSS_iP.js.map +1 -0
  224. package/tracer-viewer-bundle/assets/edge-FbVlp4U3.js +18 -0
  225. package/tracer-viewer-bundle/assets/edge-FbVlp4U3.js.map +1 -0
  226. package/tracer-viewer-bundle/assets/elixir-CkH2-t6x.js +16 -0
  227. package/tracer-viewer-bundle/assets/elixir-CkH2-t6x.js.map +1 -0
  228. package/tracer-viewer-bundle/assets/elm-DbKCFpqz.js +15 -0
  229. package/tracer-viewer-bundle/assets/elm-DbKCFpqz.js.map +1 -0
  230. package/tracer-viewer-bundle/assets/emacs-lisp-CXvaQtF9.js +13 -0
  231. package/tracer-viewer-bundle/assets/emacs-lisp-CXvaQtF9.js.map +1 -0
  232. package/tracer-viewer-bundle/assets/erb-BYCe7drp.js +32 -0
  233. package/tracer-viewer-bundle/assets/erb-BYCe7drp.js.map +1 -0
  234. package/tracer-viewer-bundle/assets/erlang-DsQrWhSR.js +14 -0
  235. package/tracer-viewer-bundle/assets/erlang-DsQrWhSR.js.map +1 -0
  236. package/tracer-viewer-bundle/assets/everforest-dark-BgDCqdQA.js +12 -0
  237. package/tracer-viewer-bundle/assets/everforest-dark-BgDCqdQA.js.map +1 -0
  238. package/tracer-viewer-bundle/assets/everforest-light-C8M2exoo.js +12 -0
  239. package/tracer-viewer-bundle/assets/everforest-light-C8M2exoo.js.map +1 -0
  240. package/tracer-viewer-bundle/assets/favicon-DRSNNJwn.svg +3 -0
  241. package/tracer-viewer-bundle/assets/fennel-BYunw83y.js +13 -0
  242. package/tracer-viewer-bundle/assets/fennel-BYunw83y.js.map +1 -0
  243. package/tracer-viewer-bundle/assets/fish-BvzEVeQv.js +13 -0
  244. package/tracer-viewer-bundle/assets/fish-BvzEVeQv.js.map +1 -0
  245. package/tracer-viewer-bundle/assets/fluent-C4IJs8-o.js +13 -0
  246. package/tracer-viewer-bundle/assets/fluent-C4IJs8-o.js.map +1 -0
  247. package/tracer-viewer-bundle/assets/fortran-fixed-form-CkoXwp7k.js +14 -0
  248. package/tracer-viewer-bundle/assets/fortran-fixed-form-CkoXwp7k.js.map +1 -0
  249. package/tracer-viewer-bundle/assets/fortran-free-form-BxgE0vQu.js +13 -0
  250. package/tracer-viewer-bundle/assets/fortran-free-form-BxgE0vQu.js.map +1 -0
  251. package/tracer-viewer-bundle/assets/fsharp-CXgrBDvD.js +14 -0
  252. package/tracer-viewer-bundle/assets/fsharp-CXgrBDvD.js.map +1 -0
  253. package/tracer-viewer-bundle/assets/gdresource-BOOCDP_w.js +15 -0
  254. package/tracer-viewer-bundle/assets/gdresource-BOOCDP_w.js.map +1 -0
  255. package/tracer-viewer-bundle/assets/gdscript-C5YyOfLZ.js +13 -0
  256. package/tracer-viewer-bundle/assets/gdscript-C5YyOfLZ.js.map +1 -0
  257. package/tracer-viewer-bundle/assets/gdshader-DkwncUOv.js +13 -0
  258. package/tracer-viewer-bundle/assets/gdshader-DkwncUOv.js.map +1 -0
  259. package/tracer-viewer-bundle/assets/genie-D0YGMca9.js +13 -0
  260. package/tracer-viewer-bundle/assets/genie-D0YGMca9.js.map +1 -0
  261. package/tracer-viewer-bundle/assets/gherkin-DyxjwDmM.js +13 -0
  262. package/tracer-viewer-bundle/assets/gherkin-DyxjwDmM.js.map +1 -0
  263. package/tracer-viewer-bundle/assets/git-commit-F4YmCXRG.js +14 -0
  264. package/tracer-viewer-bundle/assets/git-commit-F4YmCXRG.js.map +1 -0
  265. package/tracer-viewer-bundle/assets/git-rebase-r7XF79zn.js +14 -0
  266. package/tracer-viewer-bundle/assets/git-rebase-r7XF79zn.js.map +1 -0
  267. package/tracer-viewer-bundle/assets/github-dark-DHJKELXO.js +12 -0
  268. package/tracer-viewer-bundle/assets/github-dark-DHJKELXO.js.map +1 -0
  269. package/tracer-viewer-bundle/assets/github-dark-default-Cuk6v7N8.js +12 -0
  270. package/tracer-viewer-bundle/assets/github-dark-default-Cuk6v7N8.js.map +1 -0
  271. package/tracer-viewer-bundle/assets/github-dark-dimmed-DH5Ifo-i.js +12 -0
  272. package/tracer-viewer-bundle/assets/github-dark-dimmed-DH5Ifo-i.js.map +1 -0
  273. package/tracer-viewer-bundle/assets/github-dark-high-contrast-E3gJ1_iC.js +12 -0
  274. package/tracer-viewer-bundle/assets/github-dark-high-contrast-E3gJ1_iC.js.map +1 -0
  275. package/tracer-viewer-bundle/assets/github-light-DAi9KRSo.js +12 -0
  276. package/tracer-viewer-bundle/assets/github-light-DAi9KRSo.js.map +1 -0
  277. package/tracer-viewer-bundle/assets/github-light-default-D7oLnXFd.js +12 -0
  278. package/tracer-viewer-bundle/assets/github-light-default-D7oLnXFd.js.map +1 -0
  279. package/tracer-viewer-bundle/assets/github-light-high-contrast-BfjtVDDH.js +12 -0
  280. package/tracer-viewer-bundle/assets/github-light-high-contrast-BfjtVDDH.js.map +1 -0
  281. package/tracer-viewer-bundle/assets/gleam-BspZqrRM.js +13 -0
  282. package/tracer-viewer-bundle/assets/gleam-BspZqrRM.js.map +1 -0
  283. package/tracer-viewer-bundle/assets/glimmer-js-ByusRIyA.js +17 -0
  284. package/tracer-viewer-bundle/assets/glimmer-js-ByusRIyA.js.map +1 -0
  285. package/tracer-viewer-bundle/assets/glimmer-ts-BfAWNZQY.js +17 -0
  286. package/tracer-viewer-bundle/assets/glimmer-ts-BfAWNZQY.js.map +1 -0
  287. package/tracer-viewer-bundle/assets/glsl-DplSGwfg.js +14 -0
  288. package/tracer-viewer-bundle/assets/glsl-DplSGwfg.js.map +1 -0
  289. package/tracer-viewer-bundle/assets/gn-n2N0HUVH.js +13 -0
  290. package/tracer-viewer-bundle/assets/gn-n2N0HUVH.js.map +1 -0
  291. package/tracer-viewer-bundle/assets/gnuplot-DdkO51Og.js +13 -0
  292. package/tracer-viewer-bundle/assets/gnuplot-DdkO51Og.js.map +1 -0
  293. package/tracer-viewer-bundle/assets/go-C27-OAKa.js +13 -0
  294. package/tracer-viewer-bundle/assets/go-C27-OAKa.js.map +1 -0
  295. package/tracer-viewer-bundle/assets/graphql-ChdNCCLP.js +17 -0
  296. package/tracer-viewer-bundle/assets/graphql-ChdNCCLP.js.map +1 -0
  297. package/tracer-viewer-bundle/assets/groovy-gcz8RCvz.js +13 -0
  298. package/tracer-viewer-bundle/assets/groovy-gcz8RCvz.js.map +1 -0
  299. package/tracer-viewer-bundle/assets/gruvbox-dark-hard-CFHQjOhq.js +12 -0
  300. package/tracer-viewer-bundle/assets/gruvbox-dark-hard-CFHQjOhq.js.map +1 -0
  301. package/tracer-viewer-bundle/assets/gruvbox-dark-medium-GsRaNv29.js +12 -0
  302. package/tracer-viewer-bundle/assets/gruvbox-dark-medium-GsRaNv29.js.map +1 -0
  303. package/tracer-viewer-bundle/assets/gruvbox-dark-soft-CVdnzihN.js +12 -0
  304. package/tracer-viewer-bundle/assets/gruvbox-dark-soft-CVdnzihN.js.map +1 -0
  305. package/tracer-viewer-bundle/assets/gruvbox-light-hard-CH1njM8p.js +12 -0
  306. package/tracer-viewer-bundle/assets/gruvbox-light-hard-CH1njM8p.js.map +1 -0
  307. package/tracer-viewer-bundle/assets/gruvbox-light-medium-DRw_LuNl.js +12 -0
  308. package/tracer-viewer-bundle/assets/gruvbox-light-medium-DRw_LuNl.js.map +1 -0
  309. package/tracer-viewer-bundle/assets/gruvbox-light-soft-hJgmCMqR.js +12 -0
  310. package/tracer-viewer-bundle/assets/gruvbox-light-soft-hJgmCMqR.js.map +1 -0
  311. package/tracer-viewer-bundle/assets/hack-i7_Ulhet.js +17 -0
  312. package/tracer-viewer-bundle/assets/hack-i7_Ulhet.js.map +1 -0
  313. package/tracer-viewer-bundle/assets/haml-D5jkg6IW.js +15 -0
  314. package/tracer-viewer-bundle/assets/haml-D5jkg6IW.js.map +1 -0
  315. package/tracer-viewer-bundle/assets/handlebars-BpdQsYii.js +17 -0
  316. package/tracer-viewer-bundle/assets/handlebars-BpdQsYii.js.map +1 -0
  317. package/tracer-viewer-bundle/assets/haskell-Df6bDoY_.js +13 -0
  318. package/tracer-viewer-bundle/assets/haskell-Df6bDoY_.js.map +1 -0
  319. package/tracer-viewer-bundle/assets/haxe-CzTSHFRz.js +13 -0
  320. package/tracer-viewer-bundle/assets/haxe-CzTSHFRz.js.map +1 -0
  321. package/tracer-viewer-bundle/assets/hcl-BWvSN4gD.js +13 -0
  322. package/tracer-viewer-bundle/assets/hcl-BWvSN4gD.js.map +1 -0
  323. package/tracer-viewer-bundle/assets/hjson-D5-asLiD.js +13 -0
  324. package/tracer-viewer-bundle/assets/hjson-D5-asLiD.js.map +1 -0
  325. package/tracer-viewer-bundle/assets/hlsl-D3lLCCz7.js +13 -0
  326. package/tracer-viewer-bundle/assets/hlsl-D3lLCCz7.js.map +1 -0
  327. package/tracer-viewer-bundle/assets/horizon-BUw7H-hv.js +12 -0
  328. package/tracer-viewer-bundle/assets/horizon-BUw7H-hv.js.map +1 -0
  329. package/tracer-viewer-bundle/assets/horizon-bright-CUuTKBJd.js +12 -0
  330. package/tracer-viewer-bundle/assets/horizon-bright-CUuTKBJd.js.map +1 -0
  331. package/tracer-viewer-bundle/assets/houston-DnULxvSX.js +12 -0
  332. package/tracer-viewer-bundle/assets/houston-DnULxvSX.js.map +1 -0
  333. package/tracer-viewer-bundle/assets/html-derivative-DlHx6ybY.js +16 -0
  334. package/tracer-viewer-bundle/assets/html-derivative-DlHx6ybY.js.map +1 -0
  335. package/tracer-viewer-bundle/assets/html-pp8916En.js +15 -0
  336. package/tracer-viewer-bundle/assets/html-pp8916En.js.map +1 -0
  337. package/tracer-viewer-bundle/assets/http-jrhK8wxY.js +22 -0
  338. package/tracer-viewer-bundle/assets/http-jrhK8wxY.js.map +1 -0
  339. package/tracer-viewer-bundle/assets/hurl-irOxFIW8.js +21 -0
  340. package/tracer-viewer-bundle/assets/hurl-irOxFIW8.js.map +1 -0
  341. package/tracer-viewer-bundle/assets/hxml-Bvhsp5Yf.js +14 -0
  342. package/tracer-viewer-bundle/assets/hxml-Bvhsp5Yf.js.map +1 -0
  343. package/tracer-viewer-bundle/assets/hy-DFXneXwc.js +13 -0
  344. package/tracer-viewer-bundle/assets/hy-DFXneXwc.js.map +1 -0
  345. package/tracer-viewer-bundle/assets/imba-DGztddWO.js +13 -0
  346. package/tracer-viewer-bundle/assets/imba-DGztddWO.js.map +1 -0
  347. package/tracer-viewer-bundle/assets/index-CIRSNBm6.css +4792 -0
  348. package/tracer-viewer-bundle/assets/index-DS0dKIBi.js +36912 -0
  349. package/tracer-viewer-bundle/assets/index-DS0dKIBi.js.map +1 -0
  350. package/tracer-viewer-bundle/assets/ini-BEwlwnbL.js +13 -0
  351. package/tracer-viewer-bundle/assets/ini-BEwlwnbL.js.map +1 -0
  352. package/tracer-viewer-bundle/assets/java-CylS5w8V.js +13 -0
  353. package/tracer-viewer-bundle/assets/java-CylS5w8V.js.map +1 -0
  354. package/tracer-viewer-bundle/assets/javascript-wDzz0qaB.js +13 -0
  355. package/tracer-viewer-bundle/assets/javascript-wDzz0qaB.js.map +1 -0
  356. package/tracer-viewer-bundle/assets/jinja-f2NsQr07.js +22 -0
  357. package/tracer-viewer-bundle/assets/jinja-f2NsQr07.js.map +1 -0
  358. package/tracer-viewer-bundle/assets/jison-wvAkD_A8.js +14 -0
  359. package/tracer-viewer-bundle/assets/jison-wvAkD_A8.js.map +1 -0
  360. package/tracer-viewer-bundle/assets/json-Cp-IABpG.js +13 -0
  361. package/tracer-viewer-bundle/assets/json-Cp-IABpG.js.map +1 -0
  362. package/tracer-viewer-bundle/assets/json5-C9tS-k6U.js +13 -0
  363. package/tracer-viewer-bundle/assets/json5-C9tS-k6U.js.map +1 -0
  364. package/tracer-viewer-bundle/assets/jsonc-Des-eS-w.js +13 -0
  365. package/tracer-viewer-bundle/assets/jsonc-Des-eS-w.js.map +1 -0
  366. package/tracer-viewer-bundle/assets/jsonl-DcaNXYhu.js +13 -0
  367. package/tracer-viewer-bundle/assets/jsonl-DcaNXYhu.js.map +1 -0
  368. package/tracer-viewer-bundle/assets/jsonnet-DFQXde-d.js +13 -0
  369. package/tracer-viewer-bundle/assets/jsonnet-DFQXde-d.js.map +1 -0
  370. package/tracer-viewer-bundle/assets/jssm-C2t-YnRu.js +13 -0
  371. package/tracer-viewer-bundle/assets/jssm-C2t-YnRu.js.map +1 -0
  372. package/tracer-viewer-bundle/assets/jsx-g9-lgVsj.js +13 -0
  373. package/tracer-viewer-bundle/assets/jsx-g9-lgVsj.js.map +1 -0
  374. package/tracer-viewer-bundle/assets/julia-CxzCAyBv.js +21 -0
  375. package/tracer-viewer-bundle/assets/julia-CxzCAyBv.js.map +1 -0
  376. package/tracer-viewer-bundle/assets/just-VxiPbLrw.js +34 -0
  377. package/tracer-viewer-bundle/assets/just-VxiPbLrw.js.map +1 -0
  378. package/tracer-viewer-bundle/assets/kanagawa-dragon-CkXjmgJE.js +12 -0
  379. package/tracer-viewer-bundle/assets/kanagawa-dragon-CkXjmgJE.js.map +1 -0
  380. package/tracer-viewer-bundle/assets/kanagawa-lotus-CfQXZHmo.js +12 -0
  381. package/tracer-viewer-bundle/assets/kanagawa-lotus-CfQXZHmo.js.map +1 -0
  382. package/tracer-viewer-bundle/assets/kanagawa-wave-DWedfzmr.js +12 -0
  383. package/tracer-viewer-bundle/assets/kanagawa-wave-DWedfzmr.js.map +1 -0
  384. package/tracer-viewer-bundle/assets/kdl-DV7GczEv.js +13 -0
  385. package/tracer-viewer-bundle/assets/kdl-DV7GczEv.js.map +1 -0
  386. package/tracer-viewer-bundle/assets/kotlin-BdnUsdx6.js +13 -0
  387. package/tracer-viewer-bundle/assets/kotlin-BdnUsdx6.js.map +1 -0
  388. package/tracer-viewer-bundle/assets/kusto-wEQ09or8.js +13 -0
  389. package/tracer-viewer-bundle/assets/kusto-wEQ09or8.js.map +1 -0
  390. package/tracer-viewer-bundle/assets/laserwave-DUszq2jm.js +12 -0
  391. package/tracer-viewer-bundle/assets/laserwave-DUszq2jm.js.map +1 -0
  392. package/tracer-viewer-bundle/assets/latex-CWtU0Tv5.js +15 -0
  393. package/tracer-viewer-bundle/assets/latex-CWtU0Tv5.js.map +1 -0
  394. package/tracer-viewer-bundle/assets/lean-BZvkOJ9d.js +13 -0
  395. package/tracer-viewer-bundle/assets/lean-BZvkOJ9d.js.map +1 -0
  396. package/tracer-viewer-bundle/assets/less-B1dDrJ26.js +13 -0
  397. package/tracer-viewer-bundle/assets/less-B1dDrJ26.js.map +1 -0
  398. package/tracer-viewer-bundle/assets/light-plus-B7mTdjB0.js +12 -0
  399. package/tracer-viewer-bundle/assets/light-plus-B7mTdjB0.js.map +1 -0
  400. package/tracer-viewer-bundle/assets/liquid-C0sCDyMI.js +17 -0
  401. package/tracer-viewer-bundle/assets/liquid-C0sCDyMI.js.map +1 -0
  402. package/tracer-viewer-bundle/assets/llvm-DjAJT7YJ.js +13 -0
  403. package/tracer-viewer-bundle/assets/llvm-DjAJT7YJ.js.map +1 -0
  404. package/tracer-viewer-bundle/assets/log-2UxHyX5q.js +13 -0
  405. package/tracer-viewer-bundle/assets/log-2UxHyX5q.js.map +1 -0
  406. package/tracer-viewer-bundle/assets/logo-BtOb2qkB.js +13 -0
  407. package/tracer-viewer-bundle/assets/logo-BtOb2qkB.js.map +1 -0
  408. package/tracer-viewer-bundle/assets/lua-BaeVxFsk.js +14 -0
  409. package/tracer-viewer-bundle/assets/lua-BaeVxFsk.js.map +1 -0
  410. package/tracer-viewer-bundle/assets/luau-C-HG3fhB.js +13 -0
  411. package/tracer-viewer-bundle/assets/luau-C-HG3fhB.js.map +1 -0
  412. package/tracer-viewer-bundle/assets/make-CHLpvVh8.js +13 -0
  413. package/tracer-viewer-bundle/assets/make-CHLpvVh8.js.map +1 -0
  414. package/tracer-viewer-bundle/assets/markdown-Cvjx9yec.js +13 -0
  415. package/tracer-viewer-bundle/assets/markdown-Cvjx9yec.js.map +1 -0
  416. package/tracer-viewer-bundle/assets/marko-DjSrsDqO.js +17 -0
  417. package/tracer-viewer-bundle/assets/marko-DjSrsDqO.js.map +1 -0
  418. package/tracer-viewer-bundle/assets/material-theme-D5KoaKCx.js +12 -0
  419. package/tracer-viewer-bundle/assets/material-theme-D5KoaKCx.js.map +1 -0
  420. package/tracer-viewer-bundle/assets/material-theme-darker-BfHTSMKl.js +12 -0
  421. package/tracer-viewer-bundle/assets/material-theme-darker-BfHTSMKl.js.map +1 -0
  422. package/tracer-viewer-bundle/assets/material-theme-lighter-B0m2ddpp.js +12 -0
  423. package/tracer-viewer-bundle/assets/material-theme-lighter-B0m2ddpp.js.map +1 -0
  424. package/tracer-viewer-bundle/assets/material-theme-ocean-CyktbL80.js +12 -0
  425. package/tracer-viewer-bundle/assets/material-theme-ocean-CyktbL80.js.map +1 -0
  426. package/tracer-viewer-bundle/assets/material-theme-palenight-Csfq5Kiy.js +12 -0
  427. package/tracer-viewer-bundle/assets/material-theme-palenight-Csfq5Kiy.js.map +1 -0
  428. package/tracer-viewer-bundle/assets/matlab-D7o27uSR.js +13 -0
  429. package/tracer-viewer-bundle/assets/matlab-D7o27uSR.js.map +1 -0
  430. package/tracer-viewer-bundle/assets/mdc-DTYItulj.js +19 -0
  431. package/tracer-viewer-bundle/assets/mdc-DTYItulj.js.map +1 -0
  432. package/tracer-viewer-bundle/assets/mdx-Cmh6b_Ma.js +13 -0
  433. package/tracer-viewer-bundle/assets/mdx-Cmh6b_Ma.js.map +1 -0
  434. package/tracer-viewer-bundle/assets/mermaid-mWjccvbQ.js +13 -0
  435. package/tracer-viewer-bundle/assets/mermaid-mWjccvbQ.js.map +1 -0
  436. package/tracer-viewer-bundle/assets/min-dark-CafNBF8u.js +12 -0
  437. package/tracer-viewer-bundle/assets/min-dark-CafNBF8u.js.map +1 -0
  438. package/tracer-viewer-bundle/assets/min-light-CTRr51gU.js +12 -0
  439. package/tracer-viewer-bundle/assets/min-light-CTRr51gU.js.map +1 -0
  440. package/tracer-viewer-bundle/assets/mipsasm-CKIfxQSi.js +13 -0
  441. package/tracer-viewer-bundle/assets/mipsasm-CKIfxQSi.js.map +1 -0
  442. package/tracer-viewer-bundle/assets/mojo-rZm6bMo-.js +13 -0
  443. package/tracer-viewer-bundle/assets/mojo-rZm6bMo-.js.map +1 -0
  444. package/tracer-viewer-bundle/assets/monokai-D4h5O-jR.js +12 -0
  445. package/tracer-viewer-bundle/assets/monokai-D4h5O-jR.js.map +1 -0
  446. package/tracer-viewer-bundle/assets/moonbit-_H4v1dQx.js +13 -0
  447. package/tracer-viewer-bundle/assets/moonbit-_H4v1dQx.js.map +1 -0
  448. package/tracer-viewer-bundle/assets/move-IF9eRakj.js +13 -0
  449. package/tracer-viewer-bundle/assets/move-IF9eRakj.js.map +1 -0
  450. package/tracer-viewer-bundle/assets/narrat-DRg8JJMk.js +13 -0
  451. package/tracer-viewer-bundle/assets/narrat-DRg8JJMk.js.map +1 -0
  452. package/tracer-viewer-bundle/assets/nextflow-C-mBbutL.js +14 -0
  453. package/tracer-viewer-bundle/assets/nextflow-C-mBbutL.js.map +1 -0
  454. package/tracer-viewer-bundle/assets/nextflow-groovy-vE_lwT2v.js +13 -0
  455. package/tracer-viewer-bundle/assets/nextflow-groovy-vE_lwT2v.js.map +1 -0
  456. package/tracer-viewer-bundle/assets/nginx-BpAMiNFr.js +15 -0
  457. package/tracer-viewer-bundle/assets/nginx-BpAMiNFr.js.map +1 -0
  458. package/tracer-viewer-bundle/assets/night-owl-C39BiMTA.js +12 -0
  459. package/tracer-viewer-bundle/assets/night-owl-C39BiMTA.js.map +1 -0
  460. package/tracer-viewer-bundle/assets/night-owl-light-CMTm3GFP.js +12 -0
  461. package/tracer-viewer-bundle/assets/night-owl-light-CMTm3GFP.js.map +1 -0
  462. package/tracer-viewer-bundle/assets/nim-BIad80T-.js +21 -0
  463. package/tracer-viewer-bundle/assets/nim-BIad80T-.js.map +1 -0
  464. package/tracer-viewer-bundle/assets/nix-CwoSXNpI.js +19 -0
  465. package/tracer-viewer-bundle/assets/nix-CwoSXNpI.js.map +1 -0
  466. package/tracer-viewer-bundle/assets/nord-Ddv68eIx.js +12 -0
  467. package/tracer-viewer-bundle/assets/nord-Ddv68eIx.js.map +1 -0
  468. package/tracer-viewer-bundle/assets/nushell-Cz2AlsmD.js +13 -0
  469. package/tracer-viewer-bundle/assets/nushell-Cz2AlsmD.js.map +1 -0
  470. package/tracer-viewer-bundle/assets/objective-c-DXmwc3jG.js +13 -0
  471. package/tracer-viewer-bundle/assets/objective-c-DXmwc3jG.js.map +1 -0
  472. package/tracer-viewer-bundle/assets/objective-cpp-CLxacb5B.js +13 -0
  473. package/tracer-viewer-bundle/assets/objective-cpp-CLxacb5B.js.map +1 -0
  474. package/tracer-viewer-bundle/assets/ocaml-C0hk2d4L.js +13 -0
  475. package/tracer-viewer-bundle/assets/ocaml-C0hk2d4L.js.map +1 -0
  476. package/tracer-viewer-bundle/assets/odin-BBf5iR-q.js +13 -0
  477. package/tracer-viewer-bundle/assets/odin-BBf5iR-q.js.map +1 -0
  478. package/tracer-viewer-bundle/assets/one-dark-pro-DVMEJ2y_.js +12 -0
  479. package/tracer-viewer-bundle/assets/one-dark-pro-DVMEJ2y_.js.map +1 -0
  480. package/tracer-viewer-bundle/assets/one-light-C3Wv6jpd.js +12 -0
  481. package/tracer-viewer-bundle/assets/one-light-C3Wv6jpd.js.map +1 -0
  482. package/tracer-viewer-bundle/assets/openscad-C4EeE6gA.js +13 -0
  483. package/tracer-viewer-bundle/assets/openscad-C4EeE6gA.js.map +1 -0
  484. package/tracer-viewer-bundle/assets/pascal-D93ZcfNL.js +13 -0
  485. package/tracer-viewer-bundle/assets/pascal-D93ZcfNL.js.map +1 -0
  486. package/tracer-viewer-bundle/assets/perl-NvoQZIq0.js +19 -0
  487. package/tracer-viewer-bundle/assets/perl-NvoQZIq0.js.map +1 -0
  488. package/tracer-viewer-bundle/assets/php-R6g_5hLQ.js +20 -0
  489. package/tracer-viewer-bundle/assets/php-R6g_5hLQ.js.map +1 -0
  490. package/tracer-viewer-bundle/assets/pkl-u5AG7uiY.js +13 -0
  491. package/tracer-viewer-bundle/assets/pkl-u5AG7uiY.js.map +1 -0
  492. package/tracer-viewer-bundle/assets/plastic-3e1v2bzS.js +12 -0
  493. package/tracer-viewer-bundle/assets/plastic-3e1v2bzS.js.map +1 -0
  494. package/tracer-viewer-bundle/assets/plsql-ChMvpjG-.js +13 -0
  495. package/tracer-viewer-bundle/assets/plsql-ChMvpjG-.js.map +1 -0
  496. package/tracer-viewer-bundle/assets/po-BTJTHyun.js +13 -0
  497. package/tracer-viewer-bundle/assets/po-BTJTHyun.js.map +1 -0
  498. package/tracer-viewer-bundle/assets/poimandres-CS3Unz2-.js +12 -0
  499. package/tracer-viewer-bundle/assets/poimandres-CS3Unz2-.js.map +1 -0
  500. package/tracer-viewer-bundle/assets/polar-C0HS_06l.js +13 -0
  501. package/tracer-viewer-bundle/assets/polar-C0HS_06l.js.map +1 -0
  502. package/tracer-viewer-bundle/assets/postcss-CXtECtnM.js +13 -0
  503. package/tracer-viewer-bundle/assets/postcss-CXtECtnM.js.map +1 -0
  504. package/tracer-viewer-bundle/assets/powerquery-CEu0bR-o.js +13 -0
  505. package/tracer-viewer-bundle/assets/powerquery-CEu0bR-o.js.map +1 -0
  506. package/tracer-viewer-bundle/assets/powershell-Dpen1YoG.js +13 -0
  507. package/tracer-viewer-bundle/assets/powershell-Dpen1YoG.js.map +1 -0
  508. package/tracer-viewer-bundle/assets/prisma-Dd19v3D-.js +13 -0
  509. package/tracer-viewer-bundle/assets/prisma-Dd19v3D-.js.map +1 -0
  510. package/tracer-viewer-bundle/assets/prolog-CbFg5uaA.js +13 -0
  511. package/tracer-viewer-bundle/assets/prolog-CbFg5uaA.js.map +1 -0
  512. package/tracer-viewer-bundle/assets/proto-C7zT0LnQ.js +13 -0
  513. package/tracer-viewer-bundle/assets/proto-C7zT0LnQ.js.map +1 -0
  514. package/tracer-viewer-bundle/assets/pug-DKIMFp6K.js +16 -0
  515. package/tracer-viewer-bundle/assets/pug-DKIMFp6K.js.map +1 -0
  516. package/tracer-viewer-bundle/assets/puppet-BMWR74SV.js +13 -0
  517. package/tracer-viewer-bundle/assets/puppet-BMWR74SV.js.map +1 -0
  518. package/tracer-viewer-bundle/assets/purescript-CklMAg4u.js +13 -0
  519. package/tracer-viewer-bundle/assets/purescript-CklMAg4u.js.map +1 -0
  520. package/tracer-viewer-bundle/assets/python-B6aJPvgy.js +13 -0
  521. package/tracer-viewer-bundle/assets/python-B6aJPvgy.js.map +1 -0
  522. package/tracer-viewer-bundle/assets/qml-3beO22l8.js +14 -0
  523. package/tracer-viewer-bundle/assets/qml-3beO22l8.js.map +1 -0
  524. package/tracer-viewer-bundle/assets/qmldir-C8lEn-DE.js +13 -0
  525. package/tracer-viewer-bundle/assets/qmldir-C8lEn-DE.js.map +1 -0
  526. package/tracer-viewer-bundle/assets/qss-IeuSbFQv.js +13 -0
  527. package/tracer-viewer-bundle/assets/qss-IeuSbFQv.js.map +1 -0
  528. package/tracer-viewer-bundle/assets/r-Dspwwk_N.js +13 -0
  529. package/tracer-viewer-bundle/assets/r-Dspwwk_N.js.map +1 -0
  530. package/tracer-viewer-bundle/assets/racket-BqYA7rlc.js +13 -0
  531. package/tracer-viewer-bundle/assets/racket-BqYA7rlc.js.map +1 -0
  532. package/tracer-viewer-bundle/assets/raku-DXvB9xmW.js +13 -0
  533. package/tracer-viewer-bundle/assets/raku-DXvB9xmW.js.map +1 -0
  534. package/tracer-viewer-bundle/assets/razor-BDqjjVU7.js +17 -0
  535. package/tracer-viewer-bundle/assets/razor-BDqjjVU7.js.map +1 -0
  536. package/tracer-viewer-bundle/assets/red-bN70gL4F.js +12 -0
  537. package/tracer-viewer-bundle/assets/red-bN70gL4F.js.map +1 -0
  538. package/tracer-viewer-bundle/assets/reg-C-SQnVFl.js +13 -0
  539. package/tracer-viewer-bundle/assets/reg-C-SQnVFl.js.map +1 -0
  540. package/tracer-viewer-bundle/assets/regexp-CDVJQ6XC.js +13 -0
  541. package/tracer-viewer-bundle/assets/regexp-CDVJQ6XC.js.map +1 -0
  542. package/tracer-viewer-bundle/assets/rel-C3B-1QV4.js +13 -0
  543. package/tracer-viewer-bundle/assets/rel-C3B-1QV4.js.map +1 -0
  544. package/tracer-viewer-bundle/assets/riscv-BM1_JUlF.js +13 -0
  545. package/tracer-viewer-bundle/assets/riscv-BM1_JUlF.js.map +1 -0
  546. package/tracer-viewer-bundle/assets/ron-D8l8udqQ.js +13 -0
  547. package/tracer-viewer-bundle/assets/ron-D8l8udqQ.js.map +1 -0
  548. package/tracer-viewer-bundle/assets/rose-pine-dawn-DHQR4-dF.js +12 -0
  549. package/tracer-viewer-bundle/assets/rose-pine-dawn-DHQR4-dF.js.map +1 -0
  550. package/tracer-viewer-bundle/assets/rose-pine-moon-D4_iv3hh.js +12 -0
  551. package/tracer-viewer-bundle/assets/rose-pine-moon-D4_iv3hh.js.map +1 -0
  552. package/tracer-viewer-bundle/assets/rose-pine-qdsjHGoJ.js +12 -0
  553. package/tracer-viewer-bundle/assets/rose-pine-qdsjHGoJ.js.map +1 -0
  554. package/tracer-viewer-bundle/assets/rosmsg-BJDFO7_C.js +13 -0
  555. package/tracer-viewer-bundle/assets/rosmsg-BJDFO7_C.js.map +1 -0
  556. package/tracer-viewer-bundle/assets/rst-CRjBmOyv.js +35 -0
  557. package/tracer-viewer-bundle/assets/rst-CRjBmOyv.js.map +1 -0
  558. package/tracer-viewer-bundle/assets/ruby-Wjq7vjNf.js +31 -0
  559. package/tracer-viewer-bundle/assets/ruby-Wjq7vjNf.js.map +1 -0
  560. package/tracer-viewer-bundle/assets/rust-B1yitclQ.js +13 -0
  561. package/tracer-viewer-bundle/assets/rust-B1yitclQ.js.map +1 -0
  562. package/tracer-viewer-bundle/assets/sas-cz2c8ADy.js +14 -0
  563. package/tracer-viewer-bundle/assets/sas-cz2c8ADy.js.map +1 -0
  564. package/tracer-viewer-bundle/assets/sass-Cj5Yp3dK.js +13 -0
  565. package/tracer-viewer-bundle/assets/sass-Cj5Yp3dK.js.map +1 -0
  566. package/tracer-viewer-bundle/assets/scala-C151Ov-r.js +13 -0
  567. package/tracer-viewer-bundle/assets/scala-C151Ov-r.js.map +1 -0
  568. package/tracer-viewer-bundle/assets/scheme-C98Dy4si.js +13 -0
  569. package/tracer-viewer-bundle/assets/scheme-C98Dy4si.js.map +1 -0
  570. package/tracer-viewer-bundle/assets/scss-D5BDwBP9.js +14 -0
  571. package/tracer-viewer-bundle/assets/scss-D5BDwBP9.js.map +1 -0
  572. package/tracer-viewer-bundle/assets/sdbl-DVxCFoDh.js +13 -0
  573. package/tracer-viewer-bundle/assets/sdbl-DVxCFoDh.js.map +1 -0
  574. package/tracer-viewer-bundle/assets/shaderlab-Dg9Lc6iA.js +14 -0
  575. package/tracer-viewer-bundle/assets/shaderlab-Dg9Lc6iA.js.map +1 -0
  576. package/tracer-viewer-bundle/assets/shellscript-Yzrsuije.js +13 -0
  577. package/tracer-viewer-bundle/assets/shellscript-Yzrsuije.js.map +1 -0
  578. package/tracer-viewer-bundle/assets/shellsession-BADoaaVG.js +14 -0
  579. package/tracer-viewer-bundle/assets/shellsession-BADoaaVG.js.map +1 -0
  580. package/tracer-viewer-bundle/assets/slack-dark-BthQWCQV.js +12 -0
  581. package/tracer-viewer-bundle/assets/slack-dark-BthQWCQV.js.map +1 -0
  582. package/tracer-viewer-bundle/assets/slack-ochin-DqwNpetd.js +12 -0
  583. package/tracer-viewer-bundle/assets/slack-ochin-DqwNpetd.js.map +1 -0
  584. package/tracer-viewer-bundle/assets/smalltalk-BERRCDM3.js +13 -0
  585. package/tracer-viewer-bundle/assets/smalltalk-BERRCDM3.js.map +1 -0
  586. package/tracer-viewer-bundle/assets/snazzy-light-Bw305WKR.js +12 -0
  587. package/tracer-viewer-bundle/assets/snazzy-light-Bw305WKR.js.map +1 -0
  588. package/tracer-viewer-bundle/assets/solarized-dark-DXbdFlpD.js +12 -0
  589. package/tracer-viewer-bundle/assets/solarized-dark-DXbdFlpD.js.map +1 -0
  590. package/tracer-viewer-bundle/assets/solarized-light-L9t79GZl.js +12 -0
  591. package/tracer-viewer-bundle/assets/solarized-light-L9t79GZl.js.map +1 -0
  592. package/tracer-viewer-bundle/assets/solidity-rGO070M0.js +13 -0
  593. package/tracer-viewer-bundle/assets/solidity-rGO070M0.js.map +1 -0
  594. package/tracer-viewer-bundle/assets/soy-8wufbnw4.js +16 -0
  595. package/tracer-viewer-bundle/assets/soy-8wufbnw4.js.map +1 -0
  596. package/tracer-viewer-bundle/assets/sparql-rVzFXLq3.js +14 -0
  597. package/tracer-viewer-bundle/assets/sparql-rVzFXLq3.js.map +1 -0
  598. package/tracer-viewer-bundle/assets/splunk-BtCnVYZw.js +13 -0
  599. package/tracer-viewer-bundle/assets/splunk-BtCnVYZw.js.map +1 -0
  600. package/tracer-viewer-bundle/assets/sql-BLtJtn59.js +13 -0
  601. package/tracer-viewer-bundle/assets/sql-BLtJtn59.js.map +1 -0
  602. package/tracer-viewer-bundle/assets/ssh-config-_ykCGR6B.js +13 -0
  603. package/tracer-viewer-bundle/assets/ssh-config-_ykCGR6B.js.map +1 -0
  604. package/tracer-viewer-bundle/assets/stata-BH5u7GGu.js +14 -0
  605. package/tracer-viewer-bundle/assets/stata-BH5u7GGu.js.map +1 -0
  606. package/tracer-viewer-bundle/assets/stylus-BEDo0Tqx.js +13 -0
  607. package/tracer-viewer-bundle/assets/stylus-BEDo0Tqx.js.map +1 -0
  608. package/tracer-viewer-bundle/assets/surrealql-Bq5Q-fJD.js +14 -0
  609. package/tracer-viewer-bundle/assets/surrealql-Bq5Q-fJD.js.map +1 -0
  610. package/tracer-viewer-bundle/assets/svelte-Cy7k_4gC.js +17 -0
  611. package/tracer-viewer-bundle/assets/svelte-Cy7k_4gC.js.map +1 -0
  612. package/tracer-viewer-bundle/assets/swift-D82vCrfD.js +13 -0
  613. package/tracer-viewer-bundle/assets/swift-D82vCrfD.js.map +1 -0
  614. package/tracer-viewer-bundle/assets/synthwave-84-CbfX1IO0.js +12 -0
  615. package/tracer-viewer-bundle/assets/synthwave-84-CbfX1IO0.js.map +1 -0
  616. package/tracer-viewer-bundle/assets/system-verilog-CnnmHF94.js +13 -0
  617. package/tracer-viewer-bundle/assets/system-verilog-CnnmHF94.js.map +1 -0
  618. package/tracer-viewer-bundle/assets/systemd-4A_iFExJ.js +13 -0
  619. package/tracer-viewer-bundle/assets/systemd-4A_iFExJ.js.map +1 -0
  620. package/tracer-viewer-bundle/assets/talonscript-CkByrt1z.js +13 -0
  621. package/tracer-viewer-bundle/assets/talonscript-CkByrt1z.js.map +1 -0
  622. package/tracer-viewer-bundle/assets/tasl-QIJgUcNo.js +13 -0
  623. package/tracer-viewer-bundle/assets/tasl-QIJgUcNo.js.map +1 -0
  624. package/tracer-viewer-bundle/assets/tcl-dwOrl1Do.js +13 -0
  625. package/tracer-viewer-bundle/assets/tcl-dwOrl1Do.js.map +1 -0
  626. package/tracer-viewer-bundle/assets/templ-DhtptRzy.js +16 -0
  627. package/tracer-viewer-bundle/assets/templ-DhtptRzy.js.map +1 -0
  628. package/tracer-viewer-bundle/assets/terraform-BETggiCN.js +13 -0
  629. package/tracer-viewer-bundle/assets/terraform-BETggiCN.js.map +1 -0
  630. package/tracer-viewer-bundle/assets/tex-idrVyKtj.js +14 -0
  631. package/tracer-viewer-bundle/assets/tex-idrVyKtj.js.map +1 -0
  632. package/tracer-viewer-bundle/assets/tokyo-night-hegEt444.js +12 -0
  633. package/tracer-viewer-bundle/assets/tokyo-night-hegEt444.js.map +1 -0
  634. package/tracer-viewer-bundle/assets/toml-vGWfd6FD.js +13 -0
  635. package/tracer-viewer-bundle/assets/toml-vGWfd6FD.js.map +1 -0
  636. package/tracer-viewer-bundle/assets/ts-tags-DQrlYJgV.js +52 -0
  637. package/tracer-viewer-bundle/assets/ts-tags-DQrlYJgV.js.map +1 -0
  638. package/tracer-viewer-bundle/assets/tsv-B_m7g4N7.js +13 -0
  639. package/tracer-viewer-bundle/assets/tsv-B_m7g4N7.js.map +1 -0
  640. package/tracer-viewer-bundle/assets/tsx-COt5Ahok.js +13 -0
  641. package/tracer-viewer-bundle/assets/tsx-COt5Ahok.js.map +1 -0
  642. package/tracer-viewer-bundle/assets/turtle-BsS91CYL.js +13 -0
  643. package/tracer-viewer-bundle/assets/turtle-BsS91CYL.js.map +1 -0
  644. package/tracer-viewer-bundle/assets/twig-xg9kU7Mw.js +36 -0
  645. package/tracer-viewer-bundle/assets/twig-xg9kU7Mw.js.map +1 -0
  646. package/tracer-viewer-bundle/assets/typescript-BPQ3VLAy.js +13 -0
  647. package/tracer-viewer-bundle/assets/typescript-BPQ3VLAy.js.map +1 -0
  648. package/tracer-viewer-bundle/assets/typespec-CAFt9gP4.js +13 -0
  649. package/tracer-viewer-bundle/assets/typespec-CAFt9gP4.js.map +1 -0
  650. package/tracer-viewer-bundle/assets/typst-DHCkPAjA.js +13 -0
  651. package/tracer-viewer-bundle/assets/typst-DHCkPAjA.js.map +1 -0
  652. package/tracer-viewer-bundle/assets/v-BcVCzyr7.js +13 -0
  653. package/tracer-viewer-bundle/assets/v-BcVCzyr7.js.map +1 -0
  654. package/tracer-viewer-bundle/assets/vala-CsfeWuGM.js +13 -0
  655. package/tracer-viewer-bundle/assets/vala-CsfeWuGM.js.map +1 -0
  656. package/tracer-viewer-bundle/assets/vb-D17OF-Vu.js +13 -0
  657. package/tracer-viewer-bundle/assets/vb-D17OF-Vu.js.map +1 -0
  658. package/tracer-viewer-bundle/assets/verilog-BQ8w6xss.js +13 -0
  659. package/tracer-viewer-bundle/assets/verilog-BQ8w6xss.js.map +1 -0
  660. package/tracer-viewer-bundle/assets/vesper-DU1UobuO.js +12 -0
  661. package/tracer-viewer-bundle/assets/vesper-DU1UobuO.js.map +1 -0
  662. package/tracer-viewer-bundle/assets/vhdl-CeAyd5Ju.js +13 -0
  663. package/tracer-viewer-bundle/assets/vhdl-CeAyd5Ju.js.map +1 -0
  664. package/tracer-viewer-bundle/assets/viml-CJc9bBzg.js +13 -0
  665. package/tracer-viewer-bundle/assets/viml-CJc9bBzg.js.map +1 -0
  666. package/tracer-viewer-bundle/assets/vitesse-black-Bkuqu6BP.js +12 -0
  667. package/tracer-viewer-bundle/assets/vitesse-black-Bkuqu6BP.js.map +1 -0
  668. package/tracer-viewer-bundle/assets/vitesse-dark-D0r3Knsf.js +12 -0
  669. package/tracer-viewer-bundle/assets/vitesse-dark-D0r3Knsf.js.map +1 -0
  670. package/tracer-viewer-bundle/assets/vitesse-light-CVO1_9PV.js +12 -0
  671. package/tracer-viewer-bundle/assets/vitesse-light-CVO1_9PV.js.map +1 -0
  672. package/tracer-viewer-bundle/assets/vue-D2xRrEX4.js +43 -0
  673. package/tracer-viewer-bundle/assets/vue-D2xRrEX4.js.map +1 -0
  674. package/tracer-viewer-bundle/assets/vue-html-AaS7Mt5G.js +14 -0
  675. package/tracer-viewer-bundle/assets/vue-html-AaS7Mt5G.js.map +1 -0
  676. package/tracer-viewer-bundle/assets/vue-vine-BoDAl6tE.js +19 -0
  677. package/tracer-viewer-bundle/assets/vue-vine-BoDAl6tE.js.map +1 -0
  678. package/tracer-viewer-bundle/assets/vyper-CDx5xZoG.js +13 -0
  679. package/tracer-viewer-bundle/assets/vyper-CDx5xZoG.js.map +1 -0
  680. package/tracer-viewer-bundle/assets/wasm-CG6Dc4jp.js +15 -0
  681. package/tracer-viewer-bundle/assets/wasm-CG6Dc4jp.js.map +1 -0
  682. package/tracer-viewer-bundle/assets/wasm-MzD3tlZU.js +13 -0
  683. package/tracer-viewer-bundle/assets/wasm-MzD3tlZU.js.map +1 -0
  684. package/tracer-viewer-bundle/assets/wenyan-BV7otONQ.js +13 -0
  685. package/tracer-viewer-bundle/assets/wenyan-BV7otONQ.js.map +1 -0
  686. package/tracer-viewer-bundle/assets/wgsl-Dx-B1_4e.js +13 -0
  687. package/tracer-viewer-bundle/assets/wgsl-Dx-B1_4e.js.map +1 -0
  688. package/tracer-viewer-bundle/assets/wikitext-BhOHFoWU.js +13 -0
  689. package/tracer-viewer-bundle/assets/wikitext-BhOHFoWU.js.map +1 -0
  690. package/tracer-viewer-bundle/assets/wit-5i3qLPDT.js +13 -0
  691. package/tracer-viewer-bundle/assets/wit-5i3qLPDT.js.map +1 -0
  692. package/tracer-viewer-bundle/assets/wolfram-lXgVvXCa.js +13 -0
  693. package/tracer-viewer-bundle/assets/wolfram-lXgVvXCa.js.map +1 -0
  694. package/tracer-viewer-bundle/assets/xml-sdJ4AIDG.js +14 -0
  695. package/tracer-viewer-bundle/assets/xml-sdJ4AIDG.js.map +1 -0
  696. package/tracer-viewer-bundle/assets/xsl-CtQFsRM5.js +15 -0
  697. package/tracer-viewer-bundle/assets/xsl-CtQFsRM5.js.map +1 -0
  698. package/tracer-viewer-bundle/assets/yaml-Buea-lGh.js +13 -0
  699. package/tracer-viewer-bundle/assets/yaml-Buea-lGh.js.map +1 -0
  700. package/tracer-viewer-bundle/assets/zenscript-DVFEvuxE.js +13 -0
  701. package/tracer-viewer-bundle/assets/zenscript-DVFEvuxE.js.map +1 -0
  702. package/tracer-viewer-bundle/assets/zig-VOosw3JB.js +13 -0
  703. package/tracer-viewer-bundle/assets/zig-VOosw3JB.js.map +1 -0
  704. package/tracer-viewer-bundle/index.html +25 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"kanagawa-lotus-CfQXZHmo.js","sources":["../../../../node_modules/@shikijs/themes/dist/kanagawa-lotus.mjs"],"sourcesContent":["/* Theme: kanagawa-lotus */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.background\\\":\\\"#E7DBA0\\\",\\\"activityBar.foreground\\\":\\\"#545464\\\",\\\"activityBarBadge.background\\\":\\\"#5A7785\\\",\\\"activityBarBadge.foreground\\\":\\\"#545464\\\",\\\"badge.background\\\":\\\"#E7DBA0\\\",\\\"button.background\\\":\\\"#E7DBA0\\\",\\\"button.foreground\\\":\\\"#43436C\\\",\\\"button.secondaryBackground\\\":\\\"#C7D7E0\\\",\\\"button.secondaryForeground\\\":\\\"#545464\\\",\\\"checkbox.border\\\":\\\"#C7D7E0\\\",\\\"debugToolBar.background\\\":\\\"#D5CEA3\\\",\\\"descriptionForeground\\\":\\\"#545464\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#B7D0AE80\\\",\\\"dropdown.background\\\":\\\"#D5CEA3\\\",\\\"dropdown.border\\\":\\\"#D5CEA3\\\",\\\"editor.background\\\":\\\"#F2ECBC\\\",\\\"editor.findMatchBackground\\\":\\\"#B5CBD2\\\",\\\"editor.findMatchBorder\\\":\\\"#E98A00\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#B5CBD280\\\",\\\"editor.foreground\\\":\\\"#545464\\\",\\\"editor.lineHighlightBackground\\\":\\\"#E4D794\\\",\\\"editor.selectionBackground\\\":\\\"#C7D7E0\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#E4D79480\\\",\\\"editor.selectionHighlightBorder\\\":\\\"#766B90\\\",\\\"editor.wordHighlightBackground\\\":\\\"#E4D7944D\\\",\\\"editor.wordHighlightBorder\\\":\\\"#766B90\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#E4D7944D\\\",\\\"editor.wordHighlightStrongBorder\\\":\\\"#766B90\\\",\\\"editorBracketHighlight.foreground1\\\":\\\"#624C83\\\",\\\"editorBracketHighlight.foreground2\\\":\\\"#CC6D00\\\",\\\"editorBracketHighlight.foreground3\\\":\\\"#4D699B\\\",\\\"editorBracketHighlight.foreground4\\\":\\\"#B35B79\\\",\\\"editorBracketHighlight.foreground5\\\":\\\"#77713F\\\",\\\"editorBracketHighlight.foreground6\\\":\\\"#597B75\\\",\\\"editorBracketHighlight.unexpectedBracket.foreground\\\":\\\"#D9A594\\\",\\\"editorBracketMatch.background\\\":\\\"#D5CEA3\\\",\\\"editorBracketMatch.border\\\":\\\"#766B90\\\",\\\"editorBracketPairGuide.activeBackground1\\\":\\\"#624C83\\\",\\\"editorBracketPairGuide.activeBackground2\\\":\\\"#CC6D00\\\",\\\"editorBracketPairGuide.activeBackground3\\\":\\\"#4D699B\\\",\\\"editorBracketPairGuide.activeBackground4\\\":\\\"#B35B79\\\",\\\"editorBracketPairGuide.activeBackground5\\\":\\\"#77713F\\\",\\\"editorBracketPairGuide.activeBackground6\\\":\\\"#597B75\\\",\\\"editorCursor.background\\\":\\\"#F2ECBC\\\",\\\"editorCursor.foreground\\\":\\\"#545464\\\",\\\"editorError.foreground\\\":\\\"#E82424\\\",\\\"editorGroup.border\\\":\\\"#D5CEA3\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#D5CEA3\\\",\\\"editorGutter.addedBackground\\\":\\\"#6E915F\\\",\\\"editorGutter.deletedBackground\\\":\\\"#D7474B\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#DE9800\\\",\\\"editorHoverWidget.background\\\":\\\"#F2ECBC\\\",\\\"editorHoverWidget.border\\\":\\\"#E7DBA0\\\",\\\"editorHoverWidget.highlightForeground\\\":\\\"#5A7785\\\",\\\"editorIndentGuide.activeBackground1\\\":\\\"#E4D794\\\",\\\"editorIndentGuide.background1\\\":\\\"#E7DBA0\\\",\\\"editorInlayHint.background\\\":\\\"#F2ECBC\\\",\\\"editorInlayHint.foreground\\\":\\\"#716E61\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#CC6D00\\\",\\\"editorLineNumber.foreground\\\":\\\"#766B90\\\",\\\"editorMarkerNavigation.background\\\":\\\"#E4D794\\\",\\\"editorRuler.foreground\\\":\\\"#ff0000\\\",\\\"editorSuggestWidget.background\\\":\\\"#C7D7E0\\\",\\\"editorSuggestWidget.border\\\":\\\"#C7D7E0\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#B5CBD2\\\",\\\"editorWarning.foreground\\\":\\\"#E98A00\\\",\\\"editorWhitespace.foreground\\\":\\\"#F2ECBC\\\",\\\"editorWidget.background\\\":\\\"#F2ECBC\\\",\\\"focusBorder\\\":\\\"#C7D7E0\\\",\\\"foreground\\\":\\\"#545464\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#716E61\\\",\\\"input.background\\\":\\\"#D5CEA3\\\",\\\"list.activeSelectionBackground\\\":\\\"#E4D794\\\",\\\"list.activeSelectionForeground\\\":\\\"#545464\\\",\\\"list.focusBackground\\\":\\\"#E7DBA0\\\",\\\"list.focusForeground\\\":\\\"#545464\\\",\\\"list.highlightForeground\\\":\\\"#4D699B\\\",\\\"list.hoverBackground\\\":\\\"#E4D794\\\",\\\"list.hoverForeground\\\":\\\"#545464\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#E7DBA0\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#545464\\\",\\\"list.warningForeground\\\":\\\"#E98A00\\\",\\\"menu.background\\\":\\\"#E4D794\\\",\\\"menu.border\\\":\\\"#D5CEA3\\\",\\\"menu.foreground\\\":\\\"#545464\\\",\\\"menu.selectionBackground\\\":\\\"#D5CEA3\\\",\\\"menu.selectionForeground\\\":\\\"#545464\\\",\\\"menu.separatorBackground\\\":\\\"#766B90\\\",\\\"menubar.selectionBackground\\\":\\\"#D5CEA3\\\",\\\"menubar.selectionForeground\\\":\\\"#545464\\\",\\\"minimapGutter.addedBackground\\\":\\\"#6E915F\\\",\\\"minimapGutter.deletedBackground\\\":\\\"#D7474B\\\",\\\"minimapGutter.modifiedBackground\\\":\\\"#DE9800\\\",\\\"panel.border\\\":\\\"#D5CEA3\\\",\\\"panelSectionHeader.background\\\":\\\"#F2ECBC\\\",\\\"peekView.border\\\":\\\"#766B90\\\",\\\"peekViewEditor.background\\\":\\\"#E7DBA0\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#B5CBD2\\\",\\\"peekViewResult.background\\\":\\\"#E4D794\\\",\\\"scrollbar.shadow\\\":\\\"#E4D794\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#E7DBA080\\\",\\\"scrollbarSlider.background\\\":\\\"#766B9066\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#766B9080\\\",\\\"settings.focusedRowBackground\\\":\\\"#E4D794\\\",\\\"settings.headerForeground\\\":\\\"#545464\\\",\\\"sideBar.background\\\":\\\"#F2ECBC\\\",\\\"sideBar.border\\\":\\\"#D5CEA3\\\",\\\"sideBar.foreground\\\":\\\"#545464\\\",\\\"sideBarSectionHeader.background\\\":\\\"#E4D794\\\",\\\"sideBarSectionHeader.foreground\\\":\\\"#545464\\\",\\\"statusBar.background\\\":\\\"#D5CEA3\\\",\\\"statusBar.debuggingBackground\\\":\\\"#E82424\\\",\\\"statusBar.debuggingBorder\\\":\\\"#624C83\\\",\\\"statusBar.debuggingForeground\\\":\\\"#545464\\\",\\\"statusBar.foreground\\\":\\\"#43436C\\\",\\\"statusBar.noFolderBackground\\\":\\\"#F2ECBC\\\",\\\"statusBarItem.hoverBackground\\\":\\\"#E4D794\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#B5CBD2\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#545464\\\",\\\"tab.activeBackground\\\":\\\"#E7DBA0\\\",\\\"tab.activeForeground\\\":\\\"#4D699B\\\",\\\"tab.border\\\":\\\"#E7DBA0\\\",\\\"tab.hoverBackground\\\":\\\"#E4D794\\\",\\\"tab.inactiveBackground\\\":\\\"#E5DDB0\\\",\\\"tab.unfocusedHoverBackground\\\":\\\"#F2ECBC\\\",\\\"terminal.ansiBlack\\\":\\\"#1F1F28\\\",\\\"terminal.ansiBlue\\\":\\\"#4D699B\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#8A8980\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#6693BF\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#5E857A\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#6E915F\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#624C83\\\",\\\"terminal.ansiBrightRed\\\":\\\"#D7474B\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#43436C\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#836F4A\\\",\\\"terminal.ansiCyan\\\":\\\"#597B75\\\",\\\"terminal.ansiGreen\\\":\\\"#6F894E\\\",\\\"terminal.ansiMagenta\\\":\\\"#B35B79\\\",\\\"terminal.ansiRed\\\":\\\"#C84053\\\",\\\"terminal.ansiWhite\\\":\\\"#545464\\\",\\\"terminal.ansiYellow\\\":\\\"#77713F\\\",\\\"terminal.background\\\":\\\"#F2ECBC\\\",\\\"terminal.border\\\":\\\"#D5CEA3\\\",\\\"terminal.foreground\\\":\\\"#545464\\\",\\\"terminal.selectionBackground\\\":\\\"#C7D7E0\\\",\\\"textBlockQuote.background\\\":\\\"#F2ECBC\\\",\\\"textBlockQuote.border\\\":\\\"#D5CEA3\\\",\\\"textLink.foreground\\\":\\\"#5E857A\\\",\\\"textPreformat.foreground\\\":\\\"#E98A00\\\",\\\"titleBar.activeBackground\\\":\\\"#E4D794\\\",\\\"titleBar.activeForeground\\\":\\\"#545464\\\",\\\"titleBar.inactiveBackground\\\":\\\"#F2ECBC\\\",\\\"titleBar.inactiveForeground\\\":\\\"#545464\\\",\\\"walkThrough.embeddedEditorBackground\\\":\\\"#F2ECBC\\\"},\\\"displayName\\\":\\\"Kanagawa Lotus\\\",\\\"name\\\":\\\"kanagawa-lotus\\\",\\\"semanticHighlighting\\\":true,\\\"semanticTokenColors\\\":{\\\"arithmetic\\\":\\\"#836F4A\\\",\\\"function\\\":\\\"#4D699B\\\",\\\"keyword.controlFlow\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#624C83\\\"},\\\"macro\\\":\\\"#C84053\\\",\\\"method\\\":\\\"#6693BF\\\",\\\"operator\\\":\\\"#836F4A\\\",\\\"parameter\\\":\\\"#5D57A3\\\",\\\"parameter.declaration\\\":\\\"#5D57A3\\\",\\\"parameter.definition\\\":\\\"#5D57A3\\\",\\\"variable\\\":\\\"#545464\\\",\\\"variable.readonly\\\":\\\"#545464\\\",\\\"variable.readonly.defaultLibrary\\\":\\\"#545464\\\",\\\"variable.readonly.local\\\":\\\"#545464\\\"},\\\"tokenColors\\\":[{\\\"scope\\\":[\\\"comment\\\",\\\"punctuation.definition.comment\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#716E61\\\"}},{\\\"scope\\\":[\\\"variable\\\",\\\"string constant.other.placeholder\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#545464\\\"}},{\\\"scope\\\":[\\\"constant.other.color\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CC6D00\\\"}},{\\\"scope\\\":[\\\"invalid\\\",\\\"invalid.illegal\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E82424\\\"}},{\\\"scope\\\":[\\\"storage.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#624C83\\\"}},{\\\"scope\\\":[\\\"storage.modifier\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#624C83\\\"}},{\\\"scope\\\":[\\\"keyword.control.flow\\\",\\\"keyword.control.conditional\\\",\\\"keyword.control.loop\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#624C83\\\"}},{\\\"scope\\\":[\\\"keyword.control\\\",\\\"constant.other.color\\\",\\\"meta.tag\\\",\\\"keyword.other.template\\\",\\\"keyword.other.substitution\\\",\\\"keyword.other\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#624C83\\\"}},{\\\"scope\\\":[\\\"keyword.other.definition.ini\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CC6D00\\\"}},{\\\"scope\\\":[\\\"keyword.control.trycatch\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#D9A594\\\"}},{\\\"scope\\\":[\\\"keyword.other.unit\\\",\\\"keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#77713F\\\"}},{\\\"scope\\\":[\\\"punctuation\\\",\\\"punctuation.definition.tag\\\",\\\"punctuation.separator.inheritance.php\\\",\\\"punctuation.definition.tag.html\\\",\\\"punctuation.definition.tag.begin.html\\\",\\\"punctuation.definition.tag.end.html\\\",\\\"punctuation.section.embedded\\\",\\\"meta.brace\\\",\\\"keyword.operator.type.annotation\\\",\\\"keyword.operator.namespace\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4E8CA2\\\"}},{\\\"scope\\\":[\\\"entity.name.tag\\\",\\\"meta.tag.sgml\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#77713F\\\"}},{\\\"scope\\\":[\\\"entity.name.function\\\",\\\"meta.function-call\\\",\\\"variable.function\\\",\\\"support.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4D699B\\\"}},{\\\"scope\\\":[\\\"keyword.other.special-method\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6693BF\\\"}},{\\\"scope\\\":[\\\"entity.name.function.macro\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C84053\\\"}},{\\\"scope\\\":[\\\"meta.block variable.other\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#545464\\\"}},{\\\"scope\\\":[\\\"variable.other.enummember\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CC6D00\\\"}},{\\\"scope\\\":[\\\"support.other.variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#545464\\\"}},{\\\"scope\\\":[\\\"string.other.link\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6693BF\\\"}},{\\\"scope\\\":[\\\"constant.numeric\\\",\\\"constant.language\\\",\\\"support.constant\\\",\\\"constant.character\\\",\\\"constant.escape\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CC6D00\\\"}},{\\\"scope\\\":[\\\"constant.language.boolean\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CC6D00\\\"}},{\\\"scope\\\":[\\\"constant.numeric\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#B35B79\\\"}},{\\\"scope\\\":[\\\"string\\\",\\\"punctuation.definition.string\\\",\\\"constant.other.symbol\\\",\\\"constant.other.key\\\",\\\"entity.other.inherited-class\\\",\\\"markup.heading\\\",\\\"markup.inserted.git_gutter\\\",\\\"meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js\\\",\\\"markup.inline.raw.string\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6F894E\\\"}},{\\\"scope\\\":[\\\"entity.name\\\",\\\"support.type\\\",\\\"support.class\\\",\\\"support.other.namespace.use.php\\\",\\\"meta.use.php\\\",\\\"support.other.namespace.php\\\",\\\"support.type.sys-types\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#597B75\\\"}},{\\\"scope\\\":[\\\"entity.name.type.module\\\",\\\"entity.name.namespace\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#77713F\\\"}},{\\\"scope\\\":[\\\"entity.name.import.go\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6F894E\\\"}},{\\\"scope\\\":[\\\"keyword.blade\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#624C83\\\"}},{\\\"scope\\\":[\\\"variable.other.property\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#77713F\\\"}},{\\\"scope\\\":[\\\"keyword.control.import\\\",\\\"keyword.import\\\",\\\"meta.import\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CC6D00\\\"}},{\\\"scope\\\":[\\\"source.css support.type.property-name\\\",\\\"source.sass support.type.property-name\\\",\\\"source.scss support.type.property-name\\\",\\\"source.less support.type.property-name\\\",\\\"source.stylus support.type.property-name\\\",\\\"source.postcss support.type.property-name\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#597B75\\\"}},{\\\"scope\\\":[\\\"entity.name.module.js\\\",\\\"variable.import.parameter.js\\\",\\\"variable.other.class.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D9A594\\\"}},{\\\"scope\\\":[\\\"variable.language\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D9A594\\\"}},{\\\"scope\\\":[\\\"entity.name.method.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6693BF\\\"}},{\\\"scope\\\":[\\\"meta.class-method.js entity.name.function.js\\\",\\\"variable.function.constructor\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6693BF\\\"}},{\\\"scope\\\":[\\\"entity.other.attribute-name\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#624C83\\\"}},{\\\"scope\\\":[\\\"entity.other.attribute-name.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#77713F\\\"}},{\\\"scope\\\":[\\\"source.sass keyword.control\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6693BF\\\"}},{\\\"scope\\\":[\\\"markup.inserted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6E915F\\\"}},{\\\"scope\\\":[\\\"markup.deleted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D7474B\\\"}},{\\\"scope\\\":[\\\"markup.changed\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#DE9800\\\"}},{\\\"scope\\\":[\\\"string.regexp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#836F4A\\\"}},{\\\"scope\\\":[\\\"constant.character.escape\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6693BF\\\"}},{\\\"scope\\\":[\\\"*url*\\\",\\\"*link*\\\",\\\"*uri*\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":[\\\"tag.decorator.js entity.name.tag.js\\\",\\\"tag.decorator.js punctuation.definition.tag.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#624C83\\\"}},{\\\"scope\\\":[\\\"source.js constant.other.object.key.js string.unquoted.label.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D9A594\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#B35B79\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#77713F\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CC6D00\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D9A594\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CC6D00\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4D699B\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#B35B79\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#624C83\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6F894E\\\"}},{\\\"scope\\\":[\\\"meta.tag JSXNested\\\",\\\"meta.jsx.children\\\",\\\"text.html\\\",\\\"text.log\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#545464\\\"}},{\\\"scope\\\":[\\\"text.html.markdown\\\",\\\"punctuation.definition.list_item.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#545464\\\"}},{\\\"scope\\\":[\\\"text.html.markdown markup.inline.raw.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#624C83\\\"}},{\\\"scope\\\":[\\\"text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#624C83\\\"}},{\\\"scope\\\":[\\\"markdown.heading\\\",\\\"entity.name.section.markdown\\\",\\\"markup.heading.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4D699B\\\"}},{\\\"scope\\\":[\\\"markup.italic\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#C84053\\\"}},{\\\"scope\\\":[\\\"markup.bold\\\",\\\"markup.bold string\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":[\\\"markup.bold markup.italic\\\",\\\"markup.italic markup.bold\\\",\\\"markup.quote markup.bold\\\",\\\"markup.bold markup.italic string\\\",\\\"markup.italic markup.bold string\\\",\\\"markup.quote markup.bold string\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#C84053\\\"}},{\\\"scope\\\":[\\\"markup.underline\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\",\\\"foreground\\\":\\\"#6693BF\\\"}},{\\\"scope\\\":[\\\"markup.quote punctuation.definition.blockquote.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#716E61\\\"}},{\\\"scope\\\":[\\\"markup.quote\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":[\\\"string.other.link.title.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CC6D00\\\"}},{\\\"scope\\\":[\\\"string.other.link.description.title.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#624C83\\\"}},{\\\"scope\\\":[\\\"constant.other.reference.link.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#77713F\\\"}},{\\\"scope\\\":[\\\"markup.raw.block\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#624C83\\\"}},{\\\"scope\\\":[\\\"markup.raw.block.fenced.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#716E61\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.fenced.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#716E61\\\"}},{\\\"scope\\\":[\\\"markup.raw.block.fenced.markdown\\\",\\\"variable.language.fenced.markdown\\\",\\\"punctuation.section.class.end\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#545464\\\"}},{\\\"scope\\\":[\\\"variable.language.fenced.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#716E61\\\"}},{\\\"scope\\\":[\\\"meta.separator\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#4E8CA2\\\"}},{\\\"scope\\\":[\\\"markup.table\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#545464\\\"}}],\\\"type\\\":\\\"light\\\"}\"))\n"],"names":["kanagawaLotus"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,4qhBAA8vkB,CAAC","x_google_ignoreList":[0]}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const e = Object.freeze(
7
+ JSON.parse(
8
+ '{"colors":{"activityBar.background":"#2A2A37","activityBar.foreground":"#DCD7BA","activityBarBadge.background":"#658594","activityBarBadge.foreground":"#DCD7BA","badge.background":"#2A2A37","button.background":"#2A2A37","button.foreground":"#C8C093","button.secondaryBackground":"#223249","button.secondaryForeground":"#DCD7BA","checkbox.border":"#223249","debugToolBar.background":"#16161D","descriptionForeground":"#DCD7BA","diffEditor.insertedTextBackground":"#2B332880","dropdown.background":"#16161D","dropdown.border":"#16161D","editor.background":"#1F1F28","editor.findMatchBackground":"#2D4F67","editor.findMatchBorder":"#FF9E3B","editor.findMatchHighlightBackground":"#2D4F6780","editor.foreground":"#DCD7BA","editor.lineHighlightBackground":"#363646","editor.selectionBackground":"#223249","editor.selectionHighlightBackground":"#36364680","editor.selectionHighlightBorder":"#54546D","editor.wordHighlightBackground":"#3636464D","editor.wordHighlightBorder":"#54546D","editor.wordHighlightStrongBackground":"#3636464D","editor.wordHighlightStrongBorder":"#54546D","editorBracketHighlight.foreground1":"#957FB8","editorBracketHighlight.foreground2":"#FFA066","editorBracketHighlight.foreground3":"#7E9CD8","editorBracketHighlight.foreground4":"#D27E99","editorBracketHighlight.foreground5":"#E6C384","editorBracketHighlight.foreground6":"#7AA89F","editorBracketHighlight.unexpectedBracket.foreground":"#FF5D62","editorBracketMatch.background":"#16161D","editorBracketMatch.border":"#54546D","editorBracketPairGuide.activeBackground1":"#957FB8","editorBracketPairGuide.activeBackground2":"#FFA066","editorBracketPairGuide.activeBackground3":"#7E9CD8","editorBracketPairGuide.activeBackground4":"#D27E99","editorBracketPairGuide.activeBackground5":"#E6C384","editorBracketPairGuide.activeBackground6":"#7AA89F","editorCursor.background":"#1F1F28","editorCursor.foreground":"#DCD7BA","editorError.foreground":"#E82424","editorGroup.border":"#16161D","editorGroupHeader.tabsBackground":"#16161D","editorGutter.addedBackground":"#76946A","editorGutter.deletedBackground":"#C34043","editorGutter.modifiedBackground":"#DCA561","editorHoverWidget.background":"#1F1F28","editorHoverWidget.border":"#2A2A37","editorHoverWidget.highlightForeground":"#658594","editorIndentGuide.activeBackground1":"#363646","editorIndentGuide.background1":"#2A2A37","editorInlayHint.background":"#1F1F28","editorInlayHint.foreground":"#727169","editorLineNumber.activeForeground":"#FFA066","editorLineNumber.foreground":"#54546D","editorMarkerNavigation.background":"#363646","editorRuler.foreground":"#363646","editorSuggestWidget.background":"#223249","editorSuggestWidget.border":"#223249","editorSuggestWidget.selectedBackground":"#2D4F67","editorWarning.foreground":"#FF9E3B","editorWhitespace.foreground":"#1F1F28","editorWidget.background":"#1F1F28","focusBorder":"#223249","foreground":"#DCD7BA","gitDecoration.ignoredResourceForeground":"#727169","input.background":"#16161D","list.activeSelectionBackground":"#363646","list.activeSelectionForeground":"#DCD7BA","list.focusBackground":"#2A2A37","list.focusForeground":"#DCD7BA","list.highlightForeground":"#7E9CD8","list.hoverBackground":"#363646","list.hoverForeground":"#DCD7BA","list.inactiveSelectionBackground":"#2A2A37","list.inactiveSelectionForeground":"#DCD7BA","list.warningForeground":"#FF9E3B","menu.background":"#363646","menu.border":"#16161D","menu.foreground":"#DCD7BA","menu.selectionBackground":"#16161D","menu.selectionForeground":"#DCD7BA","menu.separatorBackground":"#54546D","menubar.selectionBackground":"#16161D","menubar.selectionForeground":"#DCD7BA","minimapGutter.addedBackground":"#76946A","minimapGutter.deletedBackground":"#C34043","minimapGutter.modifiedBackground":"#DCA561","panel.border":"#16161D","panelSectionHeader.background":"#1F1F28","peekView.border":"#54546D","peekViewEditor.background":"#2A2A37","peekViewEditor.matchHighlightBackground":"#2D4F67","peekViewResult.background":"#363646","scrollbar.shadow":"#363646","scrollbarSlider.activeBackground":"#2A2A3780","scrollbarSlider.background":"#54546D66","scrollbarSlider.hoverBackground":"#54546D80","settings.focusedRowBackground":"#363646","settings.headerForeground":"#DCD7BA","sideBar.background":"#1F1F28","sideBar.border":"#16161D","sideBar.foreground":"#DCD7BA","sideBarSectionHeader.background":"#363646","sideBarSectionHeader.foreground":"#DCD7BA","statusBar.background":"#16161D","statusBar.debuggingBackground":"#E82424","statusBar.debuggingBorder":"#957FB8","statusBar.debuggingForeground":"#DCD7BA","statusBar.foreground":"#C8C093","statusBar.noFolderBackground":"#1F1F28","statusBarItem.hoverBackground":"#363646","statusBarItem.remoteBackground":"#2D4F67","statusBarItem.remoteForeground":"#DCD7BA","tab.activeBackground":"#2A2A37","tab.activeForeground":"#7E9CD8","tab.border":"#2A2A37","tab.hoverBackground":"#363646","tab.inactiveBackground":"#1A1A22","tab.unfocusedHoverBackground":"#1F1F28","terminal.ansiBlack":"#16161D","terminal.ansiBlue":"#7E9CD8","terminal.ansiBrightBlack":"#727169","terminal.ansiBrightBlue":"#7FB4CA","terminal.ansiBrightCyan":"#7AA89F","terminal.ansiBrightGreen":"#98BB6C","terminal.ansiBrightMagenta":"#938AA9","terminal.ansiBrightRed":"#E82424","terminal.ansiBrightWhite":"#DCD7BA","terminal.ansiBrightYellow":"#E6C384","terminal.ansiCyan":"#6A9589","terminal.ansiGreen":"#76946A","terminal.ansiMagenta":"#957FB8","terminal.ansiRed":"#C34043","terminal.ansiWhite":"#C8C093","terminal.ansiYellow":"#C0A36E","terminal.background":"#1F1F28","terminal.border":"#16161D","terminal.foreground":"#DCD7BA","terminal.selectionBackground":"#223249","textBlockQuote.background":"#1F1F28","textBlockQuote.border":"#16161D","textLink.foreground":"#6A9589","textPreformat.foreground":"#FF9E3B","titleBar.activeBackground":"#363646","titleBar.activeForeground":"#DCD7BA","titleBar.inactiveBackground":"#1F1F28","titleBar.inactiveForeground":"#DCD7BA","walkThrough.embeddedEditorBackground":"#1F1F28"},"displayName":"Kanagawa Wave","name":"kanagawa-wave","semanticHighlighting":true,"semanticTokenColors":{"arithmetic":"#C0A36E","function":"#7E9CD8","keyword.controlFlow":{"fontStyle":"bold","foreground":"#957FB8"},"macro":"#E46876","method":"#7FB4CA","operator":"#C0A36E","parameter":"#B8B4D0","parameter.declaration":"#B8B4D0","parameter.definition":"#B8B4D0","variable":"#DCD7BA","variable.readonly":"#DCD7BA","variable.readonly.defaultLibrary":"#DCD7BA","variable.readonly.local":"#DCD7BA"},"tokenColors":[{"scope":["comment","punctuation.definition.comment"],"settings":{"foreground":"#727169"}},{"scope":["variable","string constant.other.placeholder"],"settings":{"foreground":"#DCD7BA"}},{"scope":["constant.other.color"],"settings":{"foreground":"#FFA066"}},{"scope":["invalid","invalid.illegal"],"settings":{"foreground":"#E82424"}},{"scope":["storage.type"],"settings":{"foreground":"#957FB8"}},{"scope":["storage.modifier"],"settings":{"foreground":"#957FB8"}},{"scope":["keyword.control.flow","keyword.control.conditional","keyword.control.loop"],"settings":{"fontStyle":"bold","foreground":"#957FB8"}},{"scope":["keyword.control","constant.other.color","meta.tag","keyword.other.template","keyword.other.substitution","keyword.other"],"settings":{"foreground":"#957FB8"}},{"scope":["keyword.other.definition.ini"],"settings":{"foreground":"#FFA066"}},{"scope":["keyword.control.trycatch"],"settings":{"fontStyle":"bold","foreground":"#FF5D62"}},{"scope":["keyword.other.unit","keyword.operator"],"settings":{"foreground":"#E6C384"}},{"scope":["punctuation","punctuation.definition.tag","punctuation.separator.inheritance.php","punctuation.definition.tag.html","punctuation.definition.tag.begin.html","punctuation.definition.tag.end.html","punctuation.section.embedded","meta.brace","keyword.operator.type.annotation","keyword.operator.namespace"],"settings":{"foreground":"#9CABCA"}},{"scope":["entity.name.tag","meta.tag.sgml"],"settings":{"foreground":"#E6C384"}},{"scope":["entity.name.function","meta.function-call","variable.function","support.function"],"settings":{"foreground":"#7E9CD8"}},{"scope":["keyword.other.special-method"],"settings":{"foreground":"#7FB4CA"}},{"scope":["entity.name.function.macro"],"settings":{"foreground":"#E46876"}},{"scope":["meta.block variable.other"],"settings":{"foreground":"#DCD7BA"}},{"scope":["variable.other.enummember"],"settings":{"foreground":"#FFA066"}},{"scope":["support.other.variable"],"settings":{"foreground":"#DCD7BA"}},{"scope":["string.other.link"],"settings":{"foreground":"#7FB4CA"}},{"scope":["constant.numeric","constant.language","support.constant","constant.character","constant.escape"],"settings":{"foreground":"#FFA066"}},{"scope":["constant.language.boolean"],"settings":{"foreground":"#FFA066"}},{"scope":["constant.numeric"],"settings":{"foreground":"#D27E99"}},{"scope":["string","punctuation.definition.string","constant.other.symbol","constant.other.key","entity.other.inherited-class","markup.heading","markup.inserted.git_gutter","meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js","markup.inline.raw.string"],"settings":{"foreground":"#98BB6C"}},{"scope":["entity.name","support.type","support.class","support.other.namespace.use.php","meta.use.php","support.other.namespace.php","support.type.sys-types"],"settings":{"foreground":"#7AA89F"}},{"scope":["entity.name.type.module","entity.name.namespace"],"settings":{"foreground":"#E6C384"}},{"scope":["entity.name.import.go"],"settings":{"foreground":"#98BB6C"}},{"scope":["keyword.blade"],"settings":{"foreground":"#957FB8"}},{"scope":["variable.other.property"],"settings":{"foreground":"#E6C384"}},{"scope":["keyword.control.import","keyword.import","meta.import"],"settings":{"foreground":"#FFA066"}},{"scope":["source.css support.type.property-name","source.sass support.type.property-name","source.scss support.type.property-name","source.less support.type.property-name","source.stylus support.type.property-name","source.postcss support.type.property-name"],"settings":{"foreground":"#7AA89F"}},{"scope":["entity.name.module.js","variable.import.parameter.js","variable.other.class.js"],"settings":{"foreground":"#FF5D62"}},{"scope":["variable.language"],"settings":{"foreground":"#FF5D62"}},{"scope":["entity.name.method.js"],"settings":{"foreground":"#7FB4CA"}},{"scope":["meta.class-method.js entity.name.function.js","variable.function.constructor"],"settings":{"foreground":"#7FB4CA"}},{"scope":["entity.other.attribute-name"],"settings":{"foreground":"#957FB8"}},{"scope":["entity.other.attribute-name.class"],"settings":{"foreground":"#E6C384"}},{"scope":["source.sass keyword.control"],"settings":{"foreground":"#7FB4CA"}},{"scope":["markup.inserted"],"settings":{"foreground":"#76946A"}},{"scope":["markup.deleted"],"settings":{"foreground":"#C34043"}},{"scope":["markup.changed"],"settings":{"foreground":"#DCA561"}},{"scope":["string.regexp"],"settings":{"foreground":"#C0A36E"}},{"scope":["constant.character.escape"],"settings":{"foreground":"#7FB4CA"}},{"scope":["*url*","*link*","*uri*"],"settings":{"fontStyle":"underline"}},{"scope":["tag.decorator.js entity.name.tag.js","tag.decorator.js punctuation.definition.tag.js"],"settings":{"foreground":"#957FB8"}},{"scope":["source.js constant.other.object.key.js string.unquoted.label.js"],"settings":{"foreground":"#FF5D62"}},{"scope":["source.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#D27E99"}},{"scope":["source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#E6C384"}},{"scope":["source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#FFA066"}},{"scope":["source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#FF5D62"}},{"scope":["source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#FFA066"}},{"scope":["source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#7E9CD8"}},{"scope":["source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#D27E99"}},{"scope":["source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#957FB8"}},{"scope":["source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#98BB6C"}},{"scope":["meta.tag JSXNested","meta.jsx.children","text.html","text.log"],"settings":{"foreground":"#DCD7BA"}},{"scope":["text.html.markdown","punctuation.definition.list_item.markdown"],"settings":{"foreground":"#DCD7BA"}},{"scope":["text.html.markdown markup.inline.raw.markdown"],"settings":{"foreground":"#957FB8"}},{"scope":["text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown"],"settings":{"foreground":"#957FB8"}},{"scope":["markdown.heading","entity.name.section.markdown","markup.heading.markdown"],"settings":{"foreground":"#7E9CD8"}},{"scope":["markup.italic"],"settings":{"fontStyle":"italic","foreground":"#E46876"}},{"scope":["markup.bold","markup.bold string"],"settings":{"fontStyle":"bold"}},{"scope":["markup.bold markup.italic","markup.italic markup.bold","markup.quote markup.bold","markup.bold markup.italic string","markup.italic markup.bold string","markup.quote markup.bold string"],"settings":{"fontStyle":"bold","foreground":"#E46876"}},{"scope":["markup.underline"],"settings":{"fontStyle":"underline","foreground":"#7FB4CA"}},{"scope":["markup.quote punctuation.definition.blockquote.markdown"],"settings":{"foreground":"#727169"}},{"scope":["markup.quote"],"settings":{"fontStyle":"italic"}},{"scope":["string.other.link.title.markdown"],"settings":{"foreground":"#FFA066"}},{"scope":["string.other.link.description.title.markdown"],"settings":{"foreground":"#957FB8"}},{"scope":["constant.other.reference.link.markdown"],"settings":{"foreground":"#E6C384"}},{"scope":["markup.raw.block"],"settings":{"foreground":"#957FB8"}},{"scope":["markup.raw.block.fenced.markdown"],"settings":{"foreground":"#727169"}},{"scope":["punctuation.definition.fenced.markdown"],"settings":{"foreground":"#727169"}},{"scope":["markup.raw.block.fenced.markdown","variable.language.fenced.markdown","punctuation.section.class.end"],"settings":{"foreground":"#DCD7BA"}},{"scope":["variable.language.fenced.markdown"],"settings":{"foreground":"#727169"}},{"scope":["meta.separator"],"settings":{"fontStyle":"bold","foreground":"#9CABCA"}},{"scope":["markup.table"],"settings":{"foreground":"#DCD7BA"}}],"type":"dark"}',
9
+ ),
10
+ );
11
+ export { e as default };
12
+ //# sourceMappingURL=kanagawa-wave-DWedfzmr.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"kanagawa-wave-DWedfzmr.js","sources":["../../../../node_modules/@shikijs/themes/dist/kanagawa-wave.mjs"],"sourcesContent":["/* Theme: kanagawa-wave */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.background\\\":\\\"#2A2A37\\\",\\\"activityBar.foreground\\\":\\\"#DCD7BA\\\",\\\"activityBarBadge.background\\\":\\\"#658594\\\",\\\"activityBarBadge.foreground\\\":\\\"#DCD7BA\\\",\\\"badge.background\\\":\\\"#2A2A37\\\",\\\"button.background\\\":\\\"#2A2A37\\\",\\\"button.foreground\\\":\\\"#C8C093\\\",\\\"button.secondaryBackground\\\":\\\"#223249\\\",\\\"button.secondaryForeground\\\":\\\"#DCD7BA\\\",\\\"checkbox.border\\\":\\\"#223249\\\",\\\"debugToolBar.background\\\":\\\"#16161D\\\",\\\"descriptionForeground\\\":\\\"#DCD7BA\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#2B332880\\\",\\\"dropdown.background\\\":\\\"#16161D\\\",\\\"dropdown.border\\\":\\\"#16161D\\\",\\\"editor.background\\\":\\\"#1F1F28\\\",\\\"editor.findMatchBackground\\\":\\\"#2D4F67\\\",\\\"editor.findMatchBorder\\\":\\\"#FF9E3B\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#2D4F6780\\\",\\\"editor.foreground\\\":\\\"#DCD7BA\\\",\\\"editor.lineHighlightBackground\\\":\\\"#363646\\\",\\\"editor.selectionBackground\\\":\\\"#223249\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#36364680\\\",\\\"editor.selectionHighlightBorder\\\":\\\"#54546D\\\",\\\"editor.wordHighlightBackground\\\":\\\"#3636464D\\\",\\\"editor.wordHighlightBorder\\\":\\\"#54546D\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#3636464D\\\",\\\"editor.wordHighlightStrongBorder\\\":\\\"#54546D\\\",\\\"editorBracketHighlight.foreground1\\\":\\\"#957FB8\\\",\\\"editorBracketHighlight.foreground2\\\":\\\"#FFA066\\\",\\\"editorBracketHighlight.foreground3\\\":\\\"#7E9CD8\\\",\\\"editorBracketHighlight.foreground4\\\":\\\"#D27E99\\\",\\\"editorBracketHighlight.foreground5\\\":\\\"#E6C384\\\",\\\"editorBracketHighlight.foreground6\\\":\\\"#7AA89F\\\",\\\"editorBracketHighlight.unexpectedBracket.foreground\\\":\\\"#FF5D62\\\",\\\"editorBracketMatch.background\\\":\\\"#16161D\\\",\\\"editorBracketMatch.border\\\":\\\"#54546D\\\",\\\"editorBracketPairGuide.activeBackground1\\\":\\\"#957FB8\\\",\\\"editorBracketPairGuide.activeBackground2\\\":\\\"#FFA066\\\",\\\"editorBracketPairGuide.activeBackground3\\\":\\\"#7E9CD8\\\",\\\"editorBracketPairGuide.activeBackground4\\\":\\\"#D27E99\\\",\\\"editorBracketPairGuide.activeBackground5\\\":\\\"#E6C384\\\",\\\"editorBracketPairGuide.activeBackground6\\\":\\\"#7AA89F\\\",\\\"editorCursor.background\\\":\\\"#1F1F28\\\",\\\"editorCursor.foreground\\\":\\\"#DCD7BA\\\",\\\"editorError.foreground\\\":\\\"#E82424\\\",\\\"editorGroup.border\\\":\\\"#16161D\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#16161D\\\",\\\"editorGutter.addedBackground\\\":\\\"#76946A\\\",\\\"editorGutter.deletedBackground\\\":\\\"#C34043\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#DCA561\\\",\\\"editorHoverWidget.background\\\":\\\"#1F1F28\\\",\\\"editorHoverWidget.border\\\":\\\"#2A2A37\\\",\\\"editorHoverWidget.highlightForeground\\\":\\\"#658594\\\",\\\"editorIndentGuide.activeBackground1\\\":\\\"#363646\\\",\\\"editorIndentGuide.background1\\\":\\\"#2A2A37\\\",\\\"editorInlayHint.background\\\":\\\"#1F1F28\\\",\\\"editorInlayHint.foreground\\\":\\\"#727169\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#FFA066\\\",\\\"editorLineNumber.foreground\\\":\\\"#54546D\\\",\\\"editorMarkerNavigation.background\\\":\\\"#363646\\\",\\\"editorRuler.foreground\\\":\\\"#363646\\\",\\\"editorSuggestWidget.background\\\":\\\"#223249\\\",\\\"editorSuggestWidget.border\\\":\\\"#223249\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#2D4F67\\\",\\\"editorWarning.foreground\\\":\\\"#FF9E3B\\\",\\\"editorWhitespace.foreground\\\":\\\"#1F1F28\\\",\\\"editorWidget.background\\\":\\\"#1F1F28\\\",\\\"focusBorder\\\":\\\"#223249\\\",\\\"foreground\\\":\\\"#DCD7BA\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#727169\\\",\\\"input.background\\\":\\\"#16161D\\\",\\\"list.activeSelectionBackground\\\":\\\"#363646\\\",\\\"list.activeSelectionForeground\\\":\\\"#DCD7BA\\\",\\\"list.focusBackground\\\":\\\"#2A2A37\\\",\\\"list.focusForeground\\\":\\\"#DCD7BA\\\",\\\"list.highlightForeground\\\":\\\"#7E9CD8\\\",\\\"list.hoverBackground\\\":\\\"#363646\\\",\\\"list.hoverForeground\\\":\\\"#DCD7BA\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#2A2A37\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#DCD7BA\\\",\\\"list.warningForeground\\\":\\\"#FF9E3B\\\",\\\"menu.background\\\":\\\"#363646\\\",\\\"menu.border\\\":\\\"#16161D\\\",\\\"menu.foreground\\\":\\\"#DCD7BA\\\",\\\"menu.selectionBackground\\\":\\\"#16161D\\\",\\\"menu.selectionForeground\\\":\\\"#DCD7BA\\\",\\\"menu.separatorBackground\\\":\\\"#54546D\\\",\\\"menubar.selectionBackground\\\":\\\"#16161D\\\",\\\"menubar.selectionForeground\\\":\\\"#DCD7BA\\\",\\\"minimapGutter.addedBackground\\\":\\\"#76946A\\\",\\\"minimapGutter.deletedBackground\\\":\\\"#C34043\\\",\\\"minimapGutter.modifiedBackground\\\":\\\"#DCA561\\\",\\\"panel.border\\\":\\\"#16161D\\\",\\\"panelSectionHeader.background\\\":\\\"#1F1F28\\\",\\\"peekView.border\\\":\\\"#54546D\\\",\\\"peekViewEditor.background\\\":\\\"#2A2A37\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#2D4F67\\\",\\\"peekViewResult.background\\\":\\\"#363646\\\",\\\"scrollbar.shadow\\\":\\\"#363646\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#2A2A3780\\\",\\\"scrollbarSlider.background\\\":\\\"#54546D66\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#54546D80\\\",\\\"settings.focusedRowBackground\\\":\\\"#363646\\\",\\\"settings.headerForeground\\\":\\\"#DCD7BA\\\",\\\"sideBar.background\\\":\\\"#1F1F28\\\",\\\"sideBar.border\\\":\\\"#16161D\\\",\\\"sideBar.foreground\\\":\\\"#DCD7BA\\\",\\\"sideBarSectionHeader.background\\\":\\\"#363646\\\",\\\"sideBarSectionHeader.foreground\\\":\\\"#DCD7BA\\\",\\\"statusBar.background\\\":\\\"#16161D\\\",\\\"statusBar.debuggingBackground\\\":\\\"#E82424\\\",\\\"statusBar.debuggingBorder\\\":\\\"#957FB8\\\",\\\"statusBar.debuggingForeground\\\":\\\"#DCD7BA\\\",\\\"statusBar.foreground\\\":\\\"#C8C093\\\",\\\"statusBar.noFolderBackground\\\":\\\"#1F1F28\\\",\\\"statusBarItem.hoverBackground\\\":\\\"#363646\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#2D4F67\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#DCD7BA\\\",\\\"tab.activeBackground\\\":\\\"#2A2A37\\\",\\\"tab.activeForeground\\\":\\\"#7E9CD8\\\",\\\"tab.border\\\":\\\"#2A2A37\\\",\\\"tab.hoverBackground\\\":\\\"#363646\\\",\\\"tab.inactiveBackground\\\":\\\"#1A1A22\\\",\\\"tab.unfocusedHoverBackground\\\":\\\"#1F1F28\\\",\\\"terminal.ansiBlack\\\":\\\"#16161D\\\",\\\"terminal.ansiBlue\\\":\\\"#7E9CD8\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#727169\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#7FB4CA\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#7AA89F\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#98BB6C\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#938AA9\\\",\\\"terminal.ansiBrightRed\\\":\\\"#E82424\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#DCD7BA\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#E6C384\\\",\\\"terminal.ansiCyan\\\":\\\"#6A9589\\\",\\\"terminal.ansiGreen\\\":\\\"#76946A\\\",\\\"terminal.ansiMagenta\\\":\\\"#957FB8\\\",\\\"terminal.ansiRed\\\":\\\"#C34043\\\",\\\"terminal.ansiWhite\\\":\\\"#C8C093\\\",\\\"terminal.ansiYellow\\\":\\\"#C0A36E\\\",\\\"terminal.background\\\":\\\"#1F1F28\\\",\\\"terminal.border\\\":\\\"#16161D\\\",\\\"terminal.foreground\\\":\\\"#DCD7BA\\\",\\\"terminal.selectionBackground\\\":\\\"#223249\\\",\\\"textBlockQuote.background\\\":\\\"#1F1F28\\\",\\\"textBlockQuote.border\\\":\\\"#16161D\\\",\\\"textLink.foreground\\\":\\\"#6A9589\\\",\\\"textPreformat.foreground\\\":\\\"#FF9E3B\\\",\\\"titleBar.activeBackground\\\":\\\"#363646\\\",\\\"titleBar.activeForeground\\\":\\\"#DCD7BA\\\",\\\"titleBar.inactiveBackground\\\":\\\"#1F1F28\\\",\\\"titleBar.inactiveForeground\\\":\\\"#DCD7BA\\\",\\\"walkThrough.embeddedEditorBackground\\\":\\\"#1F1F28\\\"},\\\"displayName\\\":\\\"Kanagawa Wave\\\",\\\"name\\\":\\\"kanagawa-wave\\\",\\\"semanticHighlighting\\\":true,\\\"semanticTokenColors\\\":{\\\"arithmetic\\\":\\\"#C0A36E\\\",\\\"function\\\":\\\"#7E9CD8\\\",\\\"keyword.controlFlow\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#957FB8\\\"},\\\"macro\\\":\\\"#E46876\\\",\\\"method\\\":\\\"#7FB4CA\\\",\\\"operator\\\":\\\"#C0A36E\\\",\\\"parameter\\\":\\\"#B8B4D0\\\",\\\"parameter.declaration\\\":\\\"#B8B4D0\\\",\\\"parameter.definition\\\":\\\"#B8B4D0\\\",\\\"variable\\\":\\\"#DCD7BA\\\",\\\"variable.readonly\\\":\\\"#DCD7BA\\\",\\\"variable.readonly.defaultLibrary\\\":\\\"#DCD7BA\\\",\\\"variable.readonly.local\\\":\\\"#DCD7BA\\\"},\\\"tokenColors\\\":[{\\\"scope\\\":[\\\"comment\\\",\\\"punctuation.definition.comment\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#727169\\\"}},{\\\"scope\\\":[\\\"variable\\\",\\\"string constant.other.placeholder\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#DCD7BA\\\"}},{\\\"scope\\\":[\\\"constant.other.color\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FFA066\\\"}},{\\\"scope\\\":[\\\"invalid\\\",\\\"invalid.illegal\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E82424\\\"}},{\\\"scope\\\":[\\\"storage.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#957FB8\\\"}},{\\\"scope\\\":[\\\"storage.modifier\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#957FB8\\\"}},{\\\"scope\\\":[\\\"keyword.control.flow\\\",\\\"keyword.control.conditional\\\",\\\"keyword.control.loop\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#957FB8\\\"}},{\\\"scope\\\":[\\\"keyword.control\\\",\\\"constant.other.color\\\",\\\"meta.tag\\\",\\\"keyword.other.template\\\",\\\"keyword.other.substitution\\\",\\\"keyword.other\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#957FB8\\\"}},{\\\"scope\\\":[\\\"keyword.other.definition.ini\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FFA066\\\"}},{\\\"scope\\\":[\\\"keyword.control.trycatch\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#FF5D62\\\"}},{\\\"scope\\\":[\\\"keyword.other.unit\\\",\\\"keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E6C384\\\"}},{\\\"scope\\\":[\\\"punctuation\\\",\\\"punctuation.definition.tag\\\",\\\"punctuation.separator.inheritance.php\\\",\\\"punctuation.definition.tag.html\\\",\\\"punctuation.definition.tag.begin.html\\\",\\\"punctuation.definition.tag.end.html\\\",\\\"punctuation.section.embedded\\\",\\\"meta.brace\\\",\\\"keyword.operator.type.annotation\\\",\\\"keyword.operator.namespace\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#9CABCA\\\"}},{\\\"scope\\\":[\\\"entity.name.tag\\\",\\\"meta.tag.sgml\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E6C384\\\"}},{\\\"scope\\\":[\\\"entity.name.function\\\",\\\"meta.function-call\\\",\\\"variable.function\\\",\\\"support.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7E9CD8\\\"}},{\\\"scope\\\":[\\\"keyword.other.special-method\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7FB4CA\\\"}},{\\\"scope\\\":[\\\"entity.name.function.macro\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E46876\\\"}},{\\\"scope\\\":[\\\"meta.block variable.other\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#DCD7BA\\\"}},{\\\"scope\\\":[\\\"variable.other.enummember\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FFA066\\\"}},{\\\"scope\\\":[\\\"support.other.variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#DCD7BA\\\"}},{\\\"scope\\\":[\\\"string.other.link\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7FB4CA\\\"}},{\\\"scope\\\":[\\\"constant.numeric\\\",\\\"constant.language\\\",\\\"support.constant\\\",\\\"constant.character\\\",\\\"constant.escape\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FFA066\\\"}},{\\\"scope\\\":[\\\"constant.language.boolean\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FFA066\\\"}},{\\\"scope\\\":[\\\"constant.numeric\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D27E99\\\"}},{\\\"scope\\\":[\\\"string\\\",\\\"punctuation.definition.string\\\",\\\"constant.other.symbol\\\",\\\"constant.other.key\\\",\\\"entity.other.inherited-class\\\",\\\"markup.heading\\\",\\\"markup.inserted.git_gutter\\\",\\\"meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js\\\",\\\"markup.inline.raw.string\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#98BB6C\\\"}},{\\\"scope\\\":[\\\"entity.name\\\",\\\"support.type\\\",\\\"support.class\\\",\\\"support.other.namespace.use.php\\\",\\\"meta.use.php\\\",\\\"support.other.namespace.php\\\",\\\"support.type.sys-types\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7AA89F\\\"}},{\\\"scope\\\":[\\\"entity.name.type.module\\\",\\\"entity.name.namespace\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E6C384\\\"}},{\\\"scope\\\":[\\\"entity.name.import.go\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#98BB6C\\\"}},{\\\"scope\\\":[\\\"keyword.blade\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#957FB8\\\"}},{\\\"scope\\\":[\\\"variable.other.property\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E6C384\\\"}},{\\\"scope\\\":[\\\"keyword.control.import\\\",\\\"keyword.import\\\",\\\"meta.import\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FFA066\\\"}},{\\\"scope\\\":[\\\"source.css support.type.property-name\\\",\\\"source.sass support.type.property-name\\\",\\\"source.scss support.type.property-name\\\",\\\"source.less support.type.property-name\\\",\\\"source.stylus support.type.property-name\\\",\\\"source.postcss support.type.property-name\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7AA89F\\\"}},{\\\"scope\\\":[\\\"entity.name.module.js\\\",\\\"variable.import.parameter.js\\\",\\\"variable.other.class.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5D62\\\"}},{\\\"scope\\\":[\\\"variable.language\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5D62\\\"}},{\\\"scope\\\":[\\\"entity.name.method.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7FB4CA\\\"}},{\\\"scope\\\":[\\\"meta.class-method.js entity.name.function.js\\\",\\\"variable.function.constructor\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7FB4CA\\\"}},{\\\"scope\\\":[\\\"entity.other.attribute-name\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#957FB8\\\"}},{\\\"scope\\\":[\\\"entity.other.attribute-name.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E6C384\\\"}},{\\\"scope\\\":[\\\"source.sass keyword.control\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7FB4CA\\\"}},{\\\"scope\\\":[\\\"markup.inserted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#76946A\\\"}},{\\\"scope\\\":[\\\"markup.deleted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C34043\\\"}},{\\\"scope\\\":[\\\"markup.changed\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#DCA561\\\"}},{\\\"scope\\\":[\\\"string.regexp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C0A36E\\\"}},{\\\"scope\\\":[\\\"constant.character.escape\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7FB4CA\\\"}},{\\\"scope\\\":[\\\"*url*\\\",\\\"*link*\\\",\\\"*uri*\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":[\\\"tag.decorator.js entity.name.tag.js\\\",\\\"tag.decorator.js punctuation.definition.tag.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#957FB8\\\"}},{\\\"scope\\\":[\\\"source.js constant.other.object.key.js string.unquoted.label.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5D62\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D27E99\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E6C384\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FFA066\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5D62\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FFA066\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7E9CD8\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D27E99\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#957FB8\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#98BB6C\\\"}},{\\\"scope\\\":[\\\"meta.tag JSXNested\\\",\\\"meta.jsx.children\\\",\\\"text.html\\\",\\\"text.log\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#DCD7BA\\\"}},{\\\"scope\\\":[\\\"text.html.markdown\\\",\\\"punctuation.definition.list_item.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#DCD7BA\\\"}},{\\\"scope\\\":[\\\"text.html.markdown markup.inline.raw.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#957FB8\\\"}},{\\\"scope\\\":[\\\"text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#957FB8\\\"}},{\\\"scope\\\":[\\\"markdown.heading\\\",\\\"entity.name.section.markdown\\\",\\\"markup.heading.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7E9CD8\\\"}},{\\\"scope\\\":[\\\"markup.italic\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#E46876\\\"}},{\\\"scope\\\":[\\\"markup.bold\\\",\\\"markup.bold string\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":[\\\"markup.bold markup.italic\\\",\\\"markup.italic markup.bold\\\",\\\"markup.quote markup.bold\\\",\\\"markup.bold markup.italic string\\\",\\\"markup.italic markup.bold string\\\",\\\"markup.quote markup.bold string\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#E46876\\\"}},{\\\"scope\\\":[\\\"markup.underline\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\",\\\"foreground\\\":\\\"#7FB4CA\\\"}},{\\\"scope\\\":[\\\"markup.quote punctuation.definition.blockquote.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#727169\\\"}},{\\\"scope\\\":[\\\"markup.quote\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":[\\\"string.other.link.title.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FFA066\\\"}},{\\\"scope\\\":[\\\"string.other.link.description.title.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#957FB8\\\"}},{\\\"scope\\\":[\\\"constant.other.reference.link.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E6C384\\\"}},{\\\"scope\\\":[\\\"markup.raw.block\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#957FB8\\\"}},{\\\"scope\\\":[\\\"markup.raw.block.fenced.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#727169\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.fenced.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#727169\\\"}},{\\\"scope\\\":[\\\"markup.raw.block.fenced.markdown\\\",\\\"variable.language.fenced.markdown\\\",\\\"punctuation.section.class.end\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#DCD7BA\\\"}},{\\\"scope\\\":[\\\"variable.language.fenced.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#727169\\\"}},{\\\"scope\\\":[\\\"meta.separator\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#9CABCA\\\"}},{\\\"scope\\\":[\\\"markup.table\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#DCD7BA\\\"}}],\\\"type\\\":\\\"dark\\\"}\"))\n"],"names":["kanagawaWave"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,yqhBAA2vkB,CAAC","x_google_ignoreList":[0]}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const n = Object.freeze(
7
+ JSON.parse(
8
+ '{"displayName":"KDL","name":"kdl","patterns":[{"include":"#forbidden_ident"},{"include":"#null"},{"include":"#boolean"},{"include":"#float_keyword"},{"include":"#float_fraction"},{"include":"#float_exp"},{"include":"#decimal"},{"include":"#hexadecimal"},{"include":"#octal"},{"include":"#binary"},{"include":"#raw-string"},{"include":"#string_multi_line"},{"include":"#string_single_line"},{"include":"#block_comment"},{"include":"#block_doc_comment"},{"include":"#slashdash_block_comment"},{"include":"#slashdash_comment"},{"include":"#slashdash_node_comment"},{"include":"#slashdash_node_with_children_comment"},{"include":"#line_comment"},{"include":"#attribute"},{"include":"#node_name"},{"include":"#ident_string"}],"repository":{"attribute":{"captures":{"1":{"name":"punctuation.separator.key-value.kdl"}},"match":"(?![]#/;=\\\\[\\\\\\\\{}])[!$-.:<>?@^_`|~\\\\w]+\\\\d*[!$-.:<>?@^_`|~\\\\w]*(=)","name":"entity.other.attribute-name.kdl"},"binary":{"match":"\\\\b0b[01][01_]*\\\\b","name":"constant.numeric.integer.binary.rust"},"block_comment":{"begin":"/\\\\*","end":"\\\\*/","name":"comment.block.kdl","patterns":[{"include":"#block_doc_comment"},{"include":"#block_comment"}]},"block_doc_comment":{"begin":"/\\\\*[!*](?![*/])","end":"\\\\*/","name":"comment.block.documentation.kdl","patterns":[{"include":"#block_doc_comment"},{"include":"#block_comment"}]},"boolean":{"match":"#(?:true|false)","name":"constant.language.boolean.kdl"},"decimal":{"match":"\\\\b[-+0-9][0-9_]*\\\\b","name":"constant.numeric.integer.decimal.rust"},"float_exp":{"match":"\\\\b[0-9][0-9_]*(\\\\.[0-9][0-9_]*)?[Ee][-+]?[0-9_]+\\\\b","name":"constant.numeric.float.rust"},"float_fraction":{"match":"\\\\b([-+0-9])[0-9_]*\\\\.[0-9][0-9_]*([Ee][-+]?[0-9_]+)?\\\\b","name":"constant.numeric.float.rust"},"float_keyword":{"match":"#(?:nan|inf|-inf)","name":"constant.language.other.kdl"},"forbidden_ident":{"match":"(?<!#)(?:true|false|null|nan|-?inf)","name":"invalid.illegal.kdl.bad-ident"},"hexadecimal":{"match":"\\\\b0x\\\\h[_\\\\h]*\\\\b","name":"constant.numeric.integer.hexadecimal.rust"},"ident_string":{"match":"(?![]#/;=\\\\[\\\\\\\\{}])[!$-.:<>?@^_`|~\\\\w]+\\\\d*[!$-.:<>?@^_`|~\\\\w]*","name":"string.unquoted"},"line_comment":{"begin":"//","end":"$","name":"comment.line.double-slash.kdl"},"node_name":{"match":"((?<=[;{])|^)\\\\s*(?![]#/;=\\\\[\\\\\\\\{}])[!$-.:<>?@^_`|~\\\\w]+\\\\d*[!$-.:<>?@^_`|~\\\\w]*","name":"entity.name.tag"},"null":{"match":"#null","name":"constant.language.null.kdl"},"octal":{"match":"\\\\b0o[0-7][0-7_]*\\\\b","name":"constant.numeric.integer.octal.rust"},"raw-string":{"begin":"(#+)(\\"(?:\\"\\"|))","end":"\\\\2\\\\1","name":"string.quoted.other.raw.kdl"},"slashdash_block_comment":{"begin":"/-\\\\s*\\\\{","end":"}","name":"comment.block.slashdash.kdl"},"slashdash_comment":{"begin":"(?<!^)\\\\s*/-\\\\s*","end":"\\\\s","name":"comment.block.slashdash.kdl"},"slashdash_node_comment":{"begin":"(?<=^)\\\\s*/-[^{]+$","end":";|(?<!\\\\\\\\)$","name":"comment.block.slashdash.kdl"},"slashdash_node_with_children_comment":{"begin":"(?<=^)\\\\s*/-[^{]+\\\\{","end":"}","name":"comment.block.slashdash.kdl"},"string_multi_line":{"begin":"\\"\\"\\"","end":"\\"\\"\\"","name":"string.quoted.triple.kdl","patterns":[{"match":"\\\\\\\\(:?[\\"\\\\\\\\bfnrst]|u\\\\{\\\\h{1,6}})","name":"constant.character.escape.kdl"}]},"string_single_line":{"begin":"\\"","end":"\\"","name":"string.quoted.double.kdl","patterns":[{"match":"\\\\\\\\(:?[\\"\\\\\\\\bfnrst]|u\\\\{\\\\h{1,6}})","name":"constant.character.escape.kdl"}]}},"scopeName":"source.kdl"}',
9
+ ),
10
+ ),
11
+ e = [n];
12
+ export { e as default };
13
+ //# sourceMappingURL=kdl-DV7GczEv.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"kdl-DV7GczEv.js","sources":["../../../../node_modules/@shikijs/langs/dist/kdl.mjs"],"sourcesContent":["const lang = Object.freeze(JSON.parse(\"{\\\"displayName\\\":\\\"KDL\\\",\\\"name\\\":\\\"kdl\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#forbidden_ident\\\"},{\\\"include\\\":\\\"#null\\\"},{\\\"include\\\":\\\"#boolean\\\"},{\\\"include\\\":\\\"#float_keyword\\\"},{\\\"include\\\":\\\"#float_fraction\\\"},{\\\"include\\\":\\\"#float_exp\\\"},{\\\"include\\\":\\\"#decimal\\\"},{\\\"include\\\":\\\"#hexadecimal\\\"},{\\\"include\\\":\\\"#octal\\\"},{\\\"include\\\":\\\"#binary\\\"},{\\\"include\\\":\\\"#raw-string\\\"},{\\\"include\\\":\\\"#string_multi_line\\\"},{\\\"include\\\":\\\"#string_single_line\\\"},{\\\"include\\\":\\\"#block_comment\\\"},{\\\"include\\\":\\\"#block_doc_comment\\\"},{\\\"include\\\":\\\"#slashdash_block_comment\\\"},{\\\"include\\\":\\\"#slashdash_comment\\\"},{\\\"include\\\":\\\"#slashdash_node_comment\\\"},{\\\"include\\\":\\\"#slashdash_node_with_children_comment\\\"},{\\\"include\\\":\\\"#line_comment\\\"},{\\\"include\\\":\\\"#attribute\\\"},{\\\"include\\\":\\\"#node_name\\\"},{\\\"include\\\":\\\"#ident_string\\\"}],\\\"repository\\\":{\\\"attribute\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.separator.key-value.kdl\\\"}},\\\"match\\\":\\\"(?![]#/;=\\\\\\\\[\\\\\\\\\\\\\\\\{}])[!$-.:<>?@^_`|~\\\\\\\\w]+\\\\\\\\d*[!$-.:<>?@^_`|~\\\\\\\\w]*(=)\\\",\\\"name\\\":\\\"entity.other.attribute-name.kdl\\\"},\\\"binary\\\":{\\\"match\\\":\\\"\\\\\\\\b0b[01][01_]*\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.integer.binary.rust\\\"},\\\"block_comment\\\":{\\\"begin\\\":\\\"/\\\\\\\\*\\\",\\\"end\\\":\\\"\\\\\\\\*/\\\",\\\"name\\\":\\\"comment.block.kdl\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#block_doc_comment\\\"},{\\\"include\\\":\\\"#block_comment\\\"}]},\\\"block_doc_comment\\\":{\\\"begin\\\":\\\"/\\\\\\\\*[!*](?![*/])\\\",\\\"end\\\":\\\"\\\\\\\\*/\\\",\\\"name\\\":\\\"comment.block.documentation.kdl\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#block_doc_comment\\\"},{\\\"include\\\":\\\"#block_comment\\\"}]},\\\"boolean\\\":{\\\"match\\\":\\\"#(?:true|false)\\\",\\\"name\\\":\\\"constant.language.boolean.kdl\\\"},\\\"decimal\\\":{\\\"match\\\":\\\"\\\\\\\\b[-+0-9][0-9_]*\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.integer.decimal.rust\\\"},\\\"float_exp\\\":{\\\"match\\\":\\\"\\\\\\\\b[0-9][0-9_]*(\\\\\\\\.[0-9][0-9_]*)?[Ee][-+]?[0-9_]+\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.float.rust\\\"},\\\"float_fraction\\\":{\\\"match\\\":\\\"\\\\\\\\b([-+0-9])[0-9_]*\\\\\\\\.[0-9][0-9_]*([Ee][-+]?[0-9_]+)?\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.float.rust\\\"},\\\"float_keyword\\\":{\\\"match\\\":\\\"#(?:nan|inf|-inf)\\\",\\\"name\\\":\\\"constant.language.other.kdl\\\"},\\\"forbidden_ident\\\":{\\\"match\\\":\\\"(?<!#)(?:true|false|null|nan|-?inf)\\\",\\\"name\\\":\\\"invalid.illegal.kdl.bad-ident\\\"},\\\"hexadecimal\\\":{\\\"match\\\":\\\"\\\\\\\\b0x\\\\\\\\h[_\\\\\\\\h]*\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.integer.hexadecimal.rust\\\"},\\\"ident_string\\\":{\\\"match\\\":\\\"(?![]#/;=\\\\\\\\[\\\\\\\\\\\\\\\\{}])[!$-.:<>?@^_`|~\\\\\\\\w]+\\\\\\\\d*[!$-.:<>?@^_`|~\\\\\\\\w]*\\\",\\\"name\\\":\\\"string.unquoted\\\"},\\\"line_comment\\\":{\\\"begin\\\":\\\"//\\\",\\\"end\\\":\\\"$\\\",\\\"name\\\":\\\"comment.line.double-slash.kdl\\\"},\\\"node_name\\\":{\\\"match\\\":\\\"((?<=[;{])|^)\\\\\\\\s*(?![]#/;=\\\\\\\\[\\\\\\\\\\\\\\\\{}])[!$-.:<>?@^_`|~\\\\\\\\w]+\\\\\\\\d*[!$-.:<>?@^_`|~\\\\\\\\w]*\\\",\\\"name\\\":\\\"entity.name.tag\\\"},\\\"null\\\":{\\\"match\\\":\\\"#null\\\",\\\"name\\\":\\\"constant.language.null.kdl\\\"},\\\"octal\\\":{\\\"match\\\":\\\"\\\\\\\\b0o[0-7][0-7_]*\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.integer.octal.rust\\\"},\\\"raw-string\\\":{\\\"begin\\\":\\\"(#+)(\\\\\\\"(?:\\\\\\\"\\\\\\\"|))\\\",\\\"end\\\":\\\"\\\\\\\\2\\\\\\\\1\\\",\\\"name\\\":\\\"string.quoted.other.raw.kdl\\\"},\\\"slashdash_block_comment\\\":{\\\"begin\\\":\\\"/-\\\\\\\\s*\\\\\\\\{\\\",\\\"end\\\":\\\"}\\\",\\\"name\\\":\\\"comment.block.slashdash.kdl\\\"},\\\"slashdash_comment\\\":{\\\"begin\\\":\\\"(?<!^)\\\\\\\\s*/-\\\\\\\\s*\\\",\\\"end\\\":\\\"\\\\\\\\s\\\",\\\"name\\\":\\\"comment.block.slashdash.kdl\\\"},\\\"slashdash_node_comment\\\":{\\\"begin\\\":\\\"(?<=^)\\\\\\\\s*/-[^{]+$\\\",\\\"end\\\":\\\";|(?<!\\\\\\\\\\\\\\\\)$\\\",\\\"name\\\":\\\"comment.block.slashdash.kdl\\\"},\\\"slashdash_node_with_children_comment\\\":{\\\"begin\\\":\\\"(?<=^)\\\\\\\\s*/-[^{]+\\\\\\\\{\\\",\\\"end\\\":\\\"}\\\",\\\"name\\\":\\\"comment.block.slashdash.kdl\\\"},\\\"string_multi_line\\\":{\\\"begin\\\":\\\"\\\\\\\"\\\\\\\"\\\\\\\"\\\",\\\"end\\\":\\\"\\\\\\\"\\\\\\\"\\\\\\\"\\\",\\\"name\\\":\\\"string.quoted.triple.kdl\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\(:?[\\\\\\\"\\\\\\\\\\\\\\\\bfnrst]|u\\\\\\\\{\\\\\\\\h{1,6}})\\\",\\\"name\\\":\\\"constant.character.escape.kdl\\\"}]},\\\"string_single_line\\\":{\\\"begin\\\":\\\"\\\\\\\"\\\",\\\"end\\\":\\\"\\\\\\\"\\\",\\\"name\\\":\\\"string.quoted.double.kdl\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\(:?[\\\\\\\"\\\\\\\\\\\\\\\\bfnrst]|u\\\\\\\\{\\\\\\\\h{1,6}})\\\",\\\"name\\\":\\\"constant.character.escape.kdl\\\"}]}},\\\"scopeName\\\":\\\"source.kdl\\\"}\"))\n\nexport default [\nlang\n]\n"],"names":["lang","kdl"],"mappings":"AAAA,MAAMA,EAAO,OAAO,OAAO,KAAK,MAAM,6+GAAo6H,CAAC,EAE38HC,EAAe,CACfD,CACA","x_google_ignoreList":[0]}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const e = Object.freeze(
7
+ JSON.parse(
8
+ '{"displayName":"Kotlin","fileTypes":["kt","kts"],"name":"kotlin","patterns":[{"include":"#import"},{"include":"#package"},{"include":"#code"}],"repository":{"annotation-simple":{"match":"(?<!\\\\w)@[.\\\\w]+\\\\b(?!:)","name":"entity.name.type.annotation.kotlin"},"annotation-site":{"begin":"(?<!\\\\w)(@\\\\w+):\\\\s*(?!\\\\[)","beginCaptures":{"1":{"name":"entity.name.type.annotation-site.kotlin"}},"end":"$","patterns":[{"include":"#unescaped-annotation"}]},"annotation-site-list":{"begin":"(?<!\\\\w)(@\\\\w+):\\\\s*\\\\[","beginCaptures":{"1":{"name":"entity.name.type.annotation-site.kotlin"}},"end":"]","patterns":[{"include":"#unescaped-annotation"}]},"binary-literal":{"match":"0([Bb])[01][01_]*","name":"constant.numeric.binary.kotlin"},"boolean-literal":{"match":"\\\\b(true|false)\\\\b","name":"constant.language.boolean.kotlin"},"character":{"begin":"\'","end":"\'","name":"string.quoted.single.kotlin","patterns":[{"match":"\\\\\\\\.","name":"constant.character.escape.kotlin"}]},"class-declaration":{"captures":{"1":{"name":"keyword.hard.class.kotlin"},"2":{"name":"entity.name.type.class.kotlin"},"3":{"patterns":[{"include":"#type-parameter"}]}},"match":"\\\\b(class|(?:fun\\\\s+)?interface)\\\\s+(\\\\b\\\\w+\\\\b|`[^`]+`)\\\\s*(?<GROUP><([^<>]|\\\\g<GROUP>)+>)?"},"code":{"patterns":[{"include":"#comments"},{"include":"#keywords"},{"include":"#annotation-simple"},{"include":"#annotation-site-list"},{"include":"#annotation-site"},{"include":"#class-declaration"},{"include":"#object"},{"include":"#type-alias"},{"include":"#function"},{"include":"#variable-declaration"},{"include":"#type-constraint"},{"include":"#type-annotation"},{"include":"#function-call"},{"include":"#method-reference"},{"include":"#key"},{"include":"#string"},{"include":"#string-empty"},{"include":"#string-multiline"},{"include":"#character"},{"include":"#lambda-arrow"},{"include":"#operators"},{"include":"#self-reference"},{"include":"#decimal-literal"},{"include":"#hex-literal"},{"include":"#binary-literal"},{"include":"#boolean-literal"},{"include":"#null-literal"}]},"comment-block":{"begin":"/\\\\*(?!\\\\*)","end":"\\\\*/","name":"comment.block.kotlin"},"comment-javadoc":{"patterns":[{"begin":"/\\\\*\\\\*","end":"\\\\*/","name":"comment.block.javadoc.kotlin","patterns":[{"match":"@(return|constructor|receiver|sample|see|author|since|suppress)\\\\b","name":"keyword.other.documentation.javadoc.kotlin"},{"captures":{"1":{"name":"keyword.other.documentation.javadoc.kotlin"},"2":{"name":"variable.parameter.kotlin"}},"match":"(@p(?:aram|roperty))\\\\s+(\\\\S+)"},{"captures":{"1":{"name":"keyword.other.documentation.javadoc.kotlin"},"2":{"name":"variable.parameter.kotlin"}},"match":"(@param)\\\\[(\\\\S+)]"},{"captures":{"1":{"name":"keyword.other.documentation.javadoc.kotlin"},"2":{"name":"entity.name.type.class.kotlin"}},"match":"(@(?:exception|throws))\\\\s+(\\\\S+)"},{"captures":{"1":{"name":"keyword.other.documentation.javadoc.kotlin"},"2":{"name":"entity.name.type.class.kotlin"},"3":{"name":"variable.parameter.kotlin"}},"match":"\\\\{(@link)\\\\s+(\\\\S+)?#([$\\\\w]+\\\\s*\\\\([^()]*\\\\)).*}"}]}]},"comment-line":{"begin":"//","end":"$","name":"comment.line.double-slash.kotlin"},"comments":{"patterns":[{"include":"#comment-line"},{"include":"#comment-block"},{"include":"#comment-javadoc"}]},"control-keywords":{"match":"\\\\b(if|else|while|do|when|try|throw|break|continue|return|for)\\\\b","name":"keyword.control.kotlin"},"decimal-literal":{"match":"\\\\b\\\\d[_\\\\d]*(\\\\.[_\\\\d]+)?(([Ee])\\\\d+)?([Uu])?([FLf])?\\\\b","name":"constant.numeric.decimal.kotlin"},"function":{"captures":{"1":{"name":"keyword.hard.fun.kotlin"},"2":{"patterns":[{"include":"#type-parameter"}]},"4":{"name":"entity.name.type.class.extension.kotlin"},"5":{"name":"entity.name.function.declaration.kotlin"}},"match":"\\\\b(fun)\\\\b\\\\s*(?<GROUP><([^<>]|\\\\g<GROUP>)+>)?\\\\s*(?:(?:(\\\\w+)\\\\.)?(\\\\b\\\\w+\\\\b|`[^`]+`))?"},"function-call":{"captures":{"1":{"name":"entity.name.function.call.kotlin"},"2":{"patterns":[{"include":"#type-parameter"}]}},"match":"\\\\??\\\\.?(\\\\b\\\\w+\\\\b|`[^`]+`)\\\\s*(?<GROUP><([^<>]|\\\\g<GROUP>)+>)?\\\\s*(?=[({])"},"hard-keywords":{"match":"\\\\b(as|typeof|is|in)\\\\b","name":"keyword.hard.kotlin"},"hex-literal":{"match":"0([Xx])\\\\h[_\\\\h]*([Uu])?","name":"constant.numeric.hex.kotlin"},"import":{"begin":"\\\\b(import)\\\\b\\\\s*","beginCaptures":{"1":{"name":"keyword.soft.kotlin"}},"contentName":"entity.name.package.kotlin","end":";|$","name":"meta.import.kotlin","patterns":[{"include":"#comments"},{"include":"#hard-keywords"},{"match":"\\\\*","name":"variable.language.wildcard.kotlin"}]},"key":{"captures":{"1":{"name":"variable.parameter.kotlin"},"2":{"name":"keyword.operator.assignment.kotlin"}},"match":"\\\\b(\\\\w=)\\\\s*(=)"},"keywords":{"patterns":[{"include":"#prefix-modifiers"},{"include":"#postfix-modifiers"},{"include":"#soft-keywords"},{"include":"#hard-keywords"},{"include":"#control-keywords"}]},"lambda-arrow":{"match":"->","name":"storage.type.function.arrow.kotlin"},"method-reference":{"captures":{"1":{"name":"entity.name.function.reference.kotlin"}},"match":"\\\\??::(\\\\b\\\\w+\\\\b|`[^`]+`)"},"null-literal":{"match":"\\\\bnull\\\\b","name":"constant.language.null.kotlin"},"object":{"captures":{"1":{"name":"keyword.hard.object.kotlin"},"2":{"name":"entity.name.type.object.kotlin"}},"match":"\\\\b(object)(?:\\\\s+(\\\\b\\\\w+\\\\b|`[^`]+`))?"},"operators":{"patterns":[{"match":"(===?|!==?|<=|>=|[<>])","name":"keyword.operator.comparison.kotlin"},{"match":"([-%*+/]=)","name":"keyword.operator.assignment.arithmetic.kotlin"},{"match":"(=)","name":"keyword.operator.assignment.kotlin"},{"match":"([-%*+/])","name":"keyword.operator.arithmetic.kotlin"},{"match":"(!|&&|\\\\|\\\\|)","name":"keyword.operator.logical.kotlin"},{"match":"(--|\\\\+\\\\+)","name":"keyword.operator.increment-decrement.kotlin"},{"match":"(\\\\.\\\\.)","name":"keyword.operator.range.kotlin"}]},"package":{"begin":"\\\\b(package)\\\\b\\\\s*","beginCaptures":{"1":{"name":"keyword.hard.package.kotlin"}},"contentName":"entity.name.package.kotlin","end":";|$","name":"meta.package.kotlin","patterns":[{"include":"#comments"}]},"postfix-modifiers":{"match":"\\\\b(where|by|get|set)\\\\b","name":"storage.modifier.other.kotlin"},"prefix-modifiers":{"match":"\\\\b(abstract|final|enum|open|annotation|sealed|data|override|final|lateinit|private|protected|public|internal|inner|companion|noinline|crossinline|vararg|reified|tailrec|operator|infix|inline|external|const|suspend|value)\\\\b","name":"storage.modifier.other.kotlin"},"self-reference":{"match":"\\\\b(this|super)(@\\\\w+)?\\\\b","name":"variable.language.this.kotlin"},"soft-keywords":{"match":"\\\\b(init|catch|finally|field)\\\\b","name":"keyword.soft.kotlin"},"string":{"begin":"(?<!\\")\\"(?!\\")","end":"\\"","name":"string.quoted.double.kotlin","patterns":[{"match":"\\\\\\\\.","name":"constant.character.escape.kotlin"},{"include":"#string-escape-simple"},{"include":"#string-escape-bracketed"}]},"string-empty":{"match":"(?<!\\")\\"\\"(?!\\")","name":"string.quoted.double.kotlin"},"string-escape-bracketed":{"begin":"(?<!\\\\\\\\)(\\\\$\\\\{)","beginCaptures":{"1":{"name":"punctuation.definition.template-expression.begin"}},"end":"(})","endCaptures":{"1":{"name":"punctuation.definition.template-expression.end"}},"name":"meta.template.expression.kotlin","patterns":[{"include":"#code"}]},"string-escape-simple":{"match":"(?<!\\\\\\\\)\\\\$\\\\w+\\\\b","name":"variable.string-escape.kotlin"},"string-multiline":{"begin":"\\"\\"\\"","end":"\\"\\"\\"","name":"string.quoted.double.kotlin","patterns":[{"match":"\\\\\\\\.","name":"constant.character.escape.kotlin"},{"include":"#string-escape-simple"},{"include":"#string-escape-bracketed"}]},"type-alias":{"captures":{"1":{"name":"keyword.hard.typealias.kotlin"},"2":{"name":"entity.name.type.kotlin"},"3":{"patterns":[{"include":"#type-parameter"}]}},"match":"\\\\b(typealias)\\\\s+(\\\\b\\\\w+\\\\b|`[^`]+`)\\\\s*(?<GROUP><([^<>]|\\\\g<GROUP>)+>)?"},"type-annotation":{"captures":{"0":{"patterns":[{"include":"#type-parameter"}]}},"match":"(?<![:?]):\\\\s*([?\\\\w\\\\s]|->|(?<GROUP>[(<]([^\\"\'()<>]|\\\\g<GROUP>)+[)>]))+"},"type-parameter":{"patterns":[{"match":"\\\\b\\\\w+\\\\b","name":"entity.name.type.kotlin"},{"match":"\\\\b(in|out)\\\\b","name":"storage.modifier.kotlin"}]},"unescaped-annotation":{"match":"\\\\b[.\\\\w]+\\\\b","name":"entity.name.type.annotation.kotlin"},"variable-declaration":{"captures":{"1":{"name":"keyword.hard.kotlin"},"2":{"patterns":[{"include":"#type-parameter"}]}},"match":"\\\\b(va[lr])\\\\b\\\\s*(?<GROUP><([^<>]|\\\\g<GROUP>)+>)?"}},"scopeName":"source.kotlin","aliases":["kt","kts"]}',
9
+ ),
10
+ ),
11
+ n = [e];
12
+ export { n as default };
13
+ //# sourceMappingURL=kotlin-BdnUsdx6.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"kotlin-BdnUsdx6.js","sources":["../../../../node_modules/@shikijs/langs/dist/kotlin.mjs"],"sourcesContent":["const lang = Object.freeze(JSON.parse(\"{\\\"displayName\\\":\\\"Kotlin\\\",\\\"fileTypes\\\":[\\\"kt\\\",\\\"kts\\\"],\\\"name\\\":\\\"kotlin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#import\\\"},{\\\"include\\\":\\\"#package\\\"},{\\\"include\\\":\\\"#code\\\"}],\\\"repository\\\":{\\\"annotation-simple\\\":{\\\"match\\\":\\\"(?<!\\\\\\\\w)@[.\\\\\\\\w]+\\\\\\\\b(?!:)\\\",\\\"name\\\":\\\"entity.name.type.annotation.kotlin\\\"},\\\"annotation-site\\\":{\\\"begin\\\":\\\"(?<!\\\\\\\\w)(@\\\\\\\\w+):\\\\\\\\s*(?!\\\\\\\\[)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.type.annotation-site.kotlin\\\"}},\\\"end\\\":\\\"$\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#unescaped-annotation\\\"}]},\\\"annotation-site-list\\\":{\\\"begin\\\":\\\"(?<!\\\\\\\\w)(@\\\\\\\\w+):\\\\\\\\s*\\\\\\\\[\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.type.annotation-site.kotlin\\\"}},\\\"end\\\":\\\"]\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#unescaped-annotation\\\"}]},\\\"binary-literal\\\":{\\\"match\\\":\\\"0([Bb])[01][01_]*\\\",\\\"name\\\":\\\"constant.numeric.binary.kotlin\\\"},\\\"boolean-literal\\\":{\\\"match\\\":\\\"\\\\\\\\b(true|false)\\\\\\\\b\\\",\\\"name\\\":\\\"constant.language.boolean.kotlin\\\"},\\\"character\\\":{\\\"begin\\\":\\\"'\\\",\\\"end\\\":\\\"'\\\",\\\"name\\\":\\\"string.quoted.single.kotlin\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\.\\\",\\\"name\\\":\\\"constant.character.escape.kotlin\\\"}]},\\\"class-declaration\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.hard.class.kotlin\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.class.kotlin\\\"},\\\"3\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#type-parameter\\\"}]}},\\\"match\\\":\\\"\\\\\\\\b(class|(?:fun\\\\\\\\s+)?interface)\\\\\\\\s+(\\\\\\\\b\\\\\\\\w+\\\\\\\\b|`[^`]+`)\\\\\\\\s*(?<GROUP><([^<>]|\\\\\\\\g<GROUP>)+>)?\\\"},\\\"code\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#comments\\\"},{\\\"include\\\":\\\"#keywords\\\"},{\\\"include\\\":\\\"#annotation-simple\\\"},{\\\"include\\\":\\\"#annotation-site-list\\\"},{\\\"include\\\":\\\"#annotation-site\\\"},{\\\"include\\\":\\\"#class-declaration\\\"},{\\\"include\\\":\\\"#object\\\"},{\\\"include\\\":\\\"#type-alias\\\"},{\\\"include\\\":\\\"#function\\\"},{\\\"include\\\":\\\"#variable-declaration\\\"},{\\\"include\\\":\\\"#type-constraint\\\"},{\\\"include\\\":\\\"#type-annotation\\\"},{\\\"include\\\":\\\"#function-call\\\"},{\\\"include\\\":\\\"#method-reference\\\"},{\\\"include\\\":\\\"#key\\\"},{\\\"include\\\":\\\"#string\\\"},{\\\"include\\\":\\\"#string-empty\\\"},{\\\"include\\\":\\\"#string-multiline\\\"},{\\\"include\\\":\\\"#character\\\"},{\\\"include\\\":\\\"#lambda-arrow\\\"},{\\\"include\\\":\\\"#operators\\\"},{\\\"include\\\":\\\"#self-reference\\\"},{\\\"include\\\":\\\"#decimal-literal\\\"},{\\\"include\\\":\\\"#hex-literal\\\"},{\\\"include\\\":\\\"#binary-literal\\\"},{\\\"include\\\":\\\"#boolean-literal\\\"},{\\\"include\\\":\\\"#null-literal\\\"}]},\\\"comment-block\\\":{\\\"begin\\\":\\\"/\\\\\\\\*(?!\\\\\\\\*)\\\",\\\"end\\\":\\\"\\\\\\\\*/\\\",\\\"name\\\":\\\"comment.block.kotlin\\\"},\\\"comment-javadoc\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"/\\\\\\\\*\\\\\\\\*\\\",\\\"end\\\":\\\"\\\\\\\\*/\\\",\\\"name\\\":\\\"comment.block.javadoc.kotlin\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"@(return|constructor|receiver|sample|see|author|since|suppress)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.other.documentation.javadoc.kotlin\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.documentation.javadoc.kotlin\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.parameter.kotlin\\\"}},\\\"match\\\":\\\"(@p(?:aram|roperty))\\\\\\\\s+(\\\\\\\\S+)\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.documentation.javadoc.kotlin\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.parameter.kotlin\\\"}},\\\"match\\\":\\\"(@param)\\\\\\\\[(\\\\\\\\S+)]\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.documentation.javadoc.kotlin\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.class.kotlin\\\"}},\\\"match\\\":\\\"(@(?:exception|throws))\\\\\\\\s+(\\\\\\\\S+)\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.documentation.javadoc.kotlin\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.class.kotlin\\\"},\\\"3\\\":{\\\"name\\\":\\\"variable.parameter.kotlin\\\"}},\\\"match\\\":\\\"\\\\\\\\{(@link)\\\\\\\\s+(\\\\\\\\S+)?#([$\\\\\\\\w]+\\\\\\\\s*\\\\\\\\([^()]*\\\\\\\\)).*}\\\"}]}]},\\\"comment-line\\\":{\\\"begin\\\":\\\"//\\\",\\\"end\\\":\\\"$\\\",\\\"name\\\":\\\"comment.line.double-slash.kotlin\\\"},\\\"comments\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#comment-line\\\"},{\\\"include\\\":\\\"#comment-block\\\"},{\\\"include\\\":\\\"#comment-javadoc\\\"}]},\\\"control-keywords\\\":{\\\"match\\\":\\\"\\\\\\\\b(if|else|while|do|when|try|throw|break|continue|return|for)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.kotlin\\\"},\\\"decimal-literal\\\":{\\\"match\\\":\\\"\\\\\\\\b\\\\\\\\d[_\\\\\\\\d]*(\\\\\\\\.[_\\\\\\\\d]+)?(([Ee])\\\\\\\\d+)?([Uu])?([FLf])?\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.decimal.kotlin\\\"},\\\"function\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.hard.fun.kotlin\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#type-parameter\\\"}]},\\\"4\\\":{\\\"name\\\":\\\"entity.name.type.class.extension.kotlin\\\"},\\\"5\\\":{\\\"name\\\":\\\"entity.name.function.declaration.kotlin\\\"}},\\\"match\\\":\\\"\\\\\\\\b(fun)\\\\\\\\b\\\\\\\\s*(?<GROUP><([^<>]|\\\\\\\\g<GROUP>)+>)?\\\\\\\\s*(?:(?:(\\\\\\\\w+)\\\\\\\\.)?(\\\\\\\\b\\\\\\\\w+\\\\\\\\b|`[^`]+`))?\\\"},\\\"function-call\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.function.call.kotlin\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#type-parameter\\\"}]}},\\\"match\\\":\\\"\\\\\\\\??\\\\\\\\.?(\\\\\\\\b\\\\\\\\w+\\\\\\\\b|`[^`]+`)\\\\\\\\s*(?<GROUP><([^<>]|\\\\\\\\g<GROUP>)+>)?\\\\\\\\s*(?=[({])\\\"},\\\"hard-keywords\\\":{\\\"match\\\":\\\"\\\\\\\\b(as|typeof|is|in)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.hard.kotlin\\\"},\\\"hex-literal\\\":{\\\"match\\\":\\\"0([Xx])\\\\\\\\h[_\\\\\\\\h]*([Uu])?\\\",\\\"name\\\":\\\"constant.numeric.hex.kotlin\\\"},\\\"import\\\":{\\\"begin\\\":\\\"\\\\\\\\b(import)\\\\\\\\b\\\\\\\\s*\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.soft.kotlin\\\"}},\\\"contentName\\\":\\\"entity.name.package.kotlin\\\",\\\"end\\\":\\\";|$\\\",\\\"name\\\":\\\"meta.import.kotlin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#comments\\\"},{\\\"include\\\":\\\"#hard-keywords\\\"},{\\\"match\\\":\\\"\\\\\\\\*\\\",\\\"name\\\":\\\"variable.language.wildcard.kotlin\\\"}]},\\\"key\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.parameter.kotlin\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.operator.assignment.kotlin\\\"}},\\\"match\\\":\\\"\\\\\\\\b(\\\\\\\\w=)\\\\\\\\s*(=)\\\"},\\\"keywords\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#prefix-modifiers\\\"},{\\\"include\\\":\\\"#postfix-modifiers\\\"},{\\\"include\\\":\\\"#soft-keywords\\\"},{\\\"include\\\":\\\"#hard-keywords\\\"},{\\\"include\\\":\\\"#control-keywords\\\"}]},\\\"lambda-arrow\\\":{\\\"match\\\":\\\"->\\\",\\\"name\\\":\\\"storage.type.function.arrow.kotlin\\\"},\\\"method-reference\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.function.reference.kotlin\\\"}},\\\"match\\\":\\\"\\\\\\\\??::(\\\\\\\\b\\\\\\\\w+\\\\\\\\b|`[^`]+`)\\\"},\\\"null-literal\\\":{\\\"match\\\":\\\"\\\\\\\\bnull\\\\\\\\b\\\",\\\"name\\\":\\\"constant.language.null.kotlin\\\"},\\\"object\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.hard.object.kotlin\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.object.kotlin\\\"}},\\\"match\\\":\\\"\\\\\\\\b(object)(?:\\\\\\\\s+(\\\\\\\\b\\\\\\\\w+\\\\\\\\b|`[^`]+`))?\\\"},\\\"operators\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"(===?|!==?|<=|>=|[<>])\\\",\\\"name\\\":\\\"keyword.operator.comparison.kotlin\\\"},{\\\"match\\\":\\\"([-%*+/]=)\\\",\\\"name\\\":\\\"keyword.operator.assignment.arithmetic.kotlin\\\"},{\\\"match\\\":\\\"(=)\\\",\\\"name\\\":\\\"keyword.operator.assignment.kotlin\\\"},{\\\"match\\\":\\\"([-%*+/])\\\",\\\"name\\\":\\\"keyword.operator.arithmetic.kotlin\\\"},{\\\"match\\\":\\\"(!|&&|\\\\\\\\|\\\\\\\\|)\\\",\\\"name\\\":\\\"keyword.operator.logical.kotlin\\\"},{\\\"match\\\":\\\"(--|\\\\\\\\+\\\\\\\\+)\\\",\\\"name\\\":\\\"keyword.operator.increment-decrement.kotlin\\\"},{\\\"match\\\":\\\"(\\\\\\\\.\\\\\\\\.)\\\",\\\"name\\\":\\\"keyword.operator.range.kotlin\\\"}]},\\\"package\\\":{\\\"begin\\\":\\\"\\\\\\\\b(package)\\\\\\\\b\\\\\\\\s*\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.hard.package.kotlin\\\"}},\\\"contentName\\\":\\\"entity.name.package.kotlin\\\",\\\"end\\\":\\\";|$\\\",\\\"name\\\":\\\"meta.package.kotlin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#comments\\\"}]},\\\"postfix-modifiers\\\":{\\\"match\\\":\\\"\\\\\\\\b(where|by|get|set)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.modifier.other.kotlin\\\"},\\\"prefix-modifiers\\\":{\\\"match\\\":\\\"\\\\\\\\b(abstract|final|enum|open|annotation|sealed|data|override|final|lateinit|private|protected|public|internal|inner|companion|noinline|crossinline|vararg|reified|tailrec|operator|infix|inline|external|const|suspend|value)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.modifier.other.kotlin\\\"},\\\"self-reference\\\":{\\\"match\\\":\\\"\\\\\\\\b(this|super)(@\\\\\\\\w+)?\\\\\\\\b\\\",\\\"name\\\":\\\"variable.language.this.kotlin\\\"},\\\"soft-keywords\\\":{\\\"match\\\":\\\"\\\\\\\\b(init|catch|finally|field)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.soft.kotlin\\\"},\\\"string\\\":{\\\"begin\\\":\\\"(?<!\\\\\\\")\\\\\\\"(?!\\\\\\\")\\\",\\\"end\\\":\\\"\\\\\\\"\\\",\\\"name\\\":\\\"string.quoted.double.kotlin\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\.\\\",\\\"name\\\":\\\"constant.character.escape.kotlin\\\"},{\\\"include\\\":\\\"#string-escape-simple\\\"},{\\\"include\\\":\\\"#string-escape-bracketed\\\"}]},\\\"string-empty\\\":{\\\"match\\\":\\\"(?<!\\\\\\\")\\\\\\\"\\\\\\\"(?!\\\\\\\")\\\",\\\"name\\\":\\\"string.quoted.double.kotlin\\\"},\\\"string-escape-bracketed\\\":{\\\"begin\\\":\\\"(?<!\\\\\\\\\\\\\\\\)(\\\\\\\\$\\\\\\\\{)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.template-expression.begin\\\"}},\\\"end\\\":\\\"(})\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.template-expression.end\\\"}},\\\"name\\\":\\\"meta.template.expression.kotlin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#code\\\"}]},\\\"string-escape-simple\\\":{\\\"match\\\":\\\"(?<!\\\\\\\\\\\\\\\\)\\\\\\\\$\\\\\\\\w+\\\\\\\\b\\\",\\\"name\\\":\\\"variable.string-escape.kotlin\\\"},\\\"string-multiline\\\":{\\\"begin\\\":\\\"\\\\\\\"\\\\\\\"\\\\\\\"\\\",\\\"end\\\":\\\"\\\\\\\"\\\\\\\"\\\\\\\"\\\",\\\"name\\\":\\\"string.quoted.double.kotlin\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\.\\\",\\\"name\\\":\\\"constant.character.escape.kotlin\\\"},{\\\"include\\\":\\\"#string-escape-simple\\\"},{\\\"include\\\":\\\"#string-escape-bracketed\\\"}]},\\\"type-alias\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.hard.typealias.kotlin\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.kotlin\\\"},\\\"3\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#type-parameter\\\"}]}},\\\"match\\\":\\\"\\\\\\\\b(typealias)\\\\\\\\s+(\\\\\\\\b\\\\\\\\w+\\\\\\\\b|`[^`]+`)\\\\\\\\s*(?<GROUP><([^<>]|\\\\\\\\g<GROUP>)+>)?\\\"},\\\"type-annotation\\\":{\\\"captures\\\":{\\\"0\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#type-parameter\\\"}]}},\\\"match\\\":\\\"(?<![:?]):\\\\\\\\s*([?\\\\\\\\w\\\\\\\\s]|->|(?<GROUP>[(<]([^\\\\\\\"'()<>]|\\\\\\\\g<GROUP>)+[)>]))+\\\"},\\\"type-parameter\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b\\\\\\\\w+\\\\\\\\b\\\",\\\"name\\\":\\\"entity.name.type.kotlin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(in|out)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.modifier.kotlin\\\"}]},\\\"unescaped-annotation\\\":{\\\"match\\\":\\\"\\\\\\\\b[.\\\\\\\\w]+\\\\\\\\b\\\",\\\"name\\\":\\\"entity.name.type.annotation.kotlin\\\"},\\\"variable-declaration\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.hard.kotlin\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#type-parameter\\\"}]}},\\\"match\\\":\\\"\\\\\\\\b(va[lr])\\\\\\\\b\\\\\\\\s*(?<GROUP><([^<>]|\\\\\\\\g<GROUP>)+>)?\\\"}},\\\"scopeName\\\":\\\"source.kotlin\\\",\\\"aliases\\\":[\\\"kt\\\",\\\"kts\\\"]}\"))\n\nexport default [\nlang\n]\n"],"names":["lang","kotlin"],"mappings":"AAAA,MAAMA,EAAO,OAAO,OAAO,KAAK,MAAM,ihRAAqhT,CAAC,EAE5jTC,EAAe,CACfD,CACA","x_google_ignoreList":[0]}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const e = Object.freeze(
7
+ JSON.parse(
8
+ '{"displayName":"Kusto","fileTypes":["csl","kusto","kql"],"name":"kusto","patterns":[{"match":"\\\\b(by|from|of|to|step|with)\\\\b","name":"keyword.other.operator.kusto"},{"match":"\\\\b(let|set|alias|declare|pattern|query_parameters|restrict|access|set)\\\\b","name":"keyword.control.kusto"},{"match":"\\\\b(and|or|has_all|has_any|matches|regex)\\\\b","name":"keyword.other.operator.kusto"},{"captures":{"1":{"name":"support.function.kusto"},"2":{"patterns":[{"include":"#Strings"}]}},"match":"\\\\b(cluster|database)(?:\\\\s*\\\\(\\\\s*(.+?)\\\\s*\\\\))?(?!\\\\w)","name":"meta.special.database.kusto"},{"match":"\\\\b(external_table|materialized_view|materialize|table|toscalar)\\\\b","name":"support.function.kusto"},{"match":"(?<!\\\\w)(!?between)\\\\b","name":"keyword.other.operator.kusto"},{"captures":{"1":{"name":"support.function.kusto"},"2":{"patterns":[{"include":"#Numeric"}]},"3":{"patterns":[{"include":"#Numeric"}]}},"match":"\\\\b(binary_(?:and|or|shift_left|shift_right|xor))(?:\\\\s*\\\\(\\\\s*(\\\\w+)\\\\s*,\\\\s*(\\\\w+)\\\\s*\\\\))?(?!\\\\w)","name":"meta.scalar.bitwise.kusto"},{"captures":{"1":{"name":"support.function.kusto"},"2":{"patterns":[{"include":"#Numeric"}]}},"match":"\\\\b(bi(?:nary_not|tset_count_ones))(?:\\\\s*\\\\(\\\\s*(\\\\w+)\\\\s*\\\\))?(?!\\\\w)","name":"meta.scalar.bitwise.kusto"},{"match":"(?<!\\\\w)(!?in~?)(?!\\\\w)","name":"keyword.other.operator.kusto"},{"match":"(?<!\\\\w)(!?(?:contains|endswith|hasprefix|hassuffix|has|startswith)(?:_cs)?)(?!\\\\w)","name":"keyword.other.operator.kusto"},{"captures":{"1":{"name":"support.function.kusto"},"2":{"patterns":[{"include":"#DateTimeTimeSpanDataTypes"},{"include":"#TimeSpanLiterals"},{"include":"#DateTimeTimeSpanFunctions"},{"include":"#Numeric"}]},"3":{"patterns":[{"include":"#DateTimeTimeSpanDataTypes"},{"include":"#TimeSpanLiterals"},{"include":"#DateTimeTimeSpanFunctions"},{"include":"#Numeric"}]},"4":{"patterns":[{"include":"#DateTimeTimeSpanDataTypes"},{"include":"#TimeSpanLiterals"},{"include":"#DateTimeTimeSpanFunctions"},{"include":"#Numeric"}]}},"match":"\\\\b(range)\\\\s*\\\\((?:\\\\s*(\\\\w+(?:\\\\(.*?\\\\))?)\\\\s*,\\\\s*(\\\\w+(?:\\\\(.*?\\\\))?)\\\\s*,?\\\\s*{0,1}(\\\\w+(?:\\\\(.*?\\\\))?)?\\\\s*\\\\))?(?!\\\\w)","name":"meta.scalar.function.range.kusto"},{"match":"\\\\b(abs|acos|around|array_concat|array_iff|array_index_of|array_length|array_reverse|array_rotate_left|array_rotate_right|array_shift_left|array_shift_right|array_slice|array_sort_asc|array_sort_desc|array_split|array_sum|asin|assert|atan2?|bag_has_key|bag_keys|bag_merge|bag_remove_keys|base64_decode_toarray|base64_decode_tostring|base64_decode_toguid|base64_encode_fromarray|base64_encode_tostring|base64_encode_fromguid|beta_cdf|beta_inv|beta_pdf|bin_at|bin_auto|case|ceiling|coalesce|column_ifexists|convert_angle|convert_energy|convert_force|convert_length|convert_mass|convert_speed|convert_temperature|convert_volume|cos|cot|countof|current_cluster_endpoint|current_database|current_principal_details|current_principal_is_member_of|current_principal|cursor_after|cursor_before_or_at|cursor_current|current_cursor|dcount_hll|degrees|dynamic_to_json|estimate_data_size|exp10|exp2?|extent_id|extent_tags|extract_all|extract_json|extractjson|extract|floor|format_bytes|format_ipv4_mask|format_ipv4|gamma|gettype|gzip_compress_to_base64_string|gzip_decompress_from_base64_string|has_any_index|has_any_ipv4_prefix|has_any_ipv4|has_ipv4_prefix|has_ipv4|hash_combine|hash_many|hash_md5|hash_sha1|hash_sha256|hash_xxhash64|hash|iff|iif|indexof_regex|indexof|ingestion_time|ipv4_compare|ipv4_is_in_range|ipv4_is_in_any_range|ipv4_is_match|ipv4_is_private|ipv4_netmask_suffix|ipv6_compare|ipv6_is_match|isascii|isempty|isfinite|isinf|isnan|isnotempty|notempty|isnotnull|notnull|isnull|isutf8|jaccard_index|log10|log2|loggamma|log|make_string|max_of|min_of|new_guid|not|bag_pack|pack_all|pack_array|pack_dictionary|pack|parse_command_line|parse_csv|parse_ipv4_mask|parse_ipv4|parse_ipv6_mask|parse_ipv6|parse_path|parse_urlquery|parse_url|parse_user_agent|parse_version|parse_xml|percentile_tdigest|percentile_array_tdigest|percentrank_tdigest|pi|pow|radians|rand|rank_tdigest|regex_quote|repeat|replace_regex|replace_string|reverse|round|set_difference|set_has_element|set_intersect|set_union|sign|sin|split|sqrt|strcat_array|strcat_delim|strcmp|strcat|string_size|strlen|strrep|substring|tan|to_utf8|tobool|todecimal|todouble|toreal|toguid|tohex|toint|tolong|tolower|tostring|toupper|translate|treepath|trim_end|trim_start|trim|unixtime_microseconds_todatetime|unixtime_milliseconds_todatetime|unixtime_nanoseconds_todatetime|unixtime_seconds_todatetime|url_decode|url_encode_component|url_encode|welch_test|zip|zlib_compress_to_base64_string|zlib_decompress_from_base64_string)\\\\b","name":"support.function.kusto"},{"captures":{"1":{"name":"support.function.kusto"},"2":{"patterns":[{"include":"#DateTimeTimeSpanDataTypes"},{"include":"#TimeSpanLiterals"},{"include":"#DateTimeTimeSpanFunctions"},{"include":"#Numeric"}]},"3":{"patterns":[{"include":"#TimeSpanLiterals"},{"include":"#Numeric"}]}},"match":"\\\\b(bin)(?:\\\\s*\\\\(\\\\s*(.+?)\\\\s*,\\\\s*(.+?)\\\\s*\\\\))?(?!\\\\w)","name":"meta.scalar.function.bin.kusto"},{"match":"\\\\b(count)\\\\s*\\\\(\\\\s*\\\\)(?!\\\\w)","name":"support.function.kusto"},{"match":"\\\\b(arg_max|arg_min|avgif|avg|binary_all_and|binary_all_or|binary_all_xor|buildschema|countif|dcount|dcountif|hll|hll_merge|make_bag_if|make_bag|make_list_with_nulls|make_list_if|make_list|make_set_if|make_set|maxif|max|minif|min|percentilesw_array|percentiles_array|percentilesw|percentilew|percentiles?|stdevif|stdevp?|sumif|sum|take_anyif|take_any|tdigest_merge|merge_tdigest|tdigest|varianceif|variancep?)\\\\b","name":"support.function.kusto"},{"match":"\\\\b(geo_(?:distance_2points|distance_point_to_line|distance_point_to_polygon|intersects_2lines|intersects_2polygons|intersects_line_with_polygon|intersection_2lines|intersection_2polygons|intersection_line_with_polygon|line_centroid|line_densify|line_length|line_simplify|polygon_area|polygon_centroid|polygon_densify|polygon_perimeter|polygon_simplify|polygon_to_s2cells|point_in_circle|point_in_polygon|point_to_geohash|point_to_h3cell|point_to_s2cell|geohash_to_central_point|geohash_neighbors|geohash_to_polygon|s2cell_to_central_point|s2cell_neighbors|s2cell_to_polygon|h3cell_to_central_point|h3cell_neighbors|h3cell_to_polygon|h3cell_parent|h3cell_children|h3cell_level|h3cell_rings|simplify_polygons_array|union_lines_array|union_polygons_array))\\\\b","name":"support.function.kusto"},{"match":"\\\\b(next|prev|row_cumsum|row_number|row_rank|row_window_session)\\\\b","name":"support.function.kusto"},{"match":"\\\\.(create-or-alter|replace)","name":"keyword.control.kusto"},{"match":"(?<=let )[^\\\\n]+(?=\\\\W*=)","name":"entity.function.name.lambda.kusto"},{"match":"\\\\b(folder|docstring|skipvalidation)\\\\b","name":"keyword.other.operator.kusto"},{"match":"\\\\b(function)\\\\b","name":"storage.type.kusto"},{"match":"\\\\b(bool|boolean|decimal|dynamic|guid|int|long|real|string)\\\\b","name":"storage.type.kusto"},{"captures":{"1":{"name":"keyword.other.query.kusto"},"2":{"name":"variable.other.kusto"}},"match":"\\\\b(as)\\\\s+(\\\\w+)\\\\b","name":"meta.query.as.kusto"},{"match":"\\\\b(datatable)(?=\\\\W*\\\\()","name":"keyword.other.query.kusto"},{"captures":{"1":{"name":"keyword.other.query.kusto"},"2":{"name":"keyword.other.operator.kusto"}},"match":"\\\\b(facet)(?:\\\\s+(by))?\\\\b","name":"meta.query.facet.kusto"},{"captures":{"1":{"name":"keyword.other.query.kusto"},"2":{"name":"entity.name.function.kusto"}},"match":"\\\\b(invoke)(?:\\\\s+(\\\\w+))?\\\\b","name":"meta.query.invoke.kusto"},{"captures":{"1":{"name":"keyword.other.query.kusto"},"2":{"name":"keyword.other.operator.kusto"},"3":{"name":"variable.other.column.kusto"}},"match":"\\\\b(order)(?:\\\\s+(by)\\\\s+(\\\\w+))?\\\\b","name":"meta.query.order.kusto"},{"captures":{"1":{"name":"keyword.other.query.kusto"},"2":{"name":"variable.other.column.kusto"},"3":{"name":"keyword.other.operator.kusto"},"4":{"patterns":[{"include":"#TimeSpanLiterals"},{"include":"#DateTimeTimeSpanFunctions"},{"include":"#Numeric"}]},"5":{"name":"keyword.other.operator.kusto"},"6":{"patterns":[{"include":"#TimeSpanLiterals"},{"include":"#DateTimeTimeSpanFunctions"},{"include":"#Numeric"}]},"7":{"name":"keyword.other.operator.kusto"},"8":{"patterns":[{"include":"#TimeSpanLiterals"},{"include":"#DateTimeTimeSpanFunctions"},{"include":"#Numeric"}]}},"match":"\\\\b(range)\\\\s+(\\\\w+)\\\\s+(from)\\\\s+(\\\\w+(?:\\\\(\\\\w*\\\\))?)\\\\s+(to)\\\\s+(\\\\w+(?:\\\\(\\\\w*\\\\))?)\\\\s+(step)\\\\s+(\\\\w+(?:\\\\(\\\\w*\\\\))?)\\\\b","name":"meta.query.range.kusto"},{"captures":{"1":{"name":"keyword.other.query.kusto"},"2":{"patterns":[{"include":"#Numeric"}]}},"match":"\\\\b(sample)(?:\\\\s+(\\\\d+))?(?![-\\\\w])","name":"meta.query.sample.kusto"},{"captures":{"1":{"name":"keyword.other.query.kusto"},"2":{"patterns":[{"include":"#Numeric"}]},"3":{"name":"keyword.other.operator.kusto"},"4":{"name":"variable.other.column.kusto"}},"match":"\\\\b(sample-distinct)(?:\\\\s+(\\\\d+)\\\\s+(of)\\\\s+(\\\\w+))?\\\\b","name":"meta.query.sample-distinct.kusto"},{"captures":{"1":{"name":"keyword.other.query.kusto"},"2":{"name":"keyword.other.operator.kusto"}},"match":"\\\\b(sort)(?:\\\\s+(by))?\\\\b","name":"meta.query.sort.kusto"},{"captures":{"1":{"name":"keyword.other.query.kusto"},"2":{"patterns":[{"include":"#Numeric"}]}},"match":"\\\\b(take|limit)\\\\s+(\\\\d+)\\\\b","name":"meta.query.take.kusto"},{"captures":{"1":{"name":"keyword.other.query.kusto"},"2":{"patterns":[{"include":"#Numeric"}]},"3":{"name":"keyword.other.operator.kusto"},"4":{"name":"variable.other.column.kusto"}},"match":"\\\\b(top)(?:\\\\s+(\\\\d+)\\\\s+(by)\\\\s+(\\\\w+))?(?![-\\\\w])\\\\b","name":"meta.query.top.kusto"},{"captures":{"1":{"name":"keyword.other.query.kusto"},"2":{"patterns":[{"include":"#Numeric"}]},"3":{"name":"keyword.other.operator.kusto"},"4":{"name":"variable.other.column.kusto"},"5":{"name":"keyword.other.operator.kusto"},"6":{"name":"variable.other.column.kusto"}},"match":"\\\\b(top-hitters)(?:\\\\s+(\\\\d+)\\\\s+(of)\\\\s+(\\\\w+)(?:\\\\s+(by)\\\\s+(\\\\w+))?)?\\\\b","name":"meta.query.top-hitters.kusto"},{"match":"\\\\b(consume|count|distinct|evaluate|extend|externaldata|find|fork|getschema|join|lookup|make-series|mv-apply|mv-expand|project-away|project-keep|project-rename|project-reorder|project|parse|parse-where|parse-kv|partition|print|reduce|render|scan|search|serialize|shuffle|summarize|top-nested|union|where)\\\\b","name":"keyword.other.query.kusto"},{"match":"\\\\b(active_users_count|activity_counts_metrics|activity_engagement|new_activity_metrics|activity_metrics|autocluster|azure_digital_twins_query_request|bag_unpack|basket|cosmosdb_sql_request|dcount_intersect|diffpatterns|funnel_sequence_completion|funnel_sequence|http_request_post|http_request|infer_storage_schema|ipv4_lookup|mysql_request|narrow|pivot|preview|rolling_percentile|rows_near|schema_merge|session_count|sequence_detect|sliding_window_counts|sql_request)\\\\b","name":"support.function.kusto"},{"match":"\\\\b(on|kind|hint\\\\.remote|hint\\\\.strategy)\\\\b","name":"keyword.other.operator.kusto"},{"match":"(\\\\$(?:left|right))\\\\b","name":"keyword.other.kusto"},{"match":"\\\\b(innerunique|inner|leftouter|rightouter|fullouter|leftanti|anti|leftantisemi|rightanti|rightantisemi|leftsemi|rightsemi|broadcast)\\\\b","name":"keyword.other.kusto"},{"match":"\\\\b(series_(?:abs|acos|add|asin|atan|cos|decompose|decompose_anomalies|decompose_forecast|divide|equals|exp|fft|fill_backward|fill_const|fill_forward|fill_linear|fir|fit_2lines_dynamic|fit_2lines|fit_line_dynamic|fit_line|fit_poly|greater_equals|greater|ifft|iir|less_equals|less|multiply|not_equals|outliers|pearson_correlation|periods_detect|periods_validate|pow|seasonal|sign|sin|stats|stats_dynamic|subtract|tan))\\\\b","name":"support.function.kusto"},{"match":"\\\\b(bag|array)\\\\b","name":"keyword.other.operator.kusto"},{"match":"\\\\b(asc|desc|nulls first|nulls last)\\\\b","name":"keyword.other.kusto"},{"match":"\\\\b(regex|simple|relaxed)\\\\b","name":"keyword.other.kusto"},{"match":"\\\\b(anomalychart|areachart|barchart|card|columnchart|ladderchart|linechart|piechart|pivotchart|scatterchart|stackedareachart|timechart|timepivot)\\\\b","name":"support.function.kusto"},{"include":"#Strings"},{"match":"\\\\{.*?}","name":"string.other.kusto"},{"match":"//.*","name":"comment.line.kusto"},{"include":"#TimeSpanLiterals"},{"include":"#DateTimeTimeSpanFunctions"},{"include":"#DateTimeTimeSpanDataTypes"},{"include":"#Numeric"},{"match":"\\\\b(true|false|null)\\\\b","name":"constant.language.kusto"},{"match":"\\\\b(anyif|any|array_strcat|base64_decodestring|base64_encodestring|make_dictionary|makelist|makeset|mvexpand|todynamic|parse_json|replace|weekofyear)(?=\\\\W*\\\\(|\\\\b)","name":"invalid.deprecated.kusto"}],"repository":{"DateTimeTimeSpanDataTypes":{"patterns":[{"match":"\\\\b(datetime|timespan|time)\\\\b","name":"storage.type.kusto"}]},"DateTimeTimeSpanFunctions":{"patterns":[{"captures":{"1":{"name":"support.function.kusto"},"2":{"patterns":[{"include":"#DateTimeTimeSpanDataTypes"}]},"3":{"patterns":[{"include":"#Strings"}]}},"match":"\\\\b(format_datetime)(?:\\\\s*\\\\(\\\\s*(.+?)\\\\s*,\\\\s*([\\"\'].*?[\\"\'])\\\\s*\\\\))?(?!\\\\w)","name":"meta.scalar.function.format_datetime.kusto"},{"match":"\\\\b(ago|datetime_add|datetime_diff|datetime_local_to_utc|datetime_part|datetime_utc_to_local|dayofmonth|dayofweek|dayofyear|endofday|endofmonth|endofweek|endofyear|format_timespan|getmonth|getyear|hourofday|make_datetime|make_timespan|monthofyear|now|startofday|startofmonth|startofweek|startofyear|todatetime|totimespan|week_of_year)(?=\\\\W*\\\\()","name":"support.function.kusto"}]},"Escapes":{"patterns":[{"match":"\\\\\\\\[\\"\'\\\\\\\\nt]","name":"constant.character.escape.kusto"}]},"Numeric":{"patterns":[{"match":"\\\\b((0([Xx])\\\\h*)|(([0-9]+\\\\.?[0-9]*+)|(\\\\.[0-9]+))(([Ee])([-+])?[0-9]+)?)([Ll]|UL|ul|[FUfu]|ll|LL|ull|ULL)?(?=\\\\b|\\\\w)","name":"constant.numeric.kusto"}]},"Strings":{"patterns":[{"begin":"([@h]?\\")","beginCaptures":{"1":{"name":"punctuation.definition.string.kusto"}},"end":"\\"","endCaptures":{"0":{"name":"punctuation.definition.string.kusto"}},"name":"string.quoted.double.kusto","patterns":[{"include":"#Escapes"}]},{"begin":"([@h]?\')","beginCaptures":{"1":{"name":"punctuation.definition.string.kusto"}},"end":"\'","endCaptures":{"0":{"name":"punctuation.definition.string.kusto"}},"name":"string.quoted.single.kusto","patterns":[{"include":"#Escapes"}]},{"begin":"([@h]?```)","beginCaptures":{"1":{"name":"punctuation.definition.string.kusto"}},"end":"```","endCaptures":{"0":{"name":"punctuation.definition.string.kusto"}},"name":"string.quoted.multi.kusto","patterns":[{"include":"#Escapes"}]}]},"TimeSpanLiterals":{"patterns":[{"match":"[-+]?(?:\\\\d*\\\\.)?\\\\d+(?:microseconds?|ticks?|seconds?|ms|[dhms])\\\\b","name":"constant.numeric.kusto"}]}},"scopeName":"source.kusto","aliases":["kql"]}',
9
+ ),
10
+ ),
11
+ t = [e];
12
+ export { t as default };
13
+ //# sourceMappingURL=kusto-wEQ09or8.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"kusto-wEQ09or8.js","sources":["../../../../node_modules/@shikijs/langs/dist/kusto.mjs"],"sourcesContent":["const lang = Object.freeze(JSON.parse(\"{\\\"displayName\\\":\\\"Kusto\\\",\\\"fileTypes\\\":[\\\"csl\\\",\\\"kusto\\\",\\\"kql\\\"],\\\"name\\\":\\\"kusto\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(by|from|of|to|step|with)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(let|set|alias|declare|pattern|query_parameters|restrict|access|set)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(and|or|has_all|has_any|matches|regex)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.kusto\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#Strings\\\"}]}},\\\"match\\\":\\\"\\\\\\\\b(cluster|database)(?:\\\\\\\\s*\\\\\\\\(\\\\\\\\s*(.+?)\\\\\\\\s*\\\\\\\\))?(?!\\\\\\\\w)\\\",\\\"name\\\":\\\"meta.special.database.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(external_table|materialized_view|materialize|table|toscalar)\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.kusto\\\"},{\\\"match\\\":\\\"(?<!\\\\\\\\w)(!?between)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.kusto\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#Numeric\\\"}]},\\\"3\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#Numeric\\\"}]}},\\\"match\\\":\\\"\\\\\\\\b(binary_(?:and|or|shift_left|shift_right|xor))(?:\\\\\\\\s*\\\\\\\\(\\\\\\\\s*(\\\\\\\\w+)\\\\\\\\s*,\\\\\\\\s*(\\\\\\\\w+)\\\\\\\\s*\\\\\\\\))?(?!\\\\\\\\w)\\\",\\\"name\\\":\\\"meta.scalar.bitwise.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.kusto\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#Numeric\\\"}]}},\\\"match\\\":\\\"\\\\\\\\b(bi(?:nary_not|tset_count_ones))(?:\\\\\\\\s*\\\\\\\\(\\\\\\\\s*(\\\\\\\\w+)\\\\\\\\s*\\\\\\\\))?(?!\\\\\\\\w)\\\",\\\"name\\\":\\\"meta.scalar.bitwise.kusto\\\"},{\\\"match\\\":\\\"(?<!\\\\\\\\w)(!?in~?)(?!\\\\\\\\w)\\\",\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},{\\\"match\\\":\\\"(?<!\\\\\\\\w)(!?(?:contains|endswith|hasprefix|hassuffix|has|startswith)(?:_cs)?)(?!\\\\\\\\w)\\\",\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.kusto\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#DateTimeTimeSpanDataTypes\\\"},{\\\"include\\\":\\\"#TimeSpanLiterals\\\"},{\\\"include\\\":\\\"#DateTimeTimeSpanFunctions\\\"},{\\\"include\\\":\\\"#Numeric\\\"}]},\\\"3\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#DateTimeTimeSpanDataTypes\\\"},{\\\"include\\\":\\\"#TimeSpanLiterals\\\"},{\\\"include\\\":\\\"#DateTimeTimeSpanFunctions\\\"},{\\\"include\\\":\\\"#Numeric\\\"}]},\\\"4\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#DateTimeTimeSpanDataTypes\\\"},{\\\"include\\\":\\\"#TimeSpanLiterals\\\"},{\\\"include\\\":\\\"#DateTimeTimeSpanFunctions\\\"},{\\\"include\\\":\\\"#Numeric\\\"}]}},\\\"match\\\":\\\"\\\\\\\\b(range)\\\\\\\\s*\\\\\\\\((?:\\\\\\\\s*(\\\\\\\\w+(?:\\\\\\\\(.*?\\\\\\\\))?)\\\\\\\\s*,\\\\\\\\s*(\\\\\\\\w+(?:\\\\\\\\(.*?\\\\\\\\))?)\\\\\\\\s*,?\\\\\\\\s*{0,1}(\\\\\\\\w+(?:\\\\\\\\(.*?\\\\\\\\))?)?\\\\\\\\s*\\\\\\\\))?(?!\\\\\\\\w)\\\",\\\"name\\\":\\\"meta.scalar.function.range.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(abs|acos|around|array_concat|array_iff|array_index_of|array_length|array_reverse|array_rotate_left|array_rotate_right|array_shift_left|array_shift_right|array_slice|array_sort_asc|array_sort_desc|array_split|array_sum|asin|assert|atan2?|bag_has_key|bag_keys|bag_merge|bag_remove_keys|base64_decode_toarray|base64_decode_tostring|base64_decode_toguid|base64_encode_fromarray|base64_encode_tostring|base64_encode_fromguid|beta_cdf|beta_inv|beta_pdf|bin_at|bin_auto|case|ceiling|coalesce|column_ifexists|convert_angle|convert_energy|convert_force|convert_length|convert_mass|convert_speed|convert_temperature|convert_volume|cos|cot|countof|current_cluster_endpoint|current_database|current_principal_details|current_principal_is_member_of|current_principal|cursor_after|cursor_before_or_at|cursor_current|current_cursor|dcount_hll|degrees|dynamic_to_json|estimate_data_size|exp10|exp2?|extent_id|extent_tags|extract_all|extract_json|extractjson|extract|floor|format_bytes|format_ipv4_mask|format_ipv4|gamma|gettype|gzip_compress_to_base64_string|gzip_decompress_from_base64_string|has_any_index|has_any_ipv4_prefix|has_any_ipv4|has_ipv4_prefix|has_ipv4|hash_combine|hash_many|hash_md5|hash_sha1|hash_sha256|hash_xxhash64|hash|iff|iif|indexof_regex|indexof|ingestion_time|ipv4_compare|ipv4_is_in_range|ipv4_is_in_any_range|ipv4_is_match|ipv4_is_private|ipv4_netmask_suffix|ipv6_compare|ipv6_is_match|isascii|isempty|isfinite|isinf|isnan|isnotempty|notempty|isnotnull|notnull|isnull|isutf8|jaccard_index|log10|log2|loggamma|log|make_string|max_of|min_of|new_guid|not|bag_pack|pack_all|pack_array|pack_dictionary|pack|parse_command_line|parse_csv|parse_ipv4_mask|parse_ipv4|parse_ipv6_mask|parse_ipv6|parse_path|parse_urlquery|parse_url|parse_user_agent|parse_version|parse_xml|percentile_tdigest|percentile_array_tdigest|percentrank_tdigest|pi|pow|radians|rand|rank_tdigest|regex_quote|repeat|replace_regex|replace_string|reverse|round|set_difference|set_has_element|set_intersect|set_union|sign|sin|split|sqrt|strcat_array|strcat_delim|strcmp|strcat|string_size|strlen|strrep|substring|tan|to_utf8|tobool|todecimal|todouble|toreal|toguid|tohex|toint|tolong|tolower|tostring|toupper|translate|treepath|trim_end|trim_start|trim|unixtime_microseconds_todatetime|unixtime_milliseconds_todatetime|unixtime_nanoseconds_todatetime|unixtime_seconds_todatetime|url_decode|url_encode_component|url_encode|welch_test|zip|zlib_compress_to_base64_string|zlib_decompress_from_base64_string)\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.kusto\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#DateTimeTimeSpanDataTypes\\\"},{\\\"include\\\":\\\"#TimeSpanLiterals\\\"},{\\\"include\\\":\\\"#DateTimeTimeSpanFunctions\\\"},{\\\"include\\\":\\\"#Numeric\\\"}]},\\\"3\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#TimeSpanLiterals\\\"},{\\\"include\\\":\\\"#Numeric\\\"}]}},\\\"match\\\":\\\"\\\\\\\\b(bin)(?:\\\\\\\\s*\\\\\\\\(\\\\\\\\s*(.+?)\\\\\\\\s*,\\\\\\\\s*(.+?)\\\\\\\\s*\\\\\\\\))?(?!\\\\\\\\w)\\\",\\\"name\\\":\\\"meta.scalar.function.bin.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(count)\\\\\\\\s*\\\\\\\\(\\\\\\\\s*\\\\\\\\)(?!\\\\\\\\w)\\\",\\\"name\\\":\\\"support.function.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(arg_max|arg_min|avgif|avg|binary_all_and|binary_all_or|binary_all_xor|buildschema|countif|dcount|dcountif|hll|hll_merge|make_bag_if|make_bag|make_list_with_nulls|make_list_if|make_list|make_set_if|make_set|maxif|max|minif|min|percentilesw_array|percentiles_array|percentilesw|percentilew|percentiles?|stdevif|stdevp?|sumif|sum|take_anyif|take_any|tdigest_merge|merge_tdigest|tdigest|varianceif|variancep?)\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(geo_(?:distance_2points|distance_point_to_line|distance_point_to_polygon|intersects_2lines|intersects_2polygons|intersects_line_with_polygon|intersection_2lines|intersection_2polygons|intersection_line_with_polygon|line_centroid|line_densify|line_length|line_simplify|polygon_area|polygon_centroid|polygon_densify|polygon_perimeter|polygon_simplify|polygon_to_s2cells|point_in_circle|point_in_polygon|point_to_geohash|point_to_h3cell|point_to_s2cell|geohash_to_central_point|geohash_neighbors|geohash_to_polygon|s2cell_to_central_point|s2cell_neighbors|s2cell_to_polygon|h3cell_to_central_point|h3cell_neighbors|h3cell_to_polygon|h3cell_parent|h3cell_children|h3cell_level|h3cell_rings|simplify_polygons_array|union_lines_array|union_polygons_array))\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(next|prev|row_cumsum|row_number|row_rank|row_window_session)\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\.(create-or-alter|replace)\\\",\\\"name\\\":\\\"keyword.control.kusto\\\"},{\\\"match\\\":\\\"(?<=let )[^\\\\\\\\n]+(?=\\\\\\\\W*=)\\\",\\\"name\\\":\\\"entity.function.name.lambda.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(folder|docstring|skipvalidation)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(function)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(bool|boolean|decimal|dynamic|guid|int|long|real|string)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.query.kusto\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.other.kusto\\\"}},\\\"match\\\":\\\"\\\\\\\\b(as)\\\\\\\\s+(\\\\\\\\w+)\\\\\\\\b\\\",\\\"name\\\":\\\"meta.query.as.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(datatable)(?=\\\\\\\\W*\\\\\\\\()\\\",\\\"name\\\":\\\"keyword.other.query.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.query.kusto\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.other.operator.kusto\\\"}},\\\"match\\\":\\\"\\\\\\\\b(facet)(?:\\\\\\\\s+(by))?\\\\\\\\b\\\",\\\"name\\\":\\\"meta.query.facet.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.query.kusto\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.function.kusto\\\"}},\\\"match\\\":\\\"\\\\\\\\b(invoke)(?:\\\\\\\\s+(\\\\\\\\w+))?\\\\\\\\b\\\",\\\"name\\\":\\\"meta.query.invoke.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.query.kusto\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},\\\"3\\\":{\\\"name\\\":\\\"variable.other.column.kusto\\\"}},\\\"match\\\":\\\"\\\\\\\\b(order)(?:\\\\\\\\s+(by)\\\\\\\\s+(\\\\\\\\w+))?\\\\\\\\b\\\",\\\"name\\\":\\\"meta.query.order.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.query.kusto\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.other.column.kusto\\\"},\\\"3\\\":{\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},\\\"4\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#TimeSpanLiterals\\\"},{\\\"include\\\":\\\"#DateTimeTimeSpanFunctions\\\"},{\\\"include\\\":\\\"#Numeric\\\"}]},\\\"5\\\":{\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},\\\"6\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#TimeSpanLiterals\\\"},{\\\"include\\\":\\\"#DateTimeTimeSpanFunctions\\\"},{\\\"include\\\":\\\"#Numeric\\\"}]},\\\"7\\\":{\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},\\\"8\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#TimeSpanLiterals\\\"},{\\\"include\\\":\\\"#DateTimeTimeSpanFunctions\\\"},{\\\"include\\\":\\\"#Numeric\\\"}]}},\\\"match\\\":\\\"\\\\\\\\b(range)\\\\\\\\s+(\\\\\\\\w+)\\\\\\\\s+(from)\\\\\\\\s+(\\\\\\\\w+(?:\\\\\\\\(\\\\\\\\w*\\\\\\\\))?)\\\\\\\\s+(to)\\\\\\\\s+(\\\\\\\\w+(?:\\\\\\\\(\\\\\\\\w*\\\\\\\\))?)\\\\\\\\s+(step)\\\\\\\\s+(\\\\\\\\w+(?:\\\\\\\\(\\\\\\\\w*\\\\\\\\))?)\\\\\\\\b\\\",\\\"name\\\":\\\"meta.query.range.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.query.kusto\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#Numeric\\\"}]}},\\\"match\\\":\\\"\\\\\\\\b(sample)(?:\\\\\\\\s+(\\\\\\\\d+))?(?![-\\\\\\\\w])\\\",\\\"name\\\":\\\"meta.query.sample.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.query.kusto\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#Numeric\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},\\\"4\\\":{\\\"name\\\":\\\"variable.other.column.kusto\\\"}},\\\"match\\\":\\\"\\\\\\\\b(sample-distinct)(?:\\\\\\\\s+(\\\\\\\\d+)\\\\\\\\s+(of)\\\\\\\\s+(\\\\\\\\w+))?\\\\\\\\b\\\",\\\"name\\\":\\\"meta.query.sample-distinct.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.query.kusto\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.other.operator.kusto\\\"}},\\\"match\\\":\\\"\\\\\\\\b(sort)(?:\\\\\\\\s+(by))?\\\\\\\\b\\\",\\\"name\\\":\\\"meta.query.sort.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.query.kusto\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#Numeric\\\"}]}},\\\"match\\\":\\\"\\\\\\\\b(take|limit)\\\\\\\\s+(\\\\\\\\d+)\\\\\\\\b\\\",\\\"name\\\":\\\"meta.query.take.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.query.kusto\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#Numeric\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},\\\"4\\\":{\\\"name\\\":\\\"variable.other.column.kusto\\\"}},\\\"match\\\":\\\"\\\\\\\\b(top)(?:\\\\\\\\s+(\\\\\\\\d+)\\\\\\\\s+(by)\\\\\\\\s+(\\\\\\\\w+))?(?![-\\\\\\\\w])\\\\\\\\b\\\",\\\"name\\\":\\\"meta.query.top.kusto\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.query.kusto\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#Numeric\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},\\\"4\\\":{\\\"name\\\":\\\"variable.other.column.kusto\\\"},\\\"5\\\":{\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},\\\"6\\\":{\\\"name\\\":\\\"variable.other.column.kusto\\\"}},\\\"match\\\":\\\"\\\\\\\\b(top-hitters)(?:\\\\\\\\s+(\\\\\\\\d+)\\\\\\\\s+(of)\\\\\\\\s+(\\\\\\\\w+)(?:\\\\\\\\s+(by)\\\\\\\\s+(\\\\\\\\w+))?)?\\\\\\\\b\\\",\\\"name\\\":\\\"meta.query.top-hitters.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(consume|count|distinct|evaluate|extend|externaldata|find|fork|getschema|join|lookup|make-series|mv-apply|mv-expand|project-away|project-keep|project-rename|project-reorder|project|parse|parse-where|parse-kv|partition|print|reduce|render|scan|search|serialize|shuffle|summarize|top-nested|union|where)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.other.query.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(active_users_count|activity_counts_metrics|activity_engagement|new_activity_metrics|activity_metrics|autocluster|azure_digital_twins_query_request|bag_unpack|basket|cosmosdb_sql_request|dcount_intersect|diffpatterns|funnel_sequence_completion|funnel_sequence|http_request_post|http_request|infer_storage_schema|ipv4_lookup|mysql_request|narrow|pivot|preview|rolling_percentile|rows_near|schema_merge|session_count|sequence_detect|sliding_window_counts|sql_request)\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(on|kind|hint\\\\\\\\.remote|hint\\\\\\\\.strategy)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},{\\\"match\\\":\\\"(\\\\\\\\$(?:left|right))\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.other.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(innerunique|inner|leftouter|rightouter|fullouter|leftanti|anti|leftantisemi|rightanti|rightantisemi|leftsemi|rightsemi|broadcast)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.other.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(series_(?:abs|acos|add|asin|atan|cos|decompose|decompose_anomalies|decompose_forecast|divide|equals|exp|fft|fill_backward|fill_const|fill_forward|fill_linear|fir|fit_2lines_dynamic|fit_2lines|fit_line_dynamic|fit_line|fit_poly|greater_equals|greater|ifft|iir|less_equals|less|multiply|not_equals|outliers|pearson_correlation|periods_detect|periods_validate|pow|seasonal|sign|sin|stats|stats_dynamic|subtract|tan))\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(bag|array)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.other.operator.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(asc|desc|nulls first|nulls last)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.other.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(regex|simple|relaxed)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.other.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(anomalychart|areachart|barchart|card|columnchart|ladderchart|linechart|piechart|pivotchart|scatterchart|stackedareachart|timechart|timepivot)\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.kusto\\\"},{\\\"include\\\":\\\"#Strings\\\"},{\\\"match\\\":\\\"\\\\\\\\{.*?}\\\",\\\"name\\\":\\\"string.other.kusto\\\"},{\\\"match\\\":\\\"//.*\\\",\\\"name\\\":\\\"comment.line.kusto\\\"},{\\\"include\\\":\\\"#TimeSpanLiterals\\\"},{\\\"include\\\":\\\"#DateTimeTimeSpanFunctions\\\"},{\\\"include\\\":\\\"#DateTimeTimeSpanDataTypes\\\"},{\\\"include\\\":\\\"#Numeric\\\"},{\\\"match\\\":\\\"\\\\\\\\b(true|false|null)\\\\\\\\b\\\",\\\"name\\\":\\\"constant.language.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(anyif|any|array_strcat|base64_decodestring|base64_encodestring|make_dictionary|makelist|makeset|mvexpand|todynamic|parse_json|replace|weekofyear)(?=\\\\\\\\W*\\\\\\\\(|\\\\\\\\b)\\\",\\\"name\\\":\\\"invalid.deprecated.kusto\\\"}],\\\"repository\\\":{\\\"DateTimeTimeSpanDataTypes\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(datetime|timespan|time)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.kusto\\\"}]},\\\"DateTimeTimeSpanFunctions\\\":{\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.kusto\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#DateTimeTimeSpanDataTypes\\\"}]},\\\"3\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#Strings\\\"}]}},\\\"match\\\":\\\"\\\\\\\\b(format_datetime)(?:\\\\\\\\s*\\\\\\\\(\\\\\\\\s*(.+?)\\\\\\\\s*,\\\\\\\\s*([\\\\\\\"'].*?[\\\\\\\"'])\\\\\\\\s*\\\\\\\\))?(?!\\\\\\\\w)\\\",\\\"name\\\":\\\"meta.scalar.function.format_datetime.kusto\\\"},{\\\"match\\\":\\\"\\\\\\\\b(ago|datetime_add|datetime_diff|datetime_local_to_utc|datetime_part|datetime_utc_to_local|dayofmonth|dayofweek|dayofyear|endofday|endofmonth|endofweek|endofyear|format_timespan|getmonth|getyear|hourofday|make_datetime|make_timespan|monthofyear|now|startofday|startofmonth|startofweek|startofyear|todatetime|totimespan|week_of_year)(?=\\\\\\\\W*\\\\\\\\()\\\",\\\"name\\\":\\\"support.function.kusto\\\"}]},\\\"Escapes\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\[\\\\\\\"'\\\\\\\\\\\\\\\\nt]\\\",\\\"name\\\":\\\"constant.character.escape.kusto\\\"}]},\\\"Numeric\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b((0([Xx])\\\\\\\\h*)|(([0-9]+\\\\\\\\.?[0-9]*+)|(\\\\\\\\.[0-9]+))(([Ee])([-+])?[0-9]+)?)([Ll]|UL|ul|[FUfu]|ll|LL|ull|ULL)?(?=\\\\\\\\b|\\\\\\\\w)\\\",\\\"name\\\":\\\"constant.numeric.kusto\\\"}]},\\\"Strings\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"([@h]?\\\\\\\")\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.string.kusto\\\"}},\\\"end\\\":\\\"\\\\\\\"\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.kusto\\\"}},\\\"name\\\":\\\"string.quoted.double.kusto\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#Escapes\\\"}]},{\\\"begin\\\":\\\"([@h]?')\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.string.kusto\\\"}},\\\"end\\\":\\\"'\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.kusto\\\"}},\\\"name\\\":\\\"string.quoted.single.kusto\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#Escapes\\\"}]},{\\\"begin\\\":\\\"([@h]?```)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.string.kusto\\\"}},\\\"end\\\":\\\"```\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.kusto\\\"}},\\\"name\\\":\\\"string.quoted.multi.kusto\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#Escapes\\\"}]}]},\\\"TimeSpanLiterals\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"[-+]?(?:\\\\\\\\d*\\\\\\\\.)?\\\\\\\\d+(?:microseconds?|ticks?|seconds?|ms|[dhms])\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.kusto\\\"}]}},\\\"scopeName\\\":\\\"source.kusto\\\",\\\"aliases\\\":[\\\"kql\\\"]}\"))\n\nexport default [\nlang\n]\n"],"names":["lang","kusto"],"mappings":"AAAA,MAAMA,EAAO,OAAO,OAAO,KAAK,MAAM,qwdAA2zf,CAAC,EAEl2fC,EAAe,CACfD,CACA","x_google_ignoreList":[0]}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const t = Object.freeze(
7
+ JSON.parse(
8
+ '{"colors":{"activityBar.activeBorder":"#EB64B9","activityBar.background":"#27212e","activityBar.foreground":"#ddd","activityBarBadge.background":"#EB64B9","button.background":"#EB64B9","diffEditor.border":"#b4dce7","diffEditor.insertedTextBackground":"#74dfc423","diffEditor.removedTextBackground":"#eb64b940","editor.background":"#27212e","editor.findMatchBackground":"#40b4c48c","editor.findMatchHighlightBackground":"#40b4c460","editor.foreground":"#ffffff","editor.selectionBackground":"#eb64b927","editor.selectionHighlightBackground":"#eb64b927","editor.wordHighlightBackground":"#eb64b927","editorError.foreground":"#ff3e7b","editorGroupHeader.tabsBackground":"#242029","editorGutter.addedBackground":"#74dfc4","editorGutter.deletedBackground":"#eb64B9","editorGutter.modifiedBackground":"#40b4c4","editorSuggestWidget.border":"#b4dce7","focusBorder":"#EB64B9","gitDecoration.conflictingResourceForeground":"#EB64B9","gitDecoration.deletedResourceForeground":"#b381c5","gitDecoration.ignoredResourceForeground":"#92889d","gitDecoration.modifiedResourceForeground":"#74dfc4","gitDecoration.untrackedResourceForeground":"#40b4c4","input.background":"#3a3242","input.border":"#964c7b","inputOption.activeBorder":"#EB64B9","list.activeSelectionBackground":"#eb64b98f","list.activeSelectionForeground":"#eee","list.dropBackground":"#74dfc466","list.errorForeground":"#ff3e7b","list.focusBackground":"#eb64ba60","list.highlightForeground":"#eb64b9","list.hoverBackground":"#91889b80","list.hoverForeground":"#eee","list.inactiveSelectionBackground":"#eb64b98f","list.inactiveSelectionForeground":"#ddd","list.invalidItemForeground":"#fff","menu.background":"#27212e","merge.currentContentBackground":"#74dfc433","merge.currentHeaderBackground":"#74dfc4cc","merge.incomingContentBackground":"#40b4c433","merge.incomingHeaderBackground":"#40b4c4cc","notifications.background":"#3e3549","peekView.border":"#40b4c4","peekViewEditor.background":"#40b5c449","peekViewEditor.matchHighlightBackground":"#40b5c460","peekViewResult.matchHighlightBackground":"#27212e","peekViewResult.selectionBackground":"#40b4c43f","progressBar.background":"#40b4c4","sideBar.background":"#27212e","sideBar.foreground":"#ddd","sideBarSectionHeader.background":"#27212e","sideBarTitle.foreground":"#EB64B9","statusBar.background":"#EB64B9","statusBar.debuggingBackground":"#74dfc4","statusBar.foreground":"#27212e","statusBar.noFolderBackground":"#EB64B9","tab.activeBorder":"#EB64B9","tab.inactiveBackground":"#242029","terminal.ansiBlue":"#40b4c4","terminal.ansiCyan":"#b4dce7","terminal.ansiGreen":"#74dfc4","terminal.ansiMagenta":"#b381c5","terminal.ansiRed":"#EB64B9","terminal.ansiYellow":"#ffe261","titleBar.activeBackground":"#27212e","titleBar.inactiveBackground":"#27212e","tree.indentGuidesStroke":"#ffffff33"},"displayName":"LaserWave","name":"laserwave","tokenColors":[{"scope":["keyword.other","keyword.control","storage.type.class.js","keyword.control.module.js","storage.type.extends.js","variable.language.this.js","keyword.control.switch.js","keyword.control.loop.js","keyword.control.conditional.js","keyword.control.flow.js","keyword.operator.accessor.js","keyword.other.important.css","keyword.control.at-rule.media.scss","entity.name.tag.reference.scss","meta.class.python","storage.type.function.python","keyword.control.flow.python","storage.type.function.js","keyword.control.export.ts","keyword.control.flow.ts","keyword.control.from.ts","keyword.control.import.ts","storage.type.class.ts","keyword.control.loop.ts","keyword.control.ruby","keyword.control.module.ruby","keyword.control.class.ruby","keyword.other.special-method.ruby","keyword.control.def.ruby","markup.heading","keyword.other.import.java","keyword.other.package.java","storage.modifier.java","storage.modifier.extends.java","storage.modifier.implements.java","storage.modifier.cs","storage.modifier.js","storage.modifier.dart","keyword.declaration.dart","keyword.package.go","keyword.import.go","keyword.fsharp","variable.parameter.function-call.python"],"settings":{"foreground":"#40b4c4"}},{"scope":["binding.fsharp","support.function","meta.function-call","entity.name.function","support.function.misc.scss","meta.method.declaration.ts","entity.name.function.method.js"],"settings":{"foreground":"#EB64B9"}},{"scope":["string","string.quoted","string.unquoted","string.other.link.title.markdown"],"settings":{"foreground":"#b4dce7"}},{"scope":["constant.numeric"],"settings":{"foreground":"#b381c5"}},{"scope":["meta.brace","punctuation","punctuation.bracket","punctuation.section","punctuation.separator","punctuation.comma.dart","punctuation.terminator","punctuation.definition","punctuation.parenthesis","meta.delimiter.comma.js","meta.brace.curly.litobj.js","punctuation.definition.tag","puncatuation.other.comma.go","punctuation.section.embedded","punctuation.definition.string","punctuation.definition.tag.jsx","punctuation.definition.tag.end","punctuation.definition.markdown","punctuation.terminator.rule.css","punctuation.definition.block.ts","punctuation.definition.tag.html","punctuation.section.class.end.js","punctuation.definition.tag.begin","punctuation.squarebracket.open.cs","punctuation.separator.dict.python","punctuation.section.function.scss","punctuation.section.class.begin.js","punctuation.section.array.end.ruby","punctuation.separator.key-value.js","meta.method-call.with-arguments.js","punctuation.section.scope.end.ruby","punctuation.squarebracket.close.cs","punctuation.separator.key-value.css","punctuation.definition.constant.css","punctuation.section.array.begin.ruby","punctuation.section.scope.begin.ruby","punctuation.definition.string.end.js","punctuation.definition.parameters.ruby","punctuation.definition.string.begin.js","punctuation.section.class.begin.python","storage.modifier.array.bracket.square.c","punctuation.separator.parameters.python","punctuation.section.group.end.powershell","punctuation.definition.parameters.end.ts","punctuation.section.braces.end.powershell","punctuation.section.function.begin.python","punctuation.definition.parameters.begin.ts","punctuation.section.bracket.end.powershell","punctuation.section.group.begin.powershell","punctuation.section.braces.begin.powershell","punctuation.definition.parameters.end.python","punctuation.definition.typeparameters.end.cs","punctuation.section.bracket.begin.powershell","punctuation.definition.arguments.begin.python","punctuation.definition.parameters.begin.python","punctuation.definition.typeparameters.begin.cs","punctuation.section.block.begin.bracket.curly.c","punctuation.definition.map.begin.bracket.round.scss","punctuation.section.property-list.end.bracket.curly.css","punctuation.definition.parameters.end.bracket.round.java","punctuation.section.property-list.begin.bracket.curly.css","punctuation.definition.parameters.begin.bracket.round.java"],"settings":{"foreground":"#7b6995"}},{"scope":["keyword.operator","meta.decorator.ts","entity.name.type.ts","punctuation.dot.dart","keyword.symbol.fsharp","punctuation.accessor.ts","punctuation.accessor.cs","keyword.operator.logical","meta.tag.inline.any.html","punctuation.separator.java","keyword.operator.comparison","keyword.operator.arithmetic","keyword.operator.assignment","keyword.operator.ternary.js","keyword.operator.other.ruby","keyword.operator.logical.js","punctuation.other.period.go","keyword.operator.increment.ts","keyword.operator.increment.js","storage.type.function.arrow.js","storage.type.function.arrow.ts","keyword.operator.relational.js","keyword.operator.relational.ts","keyword.operator.arithmetic.js","keyword.operator.assignment.js","storage.type.function.arrow.tsx","keyword.operator.logical.python","punctuation.separator.period.java","punctuation.separator.method.ruby","keyword.operator.assignment.python","keyword.operator.arithmetic.python","keyword.operator.increment-decrement.java"],"settings":{"foreground":"#74dfc4"}},{"scope":["comment","punctuation.definition.comment"],"settings":{"foreground":"#91889b"}},{"scope":["meta.tag.sgml","entity.name.tag","entity.name.tag.open.jsx","entity.name.tag.close.jsx","entity.name.tag.inline.any.html","entity.name.tag.structure.any.html"],"settings":{"foreground":"#74dfc4"}},{"scope":["variable.other.enummember","entity.other.attribute-name","entity.other.attribute-name.jsx","entity.other.attribute-name.html","entity.other.attribute-name.id.css","entity.other.attribute-name.id.html","entity.other.attribute-name.class.css"],"settings":{"foreground":"#EB64B9"}},{"scope":["variable.other.property","variable.parameter.fsharp","support.variable.property.js","support.type.property-name.css","support.type.property-name.json","support.variable.property.dom.js"],"settings":{"foreground":"#40b4c4"}},{"scope":["constant.language","constant.other.elm","constant.language.c","variable.language.dart","variable.language.this","support.class.builtin.js","support.constant.json.ts","support.class.console.ts","support.class.console.js","variable.language.this.js","variable.language.this.ts","entity.name.section.fsharp","support.type.object.dom.js","variable.other.constant.js","variable.language.self.ruby","variable.other.constant.ruby","support.type.object.console.js","constant.language.undefined.js","support.function.builtin.python","constant.language.boolean.true.js","constant.language.boolean.false.js","variable.language.special.self.python","support.constant.automatic.powershell"],"settings":{"foreground":"#ffe261"}},{"scope":["variable.other","variable.scss","meta.function-call.c","variable.parameter.ts","variable.parameter.dart","variable.other.class.js","variable.other.object.js","variable.other.object.ts","support.function.json.ts","variable.name.source.dart","variable.other.source.dart","variable.other.readwrite.js","variable.other.readwrite.ts","support.function.console.ts","entity.name.type.instance.js","meta.function-call.arguments","variable.other.property.dom.ts","support.variable.property.dom.ts","variable.other.readwrite.powershell"],"settings":{"foreground":"#fff"}},{"scope":["storage.type.annotation","punctuation.definition.annotation","support.function.attribute.fsharp"],"settings":{"foreground":"#74dfc4"}},{"scope":["entity.name.type","storage.type","keyword.var.go","keyword.type.go","keyword.type.js","storage.type.js","storage.type.ts","keyword.type.cs","keyword.const.go","keyword.struct.go","support.class.dart","storage.modifier.c","storage.modifier.ts","keyword.function.go","keyword.operator.new.ts","meta.type.annotation.ts","entity.name.type.fsharp","meta.type.annotation.tsx","storage.modifier.async.js","punctuation.definition.variable.ruby","punctuation.definition.constant.ruby"],"settings":{"foreground":"#a96bc0"}},{"scope":["markup.bold","markup.italic"],"settings":{"foreground":"#EB64B9"}},{"scope":["meta.object-literal.key.js","constant.other.object.key.js"],"settings":{"foreground":"#40b4c4"}},{"scope":[],"settings":{"foreground":"#ffb85b"}},{"scope":["meta.diff","meta.diff.header"],"settings":{"foreground":"#40b4c4"}},{"scope":["meta.diff.range.unified"],"settings":{"foreground":"#b381c5"}},{"scope":["markup.deleted","punctuation.definition.deleted.diff","punctuation.definition.from-file.diff","meta.diff.header.from-file"],"settings":{"foreground":"#eb64b9"}},{"scope":["markup.inserted","punctuation.definition.inserted.diff","punctuation.definition.to-file.diff","meta.diff.header.to-file"],"settings":{"foreground":"#74dfc4"}}],"type":"dark"}',
9
+ ),
10
+ );
11
+ export { t as default };
12
+ //# sourceMappingURL=laserwave-DUszq2jm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"laserwave-DUszq2jm.js","sources":["../../../../node_modules/@shikijs/themes/dist/laserwave.mjs"],"sourcesContent":["/* Theme: laserwave */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.activeBorder\\\":\\\"#EB64B9\\\",\\\"activityBar.background\\\":\\\"#27212e\\\",\\\"activityBar.foreground\\\":\\\"#ddd\\\",\\\"activityBarBadge.background\\\":\\\"#EB64B9\\\",\\\"button.background\\\":\\\"#EB64B9\\\",\\\"diffEditor.border\\\":\\\"#b4dce7\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#74dfc423\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#eb64b940\\\",\\\"editor.background\\\":\\\"#27212e\\\",\\\"editor.findMatchBackground\\\":\\\"#40b4c48c\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#40b4c460\\\",\\\"editor.foreground\\\":\\\"#ffffff\\\",\\\"editor.selectionBackground\\\":\\\"#eb64b927\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#eb64b927\\\",\\\"editor.wordHighlightBackground\\\":\\\"#eb64b927\\\",\\\"editorError.foreground\\\":\\\"#ff3e7b\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#242029\\\",\\\"editorGutter.addedBackground\\\":\\\"#74dfc4\\\",\\\"editorGutter.deletedBackground\\\":\\\"#eb64B9\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#40b4c4\\\",\\\"editorSuggestWidget.border\\\":\\\"#b4dce7\\\",\\\"focusBorder\\\":\\\"#EB64B9\\\",\\\"gitDecoration.conflictingResourceForeground\\\":\\\"#EB64B9\\\",\\\"gitDecoration.deletedResourceForeground\\\":\\\"#b381c5\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#92889d\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#74dfc4\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#40b4c4\\\",\\\"input.background\\\":\\\"#3a3242\\\",\\\"input.border\\\":\\\"#964c7b\\\",\\\"inputOption.activeBorder\\\":\\\"#EB64B9\\\",\\\"list.activeSelectionBackground\\\":\\\"#eb64b98f\\\",\\\"list.activeSelectionForeground\\\":\\\"#eee\\\",\\\"list.dropBackground\\\":\\\"#74dfc466\\\",\\\"list.errorForeground\\\":\\\"#ff3e7b\\\",\\\"list.focusBackground\\\":\\\"#eb64ba60\\\",\\\"list.highlightForeground\\\":\\\"#eb64b9\\\",\\\"list.hoverBackground\\\":\\\"#91889b80\\\",\\\"list.hoverForeground\\\":\\\"#eee\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#eb64b98f\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#ddd\\\",\\\"list.invalidItemForeground\\\":\\\"#fff\\\",\\\"menu.background\\\":\\\"#27212e\\\",\\\"merge.currentContentBackground\\\":\\\"#74dfc433\\\",\\\"merge.currentHeaderBackground\\\":\\\"#74dfc4cc\\\",\\\"merge.incomingContentBackground\\\":\\\"#40b4c433\\\",\\\"merge.incomingHeaderBackground\\\":\\\"#40b4c4cc\\\",\\\"notifications.background\\\":\\\"#3e3549\\\",\\\"peekView.border\\\":\\\"#40b4c4\\\",\\\"peekViewEditor.background\\\":\\\"#40b5c449\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#40b5c460\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#27212e\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#40b4c43f\\\",\\\"progressBar.background\\\":\\\"#40b4c4\\\",\\\"sideBar.background\\\":\\\"#27212e\\\",\\\"sideBar.foreground\\\":\\\"#ddd\\\",\\\"sideBarSectionHeader.background\\\":\\\"#27212e\\\",\\\"sideBarTitle.foreground\\\":\\\"#EB64B9\\\",\\\"statusBar.background\\\":\\\"#EB64B9\\\",\\\"statusBar.debuggingBackground\\\":\\\"#74dfc4\\\",\\\"statusBar.foreground\\\":\\\"#27212e\\\",\\\"statusBar.noFolderBackground\\\":\\\"#EB64B9\\\",\\\"tab.activeBorder\\\":\\\"#EB64B9\\\",\\\"tab.inactiveBackground\\\":\\\"#242029\\\",\\\"terminal.ansiBlue\\\":\\\"#40b4c4\\\",\\\"terminal.ansiCyan\\\":\\\"#b4dce7\\\",\\\"terminal.ansiGreen\\\":\\\"#74dfc4\\\",\\\"terminal.ansiMagenta\\\":\\\"#b381c5\\\",\\\"terminal.ansiRed\\\":\\\"#EB64B9\\\",\\\"terminal.ansiYellow\\\":\\\"#ffe261\\\",\\\"titleBar.activeBackground\\\":\\\"#27212e\\\",\\\"titleBar.inactiveBackground\\\":\\\"#27212e\\\",\\\"tree.indentGuidesStroke\\\":\\\"#ffffff33\\\"},\\\"displayName\\\":\\\"LaserWave\\\",\\\"name\\\":\\\"laserwave\\\",\\\"tokenColors\\\":[{\\\"scope\\\":[\\\"keyword.other\\\",\\\"keyword.control\\\",\\\"storage.type.class.js\\\",\\\"keyword.control.module.js\\\",\\\"storage.type.extends.js\\\",\\\"variable.language.this.js\\\",\\\"keyword.control.switch.js\\\",\\\"keyword.control.loop.js\\\",\\\"keyword.control.conditional.js\\\",\\\"keyword.control.flow.js\\\",\\\"keyword.operator.accessor.js\\\",\\\"keyword.other.important.css\\\",\\\"keyword.control.at-rule.media.scss\\\",\\\"entity.name.tag.reference.scss\\\",\\\"meta.class.python\\\",\\\"storage.type.function.python\\\",\\\"keyword.control.flow.python\\\",\\\"storage.type.function.js\\\",\\\"keyword.control.export.ts\\\",\\\"keyword.control.flow.ts\\\",\\\"keyword.control.from.ts\\\",\\\"keyword.control.import.ts\\\",\\\"storage.type.class.ts\\\",\\\"keyword.control.loop.ts\\\",\\\"keyword.control.ruby\\\",\\\"keyword.control.module.ruby\\\",\\\"keyword.control.class.ruby\\\",\\\"keyword.other.special-method.ruby\\\",\\\"keyword.control.def.ruby\\\",\\\"markup.heading\\\",\\\"keyword.other.import.java\\\",\\\"keyword.other.package.java\\\",\\\"storage.modifier.java\\\",\\\"storage.modifier.extends.java\\\",\\\"storage.modifier.implements.java\\\",\\\"storage.modifier.cs\\\",\\\"storage.modifier.js\\\",\\\"storage.modifier.dart\\\",\\\"keyword.declaration.dart\\\",\\\"keyword.package.go\\\",\\\"keyword.import.go\\\",\\\"keyword.fsharp\\\",\\\"variable.parameter.function-call.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#40b4c4\\\"}},{\\\"scope\\\":[\\\"binding.fsharp\\\",\\\"support.function\\\",\\\"meta.function-call\\\",\\\"entity.name.function\\\",\\\"support.function.misc.scss\\\",\\\"meta.method.declaration.ts\\\",\\\"entity.name.function.method.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#EB64B9\\\"}},{\\\"scope\\\":[\\\"string\\\",\\\"string.quoted\\\",\\\"string.unquoted\\\",\\\"string.other.link.title.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#b4dce7\\\"}},{\\\"scope\\\":[\\\"constant.numeric\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#b381c5\\\"}},{\\\"scope\\\":[\\\"meta.brace\\\",\\\"punctuation\\\",\\\"punctuation.bracket\\\",\\\"punctuation.section\\\",\\\"punctuation.separator\\\",\\\"punctuation.comma.dart\\\",\\\"punctuation.terminator\\\",\\\"punctuation.definition\\\",\\\"punctuation.parenthesis\\\",\\\"meta.delimiter.comma.js\\\",\\\"meta.brace.curly.litobj.js\\\",\\\"punctuation.definition.tag\\\",\\\"puncatuation.other.comma.go\\\",\\\"punctuation.section.embedded\\\",\\\"punctuation.definition.string\\\",\\\"punctuation.definition.tag.jsx\\\",\\\"punctuation.definition.tag.end\\\",\\\"punctuation.definition.markdown\\\",\\\"punctuation.terminator.rule.css\\\",\\\"punctuation.definition.block.ts\\\",\\\"punctuation.definition.tag.html\\\",\\\"punctuation.section.class.end.js\\\",\\\"punctuation.definition.tag.begin\\\",\\\"punctuation.squarebracket.open.cs\\\",\\\"punctuation.separator.dict.python\\\",\\\"punctuation.section.function.scss\\\",\\\"punctuation.section.class.begin.js\\\",\\\"punctuation.section.array.end.ruby\\\",\\\"punctuation.separator.key-value.js\\\",\\\"meta.method-call.with-arguments.js\\\",\\\"punctuation.section.scope.end.ruby\\\",\\\"punctuation.squarebracket.close.cs\\\",\\\"punctuation.separator.key-value.css\\\",\\\"punctuation.definition.constant.css\\\",\\\"punctuation.section.array.begin.ruby\\\",\\\"punctuation.section.scope.begin.ruby\\\",\\\"punctuation.definition.string.end.js\\\",\\\"punctuation.definition.parameters.ruby\\\",\\\"punctuation.definition.string.begin.js\\\",\\\"punctuation.section.class.begin.python\\\",\\\"storage.modifier.array.bracket.square.c\\\",\\\"punctuation.separator.parameters.python\\\",\\\"punctuation.section.group.end.powershell\\\",\\\"punctuation.definition.parameters.end.ts\\\",\\\"punctuation.section.braces.end.powershell\\\",\\\"punctuation.section.function.begin.python\\\",\\\"punctuation.definition.parameters.begin.ts\\\",\\\"punctuation.section.bracket.end.powershell\\\",\\\"punctuation.section.group.begin.powershell\\\",\\\"punctuation.section.braces.begin.powershell\\\",\\\"punctuation.definition.parameters.end.python\\\",\\\"punctuation.definition.typeparameters.end.cs\\\",\\\"punctuation.section.bracket.begin.powershell\\\",\\\"punctuation.definition.arguments.begin.python\\\",\\\"punctuation.definition.parameters.begin.python\\\",\\\"punctuation.definition.typeparameters.begin.cs\\\",\\\"punctuation.section.block.begin.bracket.curly.c\\\",\\\"punctuation.definition.map.begin.bracket.round.scss\\\",\\\"punctuation.section.property-list.end.bracket.curly.css\\\",\\\"punctuation.definition.parameters.end.bracket.round.java\\\",\\\"punctuation.section.property-list.begin.bracket.curly.css\\\",\\\"punctuation.definition.parameters.begin.bracket.round.java\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7b6995\\\"}},{\\\"scope\\\":[\\\"keyword.operator\\\",\\\"meta.decorator.ts\\\",\\\"entity.name.type.ts\\\",\\\"punctuation.dot.dart\\\",\\\"keyword.symbol.fsharp\\\",\\\"punctuation.accessor.ts\\\",\\\"punctuation.accessor.cs\\\",\\\"keyword.operator.logical\\\",\\\"meta.tag.inline.any.html\\\",\\\"punctuation.separator.java\\\",\\\"keyword.operator.comparison\\\",\\\"keyword.operator.arithmetic\\\",\\\"keyword.operator.assignment\\\",\\\"keyword.operator.ternary.js\\\",\\\"keyword.operator.other.ruby\\\",\\\"keyword.operator.logical.js\\\",\\\"punctuation.other.period.go\\\",\\\"keyword.operator.increment.ts\\\",\\\"keyword.operator.increment.js\\\",\\\"storage.type.function.arrow.js\\\",\\\"storage.type.function.arrow.ts\\\",\\\"keyword.operator.relational.js\\\",\\\"keyword.operator.relational.ts\\\",\\\"keyword.operator.arithmetic.js\\\",\\\"keyword.operator.assignment.js\\\",\\\"storage.type.function.arrow.tsx\\\",\\\"keyword.operator.logical.python\\\",\\\"punctuation.separator.period.java\\\",\\\"punctuation.separator.method.ruby\\\",\\\"keyword.operator.assignment.python\\\",\\\"keyword.operator.arithmetic.python\\\",\\\"keyword.operator.increment-decrement.java\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#74dfc4\\\"}},{\\\"scope\\\":[\\\"comment\\\",\\\"punctuation.definition.comment\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#91889b\\\"}},{\\\"scope\\\":[\\\"meta.tag.sgml\\\",\\\"entity.name.tag\\\",\\\"entity.name.tag.open.jsx\\\",\\\"entity.name.tag.close.jsx\\\",\\\"entity.name.tag.inline.any.html\\\",\\\"entity.name.tag.structure.any.html\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#74dfc4\\\"}},{\\\"scope\\\":[\\\"variable.other.enummember\\\",\\\"entity.other.attribute-name\\\",\\\"entity.other.attribute-name.jsx\\\",\\\"entity.other.attribute-name.html\\\",\\\"entity.other.attribute-name.id.css\\\",\\\"entity.other.attribute-name.id.html\\\",\\\"entity.other.attribute-name.class.css\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#EB64B9\\\"}},{\\\"scope\\\":[\\\"variable.other.property\\\",\\\"variable.parameter.fsharp\\\",\\\"support.variable.property.js\\\",\\\"support.type.property-name.css\\\",\\\"support.type.property-name.json\\\",\\\"support.variable.property.dom.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#40b4c4\\\"}},{\\\"scope\\\":[\\\"constant.language\\\",\\\"constant.other.elm\\\",\\\"constant.language.c\\\",\\\"variable.language.dart\\\",\\\"variable.language.this\\\",\\\"support.class.builtin.js\\\",\\\"support.constant.json.ts\\\",\\\"support.class.console.ts\\\",\\\"support.class.console.js\\\",\\\"variable.language.this.js\\\",\\\"variable.language.this.ts\\\",\\\"entity.name.section.fsharp\\\",\\\"support.type.object.dom.js\\\",\\\"variable.other.constant.js\\\",\\\"variable.language.self.ruby\\\",\\\"variable.other.constant.ruby\\\",\\\"support.type.object.console.js\\\",\\\"constant.language.undefined.js\\\",\\\"support.function.builtin.python\\\",\\\"constant.language.boolean.true.js\\\",\\\"constant.language.boolean.false.js\\\",\\\"variable.language.special.self.python\\\",\\\"support.constant.automatic.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ffe261\\\"}},{\\\"scope\\\":[\\\"variable.other\\\",\\\"variable.scss\\\",\\\"meta.function-call.c\\\",\\\"variable.parameter.ts\\\",\\\"variable.parameter.dart\\\",\\\"variable.other.class.js\\\",\\\"variable.other.object.js\\\",\\\"variable.other.object.ts\\\",\\\"support.function.json.ts\\\",\\\"variable.name.source.dart\\\",\\\"variable.other.source.dart\\\",\\\"variable.other.readwrite.js\\\",\\\"variable.other.readwrite.ts\\\",\\\"support.function.console.ts\\\",\\\"entity.name.type.instance.js\\\",\\\"meta.function-call.arguments\\\",\\\"variable.other.property.dom.ts\\\",\\\"support.variable.property.dom.ts\\\",\\\"variable.other.readwrite.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fff\\\"}},{\\\"scope\\\":[\\\"storage.type.annotation\\\",\\\"punctuation.definition.annotation\\\",\\\"support.function.attribute.fsharp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#74dfc4\\\"}},{\\\"scope\\\":[\\\"entity.name.type\\\",\\\"storage.type\\\",\\\"keyword.var.go\\\",\\\"keyword.type.go\\\",\\\"keyword.type.js\\\",\\\"storage.type.js\\\",\\\"storage.type.ts\\\",\\\"keyword.type.cs\\\",\\\"keyword.const.go\\\",\\\"keyword.struct.go\\\",\\\"support.class.dart\\\",\\\"storage.modifier.c\\\",\\\"storage.modifier.ts\\\",\\\"keyword.function.go\\\",\\\"keyword.operator.new.ts\\\",\\\"meta.type.annotation.ts\\\",\\\"entity.name.type.fsharp\\\",\\\"meta.type.annotation.tsx\\\",\\\"storage.modifier.async.js\\\",\\\"punctuation.definition.variable.ruby\\\",\\\"punctuation.definition.constant.ruby\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#a96bc0\\\"}},{\\\"scope\\\":[\\\"markup.bold\\\",\\\"markup.italic\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#EB64B9\\\"}},{\\\"scope\\\":[\\\"meta.object-literal.key.js\\\",\\\"constant.other.object.key.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#40b4c4\\\"}},{\\\"scope\\\":[],\\\"settings\\\":{\\\"foreground\\\":\\\"#ffb85b\\\"}},{\\\"scope\\\":[\\\"meta.diff\\\",\\\"meta.diff.header\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#40b4c4\\\"}},{\\\"scope\\\":[\\\"meta.diff.range.unified\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#b381c5\\\"}},{\\\"scope\\\":[\\\"markup.deleted\\\",\\\"punctuation.definition.deleted.diff\\\",\\\"punctuation.definition.from-file.diff\\\",\\\"meta.diff.header.from-file\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#eb64b9\\\"}},{\\\"scope\\\":[\\\"markup.inserted\\\",\\\"punctuation.definition.inserted.diff\\\",\\\"punctuation.definition.to-file.diff\\\",\\\"meta.diff.header.to-file\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#74dfc4\\\"}}],\\\"type\\\":\\\"dark\\\"}\"))\n"],"names":["laserwave"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,irWAA+nY,CAAC","x_google_ignoreList":[0]}