@selvakumaresra/specship 0.1.3 → 0.3.0

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 (694) hide show
  1. package/README.md +2 -2
  2. package/commands/ss-design-implement.md +79 -0
  3. package/commands/{cg-drifted.md → ss-drifted.md} +2 -2
  4. package/commands/{cg-fix.md → ss-fix.md} +1 -1
  5. package/commands/{cg-implement.md → ss-implement.md} +1 -1
  6. package/commands/ss-spec-author.md +43 -0
  7. package/commands/ss-spec-review.md +48 -0
  8. package/dist/bin/node-version-check.d.ts +37 -0
  9. package/dist/bin/node-version-check.d.ts.map +1 -0
  10. package/dist/bin/node-version-check.js +79 -0
  11. package/dist/bin/node-version-check.js.map +1 -0
  12. package/dist/bin/specship.d.ts +25 -0
  13. package/dist/bin/specship.d.ts.map +1 -0
  14. package/dist/bin/specship.js +2019 -0
  15. package/dist/bin/specship.js.map +1 -0
  16. package/dist/bin/uninstall.d.ts +13 -0
  17. package/dist/bin/uninstall.d.ts.map +1 -0
  18. package/dist/bin/uninstall.js +35 -0
  19. package/dist/bin/uninstall.js.map +1 -0
  20. package/dist/context/formatter.d.ts +30 -0
  21. package/dist/context/formatter.d.ts.map +1 -0
  22. package/dist/context/formatter.js +263 -0
  23. package/dist/context/formatter.js.map +1 -0
  24. package/dist/context/index.d.ts +119 -0
  25. package/dist/context/index.d.ts.map +1 -0
  26. package/dist/context/index.js +1289 -0
  27. package/dist/context/index.js.map +1 -0
  28. package/dist/context/markers.d.ts +19 -0
  29. package/dist/context/markers.d.ts.map +1 -0
  30. package/dist/context/markers.js +22 -0
  31. package/dist/context/markers.js.map +1 -0
  32. package/dist/db/index.d.ts +103 -0
  33. package/dist/db/index.d.ts.map +1 -0
  34. package/dist/db/index.js +279 -0
  35. package/dist/db/index.js.map +1 -0
  36. package/dist/db/migrations.d.ts +44 -0
  37. package/dist/db/migrations.d.ts.map +1 -0
  38. package/dist/db/migrations.js +462 -0
  39. package/dist/db/migrations.js.map +1 -0
  40. package/dist/db/queries.d.ts +357 -0
  41. package/dist/db/queries.d.ts.map +1 -0
  42. package/dist/db/queries.js +1504 -0
  43. package/dist/db/queries.js.map +1 -0
  44. package/dist/db/schema.sql +419 -0
  45. package/dist/db/spec-queries.d.ts +101 -0
  46. package/dist/db/spec-queries.d.ts.map +1 -0
  47. package/dist/db/spec-queries.js +675 -0
  48. package/dist/db/spec-queries.js.map +1 -0
  49. package/dist/db/sqlite-adapter.d.ts +65 -0
  50. package/dist/db/sqlite-adapter.d.ts.map +1 -0
  51. package/dist/db/sqlite-adapter.js +214 -0
  52. package/dist/db/sqlite-adapter.js.map +1 -0
  53. package/dist/directory.d.ts +67 -0
  54. package/dist/directory.d.ts.map +1 -0
  55. package/dist/directory.js +267 -0
  56. package/dist/directory.js.map +1 -0
  57. package/dist/errors.d.ts +136 -0
  58. package/dist/errors.d.ts.map +1 -0
  59. package/dist/errors.js +219 -0
  60. package/dist/errors.js.map +1 -0
  61. package/dist/extraction/dfm-extractor.d.ts +31 -0
  62. package/dist/extraction/dfm-extractor.d.ts.map +1 -0
  63. package/dist/extraction/dfm-extractor.js +151 -0
  64. package/dist/extraction/dfm-extractor.js.map +1 -0
  65. package/dist/extraction/generated-detection.d.ts +30 -0
  66. package/dist/extraction/generated-detection.d.ts.map +1 -0
  67. package/dist/extraction/generated-detection.js +80 -0
  68. package/dist/extraction/generated-detection.js.map +1 -0
  69. package/dist/extraction/grammars.d.ts +100 -0
  70. package/dist/extraction/grammars.d.ts.map +1 -0
  71. package/dist/extraction/grammars.js +426 -0
  72. package/dist/extraction/grammars.js.map +1 -0
  73. package/dist/extraction/index.d.ts +138 -0
  74. package/dist/extraction/index.d.ts.map +1 -0
  75. package/dist/extraction/index.js +1394 -0
  76. package/dist/extraction/index.js.map +1 -0
  77. package/dist/extraction/languages/c-cpp.d.ts +4 -0
  78. package/dist/extraction/languages/c-cpp.d.ts.map +1 -0
  79. package/dist/extraction/languages/c-cpp.js +171 -0
  80. package/dist/extraction/languages/c-cpp.js.map +1 -0
  81. package/dist/extraction/languages/csharp.d.ts +3 -0
  82. package/dist/extraction/languages/csharp.d.ts.map +1 -0
  83. package/dist/extraction/languages/csharp.js +73 -0
  84. package/dist/extraction/languages/csharp.js.map +1 -0
  85. package/dist/extraction/languages/dart.d.ts +3 -0
  86. package/dist/extraction/languages/dart.d.ts.map +1 -0
  87. package/dist/extraction/languages/dart.js +192 -0
  88. package/dist/extraction/languages/dart.js.map +1 -0
  89. package/dist/extraction/languages/go.d.ts +3 -0
  90. package/dist/extraction/languages/go.d.ts.map +1 -0
  91. package/dist/extraction/languages/go.js +74 -0
  92. package/dist/extraction/languages/go.js.map +1 -0
  93. package/dist/extraction/languages/index.d.ts +10 -0
  94. package/dist/extraction/languages/index.d.ts.map +1 -0
  95. package/dist/extraction/languages/index.js +51 -0
  96. package/dist/extraction/languages/index.js.map +1 -0
  97. package/dist/extraction/languages/java.d.ts +3 -0
  98. package/dist/extraction/languages/java.d.ts.map +1 -0
  99. package/dist/extraction/languages/java.js +70 -0
  100. package/dist/extraction/languages/java.js.map +1 -0
  101. package/dist/extraction/languages/javascript.d.ts +3 -0
  102. package/dist/extraction/languages/javascript.d.ts.map +1 -0
  103. package/dist/extraction/languages/javascript.js +90 -0
  104. package/dist/extraction/languages/javascript.js.map +1 -0
  105. package/dist/extraction/languages/kotlin.d.ts +3 -0
  106. package/dist/extraction/languages/kotlin.d.ts.map +1 -0
  107. package/dist/extraction/languages/kotlin.js +259 -0
  108. package/dist/extraction/languages/kotlin.js.map +1 -0
  109. package/dist/extraction/languages/lua.d.ts +3 -0
  110. package/dist/extraction/languages/lua.d.ts.map +1 -0
  111. package/dist/extraction/languages/lua.js +150 -0
  112. package/dist/extraction/languages/lua.js.map +1 -0
  113. package/dist/extraction/languages/luau.d.ts +3 -0
  114. package/dist/extraction/languages/luau.d.ts.map +1 -0
  115. package/dist/extraction/languages/luau.js +37 -0
  116. package/dist/extraction/languages/luau.js.map +1 -0
  117. package/dist/extraction/languages/objc.d.ts +3 -0
  118. package/dist/extraction/languages/objc.d.ts.map +1 -0
  119. package/dist/extraction/languages/objc.js +133 -0
  120. package/dist/extraction/languages/objc.js.map +1 -0
  121. package/dist/extraction/languages/pascal.d.ts +3 -0
  122. package/dist/extraction/languages/pascal.d.ts.map +1 -0
  123. package/dist/extraction/languages/pascal.js +66 -0
  124. package/dist/extraction/languages/pascal.js.map +1 -0
  125. package/dist/extraction/languages/php.d.ts +3 -0
  126. package/dist/extraction/languages/php.d.ts.map +1 -0
  127. package/dist/extraction/languages/php.js +107 -0
  128. package/dist/extraction/languages/php.js.map +1 -0
  129. package/dist/extraction/languages/python.d.ts +3 -0
  130. package/dist/extraction/languages/python.d.ts.map +1 -0
  131. package/dist/extraction/languages/python.js +56 -0
  132. package/dist/extraction/languages/python.js.map +1 -0
  133. package/dist/extraction/languages/ruby.d.ts +3 -0
  134. package/dist/extraction/languages/ruby.d.ts.map +1 -0
  135. package/dist/extraction/languages/ruby.js +114 -0
  136. package/dist/extraction/languages/ruby.js.map +1 -0
  137. package/dist/extraction/languages/rust.d.ts +3 -0
  138. package/dist/extraction/languages/rust.d.ts.map +1 -0
  139. package/dist/extraction/languages/rust.js +109 -0
  140. package/dist/extraction/languages/rust.js.map +1 -0
  141. package/dist/extraction/languages/scala.d.ts +3 -0
  142. package/dist/extraction/languages/scala.d.ts.map +1 -0
  143. package/dist/extraction/languages/scala.js +139 -0
  144. package/dist/extraction/languages/scala.js.map +1 -0
  145. package/dist/extraction/languages/swift.d.ts +3 -0
  146. package/dist/extraction/languages/swift.d.ts.map +1 -0
  147. package/dist/extraction/languages/swift.js +91 -0
  148. package/dist/extraction/languages/swift.js.map +1 -0
  149. package/dist/extraction/languages/typescript.d.ts +3 -0
  150. package/dist/extraction/languages/typescript.d.ts.map +1 -0
  151. package/dist/extraction/languages/typescript.js +129 -0
  152. package/dist/extraction/languages/typescript.js.map +1 -0
  153. package/dist/extraction/liquid-extractor.d.ts +52 -0
  154. package/dist/extraction/liquid-extractor.d.ts.map +1 -0
  155. package/dist/extraction/liquid-extractor.js +313 -0
  156. package/dist/extraction/liquid-extractor.js.map +1 -0
  157. package/dist/extraction/mybatis-extractor.d.ts +48 -0
  158. package/dist/extraction/mybatis-extractor.d.ts.map +1 -0
  159. package/dist/extraction/mybatis-extractor.js +198 -0
  160. package/dist/extraction/mybatis-extractor.js.map +1 -0
  161. package/dist/extraction/parse-worker.d.ts +8 -0
  162. package/dist/extraction/parse-worker.d.ts.map +1 -0
  163. package/dist/extraction/parse-worker.js +94 -0
  164. package/dist/extraction/parse-worker.js.map +1 -0
  165. package/dist/extraction/specs/markdown-spec-extractor.d.ts +59 -0
  166. package/dist/extraction/specs/markdown-spec-extractor.d.ts.map +1 -0
  167. package/dist/extraction/specs/markdown-spec-extractor.js +327 -0
  168. package/dist/extraction/specs/markdown-spec-extractor.js.map +1 -0
  169. package/dist/extraction/specs/types.d.ts +39 -0
  170. package/dist/extraction/specs/types.d.ts.map +1 -0
  171. package/dist/extraction/specs/types.js +8 -0
  172. package/dist/extraction/specs/types.js.map +1 -0
  173. package/dist/extraction/svelte-extractor.d.ts +56 -0
  174. package/dist/extraction/svelte-extractor.d.ts.map +1 -0
  175. package/dist/extraction/svelte-extractor.js +272 -0
  176. package/dist/extraction/svelte-extractor.js.map +1 -0
  177. package/dist/extraction/tree-sitter-helpers.d.ts +28 -0
  178. package/dist/extraction/tree-sitter-helpers.d.ts.map +1 -0
  179. package/dist/extraction/tree-sitter-helpers.js +103 -0
  180. package/dist/extraction/tree-sitter-helpers.js.map +1 -0
  181. package/dist/extraction/tree-sitter-types.d.ts +193 -0
  182. package/dist/extraction/tree-sitter-types.d.ts.map +1 -0
  183. package/dist/extraction/tree-sitter-types.js +10 -0
  184. package/dist/extraction/tree-sitter-types.js.map +1 -0
  185. package/dist/extraction/tree-sitter.d.ts +317 -0
  186. package/dist/extraction/tree-sitter.d.ts.map +1 -0
  187. package/dist/extraction/tree-sitter.js +3092 -0
  188. package/dist/extraction/tree-sitter.js.map +1 -0
  189. package/dist/extraction/vue-extractor.d.ts +51 -0
  190. package/dist/extraction/vue-extractor.d.ts.map +1 -0
  191. package/dist/extraction/vue-extractor.js +251 -0
  192. package/dist/extraction/vue-extractor.js.map +1 -0
  193. package/dist/extraction/wasm/tree-sitter-lua.wasm +0 -0
  194. package/dist/extraction/wasm/tree-sitter-luau.wasm +0 -0
  195. package/dist/extraction/wasm/tree-sitter-pascal.wasm +0 -0
  196. package/dist/extraction/wasm/tree-sitter-scala.wasm +0 -0
  197. package/dist/extraction/wasm-runtime-flags.d.ts +38 -0
  198. package/dist/extraction/wasm-runtime-flags.d.ts.map +1 -0
  199. package/dist/extraction/wasm-runtime-flags.js +106 -0
  200. package/dist/extraction/wasm-runtime-flags.js.map +1 -0
  201. package/dist/graph/index.d.ts +8 -0
  202. package/dist/graph/index.d.ts.map +1 -0
  203. package/dist/graph/index.js +13 -0
  204. package/dist/graph/index.js.map +1 -0
  205. package/dist/graph/queries.d.ts +106 -0
  206. package/dist/graph/queries.d.ts.map +1 -0
  207. package/dist/graph/queries.js +366 -0
  208. package/dist/graph/queries.js.map +1 -0
  209. package/dist/graph/traversal.d.ts +127 -0
  210. package/dist/graph/traversal.d.ts.map +1 -0
  211. package/dist/graph/traversal.js +531 -0
  212. package/dist/graph/traversal.js.map +1 -0
  213. package/dist/index.d.ts +551 -0
  214. package/dist/index.d.ts.map +1 -0
  215. package/dist/index.js +1165 -0
  216. package/dist/index.js.map +1 -0
  217. package/dist/installer/config-writer.d.ts +28 -0
  218. package/dist/installer/config-writer.d.ts.map +1 -0
  219. package/dist/installer/config-writer.js +91 -0
  220. package/dist/installer/config-writer.js.map +1 -0
  221. package/dist/installer/index.d.ts +87 -0
  222. package/dist/installer/index.d.ts.map +1 -0
  223. package/dist/installer/index.js +415 -0
  224. package/dist/installer/index.js.map +1 -0
  225. package/dist/installer/instructions-template.d.ts +18 -0
  226. package/dist/installer/instructions-template.d.ts.map +1 -0
  227. package/dist/installer/instructions-template.js +21 -0
  228. package/dist/installer/instructions-template.js.map +1 -0
  229. package/dist/installer/targets/claude.d.ts +98 -0
  230. package/dist/installer/targets/claude.d.ts.map +1 -0
  231. package/dist/installer/targets/claude.js +639 -0
  232. package/dist/installer/targets/claude.js.map +1 -0
  233. package/dist/installer/targets/registry.d.ts +19 -0
  234. package/dist/installer/targets/registry.d.ts.map +1 -0
  235. package/dist/installer/targets/registry.js +31 -0
  236. package/dist/installer/targets/registry.js.map +1 -0
  237. package/dist/installer/targets/shared.d.ts +62 -0
  238. package/dist/installer/targets/shared.d.ts.map +1 -0
  239. package/dist/installer/targets/shared.js +207 -0
  240. package/dist/installer/targets/shared.js.map +1 -0
  241. package/dist/installer/targets/types.d.ts +76 -0
  242. package/dist/installer/targets/types.d.ts.map +1 -0
  243. package/dist/installer/targets/types.js +12 -0
  244. package/dist/installer/targets/types.js.map +1 -0
  245. package/dist/isolation/worktree.d.ts +65 -0
  246. package/dist/isolation/worktree.d.ts.map +1 -0
  247. package/dist/isolation/worktree.js +231 -0
  248. package/dist/isolation/worktree.js.map +1 -0
  249. package/dist/mcp/daemon-paths.d.ts +46 -0
  250. package/dist/mcp/daemon-paths.d.ts.map +1 -0
  251. package/dist/mcp/daemon-paths.js +125 -0
  252. package/dist/mcp/daemon-paths.js.map +1 -0
  253. package/dist/mcp/daemon.d.ts +161 -0
  254. package/dist/mcp/daemon.d.ts.map +1 -0
  255. package/dist/mcp/daemon.js +403 -0
  256. package/dist/mcp/daemon.js.map +1 -0
  257. package/dist/mcp/engine.d.ts +105 -0
  258. package/dist/mcp/engine.d.ts.map +1 -0
  259. package/dist/mcp/engine.js +270 -0
  260. package/dist/mcp/engine.js.map +1 -0
  261. package/dist/mcp/index.d.ts +112 -0
  262. package/dist/mcp/index.d.ts.map +1 -0
  263. package/dist/mcp/index.js +477 -0
  264. package/dist/mcp/index.js.map +1 -0
  265. package/dist/mcp/proxy.d.ts +81 -0
  266. package/dist/mcp/proxy.d.ts.map +1 -0
  267. package/dist/mcp/proxy.js +510 -0
  268. package/dist/mcp/proxy.js.map +1 -0
  269. package/dist/mcp/server-instructions.d.ts +18 -0
  270. package/dist/mcp/server-instructions.d.ts.map +1 -0
  271. package/dist/mcp/server-instructions.js +77 -0
  272. package/dist/mcp/server-instructions.js.map +1 -0
  273. package/dist/mcp/session.d.ts +77 -0
  274. package/dist/mcp/session.d.ts.map +1 -0
  275. package/dist/mcp/session.js +294 -0
  276. package/dist/mcp/session.js.map +1 -0
  277. package/dist/mcp/spec-tools.d.ts +39 -0
  278. package/dist/mcp/spec-tools.d.ts.map +1 -0
  279. package/dist/mcp/spec-tools.js +326 -0
  280. package/dist/mcp/spec-tools.js.map +1 -0
  281. package/dist/mcp/tools.d.ts +404 -0
  282. package/dist/mcp/tools.d.ts.map +1 -0
  283. package/dist/mcp/tools.js +3066 -0
  284. package/dist/mcp/tools.js.map +1 -0
  285. package/dist/mcp/transport.d.ts +188 -0
  286. package/dist/mcp/transport.d.ts.map +1 -0
  287. package/dist/mcp/transport.js +343 -0
  288. package/dist/mcp/transport.js.map +1 -0
  289. package/dist/mcp/version.d.ts +19 -0
  290. package/dist/mcp/version.d.ts.map +1 -0
  291. package/dist/mcp/version.js +71 -0
  292. package/dist/mcp/version.js.map +1 -0
  293. package/dist/resolution/callback-synthesizer.d.ts +10 -0
  294. package/dist/resolution/callback-synthesizer.d.ts.map +1 -0
  295. package/dist/resolution/callback-synthesizer.js +1300 -0
  296. package/dist/resolution/callback-synthesizer.js.map +1 -0
  297. package/dist/resolution/frameworks/cargo-workspace.d.ts +18 -0
  298. package/dist/resolution/frameworks/cargo-workspace.d.ts.map +1 -0
  299. package/dist/resolution/frameworks/cargo-workspace.js +225 -0
  300. package/dist/resolution/frameworks/cargo-workspace.js.map +1 -0
  301. package/dist/resolution/frameworks/csharp.d.ts +8 -0
  302. package/dist/resolution/frameworks/csharp.d.ts.map +1 -0
  303. package/dist/resolution/frameworks/csharp.js +241 -0
  304. package/dist/resolution/frameworks/csharp.js.map +1 -0
  305. package/dist/resolution/frameworks/drupal.d.ts +51 -0
  306. package/dist/resolution/frameworks/drupal.d.ts.map +1 -0
  307. package/dist/resolution/frameworks/drupal.js +367 -0
  308. package/dist/resolution/frameworks/drupal.js.map +1 -0
  309. package/dist/resolution/frameworks/expo-modules.d.ts +3 -0
  310. package/dist/resolution/frameworks/expo-modules.d.ts.map +1 -0
  311. package/dist/resolution/frameworks/expo-modules.js +143 -0
  312. package/dist/resolution/frameworks/expo-modules.js.map +1 -0
  313. package/dist/resolution/frameworks/express.d.ts +8 -0
  314. package/dist/resolution/frameworks/express.d.ts.map +1 -0
  315. package/dist/resolution/frameworks/express.js +308 -0
  316. package/dist/resolution/frameworks/express.js.map +1 -0
  317. package/dist/resolution/frameworks/fabric.d.ts +3 -0
  318. package/dist/resolution/frameworks/fabric.d.ts.map +1 -0
  319. package/dist/resolution/frameworks/fabric.js +354 -0
  320. package/dist/resolution/frameworks/fabric.js.map +1 -0
  321. package/dist/resolution/frameworks/go.d.ts +8 -0
  322. package/dist/resolution/frameworks/go.d.ts.map +1 -0
  323. package/dist/resolution/frameworks/go.js +161 -0
  324. package/dist/resolution/frameworks/go.js.map +1 -0
  325. package/dist/resolution/frameworks/index.d.ts +48 -0
  326. package/dist/resolution/frameworks/index.d.ts.map +1 -0
  327. package/dist/resolution/frameworks/index.js +161 -0
  328. package/dist/resolution/frameworks/index.js.map +1 -0
  329. package/dist/resolution/frameworks/java.d.ts +8 -0
  330. package/dist/resolution/frameworks/java.d.ts.map +1 -0
  331. package/dist/resolution/frameworks/java.js +504 -0
  332. package/dist/resolution/frameworks/java.js.map +1 -0
  333. package/dist/resolution/frameworks/laravel.d.ts +13 -0
  334. package/dist/resolution/frameworks/laravel.d.ts.map +1 -0
  335. package/dist/resolution/frameworks/laravel.js +257 -0
  336. package/dist/resolution/frameworks/laravel.js.map +1 -0
  337. package/dist/resolution/frameworks/nestjs.d.ts +26 -0
  338. package/dist/resolution/frameworks/nestjs.d.ts.map +1 -0
  339. package/dist/resolution/frameworks/nestjs.js +698 -0
  340. package/dist/resolution/frameworks/nestjs.js.map +1 -0
  341. package/dist/resolution/frameworks/play.d.ts +19 -0
  342. package/dist/resolution/frameworks/play.d.ts.map +1 -0
  343. package/dist/resolution/frameworks/play.js +111 -0
  344. package/dist/resolution/frameworks/play.js.map +1 -0
  345. package/dist/resolution/frameworks/python.d.ts +10 -0
  346. package/dist/resolution/frameworks/python.d.ts.map +1 -0
  347. package/dist/resolution/frameworks/python.js +396 -0
  348. package/dist/resolution/frameworks/python.js.map +1 -0
  349. package/dist/resolution/frameworks/react-native.d.ts +3 -0
  350. package/dist/resolution/frameworks/react-native.d.ts.map +1 -0
  351. package/dist/resolution/frameworks/react-native.js +360 -0
  352. package/dist/resolution/frameworks/react-native.js.map +1 -0
  353. package/dist/resolution/frameworks/react.d.ts +8 -0
  354. package/dist/resolution/frameworks/react.d.ts.map +1 -0
  355. package/dist/resolution/frameworks/react.js +365 -0
  356. package/dist/resolution/frameworks/react.js.map +1 -0
  357. package/dist/resolution/frameworks/ruby.d.ts +8 -0
  358. package/dist/resolution/frameworks/ruby.d.ts.map +1 -0
  359. package/dist/resolution/frameworks/ruby.js +302 -0
  360. package/dist/resolution/frameworks/ruby.js.map +1 -0
  361. package/dist/resolution/frameworks/rust.d.ts +8 -0
  362. package/dist/resolution/frameworks/rust.d.ts.map +1 -0
  363. package/dist/resolution/frameworks/rust.js +304 -0
  364. package/dist/resolution/frameworks/rust.js.map +1 -0
  365. package/dist/resolution/frameworks/svelte.d.ts +9 -0
  366. package/dist/resolution/frameworks/svelte.d.ts.map +1 -0
  367. package/dist/resolution/frameworks/svelte.js +249 -0
  368. package/dist/resolution/frameworks/svelte.js.map +1 -0
  369. package/dist/resolution/frameworks/swift-objc.d.ts +37 -0
  370. package/dist/resolution/frameworks/swift-objc.d.ts.map +1 -0
  371. package/dist/resolution/frameworks/swift-objc.js +252 -0
  372. package/dist/resolution/frameworks/swift-objc.js.map +1 -0
  373. package/dist/resolution/frameworks/swift.d.ts +10 -0
  374. package/dist/resolution/frameworks/swift.d.ts.map +1 -0
  375. package/dist/resolution/frameworks/swift.js +400 -0
  376. package/dist/resolution/frameworks/swift.js.map +1 -0
  377. package/dist/resolution/frameworks/vue.d.ts +9 -0
  378. package/dist/resolution/frameworks/vue.d.ts.map +1 -0
  379. package/dist/resolution/frameworks/vue.js +306 -0
  380. package/dist/resolution/frameworks/vue.js.map +1 -0
  381. package/dist/resolution/go-module.d.ts +26 -0
  382. package/dist/resolution/go-module.d.ts.map +1 -0
  383. package/dist/resolution/go-module.js +78 -0
  384. package/dist/resolution/go-module.js.map +1 -0
  385. package/dist/resolution/import-resolver.d.ts +68 -0
  386. package/dist/resolution/import-resolver.d.ts.map +1 -0
  387. package/dist/resolution/import-resolver.js +1275 -0
  388. package/dist/resolution/import-resolver.js.map +1 -0
  389. package/dist/resolution/index.d.ts +117 -0
  390. package/dist/resolution/index.d.ts.map +1 -0
  391. package/dist/resolution/index.js +895 -0
  392. package/dist/resolution/index.js.map +1 -0
  393. package/dist/resolution/lru-cache.d.ts +24 -0
  394. package/dist/resolution/lru-cache.d.ts.map +1 -0
  395. package/dist/resolution/lru-cache.js +62 -0
  396. package/dist/resolution/lru-cache.js.map +1 -0
  397. package/dist/resolution/name-matcher.d.ts +32 -0
  398. package/dist/resolution/name-matcher.d.ts.map +1 -0
  399. package/dist/resolution/name-matcher.js +596 -0
  400. package/dist/resolution/name-matcher.js.map +1 -0
  401. package/dist/resolution/path-aliases.d.ts +68 -0
  402. package/dist/resolution/path-aliases.d.ts.map +1 -0
  403. package/dist/resolution/path-aliases.js +238 -0
  404. package/dist/resolution/path-aliases.js.map +1 -0
  405. package/dist/resolution/spec-link-resolver.d.ts +103 -0
  406. package/dist/resolution/spec-link-resolver.d.ts.map +1 -0
  407. package/dist/resolution/spec-link-resolver.js +259 -0
  408. package/dist/resolution/spec-link-resolver.js.map +1 -0
  409. package/dist/resolution/strip-comments.d.ts +27 -0
  410. package/dist/resolution/strip-comments.d.ts.map +1 -0
  411. package/dist/resolution/strip-comments.js +441 -0
  412. package/dist/resolution/strip-comments.js.map +1 -0
  413. package/dist/resolution/swift-objc-bridge.d.ts +134 -0
  414. package/dist/resolution/swift-objc-bridge.d.ts.map +1 -0
  415. package/dist/resolution/swift-objc-bridge.js +256 -0
  416. package/dist/resolution/swift-objc-bridge.js.map +1 -0
  417. package/dist/resolution/types.d.ts +216 -0
  418. package/dist/resolution/types.d.ts.map +1 -0
  419. package/dist/resolution/types.js +8 -0
  420. package/dist/resolution/types.js.map +1 -0
  421. package/dist/resolution/workspace-packages.d.ts +48 -0
  422. package/dist/resolution/workspace-packages.d.ts.map +1 -0
  423. package/dist/resolution/workspace-packages.js +208 -0
  424. package/dist/resolution/workspace-packages.js.map +1 -0
  425. package/dist/search/query-parser.d.ts +57 -0
  426. package/dist/search/query-parser.d.ts.map +1 -0
  427. package/dist/search/query-parser.js +177 -0
  428. package/dist/search/query-parser.js.map +1 -0
  429. package/dist/search/query-utils.d.ts +71 -0
  430. package/dist/search/query-utils.d.ts.map +1 -0
  431. package/dist/search/query-utils.js +380 -0
  432. package/dist/search/query-utils.js.map +1 -0
  433. package/dist/server/cli.js +152 -0
  434. package/dist/server/index.js +12 -0
  435. package/dist/server/ingest/index.js +18 -0
  436. package/dist/server/ingest/ingestor.js +506 -0
  437. package/dist/server/ingest/parser.js +104 -0
  438. package/dist/server/ingest/pricing.js +78 -0
  439. package/dist/server/ingest/types.js +9 -0
  440. package/dist/server/ingest/watcher.js +77 -0
  441. package/dist/server/package.json +3 -0
  442. package/dist/server/project-registry.js +101 -0
  443. package/dist/server/routes/claude.js +868 -0
  444. package/dist/server/routes/graph.js +211 -0
  445. package/dist/server/routes/memory.js +272 -0
  446. package/dist/server/routes/projects.js +197 -0
  447. package/dist/server/routes/spec.js +265 -0
  448. package/dist/server/routes/status.js +112 -0
  449. package/dist/server/routes/workflow.js +212 -0
  450. package/dist/server/server.js +206 -0
  451. package/dist/server/static-handler.js +87 -0
  452. package/dist/sync/git-hooks.d.ts +45 -0
  453. package/dist/sync/git-hooks.d.ts.map +1 -0
  454. package/dist/sync/git-hooks.js +225 -0
  455. package/dist/sync/git-hooks.js.map +1 -0
  456. package/dist/sync/index.d.ts +19 -0
  457. package/dist/sync/index.d.ts.map +1 -0
  458. package/dist/sync/index.js +35 -0
  459. package/dist/sync/index.js.map +1 -0
  460. package/dist/sync/watch-policy.d.ts +48 -0
  461. package/dist/sync/watch-policy.d.ts.map +1 -0
  462. package/dist/sync/watch-policy.js +124 -0
  463. package/dist/sync/watch-policy.js.map +1 -0
  464. package/dist/sync/watcher.d.ts +283 -0
  465. package/dist/sync/watcher.d.ts.map +1 -0
  466. package/dist/sync/watcher.js +606 -0
  467. package/dist/sync/watcher.js.map +1 -0
  468. package/dist/sync/worktree.d.ts +54 -0
  469. package/dist/sync/worktree.d.ts.map +1 -0
  470. package/dist/sync/worktree.js +137 -0
  471. package/dist/sync/worktree.js.map +1 -0
  472. package/dist/types.d.ts +623 -0
  473. package/dist/types.d.ts.map +1 -0
  474. package/dist/types.js +108 -0
  475. package/dist/types.js.map +1 -0
  476. package/dist/ui/glyphs.d.ts +42 -0
  477. package/dist/ui/glyphs.d.ts.map +1 -0
  478. package/dist/ui/glyphs.js +78 -0
  479. package/dist/ui/glyphs.js.map +1 -0
  480. package/dist/ui/shimmer-progress.d.ts +11 -0
  481. package/dist/ui/shimmer-progress.d.ts.map +1 -0
  482. package/dist/ui/shimmer-progress.js +90 -0
  483. package/dist/ui/shimmer-progress.js.map +1 -0
  484. package/dist/ui/shimmer-worker.d.ts +2 -0
  485. package/dist/ui/shimmer-worker.d.ts.map +1 -0
  486. package/dist/ui/shimmer-worker.js +118 -0
  487. package/dist/ui/shimmer-worker.js.map +1 -0
  488. package/dist/ui/types.d.ts +17 -0
  489. package/dist/ui/types.d.ts.map +1 -0
  490. package/dist/ui/types.js +3 -0
  491. package/dist/ui/types.js.map +1 -0
  492. package/dist/utils.d.ts +205 -0
  493. package/dist/utils.d.ts.map +1 -0
  494. package/dist/utils.js +549 -0
  495. package/dist/utils.js.map +1 -0
  496. package/dist/web/chunk-2AJCHB7P.js +1 -0
  497. package/dist/web/chunk-2CPLUFCH.js +2 -0
  498. package/dist/web/chunk-2DHIGIOI.js +1 -0
  499. package/dist/web/chunk-2GBEK2GM.js +1 -0
  500. package/dist/web/chunk-2I7L37NS.js +1 -0
  501. package/dist/web/chunk-2NAWAJB5.js +1 -0
  502. package/dist/web/chunk-2OJBIPE4.js +1 -0
  503. package/dist/web/chunk-2OKMB4KX.js +2 -0
  504. package/dist/web/chunk-3E2WB6D5.js +1 -0
  505. package/dist/web/chunk-3EBFYSCH.js +2 -0
  506. package/dist/web/chunk-3QCQ4BXS.js +1 -0
  507. package/dist/web/chunk-3SEJX2BK.js +1 -0
  508. package/dist/web/chunk-42XVAQ6I.js +1 -0
  509. package/dist/web/chunk-4IMMPEYM.js +1 -0
  510. package/dist/web/chunk-4N5DWG46.js +1 -0
  511. package/dist/web/chunk-4TJQJPCZ.js +1 -0
  512. package/dist/web/chunk-4WZIHTPC.js +1 -0
  513. package/dist/web/chunk-4YVSYOSD.js +1 -0
  514. package/dist/web/chunk-5BQIOYKW.js +1 -0
  515. package/dist/web/chunk-5HGWHUJA.js +1 -0
  516. package/dist/web/chunk-5Y244R4G.js +1 -0
  517. package/dist/web/chunk-6RRDPT5Z.js +1 -0
  518. package/dist/web/chunk-6VKB2ZWM.js +1 -0
  519. package/dist/web/chunk-7DMFVTU4.js +1 -0
  520. package/dist/web/chunk-7RNS77UP.js +1 -0
  521. package/dist/web/chunk-7SMPKVEP.js +1 -0
  522. package/dist/web/chunk-AZJVTPLU.js +1 -0
  523. package/dist/web/chunk-BCZM5AXU.js +1 -0
  524. package/dist/web/chunk-BLBRMCN2.js +1 -0
  525. package/dist/web/chunk-BMIAXD2V.js +2 -0
  526. package/dist/web/chunk-BPECIDVO.js +1 -0
  527. package/dist/web/chunk-BUXWEHIY.js +1 -0
  528. package/dist/web/chunk-BYZFQSM6.js +1 -0
  529. package/dist/web/chunk-DA6SNNAF.js +1 -0
  530. package/dist/web/chunk-DLQPZWSI.css +1 -0
  531. package/dist/web/chunk-DTRN7FZR.js +1 -0
  532. package/dist/web/chunk-DYRFLPJA.js +1 -0
  533. package/dist/web/chunk-E3J3CXR5.js +1 -0
  534. package/dist/web/chunk-E44X4RH2.js +1 -0
  535. package/dist/web/chunk-E73OX2P7.js +1 -0
  536. package/dist/web/chunk-EAXRKDLV.js +1 -0
  537. package/dist/web/chunk-EBKKDHYI.js +1 -0
  538. package/dist/web/chunk-EE7V7Q5P.js +1 -0
  539. package/dist/web/chunk-EKY2FUHU.js +1 -0
  540. package/dist/web/chunk-EMGMOEVR.js +1 -0
  541. package/dist/web/chunk-EP6XOPXH.js +1 -0
  542. package/dist/web/chunk-ESGDLJOJ.js +1 -0
  543. package/dist/web/chunk-ETJG7NCY.js +1 -0
  544. package/dist/web/chunk-EUUEFEDI.js +1 -0
  545. package/dist/web/chunk-FGNZDHTL.js +11 -0
  546. package/dist/web/chunk-FIJW2UNJ.js +1 -0
  547. package/dist/web/chunk-FMV5PXRC.js +5 -0
  548. package/dist/web/chunk-G7VZT5KB.js +3 -0
  549. package/dist/web/chunk-GRZYXPSO.js +7 -0
  550. package/dist/web/chunk-GYGPS3AN.js +1 -0
  551. package/dist/web/chunk-H7AF7YS4.js +1 -0
  552. package/dist/web/chunk-HDZDQILN.js +1 -0
  553. package/dist/web/chunk-HMK6UO6N.js +1 -0
  554. package/dist/web/chunk-HZA6NEAB.js +1 -0
  555. package/dist/web/chunk-IHEE5NYJ.js +1 -0
  556. package/dist/web/chunk-ISNEBICW.js +1 -0
  557. package/dist/web/chunk-J2GZVLHH.js +1 -0
  558. package/dist/web/chunk-JFYVCXK3.js +1 -0
  559. package/dist/web/chunk-JN6W7HCN.js +17 -0
  560. package/dist/web/chunk-JT7P3DEK.js +6 -0
  561. package/dist/web/chunk-JTFXTIPE.js +903 -0
  562. package/dist/web/chunk-L37MTFSG.js +3 -0
  563. package/dist/web/chunk-LB6JPLX2.js +1 -0
  564. package/dist/web/chunk-LNSVDHCI.js +1 -0
  565. package/dist/web/chunk-LV4G6QFG.js +2 -0
  566. package/dist/web/chunk-LVGIY3SO.js +1 -0
  567. package/dist/web/chunk-LXLHIHEN.js +1 -0
  568. package/dist/web/chunk-MC4DFIHG.js +1 -0
  569. package/dist/web/chunk-MVOMVPYB.js +1 -0
  570. package/dist/web/chunk-N6SS4G6S.js +1 -0
  571. package/dist/web/chunk-NTBJG6SJ.js +1 -0
  572. package/dist/web/chunk-NUDB3Q2Y.js +3 -0
  573. package/dist/web/chunk-OXEF5E3E.js +1 -0
  574. package/dist/web/chunk-PDN6QYGJ.js +4 -0
  575. package/dist/web/chunk-PGGJPDJG.js +1 -0
  576. package/dist/web/chunk-PUYSJNJR.js +1 -0
  577. package/dist/web/chunk-Q2RVFS45.js +1 -0
  578. package/dist/web/chunk-Q7L6LLAK.js +1 -0
  579. package/dist/web/chunk-QCMKJIWY.js +1 -0
  580. package/dist/web/chunk-QH6CF3M3.js +1 -0
  581. package/dist/web/chunk-QQ5LD7PI.js +1 -0
  582. package/dist/web/chunk-QR6L3KAC.js +1 -0
  583. package/dist/web/chunk-R2DLK4HO.js +1 -0
  584. package/dist/web/chunk-R5W2MDZN.js +1 -0
  585. package/dist/web/chunk-RAAMPHPJ.js +1 -0
  586. package/dist/web/chunk-RD6TVPOT.js +1 -0
  587. package/dist/web/chunk-RKY4EJYJ.js +1 -0
  588. package/dist/web/chunk-RONYWVY7.js +1 -0
  589. package/dist/web/chunk-RXKXYF2C.js +1 -0
  590. package/dist/web/chunk-SBWU7JFC.js +1 -0
  591. package/dist/web/chunk-SEXBRGYK.js +1 -0
  592. package/dist/web/chunk-SHPTC4RL.js +1 -0
  593. package/dist/web/chunk-SUZYBYDW.js +1 -0
  594. package/dist/web/chunk-SWKJRNYY.js +1 -0
  595. package/dist/web/chunk-T66XVKGB.js +1 -0
  596. package/dist/web/chunk-T7AZ65JP.js +1 -0
  597. package/dist/web/chunk-TCZDVOHD.js +1 -0
  598. package/dist/web/chunk-TPTITA3V.js +1 -0
  599. package/dist/web/chunk-TR335633.js +1 -0
  600. package/dist/web/chunk-TWXZK6XM.js +1 -0
  601. package/dist/web/chunk-UR5KDXPX.js +1 -0
  602. package/dist/web/chunk-UR6O2GEH.js +1 -0
  603. package/dist/web/chunk-UTNMGWTP.js +1 -0
  604. package/dist/web/chunk-UYC52MBC.js +1 -0
  605. package/dist/web/chunk-VECWMHJP.js +1 -0
  606. package/dist/web/chunk-VUACT35R.js +3 -0
  607. package/dist/web/chunk-VZI7H4SZ.js +1 -0
  608. package/dist/web/chunk-WAI2JMZP.js +1 -0
  609. package/dist/web/chunk-WB6YHOD4.js +1 -0
  610. package/dist/web/chunk-WBT64AWV.js +1 -0
  611. package/dist/web/chunk-WDU3WICG.js +1 -0
  612. package/dist/web/chunk-WFXJIXZE.js +4 -0
  613. package/dist/web/chunk-WTGYRH3Z.js +298 -0
  614. package/dist/web/chunk-WXTCVDTP.js +1 -0
  615. package/dist/web/chunk-X2HTISHL.js +1 -0
  616. package/dist/web/chunk-XCDHWLVH.js +1 -0
  617. package/dist/web/chunk-Y3H6FFUZ.js +1 -0
  618. package/dist/web/chunk-Y4F5ULGJ.js +1 -0
  619. package/dist/web/chunk-YAWCRPHV.js +1 -0
  620. package/dist/web/chunk-YEGKAAEE.js +1 -0
  621. package/dist/web/chunk-YM2KU57F.js +1 -0
  622. package/dist/web/chunk-YRERBP6T.js +1 -0
  623. package/dist/web/chunk-ZLV4VCDG.js +3 -0
  624. package/dist/web/chunk-ZTVI5KFF.js +1 -0
  625. package/dist/web/favicon-16.png +0 -0
  626. package/dist/web/favicon-180.png +0 -0
  627. package/dist/web/favicon-32.png +0 -0
  628. package/dist/web/favicon-512.png +0 -0
  629. package/dist/web/favicon-small.svg +15 -0
  630. package/dist/web/favicon.ico +0 -0
  631. package/dist/web/favicon.svg +20 -0
  632. package/dist/web/index.html +145 -0
  633. package/dist/web/main-ESADRXN2.css +1 -0
  634. package/dist/web/main-WVI3YTDU.js +1 -0
  635. package/dist/web/media/codicon-LN6W7LCM.ttf +0 -0
  636. package/dist/web/styles-KSOPUVDA.css +1 -0
  637. package/dist/workflows/condition-evaluator.d.ts +75 -0
  638. package/dist/workflows/condition-evaluator.d.ts.map +1 -0
  639. package/dist/workflows/condition-evaluator.js +282 -0
  640. package/dist/workflows/condition-evaluator.js.map +1 -0
  641. package/dist/workflows/defaults/claude-design-implement.yaml +247 -0
  642. package/dist/workflows/defaults/index.d.ts +26 -0
  643. package/dist/workflows/defaults/index.d.ts.map +1 -0
  644. package/dist/workflows/defaults/index.js +94 -0
  645. package/dist/workflows/defaults/index.js.map +1 -0
  646. package/dist/workflows/defaults/spec-author.yaml +214 -0
  647. package/dist/workflows/defaults/spec-fix.yaml +110 -0
  648. package/dist/workflows/defaults/spec-implement.yaml +150 -0
  649. package/dist/workflows/defaults/spec-relink.yaml +81 -0
  650. package/dist/workflows/defaults/spec-verify.yaml +51 -0
  651. package/dist/workflows/discovery.d.ts +46 -0
  652. package/dist/workflows/discovery.d.ts.map +1 -0
  653. package/dist/workflows/discovery.js +193 -0
  654. package/dist/workflows/discovery.js.map +1 -0
  655. package/dist/workflows/executor.d.ts +83 -0
  656. package/dist/workflows/executor.d.ts.map +1 -0
  657. package/dist/workflows/executor.js +624 -0
  658. package/dist/workflows/executor.js.map +1 -0
  659. package/dist/workflows/runners/approval.d.ts +18 -0
  660. package/dist/workflows/runners/approval.d.ts.map +1 -0
  661. package/dist/workflows/runners/approval.js +34 -0
  662. package/dist/workflows/runners/approval.js.map +1 -0
  663. package/dist/workflows/runners/bash.d.ts +13 -0
  664. package/dist/workflows/runners/bash.d.ts.map +1 -0
  665. package/dist/workflows/runners/bash.js +143 -0
  666. package/dist/workflows/runners/bash.js.map +1 -0
  667. package/dist/workflows/runners/cancel.d.ts +10 -0
  668. package/dist/workflows/runners/cancel.d.ts.map +1 -0
  669. package/dist/workflows/runners/cancel.js +19 -0
  670. package/dist/workflows/runners/cancel.js.map +1 -0
  671. package/dist/workflows/runners/prompt.d.ts +28 -0
  672. package/dist/workflows/runners/prompt.d.ts.map +1 -0
  673. package/dist/workflows/runners/prompt.js +212 -0
  674. package/dist/workflows/runners/prompt.js.map +1 -0
  675. package/dist/workflows/runners/script.d.ts +17 -0
  676. package/dist/workflows/runners/script.d.ts.map +1 -0
  677. package/dist/workflows/runners/script.js +155 -0
  678. package/dist/workflows/runners/script.js.map +1 -0
  679. package/dist/workflows/runners/types.d.ts +51 -0
  680. package/dist/workflows/runners/types.d.ts.map +1 -0
  681. package/dist/workflows/runners/types.js +13 -0
  682. package/dist/workflows/runners/types.js.map +1 -0
  683. package/dist/workflows/schemas/workflow.d.ts +166 -0
  684. package/dist/workflows/schemas/workflow.d.ts.map +1 -0
  685. package/dist/workflows/schemas/workflow.js +437 -0
  686. package/dist/workflows/schemas/workflow.js.map +1 -0
  687. package/package.json +1 -1
  688. package/scripts/offline-install.sh +19 -6
  689. /package/commands/{cg-explore.md → ss-explore.md} +0 -0
  690. /package/commands/{cg-impact.md → ss-impact.md} +0 -0
  691. /package/commands/{cg-relink.md → ss-relink.md} +0 -0
  692. /package/commands/{cg-spec.md → ss-spec.md} +0 -0
  693. /package/commands/{cg-sync.md → ss-sync.md} +0 -0
  694. /package/commands/{cg-trace.md → ss-trace.md} +0 -0
@@ -0,0 +1,4 @@
1
+ import{a as j,b as H}from"./chunk-Q7L6LLAK.js";var q=null,Cr=!1,Ri=1,sh=null,$=Symbol("SIGNAL");function g(e){let t=q;return q=e,t}function wr(){return q}var Ue={version:0,lastCleanEpoch:0,dirty:!1,producers:void 0,producersTail:void 0,consumers:void 0,consumersTail:void 0,recomputing:!1,consumerAllowSignalWrites:!1,consumerIsAlwaysLive:!1,kind:"unknown",producerMustRecompute:()=>!1,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{}};function ct(e){if(Cr)throw new Error("");if(q===null)return;q.consumerOnSignalRead(e);let t=q.producersTail;if(t!==void 0&&t.producer===e)return;let n,r=q.recomputing;if(r&&(n=t!==void 0?t.nextProducer:q.producers,n!==void 0&&n.producer===e)){q.producersTail=n,n.lastReadVersion=e.version;return}let o=e.consumersTail;if(o!==void 0&&o.consumer===q&&(!r||ch(o,q)))return;let i=zt(q),s={producer:e,consumer:q,nextProducer:n,prevConsumer:o,lastReadVersion:e.version,nextConsumer:void 0};q.producersTail=s,t!==void 0?t.nextProducer=s:q.producers=s,i&&Jc(e,s)}function Yc(){Ri++}function ut(e){if(!(zt(e)&&!e.dirty)&&!(!e.dirty&&e.lastCleanEpoch===Ri)){if(!e.producerMustRecompute(e)&&!yn(e)){Ut(e);return}e.producerRecomputeValue(e),Ut(e)}}function Oi(e){if(e.consumers===void 0)return;let t=Cr;Cr=!0;try{for(let n=e.consumers;n!==void 0;n=n.nextConsumer){let r=n.consumer;r.dirty||ah(r)}}finally{Cr=t}}function ki(){return q?.consumerAllowSignalWrites!==!1}function ah(e){e.dirty=!0,Oi(e),e.consumerMarkedDirty?.(e)}function Ut(e){e.dirty=!1,e.lastCleanEpoch=Ri}function ze(e){return e&&Qc(e),g(e)}function Qc(e){e.producersTail=void 0,e.recomputing=!0}function lt(e,t){g(t),e&&Kc(e)}function Kc(e){e.recomputing=!1;let t=e.producersTail,n=t!==void 0?t.nextProducer:e.producers;if(n!==void 0){if(zt(e))do n=Fi(n);while(n!==void 0);t!==void 0?t.nextProducer=void 0:e.producers=void 0}}function yn(e){for(let t=e.producers;t!==void 0;t=t.nextProducer){let n=t.producer,r=t.lastReadVersion;if(r!==n.version||(ut(n),r!==n.version))return!0}return!1}function dt(e){if(zt(e)){let t=e.producers;for(;t!==void 0;)t=Fi(t)}e.producers=void 0,e.producersTail=void 0,e.consumers=void 0,e.consumersTail=void 0}function Jc(e,t){let n=e.consumersTail,r=zt(e);if(n!==void 0?(t.nextConsumer=n.nextConsumer,n.nextConsumer=t):(t.nextConsumer=void 0,e.consumers=t),t.prevConsumer=n,e.consumersTail=t,!r)for(let o=e.producers;o!==void 0;o=o.nextProducer)Jc(o.producer,o)}function Fi(e){let t=e.producer,n=e.nextProducer,r=e.nextConsumer,o=e.prevConsumer;if(e.nextConsumer=void 0,e.prevConsumer=void 0,r!==void 0?r.prevConsumer=o:t.consumersTail=o,o!==void 0)o.nextConsumer=r;else if(t.consumers=r,!zt(t)){let i=t.producers;for(;i!==void 0;)i=Fi(i)}return n}function zt(e){return e.consumerIsAlwaysLive||e.consumers!==void 0}function vn(e){sh?.(e)}function ch(e,t){let n=t.producersTail;if(n!==void 0){let r=t.producers;do{if(r===e)return!0;if(r===n)break;r=r.nextProducer}while(r!==void 0)}return!1}function Dn(e,t){return Object.is(e,t)}function En(e,t){let n=Object.create(uh);n.computation=e,t!==void 0&&(n.equal=t);let r=()=>{if(ut(n),ct(n),n.value===be)throw n.error;return n.value};return r[$]=n,vn(n),r}var st=Symbol("UNSET"),at=Symbol("COMPUTING"),be=Symbol("ERRORED"),uh=H(j({},Ue),{value:st,dirty:!0,error:null,equal:Dn,kind:"computed",producerMustRecompute(e){return e.value===st||e.value===at},producerRecomputeValue(e){if(e.value===at)throw new Error("");let t=e.value;e.value=at;let n=ze(e),r,o=!1;try{r=e.computation(),g(null),o=t!==st&&t!==be&&r!==be&&e.equal(t,r)}catch(i){r=be,e.error=i}finally{lt(e,n)}if(o){e.value=t;return}e.value=r,e.version++}});function lh(){throw new Error}var Xc=lh;function eu(e){Xc(e)}function Li(e){Xc=e}var dh=null;function Pi(e,t){let n=Object.create(_r);n.value=e,t!==void 0&&(n.equal=t);let r=()=>tu(n);return r[$]=n,vn(n),[r,s=>ft(n,s),s=>br(n,s)]}function tu(e){return ct(e),e.value}function ft(e,t){ki()||eu(e),e.equal(e.value,t)||(e.value=t,fh(e))}function br(e,t){ki()||eu(e),ft(e,t(e.value))}var _r=H(j({},Ue),{equal:Dn,value:void 0,kind:"signal"});function fh(e){e.version++,Yc(),Oi(e),dh?.(e)}var ji=H(j({},Ue),{consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!0,dirty:!0,kind:"effect"});function Bi(e){if(e.dirty=!1,e.version>0&&!yn(e))return;e.version++;let t=ze(e);try{e.cleanup(),e.fn()}finally{lt(e,t)}}function I(e){return typeof e=="function"}function Gt(e){let n=e(r=>{Error.call(r),r.stack=new Error().stack});return n.prototype=Object.create(Error.prototype),n.prototype.constructor=n,n}var Mr=Gt(e=>function(n){e(this),this.message=n?`${n.length} errors occurred during unsubscription:
2
+ ${n.map((r,o)=>`${o+1}) ${r.toString()}`).join(`
3
+ `)}`:"",this.name="UnsubscriptionError",this.errors=n});function In(e,t){if(e){let n=e.indexOf(t);0<=n&&e.splice(n,1)}}var Z=class e{constructor(t){this.initialTeardown=t,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let t;if(!this.closed){this.closed=!0;let{_parentage:n}=this;if(n)if(this._parentage=null,Array.isArray(n))for(let i of n)i.remove(this);else n.remove(this);let{initialTeardown:r}=this;if(I(r))try{r()}catch(i){t=i instanceof Mr?i.errors:[i]}let{_finalizers:o}=this;if(o){this._finalizers=null;for(let i of o)try{nu(i)}catch(s){t=t??[],s instanceof Mr?t=[...t,...s.errors]:t.push(s)}}if(t)throw new Mr(t)}}add(t){var n;if(t&&t!==this)if(this.closed)nu(t);else{if(t instanceof e){if(t.closed||t._hasParent(this))return;t._addParent(this)}(this._finalizers=(n=this._finalizers)!==null&&n!==void 0?n:[]).push(t)}}_hasParent(t){let{_parentage:n}=this;return n===t||Array.isArray(n)&&n.includes(t)}_addParent(t){let{_parentage:n}=this;this._parentage=Array.isArray(n)?(n.push(t),n):n?[n,t]:t}_removeParent(t){let{_parentage:n}=this;n===t?this._parentage=null:Array.isArray(n)&&In(n,t)}remove(t){let{_finalizers:n}=this;n&&In(n,t),t instanceof e&&t._removeParent(this)}};Z.EMPTY=(()=>{let e=new Z;return e.closed=!0,e})();var Vi=Z.EMPTY;function Tr(e){return e instanceof Z||e&&"closed"in e&&I(e.remove)&&I(e.add)&&I(e.unsubscribe)}function nu(e){I(e)?e():e.unsubscribe()}var de={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1};var Wt={setTimeout(e,t,...n){let{delegate:r}=Wt;return r?.setTimeout?r.setTimeout(e,t,...n):setTimeout(e,t,...n)},clearTimeout(e){let{delegate:t}=Wt;return(t?.clearTimeout||clearTimeout)(e)},delegate:void 0};function Sr(e){Wt.setTimeout(()=>{let{onUnhandledError:t}=de;if(t)t(e);else throw e})}function Cn(){}var ru=Hi("C",void 0,void 0);function ou(e){return Hi("E",void 0,e)}function iu(e){return Hi("N",e,void 0)}function Hi(e,t,n){return{kind:e,value:t,error:n}}var pt=null;function qt(e){if(de.useDeprecatedSynchronousErrorHandling){let t=!pt;if(t&&(pt={errorThrown:!1,error:null}),e(),t){let{errorThrown:n,error:r}=pt;if(pt=null,n)throw r}}else e()}function su(e){de.useDeprecatedSynchronousErrorHandling&&pt&&(pt.errorThrown=!0,pt.error=e)}var ht=class extends Z{constructor(t){super(),this.isStopped=!1,t?(this.destination=t,Tr(t)&&t.add(this)):this.destination=gh}static create(t,n,r){return new Zt(t,n,r)}next(t){this.isStopped?Ui(iu(t),this):this._next(t)}error(t){this.isStopped?Ui(ou(t),this):(this.isStopped=!0,this._error(t))}complete(){this.isStopped?Ui(ru,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(t){this.destination.next(t)}_error(t){try{this.destination.error(t)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}},ph=Function.prototype.bind;function $i(e,t){return ph.call(e,t)}var zi=class{constructor(t){this.partialObserver=t}next(t){let{partialObserver:n}=this;if(n.next)try{n.next(t)}catch(r){Nr(r)}}error(t){let{partialObserver:n}=this;if(n.error)try{n.error(t)}catch(r){Nr(r)}else Nr(t)}complete(){let{partialObserver:t}=this;if(t.complete)try{t.complete()}catch(n){Nr(n)}}},Zt=class extends ht{constructor(t,n,r){super();let o;if(I(t)||!t)o={next:t??void 0,error:n??void 0,complete:r??void 0};else{let i;this&&de.useDeprecatedNextContext?(i=Object.create(t),i.unsubscribe=()=>this.unsubscribe(),o={next:t.next&&$i(t.next,i),error:t.error&&$i(t.error,i),complete:t.complete&&$i(t.complete,i)}):o=t}this.destination=new zi(o)}};function Nr(e){de.useDeprecatedSynchronousErrorHandling?su(e):Sr(e)}function hh(e){throw e}function Ui(e,t){let{onStoppedNotification:n}=de;n&&Wt.setTimeout(()=>n(e,t))}var gh={closed:!0,next:Cn,error:hh,complete:Cn};var Yt=typeof Symbol=="function"&&Symbol.observable||"@@observable";function fe(e){return e}function mh(...e){return Gi(e)}function Gi(e){return e.length===0?fe:e.length===1?e[0]:function(n){return e.reduce((r,o)=>o(r),n)}}var A=(()=>{class e{constructor(n){n&&(this._subscribe=n)}lift(n){let r=new e;return r.source=this,r.operator=n,r}subscribe(n,r,o){let i=vh(n)?n:new Zt(n,r,o);return qt(()=>{let{operator:s,source:a}=this;i.add(s?s.call(i,a):a?this._subscribe(i):this._trySubscribe(i))}),i}_trySubscribe(n){try{return this._subscribe(n)}catch(r){n.error(r)}}forEach(n,r){return r=au(r),new r((o,i)=>{let s=new Zt({next:a=>{try{n(a)}catch(c){i(c),s.unsubscribe()}},error:i,complete:o});this.subscribe(s)})}_subscribe(n){var r;return(r=this.source)===null||r===void 0?void 0:r.subscribe(n)}[Yt](){return this}pipe(...n){return Gi(n)(this)}toPromise(n){return n=au(n),new n((r,o)=>{let i;this.subscribe(s=>i=s,s=>o(s),()=>r(i))})}}return e.create=t=>new e(t),e})();function au(e){var t;return(t=e??de.Promise)!==null&&t!==void 0?t:Promise}function yh(e){return e&&I(e.next)&&I(e.error)&&I(e.complete)}function vh(e){return e&&e instanceof ht||yh(e)&&Tr(e)}function Dh(e){return I(e?.lift)}function S(e){return t=>{if(Dh(t))return t.lift(function(n){try{return e(n,this)}catch(r){this.error(r)}});throw new TypeError("Unable to lift unknown Observable type")}}function x(e,t,n,r,o){return new Wi(e,t,n,r,o)}var Wi=class extends ht{constructor(t,n,r,o,i,s){super(t),this.onFinalize=i,this.shouldUnsubscribe=s,this._next=n?function(a){try{n(a)}catch(c){t.error(c)}}:super._next,this._error=o?function(a){try{o(a)}catch(c){t.error(c)}finally{this.unsubscribe()}}:super._error,this._complete=r?function(){try{r()}catch(a){t.error(a)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var t;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){let{closed:n}=this;super.unsubscribe(),!n&&((t=this.onFinalize)===null||t===void 0||t.call(this))}}};var cu=Gt(e=>function(){e(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var pe=(()=>{class e extends A{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(n){let r=new Ar(this,this);return r.operator=n,r}_throwIfClosed(){if(this.closed)throw new cu}next(n){qt(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(let r of this.currentObservers)r.next(n)}})}error(n){qt(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=n;let{observers:r}=this;for(;r.length;)r.shift().error(n)}})}complete(){qt(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;let{observers:n}=this;for(;n.length;)n.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var n;return((n=this.observers)===null||n===void 0?void 0:n.length)>0}_trySubscribe(n){return this._throwIfClosed(),super._trySubscribe(n)}_subscribe(n){return this._throwIfClosed(),this._checkFinalizedStatuses(n),this._innerSubscribe(n)}_innerSubscribe(n){let{hasError:r,isStopped:o,observers:i}=this;return r||o?Vi:(this.currentObservers=null,i.push(n),new Z(()=>{this.currentObservers=null,In(i,n)}))}_checkFinalizedStatuses(n){let{hasError:r,thrownError:o,isStopped:i}=this;r?n.error(o):i&&n.complete()}asObservable(){let n=new A;return n.source=this,n}}return e.create=(t,n)=>new Ar(t,n),e})(),Ar=class extends pe{constructor(t,n){super(),this.destination=t,this.source=n}next(t){var n,r;(r=(n=this.destination)===null||n===void 0?void 0:n.next)===null||r===void 0||r.call(n,t)}error(t){var n,r;(r=(n=this.destination)===null||n===void 0?void 0:n.error)===null||r===void 0||r.call(n,t)}complete(){var t,n;(n=(t=this.destination)===null||t===void 0?void 0:t.complete)===null||n===void 0||n.call(t)}_subscribe(t){var n,r;return(r=(n=this.source)===null||n===void 0?void 0:n.subscribe(t))!==null&&r!==void 0?r:Vi}};var wn=class extends pe{constructor(t){super(),this._value=t}get value(){return this.getValue()}_subscribe(t){let n=super._subscribe(t);return!n.closed&&t.next(this._value),n}getValue(){let{hasError:t,thrownError:n,_value:r}=this;if(t)throw n;return this._throwIfClosed(),r}next(t){super.next(this._value=t)}};var bn=new A(e=>e.complete());function uu(e){return e&&I(e.schedule)}function lu(e){return e[e.length-1]}function du(e){return I(lu(e))?e.pop():void 0}function Ge(e){return uu(lu(e))?e.pop():void 0}function pu(e,t,n,r){function o(i){return i instanceof n?i:new n(function(s){s(i)})}return new(n||(n=Promise))(function(i,s){function a(l){try{u(r.next(l))}catch(d){s(d)}}function c(l){try{u(r.throw(l))}catch(d){s(d)}}function u(l){l.done?i(l.value):o(l.value).then(a,c)}u((r=r.apply(e,t||[])).next())})}function fu(e){var t=typeof Symbol=="function"&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&typeof e.length=="number")return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function gt(e){return this instanceof gt?(this.v=e,this):new gt(e)}function hu(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=n.apply(e,t||[]),o,i=[];return o=Object.create((typeof AsyncIterator=="function"?AsyncIterator:Object).prototype),a("next"),a("throw"),a("return",s),o[Symbol.asyncIterator]=function(){return this},o;function s(f){return function(h){return Promise.resolve(h).then(f,d)}}function a(f,h){r[f]&&(o[f]=function(M){return new Promise(function(O,L){i.push([f,M,O,L])>1||c(f,M)})},h&&(o[f]=h(o[f])))}function c(f,h){try{u(r[f](h))}catch(M){p(i[0][3],M)}}function u(f){f.value instanceof gt?Promise.resolve(f.value.v).then(l,d):p(i[0][2],f)}function l(f){c("next",f)}function d(f){c("throw",f)}function p(f,h){f(h),i.shift(),i.length&&c(i[0][0],i[0][1])}}function gu(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof fu=="function"?fu(e):e[Symbol.iterator](),n={},r("next"),r("throw"),r("return"),n[Symbol.asyncIterator]=function(){return this},n);function r(i){n[i]=e[i]&&function(s){return new Promise(function(a,c){s=e[i](s),o(a,c,s.done,s.value)})}}function o(i,s,a,c){Promise.resolve(c).then(function(u){i({value:u,done:a})},s)}}var xr=e=>e&&typeof e.length=="number"&&typeof e!="function";function Rr(e){return I(e?.then)}function Or(e){return I(e[Yt])}function kr(e){return Symbol.asyncIterator&&I(e?.[Symbol.asyncIterator])}function Fr(e){return new TypeError(`You provided ${e!==null&&typeof e=="object"?"an invalid object":`'${e}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}function Eh(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var Lr=Eh();function Pr(e){return I(e?.[Lr])}function jr(e){return hu(this,arguments,function*(){let n=e.getReader();try{for(;;){let{value:r,done:o}=yield gt(n.read());if(o)return yield gt(void 0);yield yield gt(r)}}finally{n.releaseLock()}})}function Br(e){return I(e?.getReader)}function G(e){if(e instanceof A)return e;if(e!=null){if(Or(e))return Ih(e);if(xr(e))return Ch(e);if(Rr(e))return wh(e);if(kr(e))return mu(e);if(Pr(e))return bh(e);if(Br(e))return _h(e)}throw Fr(e)}function Ih(e){return new A(t=>{let n=e[Yt]();if(I(n.subscribe))return n.subscribe(t);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function Ch(e){return new A(t=>{for(let n=0;n<e.length&&!t.closed;n++)t.next(e[n]);t.complete()})}function wh(e){return new A(t=>{e.then(n=>{t.closed||(t.next(n),t.complete())},n=>t.error(n)).then(null,Sr)})}function bh(e){return new A(t=>{for(let n of e)if(t.next(n),t.closed)return;t.complete()})}function mu(e){return new A(t=>{Mh(e,t).catch(n=>t.error(n))})}function _h(e){return mu(jr(e))}function Mh(e,t){var n,r,o,i;return pu(this,void 0,void 0,function*(){try{for(n=gu(e);r=yield n.next(),!r.done;){let s=r.value;if(t.next(s),t.closed)return}}catch(s){o={error:s}}finally{try{r&&!r.done&&(i=n.return)&&(yield i.call(n))}finally{if(o)throw o.error}}t.complete()})}function X(e,t,n,r=0,o=!1){let i=t.schedule(function(){n(),o?e.add(this.schedule(null,r)):this.unsubscribe()},r);if(e.add(i),!o)return i}function Vr(e,t=0){return S((n,r)=>{n.subscribe(x(r,o=>X(r,e,()=>r.next(o),t),()=>X(r,e,()=>r.complete(),t),o=>X(r,e,()=>r.error(o),t)))})}function Hr(e,t=0){return S((n,r)=>{r.add(e.schedule(()=>n.subscribe(r),t))})}function yu(e,t){return G(e).pipe(Hr(t),Vr(t))}function vu(e,t){return G(e).pipe(Hr(t),Vr(t))}function Du(e,t){return new A(n=>{let r=0;return t.schedule(function(){r===e.length?n.complete():(n.next(e[r++]),n.closed||this.schedule())})})}function Eu(e,t){return new A(n=>{let r;return X(n,t,()=>{r=e[Lr](),X(n,t,()=>{let o,i;try{({value:o,done:i}=r.next())}catch(s){n.error(s);return}i?n.complete():n.next(o)},0,!0)}),()=>I(r?.return)&&r.return()})}function $r(e,t){if(!e)throw new Error("Iterable cannot be null");return new A(n=>{X(n,t,()=>{let r=e[Symbol.asyncIterator]();X(n,t,()=>{r.next().then(o=>{o.done?n.complete():n.next(o.value)})},0,!0)})})}function Iu(e,t){return $r(jr(e),t)}function Cu(e,t){if(e!=null){if(Or(e))return yu(e,t);if(xr(e))return Du(e,t);if(Rr(e))return vu(e,t);if(kr(e))return $r(e,t);if(Pr(e))return Eu(e,t);if(Br(e))return Iu(e,t)}throw Fr(e)}function We(e,t){return t?Cu(e,t):G(e)}function Th(...e){let t=Ge(e);return We(e,t)}function Sh(e,t){let n=I(e)?e:()=>e,r=o=>o.error(n());return new A(t?o=>t.schedule(r,0,o):r)}function Nh(e){return!!e&&(e instanceof A||I(e.lift)&&I(e.subscribe))}var _n=Gt(e=>function(){e(this),this.name="EmptyError",this.message="no elements in sequence"});function mt(e,t){return S((n,r)=>{let o=0;n.subscribe(x(r,i=>{r.next(e.call(t,i,o++))}))})}var{isArray:Ah}=Array;function xh(e,t){return Ah(t)?e(...t):e(t)}function wu(e){return mt(t=>xh(e,t))}var{isArray:Rh}=Array,{getPrototypeOf:Oh,prototype:kh,keys:Fh}=Object;function bu(e){if(e.length===1){let t=e[0];if(Rh(t))return{args:t,keys:null};if(Lh(t)){let n=Fh(t);return{args:n.map(r=>t[r]),keys:n}}}return{args:e,keys:null}}function Lh(e){return e&&typeof e=="object"&&Oh(e)===kh}function _u(e,t){return e.reduce((n,r,o)=>(n[r]=t[o],n),{})}function Ph(...e){let t=Ge(e),n=du(e),{args:r,keys:o}=bu(e);if(r.length===0)return We([],t);let i=new A(jh(r,t,o?s=>_u(o,s):fe));return n?i.pipe(wu(n)):i}function jh(e,t,n=fe){return r=>{Mu(t,()=>{let{length:o}=e,i=new Array(o),s=o,a=o;for(let c=0;c<o;c++)Mu(t,()=>{let u=We(e[c],t),l=!1;u.subscribe(x(r,d=>{i[c]=d,l||(l=!0,a--),a||r.next(n(i.slice()))},()=>{--s||r.complete()}))},r)},r)}}function Mu(e,t,n){e?X(n,e,t):t()}function Tu(e,t,n,r,o,i,s,a){let c=[],u=0,l=0,d=!1,p=()=>{d&&!c.length&&!u&&t.complete()},f=M=>u<r?h(M):c.push(M),h=M=>{i&&t.next(M),u++;let O=!1;G(n(M,l++)).subscribe(x(t,L=>{o?.(L),i?f(L):t.next(L)},()=>{O=!0},void 0,()=>{if(O)try{for(u--;c.length&&u<r;){let L=c.shift();s?X(t,s,()=>h(L)):h(L)}p()}catch(L){t.error(L)}}))};return e.subscribe(x(t,f,()=>{d=!0,p()})),()=>{a?.()}}function yt(e,t,n=1/0){return I(t)?yt((r,o)=>mt((i,s)=>t(r,i,o,s))(G(e(r,o))),n):(typeof t=="number"&&(n=t),S((r,o)=>Tu(r,o,e,n)))}function qi(e=1/0){return yt(fe,e)}function Su(){return qi(1)}function Ur(...e){return Su()(We(e,Ge(e)))}function Bh(e){return new A(t=>{G(e()).subscribe(t)})}function Zi(e,t){return S((n,r)=>{let o=0;n.subscribe(x(r,i=>e.call(t,i,o++)&&r.next(i)))})}function Nu(e){return S((t,n)=>{let r=null,o=!1,i;r=t.subscribe(x(n,void 0,void 0,s=>{i=G(e(s,Nu(e)(t))),r?(r.unsubscribe(),r=null,i.subscribe(n)):o=!0})),o&&(r.unsubscribe(),r=null,i.subscribe(n))})}function Vh(e,t){return I(t)?yt(e,t,1):yt(e,1)}function Au(e){return S((t,n)=>{let r=!1;t.subscribe(x(n,o=>{r=!0,n.next(o)},()=>{r||n.next(e),n.complete()}))})}function Yi(e){return e<=0?()=>bn:S((t,n)=>{let r=0;t.subscribe(x(n,o=>{++r<=e&&(n.next(o),e<=r&&n.complete())}))})}function xu(e=Hh){return S((t,n)=>{let r=!1;t.subscribe(x(n,o=>{r=!0,n.next(o)},()=>r?n.complete():n.error(e())))})}function Hh(){return new _n}function $h(e){return S((t,n)=>{try{t.subscribe(n)}finally{n.add(e)}})}function Uh(e,t){let n=arguments.length>=2;return r=>r.pipe(e?Zi((o,i)=>e(o,i,r)):fe,Yi(1),n?Au(t):xu(()=>new _n))}function zh(e){return e<=0?()=>bn:S((t,n)=>{let r=[];t.subscribe(x(n,o=>{r.push(o),e<r.length&&r.shift()},()=>{for(let o of r)n.next(o);n.complete()},void 0,()=>{r=null}))})}function Gh(...e){let t=Ge(e);return S((n,r)=>{(t?Ur(e,n,t):Ur(e,n)).subscribe(r)})}function Wh(e,t){return S((n,r)=>{let o=null,i=0,s=!1,a=()=>s&&!o&&r.complete();n.subscribe(x(r,c=>{o?.unsubscribe();let u=0,l=i++;G(e(c,l)).subscribe(o=x(r,d=>r.next(t?t(c,d,l,u++):d),()=>{o=null,a()}))},()=>{s=!0,a()}))})}function qh(e){return S((t,n)=>{G(e).subscribe(x(n,()=>n.complete(),Cn)),!n.closed&&t.subscribe(n)})}function Zh(e,t,n){let r=I(e)||t||n?{next:e,error:t,complete:n}:e;return r?S((o,i)=>{var s;(s=r.subscribe)===null||s===void 0||s.call(r);let a=!0;o.subscribe(x(i,c=>{var u;(u=r.next)===null||u===void 0||u.call(r,c),i.next(c)},()=>{var c;a=!1,(c=r.complete)===null||c===void 0||c.call(r),i.complete()},c=>{var u;a=!1,(u=r.error)===null||u===void 0||u.call(r,c),i.error(c)},()=>{var c,u;a&&((c=r.unsubscribe)===null||c===void 0||c.call(r)),(u=r.finalize)===null||u===void 0||u.call(r)}))}):fe}var Qi;function zr(){return Qi}function _e(e){let t=Qi;return Qi=e,t}var Ru=Symbol("NotFound");function Qt(e){return e===Ru||e?.name==="\u0275NotFound"}function Ki(e,t,n){let r=Object.create(Yh);r.source=e,r.computation=t,n!=null&&(r.equal=n);let i=()=>{if(ut(r),ct(r),r.value===be)throw r.error;return r.value};return i[$]=r,vn(r),i}function Ou(e,t){ut(e),ft(e,t),Ut(e)}function ku(e,t){if(ut(e),e.value===be)throw e.error;br(e,t),Ut(e)}var Yh=H(j({},Ue),{value:st,dirty:!0,error:null,equal:Dn,kind:"linkedSignal",producerMustRecompute(e){return e.value===st||e.value===at},producerRecomputeValue(e){if(e.value===at)throw new Error("");let t=e.value;e.value=at;let n=ze(e),r,o=!1;try{let i=e.source(),s=t!==st&&t!==be,a=s?{source:e.sourceValue,value:t}:void 0;r=e.computation(i,a),e.sourceValue=i,g(null),o=s&&r!==be&&e.equal(t,r)}catch(i){r=be,e.error=i}finally{lt(e,n)}if(o){e.value=t;return}e.value=r,e.version++}});function Fu(e){let t=g(null);try{return e()}finally{g(t)}}var Jr="https://angular.dev/best-practices/security#preventing-cross-site-scripting-xss",m=class extends Error{code;constructor(t,n){super(Ct(t,n)),this.code=t}};function Qh(e){return`NG0${Math.abs(e)}`}function Ct(e,t){return`${Qh(e)}${t?": "+t:""}`}var se=globalThis;function N(e){for(let t in e)if(e[t]===N)return t;throw Error("")}function Rn(e){if(typeof e=="string")return e;if(Array.isArray(e))return`[${e.map(Rn).join(", ")}]`;if(e==null)return""+e;let t=e.overriddenName||e.name;if(t)return`${t}`;let n=e.toString();if(n==null)return""+n;let r=n.indexOf(`
4
+ `);return r>=0?n.slice(0,r):n}function ls(e,t){return e?t?`${e} ${t}`:e:t||""}var Kh=N({__forward_ref__:N});function Xr(e){return e.__forward_ref__=Xr,e}function ee(e){return ds(e)?e():e}function ds(e){return typeof e=="function"&&e.hasOwnProperty(Kh)&&e.__forward_ref__===Xr}function _(e){return{token:e.token,providedIn:e.providedIn||null,factory:e.factory,value:void 0}}function On(e){return Xh(e,eo)}function Jh(e){return On(e)!==null}function Xh(e,t){return e.hasOwnProperty(t)&&e[t]||null}function eg(e){let t=e?.[eo]??null;return t||null}function Xi(e){return e&&e.hasOwnProperty(Wr)?e[Wr]:null}var eo=N({\u0275prov:N}),Wr=N({\u0275inj:N}),b=class{_desc;ngMetadataName="InjectionToken";\u0275prov;constructor(t,n){this._desc=t,this.\u0275prov=void 0,typeof n=="number"?this.__NG_ELEMENT_ID__=n:n!==void 0&&(this.\u0275prov=_({token:this,providedIn:n.providedIn||"root",factory:n.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}};function fs(e){return e&&!!e.\u0275providers}var ps=N({\u0275cmp:N}),hs=N({\u0275dir:N}),gs=N({\u0275pipe:N}),ms=N({\u0275mod:N}),Tn=N({\u0275fac:N}),wt=N({__NG_ELEMENT_ID__:N}),Lu=N({__NG_ENV_ID__:N});function ys(e){return to(e,"@NgModule"),e[ms]||null}function Qe(e){return to(e,"@Component"),e[ps]||null}function vs(e){return to(e,"@Directive"),e[hs]||null}function Vu(e){return to(e,"@Pipe"),e[gs]||null}function to(e,t){if(e==null)throw new m(-919,!1)}function Me(e){return typeof e=="string"?e:e==null?"":String(e)}var Hu=N({ngErrorCode:N}),tg=N({ngErrorMessage:N}),ng=N({ngTokenPath:N});function Ds(e,t){return $u("",-200,t)}function no(e,t){throw new m(-201,!1)}function $u(e,t,n){let r=new m(t,e);return r[Hu]=t,r[tg]=e,n&&(r[ng]=n),r}function rg(e){return e[Hu]}var es;function Uu(){return es}function Y(e){let t=es;return es=e,t}function Es(e,t,n){let r=On(e);if(r&&r.providedIn=="root")return r.value===void 0?r.value=r.factory():r.value;if(n&8)return null;if(t!==void 0)return t;no(e,"")}var og={},vt=og,ig="__NG_DI_FLAG__",ts=class{injector;constructor(t){this.injector=t}retrieve(t,n){let r=Dt(n)||0;try{return this.injector.get(t,r&8?null:vt,r)}catch(o){if(Qt(o))return o;throw o}}};function sg(e,t=0){let n=zr();if(n===void 0)throw new m(-203,!1);if(n===null)return Es(e,void 0,t);{let r=ag(t),o=n.retrieve(e,r);if(Qt(o)){if(r.optional)return null;throw o}return o}}function w(e,t=0){return(Uu()||sg)(ee(e),t)}function E(e,t){return w(e,Dt(t))}function Dt(e){return typeof e>"u"||typeof e=="number"?e:0|(e.optional&&8)|(e.host&&1)|(e.self&&2)|(e.skipSelf&&4)}function ag(e){return{optional:!!(e&8),host:!!(e&1),self:!!(e&2),skipSelf:!!(e&4)}}function ns(e){let t=[];for(let n=0;n<e.length;n++){let r=ee(e[n]);if(Array.isArray(r)){if(r.length===0)throw new m(900,!1);let o,i=0;for(let s=0;s<r.length;s++){let a=r[s],c=cg(a);typeof c=="number"?c===-1?o=a.token:i|=c:o=a}t.push(w(o,i))}else t.push(w(r))}return t}function cg(e){return e[ig]}function qe(e,t){let n=e.hasOwnProperty(Tn);return n?e[Tn]:null}function zu(e,t,n){if(e.length!==t.length)return!1;for(let r=0;r<e.length;r++){let o=e[r],i=t[r];if(n&&(o=n(o),i=n(i)),i!==o)return!1}return!0}function Gu(e){return e.flat(Number.POSITIVE_INFINITY)}function ro(e,t){e.forEach(n=>Array.isArray(n)?ro(n,t):t(n))}function Is(e,t,n){t>=e.length?e.push(n):e.splice(t,0,n)}function kn(e,t){return t>=e.length-1?e.pop():e.splice(t,1)[0]}function Wu(e,t){let n=[];for(let r=0;r<e;r++)n.push(t);return n}function qu(e,t,n,r){let o=e.length;if(o==t)e.push(n,r);else if(o===1)e.push(r,e[0]),e[0]=n;else{for(o--,e.push(e[o-1],e[o]);o>t;){let i=o-2;e[o]=e[i],o--}e[t]=n,e[t+1]=r}}function Zu(e,t,n){let r=Jt(e,t);return r>=0?e[r|1]=n:(r=~r,qu(e,r,t,n)),r}function oo(e,t){let n=Jt(e,t);if(n>=0)return e[n|1]}function Jt(e,t){return ug(e,t,1)}function ug(e,t,n){let r=0,o=e.length>>n;for(;o!==r;){let i=r+(o-r>>1),s=e[i<<n];if(t===s)return i<<n;s>t?o=i:r=i+1}return~(o<<n)}var bt={},Fe=[],_t=new b(""),Cs=new b("",-1),ws=new b(""),Sn=class{get(t,n=vt){if(n===vt){let o=$u("",-201);throw o.name="\u0275NotFound",o}return n}};function Fn(e){return{\u0275providers:e}}function Yu(e){return Fn([{provide:_t,multi:!0,useValue:e}])}function Qu(...e){return{\u0275providers:bs(!0,e),\u0275fromNgModule:!0}}function bs(e,...t){let n=[],r=new Set,o,i=s=>{n.push(s)};return ro(t,s=>{let a=s;qr(a,i,[],r)&&(o||=[],o.push(a))}),o!==void 0&&Ku(o,i),n}function Ku(e,t){for(let n=0;n<e.length;n++){let{ngModule:r,providers:o}=e[n];_s(o,i=>{t(i,r)})}}function qr(e,t,n,r){if(e=ee(e),!e)return!1;let o=null,i=Xi(e),s=!i&&Qe(e);if(!i&&!s){let c=e.ngModule;if(i=Xi(c),i)o=c;else return!1}else{if(s&&!s.standalone)return!1;o=e}let a=r.has(o);if(s){if(a)return!1;if(r.add(o),s.dependencies){let c=typeof s.dependencies=="function"?s.dependencies():s.dependencies;for(let u of c)qr(u,t,n,r)}}else if(i){if(i.imports!=null&&!a){r.add(o);let u;ro(i.imports,l=>{qr(l,t,n,r)&&(u||=[],u.push(l))}),u!==void 0&&Ku(u,t)}if(!a){let u=qe(o)||(()=>new o);t({provide:o,useFactory:u,deps:Fe},o),t({provide:ws,useValue:o,multi:!0},o),t({provide:_t,useValue:()=>w(o),multi:!0},o)}let c=i.providers;if(c!=null&&!a){let u=e;_s(c,l=>{t(l,u)})}}else return!1;return o!==e&&e.providers!==void 0}function _s(e,t){for(let n of e)fs(n)&&(n=n.\u0275providers),Array.isArray(n)?_s(n,t):t(n)}var lg=N({provide:String,useValue:N});function Ju(e){return e!==null&&typeof e=="object"&&lg in e}function dg(e){return!!(e&&e.useExisting)}function fg(e){return!!(e&&e.useFactory)}function Zr(e){return typeof e=="function"}var Ln=new b(""),Gr={},Pu={},Ji;function Pn(){return Ji===void 0&&(Ji=new Sn),Ji}var re=class{},Et=class extends re{parent;source;scopes;records=new Map;_ngOnDestroyHooks=new Set;_onDestroyHooks=[];get destroyed(){return this._destroyed}_destroyed=!1;injectorDefTypes;constructor(t,n,r,o){super(),this.parent=n,this.source=r,this.scopes=o,os(t,s=>this.processProvider(s)),this.records.set(Cs,Kt(void 0,this)),o.has("environment")&&this.records.set(re,Kt(void 0,this));let i=this.records.get(Ln);i!=null&&typeof i.value=="string"&&this.scopes.add(i.value),this.injectorDefTypes=new Set(this.get(ws,Fe,{self:!0}))}retrieve(t,n){let r=Dt(n)||0;try{return this.get(t,vt,r)}catch(o){if(Qt(o))return o;throw o}}destroy(){Mn(this),this._destroyed=!0;let t=g(null);try{for(let r of this._ngOnDestroyHooks)r.ngOnDestroy();let n=this._onDestroyHooks;this._onDestroyHooks=[];for(let r of n)r()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),g(t)}}onDestroy(t){return Mn(this),this._onDestroyHooks.push(t),()=>this.removeOnDestroy(t)}runInContext(t){Mn(this);let n=_e(this),r=Y(void 0),o;try{return t()}finally{_e(n),Y(r)}}get(t,n=vt,r){if(Mn(this),t.hasOwnProperty(Lu))return t[Lu](this);let o=Dt(r),i,s=_e(this),a=Y(void 0);try{if(!(o&4)){let u=this.records.get(t);if(u===void 0){let l=yg(t)&&On(t);l&&this.injectableDefInScope(l)?u=Kt(rs(t),Gr):u=null,this.records.set(t,u)}if(u!=null)return this.hydrate(t,u,o)}let c=o&2?Pn():this.parent;return n=o&8&&n===vt?null:n,c.get(t,n)}catch(c){let u=rg(c);throw u===-200||u===-201?new m(u,null):c}finally{Y(a),_e(s)}}resolveInjectorInitializers(){let t=g(null),n=_e(this),r=Y(void 0),o;try{let i=this.get(_t,Fe,{self:!0});for(let s of i)s()}finally{_e(n),Y(r),g(t)}}toString(){return"R3Injector[...]"}processProvider(t){t=ee(t);let n=Zr(t)?t:ee(t&&t.provide),r=hg(t);if(!Zr(t)&&t.multi===!0){let o=this.records.get(n);o||(o=Kt(void 0,Gr,!0),o.factory=()=>ns(o.multi),this.records.set(n,o)),n=t,o.multi.push(t)}this.records.set(n,r)}hydrate(t,n,r){let o=g(null);try{if(n.value===Pu)throw Ds("");return n.value===Gr&&(n.value=Pu,n.value=n.factory(void 0,r)),typeof n.value=="object"&&n.value&&mg(n.value)&&this._ngOnDestroyHooks.add(n.value),n.value}finally{g(o)}}injectableDefInScope(t){if(!t.providedIn)return!1;let n=ee(t.providedIn);return typeof n=="string"?n==="any"||this.scopes.has(n):this.injectorDefTypes.has(n)}removeOnDestroy(t){let n=this._onDestroyHooks.indexOf(t);n!==-1&&this._onDestroyHooks.splice(n,1)}};function rs(e){let t=On(e),n=t!==null?t.factory:qe(e);if(n!==null)return n;if(e instanceof b)throw new m(-204,!1);if(e instanceof Function)return pg(e);throw new m(-204,!1)}function pg(e){if(e.length>0)throw new m(-204,!1);let n=eg(e);return n!==null?()=>n.factory(e):()=>new e}function hg(e){if(Ju(e))return Kt(void 0,e.useValue);{let t=Xu(e);return Kt(t,Gr)}}function Xu(e,t,n){let r;if(Zr(e)){let o=ee(e);return qe(o)||rs(o)}else if(Ju(e))r=()=>ee(e.useValue);else if(fg(e))r=()=>e.useFactory(...ns(e.deps||[]));else if(dg(e))r=(o,i)=>w(ee(e.useExisting),i!==void 0&&i&8?8:void 0);else{let o=ee(e&&(e.useClass||e.provide));if(gg(e))r=()=>new o(...ns(e.deps));else return qe(o)||rs(o)}return r}function Mn(e){if(e.destroyed)throw new m(-205,!1)}function Kt(e,t,n=!1){return{factory:e,value:t,multi:n?[]:void 0}}function gg(e){return!!e.deps}function mg(e){return e!==null&&typeof e=="object"&&typeof e.ngOnDestroy=="function"}function yg(e){return typeof e=="function"||typeof e=="object"&&e.ngMetadataName==="InjectionToken"}function os(e,t){for(let n of e)Array.isArray(n)?os(n,t):n&&fs(n)?os(n.\u0275providers,t):t(n)}function io(e,t){let n;e instanceof Et?(Mn(e),n=e):n=new ts(e);let r,o=_e(n),i=Y(void 0);try{return t()}finally{_e(o),Y(i)}}function el(){return Uu()!==void 0||zr()!=null}var ge=0,y=1,D=2,U=3,ae=4,Q=5,Mt=6,Xt=7,B=8,Le=9,me=10,k=11,en=12,Ms=13,Tt=14,K=15,Ke=16,St=17,Te=18,Pe=19,Ts=20,ke=21,so=22,Ze=23,te=24,ao=25,Je=26,F=27,tl=1,Ss=6,Xe=7,jn=8,Nt=9,P=10;function je(e){return Array.isArray(e)&&typeof e[tl]=="object"}function ye(e){return Array.isArray(e)&&e[tl]===!0}function Ns(e){return(e.flags&4)!==0}function Be(e){return e.componentOffset>-1}function Bn(e){return(e.flags&1)===1}function At(e){return!!e.template}function tn(e){return(e[D]&512)!==0}function xt(e){return(e[D]&256)===256}var As="svg",nl="math";function ce(e){for(;Array.isArray(e);)e=e[ge];return e}function xs(e,t){return ce(t[e])}function ve(e,t){return ce(t[e.index])}function co(e,t){return e.data[t]}function uo(e,t){return e[t]}function Vn(e,t,n,r){n>=e.data.length&&(e.data[n]=null,e.blueprint[n]=null),t[n]=r}function ue(e,t){let n=t[e];return je(n)?n:n[ge]}function rl(e){return(e[D]&4)===4}function lo(e){return(e[D]&128)===128}function ol(e){return ye(e[U])}function Se(e,t){return t==null?null:e[t]}function Rs(e){e[St]=0}function Os(e){e[D]&1024||(e[D]|=1024,lo(e)&&nn(e))}function il(e,t){for(;e>0;)t=t[Tt],e--;return t}function Hn(e){return!!(e[D]&9216||e[te]?.dirty)}function fo(e){e[me].changeDetectionScheduler?.notify(8),e[D]&64&&(e[D]|=1024),Hn(e)&&nn(e)}function nn(e){e[me].changeDetectionScheduler?.notify(0);let t=Ye(e);for(;t!==null&&!(t[D]&8192||(t[D]|=8192,!lo(t)));)t=Ye(t)}function ks(e,t){if(xt(e))throw new m(911,!1);e[ke]===null&&(e[ke]=[]),e[ke].push(t)}function sl(e,t){if(e[ke]===null)return;let n=e[ke].indexOf(t);n!==-1&&e[ke].splice(n,1)}function Ye(e){let t=e[U];return ye(t)?t[U]:t}function Fs(e){return e[Xt]??=[]}function Ls(e){return e.cleanup??=[]}function al(e,t,n,r){let o=Fs(t);o.push(n),e.firstCreatePass&&Ls(e).push(r,o.length-1)}var C={lFrame:El(null),bindingsEnabled:!0,skipHydrationRootTNode:null};var is=!1;function cl(){return C.lFrame.elementDepthCount}function ul(){C.lFrame.elementDepthCount++}function Ps(){C.lFrame.elementDepthCount--}function js(){return C.bindingsEnabled}function Bs(){return C.skipHydrationRootTNode!==null}function Vs(e){return C.skipHydrationRootTNode===e}function Hs(){C.skipHydrationRootTNode=null}function v(){return C.lFrame.lView}function V(){return C.lFrame.tView}function ll(e){return C.lFrame.contextLView=e,e[B]}function dl(e){return C.lFrame.contextLView=null,e}function W(){let e=$s();for(;e!==null&&e.type===64;)e=e.parent;return e}function $s(){return C.lFrame.currentTNode}function fl(){let e=C.lFrame,t=e.currentTNode;return e.isParent?t:t.parent}function Rt(e,t){let n=C.lFrame;n.currentTNode=e,n.isParent=t}function Us(){return C.lFrame.isParent}function zs(){C.lFrame.isParent=!1}function pl(){return C.lFrame.contextLView}function Gs(){return is}function Nn(e){let t=is;return is=e,t}function et(){let e=C.lFrame,t=e.bindingRootIndex;return t===-1&&(t=e.bindingRootIndex=e.tView.bindingStartIndex),t}function Ws(){return C.lFrame.bindingIndex}function hl(e){return C.lFrame.bindingIndex=e}function Ot(){return C.lFrame.bindingIndex++}function po(e){let t=C.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function gl(){return C.lFrame.inI18n}function ml(e,t){let n=C.lFrame;n.bindingIndex=n.bindingRootIndex=e,ho(t)}function yl(){return C.lFrame.currentDirectiveIndex}function ho(e){C.lFrame.currentDirectiveIndex=e}function vl(e){let t=C.lFrame.currentDirectiveIndex;return t===-1?null:e[t]}function go(){return C.lFrame.currentQueryIndex}function $n(e){C.lFrame.currentQueryIndex=e}function vg(e){let t=e[y];return t.type===2?t.declTNode:t.type===1?e[Q]:null}function qs(e,t,n){if(n&4){let o=t,i=e;for(;o=o.parent,o===null&&!(n&1);)if(o=vg(i),o===null||(i=i[Tt],o.type&10))break;if(o===null)return!1;t=o,e=i}let r=C.lFrame=Dl();return r.currentTNode=t,r.lView=e,!0}function mo(e){let t=Dl(),n=e[y];C.lFrame=t,t.currentTNode=n.firstChild,t.lView=e,t.tView=n,t.contextLView=e,t.bindingIndex=n.bindingStartIndex,t.inI18n=!1}function Dl(){let e=C.lFrame,t=e===null?null:e.child;return t===null?El(e):t}function El(e){let t={currentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:-1,contextLView:null,elementDepthCount:0,currentNamespace:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null,inI18n:!1};return e!==null&&(e.child=t),t}function Il(){let e=C.lFrame;return C.lFrame=e.parent,e.currentTNode=null,e.lView=null,e}var Zs=Il;function yo(){let e=Il();e.isParent=!0,e.tView=null,e.selectedIndex=-1,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function Cl(e){return(C.lFrame.contextLView=il(e,C.lFrame.contextLView))[B]}function De(){return C.lFrame.selectedIndex}function tt(e){C.lFrame.selectedIndex=e}function vo(){let e=C.lFrame;return co(e.tView,e.selectedIndex)}function Do(){C.lFrame.currentNamespace=As}function wl(){Dg()}function Dg(){C.lFrame.currentNamespace=null}function Ys(){return C.lFrame.currentNamespace}var bl=!0;function Eo(){return bl}function Un(e){bl=e}function ss(e,t=null,n=null,r){let o=Qs(e,t,n,r);return o.resolveInjectorInitializers(),o}function Qs(e,t=null,n=null,r,o=new Set){let i=[n||Fe,Qu(e)],s;return new Et(i,t||Pn(),s||null,o)}var oe=class e{static THROW_IF_NOT_FOUND=vt;static NULL=new Sn;static create(t,n){if(Array.isArray(t))return ss({name:""},n,t,"");{let r=t.name??"";return ss({name:r},t.parent,t.providers,r)}}static \u0275prov=_({token:e,providedIn:"any",factory:()=>w(Cs)});static __NG_ELEMENT_ID__=-1},z=new b(""),nt=(()=>{class e{static __NG_ELEMENT_ID__=Eg;static __NG_ENV_ID__=n=>n}return e})(),Yr=class extends nt{_lView;constructor(t){super(),this._lView=t}get destroyed(){return xt(this._lView)}onDestroy(t){let n=this._lView;return ks(n,t),()=>sl(n,t)}};function Eg(){return new Yr(v())}var _l=!1,Ml=new b(""),rn=(()=>{class e{taskId=0;pendingTasks=new Set;destroyed=!1;pendingTask=new wn(!1);debugTaskTracker=E(Ml,{optional:!0});get hasPendingTasks(){return this.destroyed?!1:this.pendingTask.value}get hasPendingTasksObservable(){return this.destroyed?new A(n=>{n.next(!1),n.complete()}):this.pendingTask}add(){!this.hasPendingTasks&&!this.destroyed&&this.pendingTask.next(!0);let n=this.taskId++;return this.pendingTasks.add(n),this.debugTaskTracker?.add(n),n}has(n){return this.pendingTasks.has(n)}remove(n){this.pendingTasks.delete(n),this.debugTaskTracker?.remove(n),this.pendingTasks.size===0&&this.hasPendingTasks&&this.pendingTask.next(!1)}ngOnDestroy(){this.pendingTasks.clear(),this.hasPendingTasks&&this.pendingTask.next(!1),this.destroyed=!0,this.pendingTask.unsubscribe()}static \u0275prov=_({token:e,providedIn:"root",factory:()=>new e})}return e})(),as=class extends pe{__isAsync;destroyRef=void 0;pendingTasks=void 0;constructor(t=!1){super(),this.__isAsync=t,el()&&(this.destroyRef=E(nt,{optional:!0})??void 0,this.pendingTasks=E(rn,{optional:!0})??void 0)}emit(t){let n=g(null);try{super.next(t)}finally{g(n)}}subscribe(t,n,r){let o=t,i=n||(()=>null),s=r;if(t&&typeof t=="object"){let c=t;o=c.next?.bind(c),i=c.error?.bind(c),s=c.complete?.bind(c)}this.__isAsync&&(i=this.wrapInTimeout(i),o&&(o=this.wrapInTimeout(o)),s&&(s=this.wrapInTimeout(s)));let a=super.subscribe({next:o,error:i,complete:s});return t instanceof Z&&t.add(a),a}wrapInTimeout(t){return n=>{let r=this.pendingTasks?.add();setTimeout(()=>{try{t(n)}finally{r!==void 0&&this.pendingTasks?.remove(r)}})}}},Oe=as;function Qr(...e){}function Ks(e){let t,n;function r(){e=Qr;try{n!==void 0&&typeof cancelAnimationFrame=="function"&&cancelAnimationFrame(n),t!==void 0&&clearTimeout(t)}catch{}}return t=setTimeout(()=>{e(),r()}),typeof requestAnimationFrame=="function"&&(n=requestAnimationFrame(()=>{e(),r()})),()=>r()}function Tl(e){return queueMicrotask(()=>e()),()=>{e=Qr}}var Js="isAngularZone",An=Js+"_ID",Ig=0,ie=class e{hasPendingMacrotasks=!1;hasPendingMicrotasks=!1;isStable=!0;onUnstable=new Oe(!1);onMicrotaskEmpty=new Oe(!1);onStable=new Oe(!1);onError=new Oe(!1);constructor(t){let{enableLongStackTrace:n=!1,shouldCoalesceEventChangeDetection:r=!1,shouldCoalesceRunChangeDetection:o=!1,scheduleInRootZone:i=_l}=t;if(typeof Zone>"u")throw new m(908,!1);Zone.assertZonePatched();let s=this;s._nesting=0,s._outer=s._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(s._inner=s._inner.fork(new Zone.TaskTrackingZoneSpec)),n&&Zone.longStackTraceZoneSpec&&(s._inner=s._inner.fork(Zone.longStackTraceZoneSpec)),s.shouldCoalesceEventChangeDetection=!o&&r,s.shouldCoalesceRunChangeDetection=o,s.callbackScheduled=!1,s.scheduleInRootZone=i,bg(s)}static isInAngularZone(){return typeof Zone<"u"&&Zone.current.get(Js)===!0}static assertInAngularZone(){if(!e.isInAngularZone())throw new m(909,!1)}static assertNotInAngularZone(){if(e.isInAngularZone())throw new m(909,!1)}run(t,n,r){return this._inner.run(t,n,r)}runTask(t,n,r,o){let i=this._inner,s=i.scheduleEventTask("NgZoneEvent: "+o,t,Cg,Qr,Qr);try{return i.runTask(s,n,r)}finally{i.cancelTask(s)}}runGuarded(t,n,r){return this._inner.runGuarded(t,n,r)}runOutsideAngular(t){return this._outer.run(t)}},Cg={};function Xs(e){if(e._nesting==0&&!e.hasPendingMicrotasks&&!e.isStable)try{e._nesting++,e.onMicrotaskEmpty.emit(null)}finally{if(e._nesting--,!e.hasPendingMicrotasks)try{e.runOutsideAngular(()=>e.onStable.emit(null))}finally{e.isStable=!0}}}function wg(e){if(e.isCheckStableRunning||e.callbackScheduled)return;e.callbackScheduled=!0;function t(){Ks(()=>{e.callbackScheduled=!1,cs(e),e.isCheckStableRunning=!0,Xs(e),e.isCheckStableRunning=!1})}e.scheduleInRootZone?Zone.root.run(()=>{t()}):e._outer.run(()=>{t()}),cs(e)}function bg(e){let t=()=>{wg(e)},n=Ig++;e._inner=e._inner.fork({name:"angular",properties:{[Js]:!0,[An]:n,[An+n]:!0},onInvokeTask:(r,o,i,s,a,c)=>{if(_g(c))return r.invokeTask(i,s,a,c);try{return ju(e),r.invokeTask(i,s,a,c)}finally{(e.shouldCoalesceEventChangeDetection&&s.type==="eventTask"||e.shouldCoalesceRunChangeDetection)&&t(),Bu(e)}},onInvoke:(r,o,i,s,a,c,u)=>{try{return ju(e),r.invoke(i,s,a,c,u)}finally{e.shouldCoalesceRunChangeDetection&&!e.callbackScheduled&&!Mg(c)&&t(),Bu(e)}},onHasTask:(r,o,i,s)=>{r.hasTask(i,s),o===i&&(s.change=="microTask"?(e._hasPendingMicrotasks=s.microTask,cs(e),Xs(e)):s.change=="macroTask"&&(e.hasPendingMacrotasks=s.macroTask))},onHandleError:(r,o,i,s)=>(r.handleError(i,s),e.runOutsideAngular(()=>e.onError.emit(s)),!1)})}function cs(e){e._hasPendingMicrotasks||(e.shouldCoalesceEventChangeDetection||e.shouldCoalesceRunChangeDetection)&&e.callbackScheduled===!0?e.hasPendingMicrotasks=!0:e.hasPendingMicrotasks=!1}function ju(e){e._nesting++,e.isStable&&(e.isStable=!1,e.onUnstable.emit(null))}function Bu(e){e._nesting--,Xs(e)}var xn=class{hasPendingMicrotasks=!1;hasPendingMacrotasks=!1;isStable=!0;onUnstable=new Oe;onMicrotaskEmpty=new Oe;onStable=new Oe;onError=new Oe;run(t,n,r){return t.apply(n,r)}runGuarded(t,n,r){return t.apply(n,r)}runOutsideAngular(t){return t()}runTask(t,n,r,o){return t.apply(n,r)}};function _g(e){return Sl(e,"__ignore_ng_zone__")}function Mg(e){return Sl(e,"__scheduler_tick__")}function Sl(e,t){return!Array.isArray(e)||e.length!==1?!1:e[0]?.data?.[t]===!0}var he=class{_console=console;handleError(t){this._console.error("ERROR",t)}},rt=new b("",{factory:()=>{let e=E(ie),t=E(re),n;return r=>{e.runOutsideAngular(()=>{t.destroyed&&!n?setTimeout(()=>{throw r}):(n??=t.get(he),n.handleError(r))})}}}),Nl={provide:_t,useValue:()=>{let e=E(he,{optional:!0})},multi:!0},Tg=new b("",{factory:()=>{let e=E(z).defaultView;if(!e)return;let t=E(rt),n=i=>{t(i.reason),i.preventDefault()},r=i=>{i.error?t(i.error):t(new Error(i.message,{cause:i})),i.preventDefault()},o=()=>{e.addEventListener("unhandledrejection",n),e.addEventListener("error",r)};typeof Zone<"u"?Zone.root.run(o):o(),E(nt).onDestroy(()=>{e.removeEventListener("error",r),e.removeEventListener("unhandledrejection",n)})}});function Sg(){return Fn([Yu(()=>{E(Tg)})])}function Io(e,t){let[n,r,o]=Pi(e,t?.equal),i=n,s=i[$];return i.set=r,i.update=o,i.asReadonly=Co.bind(i),i}function Co(){let e=this[$];if(e.readonlyFn===void 0){let t=()=>this();t[$]=e,e.readonlyFn=t}return e.readonlyFn}var wo=(()=>{class e{view;node;constructor(n,r){this.view=n,this.node=r}static __NG_ELEMENT_ID__=Ng}return e})();function Ng(){return new wo(v(),W())}var It=class{},zn=new b("",{factory:()=>!0});var ea=new b("");var bo=(()=>{class e{static \u0275prov=_({token:e,providedIn:"root",factory:()=>new us})}return e})(),us=class{dirtyEffectCount=0;queues=new Map;add(t){this.enqueue(t),this.schedule(t)}schedule(t){t.dirty&&this.dirtyEffectCount++}remove(t){let n=t.zone,r=this.queues.get(n);r.has(t)&&(r.delete(t),t.dirty&&this.dirtyEffectCount--)}enqueue(t){let n=t.zone;this.queues.has(n)||this.queues.set(n,new Set);let r=this.queues.get(n);r.has(t)||r.add(t)}flush(){for(;this.dirtyEffectCount>0;){let t=!1;for(let[n,r]of this.queues)n===null?t||=this.flushQueue(r):t||=n.run(()=>this.flushQueue(r));t||(this.dirtyEffectCount=0)}}flushQueue(t){let n=!1;for(let r of t)r.dirty&&(this.dirtyEffectCount--,n=!0,r.run());return n}},Kr=class{[$];constructor(t){this[$]=t}destroy(){this[$].destroy()}};function Al(e,t){let n=t?.injector??E(oe),r=t?.manualCleanup!==!0?n.get(nt):null,o,i=n.get(wo,null,{optional:!0}),s=n.get(It);return i!==null?(o=Rg(i.view,s,e),r instanceof Yr&&r._lView===i.view&&(r=null)):o=Og(e,n.get(bo),s),o.injector=n,r!==null&&(o.onDestroyFns=[r.onDestroy(()=>o.destroy())]),new Kr(o)}var xl=H(j({},ji),{cleanupFns:void 0,zone:null,onDestroyFns:null,run(){let e=Nn(!1);try{Bi(this)}finally{Nn(e)}},cleanup(){if(!this.cleanupFns?.length)return;let e=g(null);try{for(;this.cleanupFns.length;)this.cleanupFns.pop()()}finally{this.cleanupFns=[],g(e)}}}),Ag=H(j({},xl),{consumerMarkedDirty(){this.scheduler.schedule(this),this.notifier.notify(12)},destroy(){if(dt(this),this.onDestroyFns!==null)for(let e of this.onDestroyFns)e();this.cleanup(),this.scheduler.remove(this)}}),xg=H(j({},xl),{consumerMarkedDirty(){this.view[D]|=8192,nn(this.view),this.notifier.notify(13)},destroy(){if(dt(this),this.onDestroyFns!==null)for(let e of this.onDestroyFns)e();this.cleanup(),this.view[Ze]?.delete(this)}});function Rg(e,t,n){let r=Object.create(xg);return r.view=e,r.zone=typeof Zone<"u"?Zone.current:null,r.notifier=t,r.fn=Rl(r,n),e[Ze]??=new Set,e[Ze].add(r),r.consumerMarkedDirty(r),r}function Og(e,t,n){let r=Object.create(Ag);return r.fn=Rl(r,e),r.scheduler=t,r.notifier=n,r.zone=typeof Zone<"u"?Zone.current:null,r.scheduler.add(r),r.notifier.notify(12),r}function Rl(e,t){return()=>{t(n=>(e.cleanupFns??=[]).push(n))}}function ei(e){return{toString:e}.toString()}function Hg(e){return typeof e=="function"}function hd(e,t,n,r){t!==null?t.applyValueToInputSignal(t,r):e[n]=r}var ko=class{previousValue;currentValue;firstChange;constructor(t,n,r){this.previousValue=t,this.currentValue=n,this.firstChange=r}isFirstChange(){return this.firstChange}},gd=(()=>{let e=()=>md;return e.ngInherit=!0,e})();function md(e){return e.type.prototype.ngOnChanges&&(e.setInput=Ug),$g}function $g(){let e=vd(this),t=e?.current;if(t){let n=e.previous;if(n===bt)e.previous=t;else for(let r in t)n[r]=t[r];e.current=null,this.ngOnChanges(t)}}function Ug(e,t,n,r,o){let i=this.declaredInputs[r],s=vd(e)||zg(e,{previous:bt,current:null}),a=s.current||(s.current={}),c=s.previous,u=c[i];a[i]=new ko(u&&u.currentValue,n,c===bt),hd(e,t,o,n)}var yd="__ngSimpleChanges__";function vd(e){return e[yd]||null}function zg(e,t){return e[yd]=t}var Ol=[];var R=function(e,t=null,n){for(let r=0;r<Ol.length;r++){let o=Ol[r];o(e,t,n)}},T=(function(e){return e[e.TemplateCreateStart=0]="TemplateCreateStart",e[e.TemplateCreateEnd=1]="TemplateCreateEnd",e[e.TemplateUpdateStart=2]="TemplateUpdateStart",e[e.TemplateUpdateEnd=3]="TemplateUpdateEnd",e[e.LifecycleHookStart=4]="LifecycleHookStart",e[e.LifecycleHookEnd=5]="LifecycleHookEnd",e[e.OutputStart=6]="OutputStart",e[e.OutputEnd=7]="OutputEnd",e[e.BootstrapApplicationStart=8]="BootstrapApplicationStart",e[e.BootstrapApplicationEnd=9]="BootstrapApplicationEnd",e[e.BootstrapComponentStart=10]="BootstrapComponentStart",e[e.BootstrapComponentEnd=11]="BootstrapComponentEnd",e[e.ChangeDetectionStart=12]="ChangeDetectionStart",e[e.ChangeDetectionEnd=13]="ChangeDetectionEnd",e[e.ChangeDetectionSyncStart=14]="ChangeDetectionSyncStart",e[e.ChangeDetectionSyncEnd=15]="ChangeDetectionSyncEnd",e[e.AfterRenderHooksStart=16]="AfterRenderHooksStart",e[e.AfterRenderHooksEnd=17]="AfterRenderHooksEnd",e[e.ComponentStart=18]="ComponentStart",e[e.ComponentEnd=19]="ComponentEnd",e[e.DeferBlockStateStart=20]="DeferBlockStateStart",e[e.DeferBlockStateEnd=21]="DeferBlockStateEnd",e[e.DynamicComponentStart=22]="DynamicComponentStart",e[e.DynamicComponentEnd=23]="DynamicComponentEnd",e[e.HostBindingsUpdateStart=24]="HostBindingsUpdateStart",e[e.HostBindingsUpdateEnd=25]="HostBindingsUpdateEnd",e})(T||{});function Gg(e,t,n){let{ngOnChanges:r,ngOnInit:o,ngDoCheck:i}=t.type.prototype;if(r){let s=md(t);(n.preOrderHooks??=[]).push(e,s),(n.preOrderCheckHooks??=[]).push(e,s)}o&&(n.preOrderHooks??=[]).push(0-e,o),i&&((n.preOrderHooks??=[]).push(e,i),(n.preOrderCheckHooks??=[]).push(e,i))}function Wg(e,t){for(let n=t.directiveStart,r=t.directiveEnd;n<r;n++){let i=e.data[n].type.prototype,{ngAfterContentInit:s,ngAfterContentChecked:a,ngAfterViewInit:c,ngAfterViewChecked:u,ngOnDestroy:l}=i;s&&(e.contentHooks??=[]).push(-n,s),a&&((e.contentHooks??=[]).push(n,a),(e.contentCheckHooks??=[]).push(n,a)),c&&(e.viewHooks??=[]).push(-n,c),u&&((e.viewHooks??=[]).push(n,u),(e.viewCheckHooks??=[]).push(n,u)),l!=null&&(e.destroyHooks??=[]).push(n,l)}}function No(e,t,n){Dd(e,t,3,n)}function Ao(e,t,n,r){(e[D]&3)===n&&Dd(e,t,n,r)}function ta(e,t){let n=e[D];(n&3)===t&&(n&=16383,n+=1,e[D]=n)}function Dd(e,t,n,r){let o=r!==void 0?e[St]&65535:0,i=r??-1,s=t.length-1,a=0;for(let c=o;c<s;c++)if(typeof t[c+1]=="number"){if(a=t[c],r!=null&&a>=r)break}else t[c]<0&&(e[St]+=65536),(a<i||i==-1)&&(qg(e,n,t,c),e[St]=(e[St]&4294901760)+c+2),c++}function kl(e,t){R(T.LifecycleHookStart,e,t);let n=g(null);try{t.call(e)}finally{g(n),R(T.LifecycleHookEnd,e,t)}}function qg(e,t,n,r){let o=n[r]<0,i=n[r+1],s=o?-n[r]:n[r],a=e[s];o?e[D]>>14<e[St]>>16&&(e[D]&3)===t&&(e[D]+=16384,kl(a,i)):kl(a,i)}var sn=-1,Yn=class{factory;name;injectImpl;resolving=!1;canSeeViewProviders;multi;componentProviders;index;providerFactory;constructor(t,n,r,o){this.factory=t,this.name=o,this.canSeeViewProviders=n,this.injectImpl=r}};function Zg(e){return(e.flags&8)!==0}function Yg(e){return(e.flags&16)!==0}function Qg(e,t,n){let r=0;for(;r<n.length;){let o=n[r];if(typeof o=="number"){if(o!==0)break;r++;let i=n[r++],s=n[r++],a=n[r++];e.setAttribute(t,s,a,i)}else{let i=o,s=n[++r];Kg(i)?e.setProperty(t,i,s):e.setAttribute(t,i,s),r++}}return r}function Ed(e){return e===3||e===4||e===6}function Kg(e){return e.charCodeAt(0)===64}function ti(e,t){if(!(t===null||t.length===0))if(e===null||e.length===0)e=t.slice();else{let n=-1;for(let r=0;r<t.length;r++){let o=t[r];typeof o=="number"?n=o:n===0||(n===-1||n===2?Fl(e,n,o,null,t[++r]):Fl(e,n,o,null,null))}}return e}function Fl(e,t,n,r,o){let i=0,s=e.length;if(t===-1)s=-1;else for(;i<e.length;){let a=e[i++];if(typeof a=="number"){if(a===t){s=-1;break}else if(a>t){s=i-1;break}}}for(;i<e.length;){let a=e[i];if(typeof a=="number")break;if(a===n){o!==null&&(e[i+1]=o);return}i++,o!==null&&i++}s!==-1&&(e.splice(s,0,t),i=s+1),e.splice(i++,0,n),o!==null&&e.splice(i++,0,o)}function Id(e){return e!==sn}function Fo(e){return e&32767}function Jg(e){return e>>16}function Lo(e,t){let n=Jg(e),r=t;for(;n>0;)r=r[Tt],n--;return r}var ua=!0;function Po(e){let t=ua;return ua=e,t}var Xg=256,Cd=Xg-1,wd=5,em=0,Ne={};function tm(e,t,n){let r;typeof n=="string"?r=n.charCodeAt(0)||0:n.hasOwnProperty(wt)&&(r=n[wt]),r==null&&(r=n[wt]=em++);let o=r&Cd,i=1<<o;t.data[e+(o>>wd)]|=i}function bd(e,t){let n=_d(e,t);if(n!==-1)return n;let r=t[y];r.firstCreatePass&&(e.injectorIndex=t.length,na(r.data,e),na(t,null),na(r.blueprint,null));let o=Ua(e,t),i=e.injectorIndex;if(Id(o)){let s=Fo(o),a=Lo(o,t),c=a[y].data;for(let u=0;u<8;u++)t[i+u]=a[s+u]|c[s+u]}return t[i+8]=o,i}function na(e,t){e.push(0,0,0,0,0,0,0,0,t)}function _d(e,t){return e.injectorIndex===-1||e.parent&&e.parent.injectorIndex===e.injectorIndex||t[e.injectorIndex+8]===null?-1:e.injectorIndex}function Ua(e,t){if(e.parent&&e.parent.injectorIndex!==-1)return e.parent.injectorIndex;let n=0,r=null,o=t;for(;o!==null;){if(r=xd(o),r===null)return sn;if(n++,o=o[Tt],r.injectorIndex!==-1)return r.injectorIndex|n<<16}return sn}function nm(e,t,n){tm(e,t,n)}function rm(e,t){if(t==="class")return e.classes;if(t==="style")return e.styles;let n=e.attrs;if(n){let r=n.length,o=0;for(;o<r;){let i=n[o];if(Ed(i))break;if(i===0)o=o+2;else if(typeof i=="number")for(o++;o<r&&typeof n[o]=="string";)o++;else{if(i===t)return n[o+1];o=o+2}}}return null}function Md(e,t,n){if(n&8||e!==void 0)return e;no(t,"NodeInjector")}function Td(e,t,n,r){if(n&8&&r===void 0&&(r=null),(n&3)===0){let o=e[Le],i=Y(void 0);try{return o?o.get(t,r,n&8):Es(t,r,n&8)}finally{Y(i)}}return Md(r,t,n)}function Sd(e,t,n,r=0,o){if(e!==null){if(t[D]&2048&&!(r&2)){let s=am(e,t,n,r,Ne);if(s!==Ne)return s}let i=Nd(e,t,n,r,Ne);if(i!==Ne)return i}return Td(t,n,r,o)}function Nd(e,t,n,r,o){let i=im(n);if(typeof i=="function"){if(!qs(t,e,r))return r&1?Md(o,n,r):Td(t,n,r,o);try{let s;if(s=i(r),s==null&&!(r&8))no(n);else return s}finally{Zs()}}else if(typeof i=="number"){let s=null,a=_d(e,t),c=sn,u=r&1?t[K][Q]:null;for((a===-1||r&4)&&(c=a===-1?Ua(e,t):t[a+8],c===sn||!Pl(r,!1)?a=-1:(s=t[y],a=Fo(c),t=Lo(c,t)));a!==-1;){let l=t[y];if(Ll(i,a,l.data)){let d=om(a,t,n,s,r,u);if(d!==Ne)return d}c=t[a+8],c!==sn&&Pl(r,t[y].data[a+8]===u)&&Ll(i,a,t)?(s=l,a=Fo(c),t=Lo(c,t)):a=-1}}return o}function om(e,t,n,r,o,i){let s=t[y],a=s.data[e+8],c=r==null?Be(a)&&ua:r!=s&&(a.type&3)!==0,u=o&1&&i===a,l=xo(a,s,n,c,u);return l!==null?jo(t,s,l,a,o):Ne}function xo(e,t,n,r,o){let i=e.providerIndexes,s=t.data,a=i&1048575,c=e.directiveStart,u=e.directiveEnd,l=i>>20,d=r?a:a+l,p=o?a+l:u;for(let f=d;f<p;f++){let h=s[f];if(f<c&&n===h||f>=c&&h.type===n)return f}if(o){let f=s[c];if(f&&At(f)&&f.type===n)return c}return null}function jo(e,t,n,r,o){let i=e[n],s=t.data;if(i instanceof Yn){let a=i;if(a.resolving)throw Ds("");let c=Po(a.canSeeViewProviders);a.resolving=!0;let u=s[n].type||s[n],l,d=a.injectImpl?Y(a.injectImpl):null,p=qs(e,r,0);try{i=e[n]=a.factory(void 0,o,s,e,r),t.firstCreatePass&&n>=r.directiveStart&&Gg(n,s[n],t)}finally{d!==null&&Y(d),Po(c),a.resolving=!1,Zs()}}return i}function im(e){if(typeof e=="string")return e.charCodeAt(0)||0;let t=e.hasOwnProperty(wt)?e[wt]:void 0;return typeof t=="number"?t>=0?t&Cd:sm:t}function Ll(e,t,n){let r=1<<e;return!!(n[t+(e>>wd)]&r)}function Pl(e,t){return!(e&2)&&!(e&1&&t)}var kt=class{_tNode;_lView;constructor(t,n){this._tNode=t,this._lView=n}get(t,n,r){return Sd(this._tNode,this._lView,t,Dt(r),n)}};function sm(){return new kt(W(),v())}function Ad(e){return ei(()=>{let t=e.prototype.constructor,n=t[Tn]||la(t),r=Object.prototype,o=Object.getPrototypeOf(e.prototype).constructor;for(;o&&o!==r;){let i=o[Tn]||la(o);if(i&&i!==n)return i;o=Object.getPrototypeOf(o)}return i=>new i})}function la(e){return ds(e)?()=>{let t=la(ee(e));return t&&t()}:qe(e)}function am(e,t,n,r,o){let i=e,s=t;for(;i!==null&&s!==null&&s[D]&2048&&!tn(s);){let a=Nd(i,s,n,r|2,Ne);if(a!==Ne)return a;let c=i.parent;if(!c){let u=s[Ts];if(u){let l=u.get(n,Ne,r&-5);if(l!==Ne)return l}c=xd(s),s=s[Tt]}i=c}return o}function xd(e){let t=e[y],n=t.type;return n===2?t.declTNode:n===1?e[Q]:null}function za(e){return rm(W(),e)}function cm(){return fn(W(),v())}function fn(e,t){return new pn(ve(e,t))}var pn=(()=>{class e{nativeElement;constructor(n){this.nativeElement=n}static __NG_ELEMENT_ID__=cm}return e})();function Rd(e){return e instanceof pn?e.nativeElement:e}function um(){return this._results[Symbol.iterator]()}var Bo=class{_emitDistinctChangesOnly;dirty=!0;_onDirty=void 0;_results=[];_changesDetected=!1;_changes=void 0;length=0;first=void 0;last=void 0;get changes(){return this._changes??=new pe}constructor(t=!1){this._emitDistinctChangesOnly=t}get(t){return this._results[t]}map(t){return this._results.map(t)}filter(t){return this._results.filter(t)}find(t){return this._results.find(t)}reduce(t,n){return this._results.reduce(t,n)}forEach(t){this._results.forEach(t)}some(t){return this._results.some(t)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(t,n){this.dirty=!1;let r=Gu(t);(this._changesDetected=!zu(this._results,r,n))&&(this._results=r,this.length=r.length,this.last=r[this.length-1],this.first=r[0])}notifyOnChanges(){this._changes!==void 0&&(this._changesDetected||!this._emitDistinctChangesOnly)&&this._changes.next(this)}onDirty(t){this._onDirty=t}setDirty(){this.dirty=!0,this._onDirty?.()}destroy(){this._changes!==void 0&&(this._changes.complete(),this._changes.unsubscribe())}[Symbol.iterator]=um};function Od(e){return(e.flags&128)===128}var Ga=(function(e){return e[e.OnPush=0]="OnPush",e[e.Eager=1]="Eager",e[e.Default=1]="Default",e})(Ga||{}),kd=new Map,lm=0;function dm(){return lm++}function fm(e){kd.set(e[Pe],e)}function da(e){kd.delete(e[Pe])}var jl="__ngContext__";function an(e,t){je(t)?(e[jl]=t[Pe],fm(t)):e[jl]=t}function Fd(e){return Pd(e[en])}function Ld(e){return Pd(e[ae])}function Pd(e){for(;e!==null&&!ye(e);)e=e[ae];return e}var fa;function Wa(e){fa=e}function jd(){if(fa!==void 0)return fa;if(typeof document<"u")return document;throw new m(210,!1)}var ni=new b("",{factory:()=>pm}),pm="ng";var ri=new b(""),nr=new b("",{providedIn:"platform",factory:()=>"unknown"});var oi=new b("",{factory:()=>E(z).body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null});var Bd="r";var Vd="di";var Hd=!1,$d=new b("",{factory:()=>Hd});var Bl=new WeakMap;function hm(e,t){if(e==null||typeof e!="object")return;let n=Bl.get(e);n||(n=new WeakSet,Bl.set(e,n)),n.add(t)}var gm=(e,t,n,r)=>{};function mm(e,t,n,r){gm(e,t,n,r)}function ii(e){return(e.flags&32)===32}var ym=()=>null;function Ud(e,t,n=!1){return ym(e,t,n)}function zd(e,t){let n=e.contentQueries;if(n!==null){let r=g(null);try{for(let o=0;o<n.length;o+=2){let i=n[o],s=n[o+1];if(s!==-1){let a=e.data[s];$n(i),a.contentQueries(2,t[s],s)}}}finally{g(r)}}}function pa(e,t,n){$n(0);let r=g(null);try{t(e,n)}finally{g(r)}}function qa(e,t,n){if(Ns(t)){let r=g(null);try{let o=t.directiveStart,i=t.directiveEnd;for(let s=o;s<i;s++){let a=e.data[s];if(a.contentQueries){let c=n[s];a.contentQueries(1,c,s)}}}finally{g(r)}}}var Ie=(function(e){return e[e.Emulated=0]="Emulated",e[e.None=2]="None",e[e.ShadowDom=3]="ShadowDom",e[e.ExperimentalIsolatedShadowDom=4]="ExperimentalIsolatedShadowDom",e})(Ie||{});var _o;function vm(){if(_o===void 0&&(_o=null,se.trustedTypes))try{_o=se.trustedTypes.createPolicy("angular",{createHTML:e=>e,createScript:e=>e,createScriptURL:e=>e})}catch{}return _o}function si(e){return vm()?.createHTML(e)||e}var Mo;function Gd(){if(Mo===void 0&&(Mo=null,se.trustedTypes))try{Mo=se.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:e=>e,createScript:e=>e,createScriptURL:e=>e})}catch{}return Mo}function Vl(e){return Gd()?.createHTML(e)||e}function Hl(e){return Gd()?.createScriptURL(e)||e}var Ve=class{changingThisBreaksApplicationSecurity;constructor(t){this.changingThisBreaksApplicationSecurity=t}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${Jr})`}},ha=class extends Ve{getTypeName(){return"HTML"}},ga=class extends Ve{getTypeName(){return"Style"}},ma=class extends Ve{getTypeName(){return"Script"}},ya=class extends Ve{getTypeName(){return"URL"}},va=class extends Ve{getTypeName(){return"ResourceURL"}};function we(e){return e instanceof Ve?e.changingThisBreaksApplicationSecurity:e}function xe(e,t){let n=Wd(e);if(n!=null&&n!==t){if(n==="ResourceURL"&&t==="URL")return!0;throw new Error(`Required a safe ${t}, got a ${n} (see ${Jr})`)}return n===t}function Wd(e){return e instanceof Ve&&e.getTypeName()||null}function Za(e){return new ha(e)}function Ya(e){return new ga(e)}function Qa(e){return new ma(e)}function Ka(e){return new ya(e)}function Ja(e){return new va(e)}function Dm(e){let t=new Ea(e);return Em()?new Da(t):t}var Da=class{inertDocumentHelper;constructor(t){this.inertDocumentHelper=t}getInertBodyElement(t){t="<body><remove></remove>"+t;try{let n=new window.DOMParser().parseFromString(si(t),"text/html").body;return n===null?this.inertDocumentHelper.getInertBodyElement(t):(n.firstChild?.remove(),n)}catch{return null}}},Ea=class{defaultDoc;inertDocument;constructor(t){this.defaultDoc=t,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert")}getInertBodyElement(t){let n=this.inertDocument.createElement("template");return n.innerHTML=si(t),n}};function Em(){try{return!!new window.DOMParser().parseFromString(si(""),"text/html")}catch{return!1}}var Im=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function rr(e){return e=String(e),e.match(Im)?e:"unsafe:"+e}function He(e){let t={};for(let n of e.split(","))t[n]=!0;return t}function or(...e){let t={};for(let n of e)for(let r in n)n.hasOwnProperty(r)&&(t[r]=!0);return t}var qd=He("area,br,col,hr,img,wbr"),Zd=He("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),Yd=He("rp,rt"),Cm=or(Yd,Zd),wm=or(Zd,He("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),bm=or(Yd,He("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),$l=or(qd,wm,bm,Cm),Qd=He("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),_m=He("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,srcset,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),Mm=He("aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext"),Tm=or(Qd,_m,Mm),Sm=He("script,style,template"),Ia=class{sanitizedSomething=!1;buf=[];sanitizeChildren(t){let n=t.firstChild,r=!0,o=[];for(;n;){if(n.nodeType===Node.ELEMENT_NODE?r=this.startElement(n):n.nodeType===Node.TEXT_NODE?this.chars(n.nodeValue):this.sanitizedSomething=!0,r&&n.firstChild){o.push(n),n=xm(n);continue}for(;n;){n.nodeType===Node.ELEMENT_NODE&&this.endElement(n);let i=Am(n);if(i){n=i;break}n=o.pop()}}return this.buf.join("")}startElement(t){let n=Ul(t).toLowerCase();if(!$l.hasOwnProperty(n))return this.sanitizedSomething=!0,!Sm.hasOwnProperty(n);this.buf.push("<"),this.buf.push(n);let r=t.attributes;for(let o=0;o<r.length;o++){let i=r.item(o),s=i.name,a=s.toLowerCase();if(!Tm.hasOwnProperty(a)){this.sanitizedSomething=!0;continue}let c=i.value;Qd[a]&&(c=rr(c)),this.buf.push(" ",s,'="',zl(c),'"')}return this.buf.push(">"),!0}endElement(t){let n=Ul(t).toLowerCase();$l.hasOwnProperty(n)&&!qd.hasOwnProperty(n)&&(this.buf.push("</"),this.buf.push(n),this.buf.push(">"))}chars(t){this.buf.push(zl(t))}};function Nm(e,t){return(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)!==Node.DOCUMENT_POSITION_CONTAINED_BY}function Am(e){let t=e.nextSibling;if(t&&e!==t.previousSibling)throw Kd(t);return t}function xm(e){let t=e.firstChild;if(t&&Nm(e,t))throw Kd(t);return t}function Ul(e){let t=e.nodeName;return typeof t=="string"?t:"FORM"}function Kd(e){return new Error(`Failed to sanitize html because the element is clobbered: ${e.outerHTML}`)}var Rm=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,Om=/([^\#-~ |!])/g;function zl(e){return e.replace(/&/g,"&amp;").replace(Rm,function(t){let n=t.charCodeAt(0),r=t.charCodeAt(1);return"&#"+((n-55296)*1024+(r-56320)+65536)+";"}).replace(Om,function(t){return"&#"+t.charCodeAt(0)+";"}).replace(/</g,"&lt;").replace(/>/g,"&gt;")}var To;function ai(e,t){let n=null;try{To=To||Dm(e);let r=t?String(t):"";n=To.getInertBodyElement(r);let o=5,i=r;do{if(o===0)throw new Error("Failed to sanitize html because the input is unstable");o--,r=i,i=n.innerHTML,n=To.getInertBodyElement(r)}while(r!==i);let a=new Ia().sanitizeChildren(Gl(n)||n);return si(a)}finally{if(n){let r=Gl(n)||n;for(;r.firstChild;)r.firstChild.remove()}}}function Gl(e){return"content"in e&&km(e)?e.content:null}function km(e){return e.nodeType===Node.ELEMENT_NODE&&e.nodeName==="TEMPLATE"}var Fm=/^>|^->|<!--|-->|--!>|<!-$/g,Lm=/(<|>)/g,Pm="\u200B$1\u200B";function jm(e){return e.replace(Fm,t=>t.replace(Lm,Pm))}function Bm(e,t){return e.createText(t)}function Vm(e,t,n){e.setValue(t,n)}function Hm(e,t){return e.createComment(jm(t))}function Jd(e,t,n){return e.createElement(t,n)}function Vo(e,t,n,r,o){e.insertBefore(t,n,r,o)}function Xd(e,t,n){e.appendChild(t,n)}function Wl(e,t,n,r,o){r!==null?Vo(e,t,n,r,o):Xd(e,t,n)}function ef(e,t,n,r){e.removeChild(null,t,n,r)}function $m(e,t,n){e.setAttribute(t,"style",n)}function Um(e,t,n){n===""?e.removeAttribute(t,"class"):e.setAttribute(t,"class",n)}function tf(e,t,n){let{mergedAttrs:r,classes:o,styles:i}=n;r!==null&&Qg(e,t,r),o!==null&&Um(e,t,o),i!==null&&$m(e,t,i)}var le=(function(e){return e[e.NONE=0]="NONE",e[e.HTML=1]="HTML",e[e.STYLE=2]="STYLE",e[e.SCRIPT=3]="SCRIPT",e[e.URL=4]="URL",e[e.RESOURCE_URL=5]="RESOURCE_URL",e[e.ATTRIBUTE_NO_BINDING=6]="ATTRIBUTE_NO_BINDING",e})(le||{});function Xa(e){let t=ec();return t?Vl(t.sanitize(le.HTML,e)||""):xe(e,"HTML")?Vl(we(e)):ai(jd(),Me(e))}function nf(e){let t=ec();return t?t.sanitize(le.URL,e)||"":xe(e,"URL")?we(e):rr(Me(e))}function rf(e){let t=ec();if(t)return Hl(t.sanitize(le.RESOURCE_URL,e)||"");if(xe(e,"ResourceURL"))return Hl(we(e));throw new m(904,!1)}var zm={embed:{src:!0},frame:{src:!0},iframe:{src:!0},media:{src:!0},base:{href:!0},link:{href:!0},object:{data:!0,codebase:!0}};function Gm(e,t){return zm[e.toLowerCase()]?.[t.toLowerCase()]===!0?rf:nf}function Wm(e,t,n){return Gm(t,n)(e)}function ec(){let e=v();return e&&e[me].sanitizer}function qm(e){return e.ownerDocument.defaultView}function Zm(e){return e.ownerDocument}function of(e){return e instanceof Function?e():e}function Ym(e,t,n){let r=e.length;for(;;){let o=e.indexOf(t,n);if(o===-1)return o;if(o===0||e.charCodeAt(o-1)<=32){let i=t.length;if(o+i===r||e.charCodeAt(o+i)<=32)return o}n=o+1}}var sf="ng-template";function Qm(e,t,n,r){let o=0;if(r){for(;o<t.length&&typeof t[o]=="string";o+=2)if(t[o]==="class"&&Ym(t[o+1].toLowerCase(),n,0)!==-1)return!0}else if(tc(e))return!1;if(o=t.indexOf(1,o),o>-1){let i;for(;++o<t.length&&typeof(i=t[o])=="string";)if(i.toLowerCase()===n)return!0}return!1}function tc(e){return e.type===4&&e.value!==sf}function Km(e,t,n){let r=e.type===4&&!n?sf:e.value;return t===r}function Jm(e,t,n){let r=4,o=e.attrs,i=o!==null?ty(o):0,s=!1;for(let a=0;a<t.length;a++){let c=t[a];if(typeof c=="number"){if(!s&&!Ee(r)&&!Ee(c))return!1;if(s&&Ee(c))continue;s=!1,r=c|r&1;continue}if(!s)if(r&4){if(r=2|r&1,c!==""&&!Km(e,c,n)||c===""&&t.length===1){if(Ee(r))return!1;s=!0}}else if(r&8){if(o===null||!Qm(e,o,c,n)){if(Ee(r))return!1;s=!0}}else{let u=t[++a],l=Xm(c,o,tc(e),n);if(l===-1){if(Ee(r))return!1;s=!0;continue}if(u!==""){let d;if(l>i?d="":d=o[l+1].toLowerCase(),r&2&&u!==d){if(Ee(r))return!1;s=!0}}}}return Ee(r)||s}function Ee(e){return(e&1)===0}function Xm(e,t,n,r){if(t===null)return-1;let o=0;if(r||!n){let i=!1;for(;o<t.length;){let s=t[o];if(s===e)return o;if(s===3||s===6)i=!0;else if(s===1||s===2){let a=t[++o];for(;typeof a=="string";)a=t[++o];continue}else{if(s===4)break;if(s===0){o+=4;continue}}o+=i?1:2}return-1}else return ny(t,e)}function af(e,t,n=!1){for(let r=0;r<t.length;r++)if(Jm(e,t[r],n))return!0;return!1}function ey(e){let t=e.attrs;if(t!=null){let n=t.indexOf(5);if((n&1)===0)return t[n+1]}return null}function ty(e){for(let t=0;t<e.length;t++){let n=e[t];if(Ed(n))return t}return e.length}function ny(e,t){let n=e.indexOf(4);if(n>-1)for(n++;n<e.length;){let r=e[n];if(typeof r=="number")return-1;if(r===t)return n;n++}return-1}function ry(e,t){e:for(let n=0;n<t.length;n++){let r=t[n];if(e.length===r.length){for(let o=0;o<e.length;o++)if(e[o]!==r[o])continue e;return!0}}return!1}function ql(e,t){return e?":not("+t.trim()+")":t}function oy(e){let t=e[0],n=1,r=2,o="",i=!1;for(;n<e.length;){let s=e[n];if(typeof s=="string")if(r&2){let a=e[++n];o+="["+s+(a.length>0?'="'+a+'"':"")+"]"}else r&8?o+="."+s:r&4&&(o+=" "+s);else o!==""&&!Ee(s)&&(t+=ql(i,o),o=""),r=s,i=i||!Ee(r);n++}return o!==""&&(t+=ql(i,o)),t}function iy(e){return e.map(oy).join(",")}function sy(e){let t=[],n=[],r=1,o=2;for(;r<e.length;){let i=e[r];if(typeof i=="string")o===2?i!==""&&t.push(i,e[++r]):o===8&&n.push(i);else{if(!Ee(o))break;o=i}r++}return n.length&&t.push(1,...n),t}var J={};function nc(e,t,n,r,o,i,s,a,c,u,l){let d=F+r,p=d+o,f=ay(d,p),h=typeof u=="function"?u():u;return f[y]={type:e,blueprint:f,template:n,queries:null,viewQuery:a,declTNode:t,data:f.slice().fill(null,d),bindingStartIndex:d,expandoStartIndex:p,hostBindingOpCodes:null,firstCreatePass:!0,firstUpdatePass:!0,staticViewQueries:!1,staticContentQueries:!1,preOrderHooks:null,preOrderCheckHooks:null,contentHooks:null,contentCheckHooks:null,viewHooks:null,viewCheckHooks:null,destroyHooks:null,cleanup:null,contentQueries:null,components:null,directiveRegistry:typeof i=="function"?i():i,pipeRegistry:typeof s=="function"?s():s,firstChild:null,schemas:c,consts:h,incompleteFirstPass:!1,ssrId:l}}function ay(e,t){let n=[];for(let r=0;r<t;r++)n.push(r<e?null:J);return n}function cy(e){let t=e.tView;return t===null||t.incompleteFirstPass?e.tView=nc(1,null,e.template,e.decls,e.vars,e.directiveDefs,e.pipeDefs,e.viewQuery,e.schemas,e.consts,e.id):t}function rc(e,t,n,r,o,i,s,a,c,u,l){let d=t.blueprint.slice();return d[ge]=o,d[D]=r|4|128|8|64|1024,(u!==null||e&&e[D]&2048)&&(d[D]|=2048),Rs(d),d[U]=d[Tt]=e,d[B]=n,d[me]=s||e&&e[me],d[k]=a||e&&e[k],d[Le]=c||e&&e[Le]||null,d[Q]=i,d[Pe]=dm(),d[Mt]=l,d[Ts]=u,d[K]=t.type==2?e[K]:d,d}function uy(e,t,n){let r=ve(t,e),o=cy(n),i=e[me].rendererFactory,s=oc(e,rc(e,o,null,cf(n),r,t,null,i.createRenderer(r,n),null,null,null));return e[t.index]=s}function cf(e){let t=16;return e.signals?t=4096:e.onPush&&(t=64),t}function uf(e,t,n,r){if(n===0)return-1;let o=t.length;for(let i=0;i<n;i++)t.push(r),e.blueprint.push(r),e.data.push(null);return o}function oc(e,t){return e[en]?e[Ms][ae]=t:e[en]=t,e[Ms]=t,t}function ly(e=1){lf(V(),v(),De()+e,!1)}function lf(e,t,n,r){if(!r)if((t[D]&3)===3){let i=e.preOrderCheckHooks;i!==null&&No(t,i,n)}else{let i=e.preOrderHooks;i!==null&&Ao(t,i,0,n)}tt(n)}var ci=(function(e){return e[e.None=0]="None",e[e.SignalBased=1]="SignalBased",e[e.HasDecoratorInputTransform=2]="HasDecoratorInputTransform",e})(ci||{});function Ca(e,t,n,r){let o=g(null);try{let[i,s,a]=e.inputs[n],c=null;(s&ci.SignalBased)!==0&&(c=t[i][$]),c!==null&&c.transformFn!==void 0?r=c.transformFn(r):a!==null&&(r=a.call(t,r)),e.setInput!==null?e.setInput(t,c,r,n,i):hd(t,c,i,r)}finally{g(o)}}var Ae=(function(e){return e[e.Important=1]="Important",e[e.DashCase=2]="DashCase",e})(Ae||{}),dy;function ic(e,t){return dy(e,t)}var dS=typeof document<"u"&&typeof document?.documentElement?.getAnimations=="function";var wa=new WeakMap,Wn=new WeakSet;function fy(e,t){let n=wa.get(e);if(!n||n.length===0)return;let r=t.parentNode,o=t.previousSibling;for(let i=n.length-1;i>=0;i--){let s=n[i],a=s.parentNode;s===t?(n.splice(i,1),Wn.add(s),s.dispatchEvent(new CustomEvent("animationend",{detail:{cancel:!0}}))):(o&&s===o||a&&r&&a!==r)&&(n.splice(i,1),s.dispatchEvent(new CustomEvent("animationend",{detail:{cancel:!0}})),s.parentNode?.removeChild(s))}}function py(e,t){let n=wa.get(e);n?n.includes(t)||n.push(t):wa.set(e,[t])}var Ft=new Set,sc=(function(e){return e[e.CHANGE_DETECTION=0]="CHANGE_DETECTION",e[e.AFTER_NEXT_RENDER=1]="AFTER_NEXT_RENDER",e})(sc||{}),hn=new b(""),Zl=new Set;function Bt(e){Zl.has(e)||(Zl.add(e),performance?.mark?.("mark_feature_usage",{detail:{feature:e}}))}var df=(()=>{class e{impl=null;execute(){this.impl?.execute()}static \u0275prov=_({token:e,providedIn:"root",factory:()=>new e})}return e})();var ff=new b("",{factory:()=>({queue:new Set,isScheduled:!1,scheduler:null,injector:E(re)})});function pf(e,t,n){let r=e.get(ff);if(Array.isArray(t))for(let o of t)r.queue.add(o),n?.detachedLeaveAnimationFns?.push(o);else r.queue.add(t),n?.detachedLeaveAnimationFns?.push(t);r.scheduler&&r.scheduler(e)}function hy(e,t){let n=e.get(ff);if(t.detachedLeaveAnimationFns){for(let r of t.detachedLeaveAnimationFns)n.queue.delete(r);t.detachedLeaveAnimationFns=void 0}}function gy(e,t){for(let[n,r]of t)pf(e,r.animateFns)}function Yl(e,t,n,r){let o=e?.[Je]?.enter;t!==null&&o&&o.has(n.index)&&gy(r,o)}function on(e,t,n,r,o,i,s,a){if(o!=null){let c,u=!1;ye(o)?c=o:je(o)&&(u=!0,o=o[ge]);let l=ce(o);e===0&&r!==null?(Yl(a,r,i,n),s==null?Xd(t,r,l):Vo(t,r,l,s||null,!0)):e===1&&r!==null?(Yl(a,r,i,n),Vo(t,r,l,s||null,!0),fy(i,l)):e===2?(a?.[Je]?.leave?.has(i.index)&&py(i,l),Wn.delete(l),Ql(a,i,n,d=>{if(Wn.has(l)){Wn.delete(l);return}ef(t,l,u,d)})):e===3&&(Wn.delete(l),Ql(a,i,n,()=>{t.destroyNode(l)})),c!=null&&My(t,e,n,c,i,r,s)}}function my(e,t){hf(e,t),t[ge]=null,t[Q]=null}function yy(e,t,n,r,o,i){r[ge]=o,r[Q]=t,li(e,r,n,1,o,i)}function hf(e,t){t[me].changeDetectionScheduler?.notify(9),li(e,t,t[k],2,null,null)}function vy(e){let t=e[en];if(!t)return ra(e[y],e);for(;t;){let n=null;if(je(t))n=t[en];else{let r=t[P];r&&(n=r)}if(!n){for(;t&&!t[ae]&&t!==e;)je(t)&&ra(t[y],t),t=t[U];t===null&&(t=e),je(t)&&ra(t[y],t),n=t&&t[ae]}t=n}}function ac(e,t){let n=e[Nt],r=n.indexOf(t);n.splice(r,1)}function ui(e,t){if(xt(t))return;let n=t[k];n.destroyNode&&li(e,t,n,3,null,null),vy(t)}function ra(e,t){if(xt(t))return;let n=g(null);try{t[D]&=-129,t[D]|=256,t[te]&&dt(t[te]),Iy(e,t),Ey(e,t),t[y].type===1&&t[k].destroy();let r=t[Ke];if(r!==null&&ye(t[U])){r!==t[U]&&ac(r,t);let o=t[Te];o!==null&&o.detachView(e)}da(t)}finally{g(n)}}function Ql(e,t,n,r){let o=e?.[Je];if(o==null||o.leave==null||!o.leave.has(t.index))return r(!1);e&&Ft.add(e[Pe]),pf(n,()=>{if(o.leave&&o.leave.has(t.index)){let s=o.leave.get(t.index),a=[];if(s){for(let c=0;c<s.animateFns.length;c++){let u=s.animateFns[c],{promise:l}=u();a.push(l)}o.detachedLeaveAnimationFns=void 0}o.running=Promise.allSettled(a),Dy(e,r)}else e&&Ft.delete(e[Pe]),r(!1)},o)}function Dy(e,t){let n=e[Je]?.running;if(n){n.then(()=>{e[Je].running=void 0,Ft.delete(e[Pe]),t(!0)});return}t(!1)}function Ey(e,t){let n=e.cleanup,r=t[Xt];if(n!==null)for(let s=0;s<n.length-1;s+=2)if(typeof n[s]=="string"){let a=n[s+3];a>=0?r[a]():r[-a].unsubscribe(),s+=2}else{let a=r[n[s+1]];n[s].call(a)}r!==null&&(t[Xt]=null);let o=t[ke];if(o!==null){t[ke]=null;for(let s=0;s<o.length;s++){let a=o[s];a()}}let i=t[Ze];if(i!==null){t[Ze]=null;for(let s of i)s.destroy()}}function Iy(e,t){let n;if(e!=null&&(n=e.destroyHooks)!=null)for(let r=0;r<n.length;r+=2){let o=t[n[r]];if(!(o instanceof Yn)){let i=n[r+1];if(Array.isArray(i))for(let s=0;s<i.length;s+=2){let a=o[i[s]],c=i[s+1];R(T.LifecycleHookStart,a,c);try{c.call(a)}finally{R(T.LifecycleHookEnd,a,c)}}else{R(T.LifecycleHookStart,o,i);try{i.call(o)}finally{R(T.LifecycleHookEnd,o,i)}}}}}function gf(e,t,n){return Cy(e,t.parent,n)}function Cy(e,t,n){let r=t;for(;r!==null&&r.type&168;)t=r,r=t.parent;if(r===null)return n[ge];if(Be(r)){let{encapsulation:o}=e.data[r.directiveStart+r.componentOffset];if(o===Ie.None||o===Ie.Emulated)return null}return ve(r,n)}function mf(e,t,n){return by(e,t,n)}function wy(e,t,n){return e.type&40?ve(e,n):null}var by=wy,Kl;function cc(e,t,n,r){let o=gf(e,r,t),i=t[k],s=r.parent||t[Q],a=mf(s,r,t);if(o!=null)if(Array.isArray(n))for(let c=0;c<n.length;c++)Wl(i,o,n[c],a,!1);else Wl(i,o,n,a,!1);Kl!==void 0&&Kl(i,r,t,n,o)}function qn(e,t){if(t!==null){let n=t.type;if(n&3)return ve(t,e);if(n&4)return ba(-1,e[t.index]);if(n&8){let r=t.child;if(r!==null)return qn(e,r);{let o=e[t.index];return ye(o)?ba(-1,o):ce(o)}}else{if(n&128)return qn(e,t.next);if(n&32)return ic(t,e)()||ce(e[t.index]);{let r=yf(e,t);if(r!==null){if(Array.isArray(r))return r[0];let o=Ye(e[K]);return qn(o,r)}else return qn(e,t.next)}}}return null}function yf(e,t){if(t!==null){let r=e[K][Q],o=t.projection;return r.projection[o]}return null}function ba(e,t){let n=P+e+1;if(n<t.length){let r=t[n],o=r[y].firstChild;if(o!==null)return qn(r,o)}return t[Xe]}function uc(e,t,n,r,o,i,s){for(;n!=null;){let a=r[Le];if(n.type===128){n=n.next;continue}let c=r[n.index],u=n.type;if(s&&t===0&&(c&&an(ce(c),r),n.flags|=2),!ii(n))if(u&8)uc(e,t,n.child,r,o,i,!1),on(t,e,a,o,c,n,i,r);else if(u&32){let l=ic(n,r),d;for(;d=l();)on(t,e,a,o,d,n,i,r);on(t,e,a,o,c,n,i,r)}else u&16?vf(e,t,r,n,o,i):on(t,e,a,o,c,n,i,r);n=s?n.projectionNext:n.next}}function li(e,t,n,r,o,i){uc(n,r,e.firstChild,t,o,i,!1)}function _y(e,t,n){let r=t[k],o=gf(e,n,t),i=n.parent||t[Q],s=mf(i,n,t);vf(r,0,t,n,o,s)}function vf(e,t,n,r,o,i){let s=n[K],c=s[Q].projection[r.projection];if(Array.isArray(c))for(let u=0;u<c.length;u++){let l=c[u];on(t,e,n[Le],o,l,r,i,n)}else{let u=c,l=s[U];Od(r)&&(u.flags|=128),uc(e,t,u,l,o,i,!0)}}function My(e,t,n,r,o,i,s){let a=r[Xe],c=ce(r);a!==c&&on(t,e,n,i,a,o,s);for(let u=P;u<r.length;u++){let l=r[u];li(l[y],l,e,t,i,a)}}function Ty(e,t,n,r,o){if(t)o?e.addClass(n,r):e.removeClass(n,r);else{let i=r.indexOf("-")===-1?void 0:Ae.DashCase;o==null?e.removeStyle(n,r,i):(typeof o=="string"&&o.endsWith("!important")&&(o=o.slice(0,-10),i|=Ae.Important),e.setStyle(n,r,o,i))}}function Df(e,t,n,r,o){let i=De(),s=r&2;try{tt(-1),s&&t.length>F&&lf(e,t,F,!1);let a=s?T.TemplateUpdateStart:T.TemplateCreateStart;R(a,o,n),n(r,o)}finally{tt(i);let a=s?T.TemplateUpdateEnd:T.TemplateCreateEnd;R(a,o,n)}}function lc(e,t,n){ky(e,t,n),(n.flags&64)===64&&Fy(e,t,n)}function di(e,t,n=ve){let r=t.localNames;if(r!==null){let o=t.index+1;for(let i=0;i<r.length;i+=2){let s=r[i+1],a=s===-1?n(t,e):e[s];e[o++]=a}}}function Sy(e,t,n,r){let i=r.get($d,Hd)||n===Ie.ShadowDom||n===Ie.ExperimentalIsolatedShadowDom,s=e.selectRootElement(t,i);if(s.tagName.toLowerCase()==="script")throw new m(905,!1);return Ny(s),s}function Ny(e){Ay(e)}var Ay=()=>null;function xy(e){return e==="class"?"className":e==="for"?"htmlFor":e==="formaction"?"formAction":e==="innerHtml"?"innerHTML":e==="readonly"?"readOnly":e==="tabindex"?"tabIndex":e}function Ry(e,t,n,r,o,i){let s=t[y];if(pc(e,s,t,n,r)){Be(e)&&Oy(t,e.index);return}e.type&3&&(n=xy(n)),Ef(e,t,n,r,o,i)}function Ef(e,t,n,r,o,i){if(e.type&3){let s=ve(e,t);r=i!=null?i(r,e.value||"",n):r,o.setProperty(s,n,r)}else e.type&12}function Oy(e,t){let n=ue(t,e);n[D]&16||(n[D]|=64)}function ky(e,t,n){let r=n.directiveStart,o=n.directiveEnd;Be(n)&&uy(t,n,e.data[r+n.componentOffset]),e.firstCreatePass||bd(n,t);let i=n.initialInputs;for(let s=r;s<o;s++){let a=e.data[s],c=jo(t,e,s,n);if(an(c,t),i!==null&&By(t,s-r,c,a,n,i),At(a)){let u=ue(n.index,t);u[B]=jo(t,e,s,n)}}}function Fy(e,t,n){let r=n.directiveStart,o=n.directiveEnd,i=n.index,s=yl();try{tt(i);for(let a=r;a<o;a++){let c=e.data[a],u=t[a];ho(a),(c.hostBindings!==null||c.hostVars!==0||c.hostAttrs!==null)&&Ly(c,u)}}finally{tt(-1),ho(s)}}function Ly(e,t){e.hostBindings!==null&&e.hostBindings(1,t)}function If(e,t){let n=e.directiveRegistry,r=null;if(n)for(let o=0;o<n.length;o++){let i=n[o];af(t,i.selectors,!1)&&(r??=[],At(i)?r.unshift(i):r.push(i))}return r}function Py(e,t,n,r,o,i){let s=ve(e,t);jy(t[k],s,i,e.value,n,r,o)}function jy(e,t,n,r,o,i,s){if(i==null)e.removeAttribute(t,o,n);else{let a=s==null?Me(i):s(i,r||"",o);e.setAttribute(t,o,a,n)}}function By(e,t,n,r,o,i){let s=i[t];if(s!==null)for(let a=0;a<s.length;a+=2){let c=s[a],u=s[a+1];Ca(r,n,c,u)}}function dc(e,t,n,r,o){let i=F+n,s=t[y],a=o(s,t,e,r,n);t[i]=a,Rt(e,!0);let c=e.type===2;return c?(tf(t[k],a,e),(cl()===0||Bn(e))&&an(a,t),ul()):an(a,t),Eo()&&(!c||!ii(e))&&cc(s,t,a,e),e}function fc(e){let t=e;return Us()?zs():(t=t.parent,Rt(t,!1)),t}function Vy(e,t){let n=e[Le];if(!n)return;let r;try{r=n.get(rt,null)}catch{r=null}r?.(t)}function pc(e,t,n,r,o){let i=e.inputs?.[r],s=e.hostDirectiveInputs?.[r],a=!1;if(s)for(let c=0;c<s.length;c+=2){let u=s[c],l=s[c+1],d=t.data[u];Ca(d,n[u],l,o),a=!0}if(i)for(let c of i){let u=n[c],l=t.data[c];Ca(l,u,r,o),a=!0}return a}function Hy(e,t){let n=ue(t,e),r=n[y];$y(r,n);let o=n[ge];o!==null&&n[Mt]===null&&(n[Mt]=Ud(o,n[Le])),R(T.ComponentStart);try{hc(r,n,n[B])}finally{R(T.ComponentEnd,n[B])}}function $y(e,t){for(let n=t.length;n<e.blueprint.length;n++)t.push(e.blueprint[n])}function hc(e,t,n){mo(t);try{let r=e.viewQuery;r!==null&&pa(1,r,n);let o=e.template;o!==null&&Df(e,t,o,1,n),e.firstCreatePass&&(e.firstCreatePass=!1),t[Te]?.finishViewCreation(e),e.staticContentQueries&&zd(e,t),e.staticViewQueries&&pa(2,e.viewQuery,n);let i=e.components;i!==null&&Uy(t,i)}catch(r){throw e.firstCreatePass&&(e.incompleteFirstPass=!0,e.firstCreatePass=!1),r}finally{t[D]&=-5,yo()}}function Uy(e,t){for(let n=0;n<t.length;n++)Hy(e,t[n])}function ir(e,t,n,r){let o=g(null);try{let i=t.tView,a=e[D]&4096?4096:16,c=rc(e,i,n,a,null,t,null,null,r?.injector??null,r?.embeddedViewInjector??null,r?.dehydratedView??null),u=e[t.index];c[Ke]=u;let l=e[Te];return l!==null&&(c[Te]=l.createEmbeddedView(i)),hc(i,c,n),c}finally{g(o)}}function cn(e,t){return!t||t.firstChild===null||Od(e)}function Qn(e,t,n,r,o=!1){for(;n!==null;){if(n.type===128){n=o?n.projectionNext:n.next;continue}let i=t[n.index];i!==null&&r.push(ce(i)),ye(i)&&Cf(i,r);let s=n.type;if(s&8)Qn(e,t,n.child,r);else if(s&32){let a=ic(n,t),c;for(;c=a();)r.push(c)}else if(s&16){let a=yf(t,n);if(Array.isArray(a))r.push(...a);else{let c=Ye(t[K]);Qn(c[y],c,a,r,!0)}}n=o?n.projectionNext:n.next}return r}function Cf(e,t){for(let n=P;n<e.length;n++){let r=e[n],o=r[y].firstChild;o!==null&&Qn(r[y],r,o,t)}e[Xe]!==e[ge]&&t.push(e[Xe])}function wf(e){if(e[ao]!==null){for(let t of e[ao])t.impl.addSequence(t);e[ao].length=0}}var bf=[];function zy(e){return e[te]??Gy(e)}function Gy(e){let t=bf.pop()??Object.create(qy);return t.lView=e,t}function Wy(e){e.lView[te]!==e&&(e.lView=null,bf.push(e))}var qy=H(j({},Ue),{consumerIsAlwaysLive:!0,kind:"template",consumerMarkedDirty:e=>{nn(e.lView)},consumerOnSignalRead(){this.lView[te]=this}});function Zy(e){let t=e[te]??Object.create(Yy);return t.lView=e,t}var Yy=H(j({},Ue),{consumerIsAlwaysLive:!0,kind:"template",consumerMarkedDirty:e=>{let t=Ye(e.lView);for(;t&&!_f(t[y]);)t=Ye(t);t&&Os(t)},consumerOnSignalRead(){this.lView[te]=this}});function _f(e){return e.type!==2}function Mf(e){if(e[Ze]===null)return;let t=!0;for(;t;){let n=!1;for(let r of e[Ze])r.dirty&&(n=!0,r.zone===null||Zone.current===r.zone?r.run():r.zone.run(()=>r.run()));t=n&&!!(e[D]&8192)}}var Qy=100;function Tf(e,t=0){let r=e[me].rendererFactory,o=!1;o||r.begin?.();try{Ky(e,t)}finally{o||r.end?.()}}function Ky(e,t){let n=Gs();try{Nn(!0),_a(e,t);let r=0;for(;Hn(e);){if(r===Qy)throw new m(103,!1);r++,_a(e,1)}}finally{Nn(n)}}function Jy(e,t,n,r){if(xt(t))return;let o=t[D],i=!1,s=!1;mo(t);let a=!0,c=null,u=null;i||(_f(e)?(u=zy(t),c=ze(u)):wr()===null?(a=!1,u=Zy(t),c=ze(u)):t[te]&&(dt(t[te]),t[te]=null));try{Rs(t),hl(e.bindingStartIndex),n!==null&&Df(e,t,n,2,r);let l=(o&3)===3;if(!i)if(l){let f=e.preOrderCheckHooks;f!==null&&No(t,f,null)}else{let f=e.preOrderHooks;f!==null&&Ao(t,f,0,null),ta(t,0)}if(s||Xy(t),Mf(t),Sf(t,0),e.contentQueries!==null&&zd(e,t),!i)if(l){let f=e.contentCheckHooks;f!==null&&No(t,f)}else{let f=e.contentHooks;f!==null&&Ao(t,f,1),ta(t,1)}tv(e,t);let d=e.components;d!==null&&Af(t,d,0);let p=e.viewQuery;if(p!==null&&pa(2,p,r),!i)if(l){let f=e.viewCheckHooks;f!==null&&No(t,f)}else{let f=e.viewHooks;f!==null&&Ao(t,f,2),ta(t,2)}if(e.firstUpdatePass===!0&&(e.firstUpdatePass=!1),t[so]){for(let f of t[so])f();t[so]=null}i||(wf(t),t[D]&=-73)}catch(l){throw i||nn(t),l}finally{u!==null&&(lt(u,c),a&&Wy(u)),yo()}}function Sf(e,t){for(let n=Fd(e);n!==null;n=Ld(n))for(let r=P;r<n.length;r++){let o=n[r];Nf(o,t)}}function Xy(e){for(let t=Fd(e);t!==null;t=Ld(t)){if(!(t[D]&2))continue;let n=t[Nt];for(let r=0;r<n.length;r++){let o=n[r];Os(o)}}}function ev(e,t,n){R(T.ComponentStart);let r=ue(t,e);try{Nf(r,n)}finally{R(T.ComponentEnd,r[B])}}function Nf(e,t){lo(e)&&_a(e,t)}function _a(e,t){let r=e[y],o=e[D],i=e[te],s=!!(t===0&&o&16);if(s||=!!(o&64&&t===0),s||=!!(o&1024),s||=!!(i?.dirty&&yn(i)),s||=!1,i&&(i.dirty=!1),e[D]&=-9217,s)Jy(r,e,r.template,e[B]);else if(o&8192){let a=g(null);try{Mf(e),Sf(e,1);let c=r.components;c!==null&&Af(e,c,1),wf(e)}finally{g(a)}}}function Af(e,t,n){for(let r=0;r<t.length;r++)ev(e,t[r],n)}function tv(e,t){let n=e.hostBindingOpCodes;if(n!==null)try{for(let r=0;r<n.length;r++){let o=n[r];if(o<0)tt(~o);else{let i=o,s=n[++r],a=n[++r];ml(s,i);let c=t[i];R(T.HostBindingsUpdateStart,c);try{a(2,c)}finally{R(T.HostBindingsUpdateEnd,c)}}}}finally{tt(-1)}}function gc(e,t){let n=Gs()?64:1088;for(e[me].changeDetectionScheduler?.notify(t);e;){e[D]|=n;let r=Ye(e);if(tn(e)&&!r)return e;e=r}return null}function xf(e,t,n,r){return[e,!0,0,t,null,r,null,n,null,null]}function Rf(e,t){let n=P+t;if(n<e.length)return e[n]}function sr(e,t,n,r=!0){let o=t[y];if(nv(o,t,e,n),r){let s=ba(n,e),a=t[k],c=a.parentNode(e[Xe]);c!==null&&yy(o,e[Q],a,t,c,s)}let i=t[Mt];i!==null&&i.firstChild!==null&&(i.firstChild=null)}function Of(e,t){let n=Kn(e,t);return n!==void 0&&ui(n[y],n),n}function Kn(e,t){if(e.length<=P)return;let n=P+t,r=e[n];if(r){let o=r[Ke];o!==null&&o!==e&&ac(o,r),t>0&&(e[n-1][ae]=r[ae]);let i=kn(e,P+t);my(r[y],r);let s=i[Te];s!==null&&s.detachView(i[y]),r[U]=null,r[ae]=null,r[D]&=-129}return r}function nv(e,t,n,r){let o=P+r,i=n.length;r>0&&(n[o-1][ae]=t),r<i-P?(t[ae]=n[o],Is(n,P+r,t)):(n.push(t),t[ae]=null),t[U]=n;let s=t[Ke];s!==null&&n!==s&&kf(s,t);let a=t[Te];a!==null&&a.insertView(e),fo(t),t[D]|=128}function kf(e,t){let n=e[Nt],r=t[U];if(je(r))e[D]|=2;else{let o=r[U][K];t[K]!==o&&(e[D]|=2)}n===null?e[Nt]=[t]:n.push(t)}var ot=class{_lView;_cdRefInjectingView;_appRef=null;_attachedToViewContainer=!1;exhaustive;get rootNodes(){let t=this._lView,n=t[y];return Qn(n,t,n.firstChild,[])}constructor(t,n){this._lView=t,this._cdRefInjectingView=n}get context(){return this._lView[B]}set context(t){this._lView[B]=t}get destroyed(){return xt(this._lView)}destroy(){if(this._appRef)this._appRef.detachView(this);else if(this._attachedToViewContainer){let t=this._lView[U];if(ye(t)){let n=t[jn],r=n?n.indexOf(this):-1;r>-1&&(Kn(t,r),kn(n,r))}this._attachedToViewContainer=!1}ui(this._lView[y],this._lView)}onDestroy(t){ks(this._lView,t)}markForCheck(){gc(this._cdRefInjectingView||this._lView,4)}detach(){this._lView[D]&=-129}reattach(){fo(this._lView),this._lView[D]|=128}detectChanges(){this._lView[D]|=1024,Tf(this._lView)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new m(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null;let t=tn(this._lView),n=this._lView[Ke];n!==null&&!t&&ac(n,this._lView),hf(this._lView[y],this._lView)}attachToAppRef(t){if(this._attachedToViewContainer)throw new m(902,!1);this._appRef=t;let n=tn(this._lView),r=this._lView[Ke];r!==null&&!n&&kf(r,this._lView),fo(this._lView)}};var un=(()=>{class e{_declarationLView;_declarationTContainer;elementRef;static __NG_ELEMENT_ID__=rv;constructor(n,r,o){this._declarationLView=n,this._declarationTContainer=r,this.elementRef=o}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(n,r){return this.createEmbeddedViewImpl(n,r)}createEmbeddedViewImpl(n,r,o){let i=ir(this._declarationLView,this._declarationTContainer,n,{embeddedViewInjector:r,dehydratedView:o});return new ot(i)}}return e})();function rv(){return mc(W(),v())}function mc(e,t){return e.type&4?new un(t,e,fn(e,t)):null}function gn(e,t,n,r,o){let i=e.data[t];if(i===null)i=ov(e,t,n,r,o),gl()&&(i.flags|=32);else if(i.type&64){i.type=n,i.value=r,i.attrs=o;let s=fl();i.injectorIndex=s===null?-1:s.injectorIndex}return Rt(i,!0),i}function ov(e,t,n,r,o){let i=$s(),s=Us(),a=s?i:i&&i.parent,c=e.data[t]=sv(e,a,n,t,r,o);return iv(e,c,i,s),c}function iv(e,t,n,r){e.firstChild===null&&(e.firstChild=t),n!==null&&(r?n.child==null&&t.parent!==null&&(n.child=t):n.next===null&&(n.next=t,t.prev=n))}function sv(e,t,n,r,o,i){let s=t?t.injectorIndex:-1,a=0;return Bs()&&(a|=128),{type:n,index:r,insertBeforeIndex:null,injectorIndex:s,directiveStart:-1,directiveEnd:-1,directiveStylingLast:-1,componentOffset:-1,controlDirectiveIndex:-1,customControlIndex:-1,propertyBindings:null,flags:a,providerIndexes:0,value:o,namespace:Ys(),attrs:i,mergedAttrs:null,localNames:null,initialInputs:null,inputs:null,hostDirectiveInputs:null,outputs:null,hostDirectiveOutputs:null,directiveToIndex:null,tView:null,next:null,prev:null,projectionNext:null,child:null,parent:t,projection:null,styles:null,stylesWithoutHost:null,residualStyles:void 0,classes:null,classesWithoutHost:null,residualClasses:void 0,classBindings:0,styleBindings:0}}function av(e){let t=e[Ss]??[],r=e[U][k],o=[];for(let i of t)i.data[Vd]!==void 0?o.push(i):cv(i,r);e[Ss]=o}function cv(e,t){let n=0,r=e.firstChild;if(r){let o=e.data[Bd];for(;n<o;){let i=r.nextSibling;ef(t,r,!1),r=i,n++}}}var uv=()=>null,lv=()=>null;function Ho(e,t){return uv(e,t)}function Ff(e,t,n){return lv(e,t,n)}var Lf=class{},fi=class{},Ma=class{resolveComponentFactory(t){throw new m(917,!1)}},ar=class{static NULL=new Ma},Lt=class{},Pf=(()=>{class e{destroyNode=null;static __NG_ELEMENT_ID__=()=>dv()}return e})();function dv(){let e=v(),t=W(),n=ue(t.index,e);return(je(n)?n:e)[k]}var jf=(()=>{class e{static \u0275prov=_({token:e,providedIn:"root",factory:()=>null})}return e})();var Ro={},Ta=class{injector;parentInjector;constructor(t,n){this.injector=t,this.parentInjector=n}get(t,n,r){let o=this.injector.get(t,Ro,r);return o!==Ro||n===Ro?o:this.parentInjector.get(t,n,r)}};function $o(e,t,n){let r=n?e.styles:null,o=n?e.classes:null,i=0;if(t!==null)for(let s=0;s<t.length;s++){let a=t[s];if(typeof a=="number")i=a;else if(i==1)o=ls(o,a);else if(i==2){let c=a,u=t[++s];r=ls(r,c+": "+u+";")}}n?e.styles=r:e.stylesWithoutHost=r,n?e.classes=o:e.classesWithoutHost=o}function cr(e,t=0){let n=v();if(n===null)return w(e,t);let r=W();return Sd(r,n,ee(e),t)}function fv(e,t,n,r,o){let i=r===null?null:{"":-1},s=o(e,n);if(s!==null){let a=s,c=null,u=null;for(let l of s)if(l.resolveHostDirectives!==null){[a,c,u]=l.resolveHostDirectives(s);break}gv(e,t,n,a,i,c,u)}i!==null&&r!==null&&pv(n,r,i)}function pv(e,t,n){let r=e.localNames=[];for(let o=0;o<t.length;o+=2){let i=n[t[o+1]];if(i==null)throw new m(-301,!1);r.push(t[o],i)}}function hv(e,t,n){t.componentOffset=n,(e.components??=[]).push(t.index)}function gv(e,t,n,r,o,i,s){let a=r.length,c=null;for(let p=0;p<a;p++){let f=r[p];c===null&&At(f)&&(c=f,hv(e,n,p)),nm(bd(n,t),e,f.type)}Iv(n,e.data.length,a),c?.viewProvidersResolver&&c.viewProvidersResolver(c);for(let p=0;p<a;p++){let f=r[p];f.providersResolver&&f.providersResolver(f)}let u=!1,l=!1,d=uf(e,t,a,null);a>0&&(n.directiveToIndex=new Map);for(let p=0;p<a;p++){let f=r[p];if(n.mergedAttrs=ti(n.mergedAttrs,f.hostAttrs),yv(e,n,t,d,f),Ev(d,f,o),s!==null&&s.has(f)){let[M,O]=s.get(f);n.directiveToIndex.set(f.type,[d,M+n.directiveStart,O+n.directiveStart])}else(i===null||!i.has(f))&&n.directiveToIndex.set(f.type,d);f.contentQueries!==null&&(n.flags|=4),(f.hostBindings!==null||f.hostAttrs!==null||f.hostVars!==0)&&(n.flags|=64);let h=f.type.prototype;!u&&(h.ngOnChanges||h.ngOnInit||h.ngDoCheck)&&((e.preOrderHooks??=[]).push(n.index),u=!0),!l&&(h.ngOnChanges||h.ngDoCheck)&&((e.preOrderCheckHooks??=[]).push(n.index),l=!0),d++}mv(e,n,i)}function mv(e,t,n){for(let r=t.directiveStart;r<t.directiveEnd;r++){let o=e.data[r];if(n===null||!n.has(o))Jl(0,t,o,r),Jl(1,t,o,r),ed(t,r,!1);else{let i=n.get(o);Xl(0,t,i,r),Xl(1,t,i,r),ed(t,r,!0)}}}function Jl(e,t,n,r){let o=e===0?n.inputs:n.outputs;for(let i in o)if(o.hasOwnProperty(i)){let s;e===0?s=t.inputs??={}:s=t.outputs??={},s[i]??=[],s[i].push(r),Bf(t,i)}}function Xl(e,t,n,r){let o=e===0?n.inputs:n.outputs;for(let i in o)if(o.hasOwnProperty(i)){let s=o[i],a;e===0?a=t.hostDirectiveInputs??={}:a=t.hostDirectiveOutputs??={},a[s]??=[],a[s].push(r,i),Bf(t,s)}}function Bf(e,t){t==="class"?e.flags|=8:t==="style"&&(e.flags|=16)}function ed(e,t,n){let{attrs:r,inputs:o,hostDirectiveInputs:i}=e;if(r===null||!n&&o===null||n&&i===null||tc(e)){e.initialInputs??=[],e.initialInputs.push(null);return}let s=null,a=0;for(;a<r.length;){let c=r[a];if(c===0){a+=4;continue}else if(c===5){a+=2;continue}else if(typeof c=="number")break;if(!n&&o.hasOwnProperty(c)){let u=o[c];for(let l of u)if(l===t){s??=[],s.push(c,r[a+1]);break}}else if(n&&i.hasOwnProperty(c)){let u=i[c];for(let l=0;l<u.length;l+=2)if(u[l]===t){s??=[],s.push(u[l+1],r[a+1]);break}}a+=2}e.initialInputs??=[],e.initialInputs.push(s)}function yv(e,t,n,r,o){e.data[r]=o;let i=o.factory||(o.factory=qe(o.type,!0)),s=new Yn(i,At(o),cr,null);e.blueprint[r]=s,n[r]=s,vv(e,t,r,uf(e,n,o.hostVars,J),o)}function vv(e,t,n,r,o){let i=o.hostBindings;if(i){let s=e.hostBindingOpCodes;s===null&&(s=e.hostBindingOpCodes=[]);let a=~t.index;Dv(s)!=a&&s.push(a),s.push(n,r,i)}}function Dv(e){let t=e.length;for(;t>0;){let n=e[--t];if(typeof n=="number"&&n<0)return n}return 0}function Ev(e,t,n){if(n){if(t.exportAs)for(let r=0;r<t.exportAs.length;r++)n[t.exportAs[r]]=e;At(t)&&(n[""]=e)}}function Iv(e,t,n){e.flags|=1,e.directiveStart=t,e.directiveEnd=t+n,e.providerIndexes=t}function yc(e,t,n,r,o,i,s,a){let c=t[y],u=c.consts,l=Se(u,s),d=gn(c,e,n,r,l);return i&&fv(c,t,d,Se(u,a),o),d.mergedAttrs=ti(d.mergedAttrs,d.attrs),d.attrs!==null&&$o(d,d.attrs,!1),d.mergedAttrs!==null&&$o(d,d.mergedAttrs,!0),c.queries!==null&&c.queries.elementStart(c,d),d}function vc(e,t){Wg(e,t),Ns(t)&&e.queries.elementEnd(t)}function Cv(e,t,n,r,o,i){let s=t.consts,a=Se(s,o),c=gn(t,e,n,r,a);if(c.mergedAttrs=ti(c.mergedAttrs,c.attrs),i!=null){let u=Se(s,i);c.localNames=[];for(let l=0;l<u.length;l+=2)c.localNames.push(u[l],-1)}return c.attrs!==null&&$o(c,c.attrs,!1),c.mergedAttrs!==null&&$o(c,c.mergedAttrs,!0),t.queries!==null&&t.queries.elementStart(t,c),c}function ur(e,t,n){return e[t]=n}function wv(e,t){return e[t]}function Ce(e,t,n){if(n===J)return!1;let r=e[t];return Object.is(r,n)?!1:(e[t]=n,!0)}function Jn(e,t,n,r){let o=Ce(e,t,n);return Ce(e,t+1,r)||o}function Vf(e,t,n,r,o){let i=Jn(e,t,n,r);return Ce(e,t+2,o)||i}function bv(e,t,n,r,o,i){let s=Jn(e,t,n,r);return Jn(e,t+2,o,i)||s}function Oo(e,t,n){return function r(o){let i=r.__ngNativeEl__;i!==void 0&&hm(o,i);let s=Be(e)?ue(e.index,t):t;gc(s,5);let a=t[B],c=td(t,a,n,o),u=r.__ngNextListenerFn__;for(;u;)c=td(t,a,u,o)&&c,u=u.__ngNextListenerFn__;return c}}function td(e,t,n,r){let o=g(null);try{return R(T.OutputStart,t,n),n(r)!==!1}catch(i){return Vy(e,i),!1}finally{R(T.OutputEnd,t,n),g(o)}}function Hf(e,t,n,r,o,i,s,a){let c=Bn(e),u=!1,l=null;if(!r&&c&&(l=Mv(t,n,i,e.index)),l!==null){let d=l.__ngLastListenerFn__||l;d.__ngNextListenerFn__=s,l.__ngLastListenerFn__=s,u=!0}else{let d=ve(e,n),p=r?r(d):d;mm(n,p,i,a),r||(a.__ngNativeEl__=d);let f=o.listen(p,i,a);if(!_v(i)){let h=r?M=>r(ce(M[e.index])):e.index;$f(h,t,n,i,a,f,!1)}}return u}function _v(e){return e.startsWith("animation")||e.startsWith("transition")}function Mv(e,t,n,r){let o=e.cleanup;if(o!=null)for(let i=0;i<o.length-1;i+=2){let s=o[i];if(s===n&&o[i+1]===r){let a=t[Xt],c=o[i+2];return a&&a.length>c?a[c]:null}typeof s=="string"&&(i+=2)}return null}function $f(e,t,n,r,o,i,s){let a=t.firstCreatePass?Ls(t):null,c=Fs(n),u=c.length;c.push(o,i),a&&a.push(r,e,u,(u+1)*(s?-1:1))}function nd(e,t,n,r,o,i){let s=t[n],a=t[y],u=a.data[n].outputs[r],d=s[u].subscribe(i);$f(e.index,a,t,o,i,d,!0)}var Sa=Symbol("BINDING");function Uf(e){return e.debugInfo?.className||e.type.name||null}var Uo=class extends ar{ngModule;constructor(t){super(),this.ngModule=t}resolveComponentFactory(t){let n=Qe(t);return new ln(n,this.ngModule)}};function Tv(e){return Object.keys(e).map(t=>{let[n,r,o]=e[t],i={propName:n,templateName:t,isSignal:(r&ci.SignalBased)!==0};return o&&(i.transform=o),i})}function Sv(e){return Object.keys(e).map(t=>({propName:e[t],templateName:t}))}function Nv(e,t,n){let r=t instanceof re?t:t?.injector;return r&&e.getStandaloneInjector!==null&&(r=e.getStandaloneInjector(r)||r),r?new Ta(n,r):n}function Av(e){let t=e.get(Lt,null);if(t===null)throw new m(407,!1);let n=e.get(jf,null),r=e.get(It,null),o=e.get(hn,null,{optional:!0});return{rendererFactory:t,sanitizer:n,changeDetectionScheduler:r,ngReflect:!1,tracingService:o}}function xv(e,t){let n=zf(e);return Jd(t,n,n==="svg"?As:n==="math"?nl:null)}function zf(e){return(e.selectors[0][0]||"div").toLowerCase()}var ln=class extends fi{componentDef;ngModule;selector;componentType;ngContentSelectors;isBoundToModule;cachedInputs=null;cachedOutputs=null;get inputs(){return this.cachedInputs??=Tv(this.componentDef.inputs),this.cachedInputs}get outputs(){return this.cachedOutputs??=Sv(this.componentDef.outputs),this.cachedOutputs}constructor(t,n){super(),this.componentDef=t,this.ngModule=n,this.componentType=t.type,this.selector=iy(t.selectors),this.ngContentSelectors=t.ngContentSelectors??[],this.isBoundToModule=!!n}create(t,n,r,o,i,s){R(T.DynamicComponentStart);let a=g(null);try{let c=this.componentDef,u=Nv(c,o||this.ngModule,t),l=Av(u),d=l.tracingService;return d&&d.componentCreate?d.componentCreate(Uf(c),()=>this.createComponentRef(l,u,n,r,i,s)):this.createComponentRef(l,u,n,r,i,s)}finally{g(a)}}createComponentRef(t,n,r,o,i,s){let a=this.componentDef,c=Rv(o,a,s,i),u=t.rendererFactory.createRenderer(null,a),l=o?Sy(u,o,a.encapsulation,n):xv(a,u),d=s?.some(rd)||i?.some(h=>typeof h!="function"&&h.bindings.some(rd)),p=rc(null,c,null,512|cf(a),null,null,t,u,n,null,Ud(l,n,!0));p[F]=l,mo(p);let f=null;try{let h=yc(F,p,2,"#host",()=>c.directiveRegistry,!0,0);tf(u,l,h),an(l,p),lc(c,p,h),qa(c,h,p),vc(c,h),r!==void 0&&kv(h,this.ngContentSelectors,r),f=ue(h.index,p),p[B]=f[B],hc(c,p,null)}catch(h){throw f!==null&&da(f),da(p),h}finally{R(T.DynamicComponentEnd),yo()}return new zo(this.componentType,p,!!d)}};function Rv(e,t,n,r){let o=e?["ng-version","21.2.16"]:sy(t.selectors[0]),i=null,s=null,a=0;if(n)for(let l of n)a+=l[Sa].requiredVars,l.create&&(l.targetIdx=0,(i??=[]).push(l)),l.update&&(l.targetIdx=0,(s??=[]).push(l));if(r)for(let l=0;l<r.length;l++){let d=r[l];if(typeof d!="function")for(let p of d.bindings){a+=p[Sa].requiredVars;let f=l+1;p.create&&(p.targetIdx=f,(i??=[]).push(p)),p.update&&(p.targetIdx=f,(s??=[]).push(p))}}let c=[t];if(r)for(let l of r){let d=typeof l=="function"?l:l.type,p=vs(d);c.push(p)}return nc(0,null,Ov(i,s),1,a,c,null,null,null,[o],null)}function Ov(e,t){return!e&&!t?null:n=>{if(n&1&&e)for(let r of e)r.create();if(n&2&&t)for(let r of t)r.update()}}function rd(e){let t=e[Sa].kind;return t==="input"||t==="twoWay"}var zo=class extends Lf{_rootLView;_hasInputBindings;instance;hostView;changeDetectorRef;componentType;location;previousInputValues=null;_tNode;constructor(t,n,r){super(),this._rootLView=n,this._hasInputBindings=r,this._tNode=co(n[y],F),this.location=fn(this._tNode,n),this.instance=ue(this._tNode.index,n)[B],this.hostView=this.changeDetectorRef=new ot(n,void 0),this.componentType=t}setInput(t,n){this._hasInputBindings;let r=this._tNode;if(this.previousInputValues??=new Map,this.previousInputValues.has(t)&&Object.is(this.previousInputValues.get(t),n))return;let o=this._rootLView,i=pc(r,o[y],o,t,n);this.previousInputValues.set(t,n);let s=ue(r.index,o);gc(s,1)}get injector(){return new kt(this._tNode,this._rootLView)}destroy(){this.hostView.destroy()}onDestroy(t){this.hostView.onDestroy(t)}};function kv(e,t,n){let r=e.projection=[];for(let o=0;o<t.length;o++){let i=n[o];r.push(i!=null&&i.length?Array.from(i):null)}}var lr=(()=>{class e{static __NG_ELEMENT_ID__=Fv}return e})();function Fv(){let e=W();return Gf(e,v())}var Na=class e extends lr{_lContainer;_hostTNode;_hostLView;constructor(t,n,r){super(),this._lContainer=t,this._hostTNode=n,this._hostLView=r}get element(){return fn(this._hostTNode,this._hostLView)}get injector(){return new kt(this._hostTNode,this._hostLView)}get parentInjector(){let t=Ua(this._hostTNode,this._hostLView);if(Id(t)){let n=Lo(t,this._hostLView),r=Fo(t),o=n[y].data[r+8];return new kt(o,n)}else return new kt(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(t){let n=od(this._lContainer);return n!==null&&n[t]||null}get length(){return this._lContainer.length-P}createEmbeddedView(t,n,r){let o,i;typeof r=="number"?o=r:r!=null&&(o=r.index,i=r.injector);let s=Ho(this._lContainer,t.ssrId),a=t.createEmbeddedViewImpl(n||{},i,s);return this.insertImpl(a,o,cn(this._hostTNode,s)),a}createComponent(t,n,r,o,i,s,a){let c=t&&!Hg(t),u;if(c)u=n;else{let O=n||{};u=O.index,r=O.injector,o=O.projectableNodes,i=O.environmentInjector||O.ngModuleRef,s=O.directives,a=O.bindings}let l=c?t:new ln(Qe(t)),d=r||this.parentInjector;if(!i&&l.ngModule==null){let L=(c?d:this.parentInjector).get(re,null);L&&(i=L)}let p=Qe(l.componentType??{}),f=Ho(this._lContainer,p?.id??null),h=f?.firstChild??null,M=l.create(d,o,h,i,s,a);return this.insertImpl(M.hostView,u,cn(this._hostTNode,f)),M}insert(t,n){return this.insertImpl(t,n,!0)}insertImpl(t,n,r){let o=t._lView;if(ol(o)){let a=this.indexOf(t);if(a!==-1)this.detach(a);else{let c=o[U],u=new e(c,c[Q],c[U]);u.detach(u.indexOf(t))}}let i=this._adjustIndex(n),s=this._lContainer;return sr(s,o,i,r),t.attachToViewContainerRef(),Is(oa(s),i,t),t}move(t,n){return this.insert(t,n)}indexOf(t){let n=od(this._lContainer);return n!==null?n.indexOf(t):-1}remove(t){let n=this._adjustIndex(t,-1),r=Kn(this._lContainer,n);r&&(kn(oa(this._lContainer),n),ui(r[y],r))}detach(t){let n=this._adjustIndex(t,-1),r=Kn(this._lContainer,n);return r&&kn(oa(this._lContainer),n)!=null?new ot(r):null}_adjustIndex(t,n=0){return t??this.length+n}};function od(e){return e[jn]}function oa(e){return e[jn]||(e[jn]=[])}function Gf(e,t){let n,r=t[e.index];return ye(r)?n=r:(n=xf(r,t,null,e),t[e.index]=n,oc(t,n)),Pv(n,t,e,r),new Na(n,e,t)}function Lv(e,t){let n=e[k],r=n.createComment(""),o=ve(t,e),i=n.parentNode(o);return Vo(n,i,r,n.nextSibling(o),!1),r}var Pv=Vv,jv=()=>!1;function Bv(e,t,n){return jv(e,t,n)}function Vv(e,t,n,r){if(e[Xe])return;let o;n.type&8?o=ce(r):o=Lv(t,n),e[Xe]=o}var Aa=class e{queryList;matches=null;constructor(t){this.queryList=t}clone(){return new e(this.queryList)}setDirty(){this.queryList.setDirty()}},xa=class e{queries;constructor(t=[]){this.queries=t}createEmbeddedView(t){let n=t.queries;if(n!==null){let r=t.contentQueries!==null?t.contentQueries[0]:n.length,o=[];for(let i=0;i<r;i++){let s=n.getByIndex(i),a=this.queries[s.indexInDeclarationView];o.push(a.clone())}return new e(o)}return null}insertView(t){this.dirtyQueriesWithMatches(t)}detachView(t){this.dirtyQueriesWithMatches(t)}finishViewCreation(t){this.dirtyQueriesWithMatches(t)}dirtyQueriesWithMatches(t){for(let n=0;n<this.queries.length;n++)Ec(t,n).matches!==null&&this.queries[n].setDirty()}},Go=class{flags;read;predicate;constructor(t,n,r=null){this.flags=n,this.read=r,typeof t=="string"?this.predicate=Wv(t):this.predicate=t}},Ra=class e{queries;constructor(t=[]){this.queries=t}elementStart(t,n){for(let r=0;r<this.queries.length;r++)this.queries[r].elementStart(t,n)}elementEnd(t){for(let n=0;n<this.queries.length;n++)this.queries[n].elementEnd(t)}embeddedTView(t){let n=null;for(let r=0;r<this.length;r++){let o=n!==null?n.length:0,i=this.getByIndex(r).embeddedTView(t,o);i&&(i.indexInDeclarationView=r,n!==null?n.push(i):n=[i])}return n!==null?new e(n):null}template(t,n){for(let r=0;r<this.queries.length;r++)this.queries[r].template(t,n)}getByIndex(t){return this.queries[t]}get length(){return this.queries.length}track(t){this.queries.push(t)}},Oa=class e{metadata;matches=null;indexInDeclarationView=-1;crossesNgTemplate=!1;_declarationNodeIndex;_appliesToNextNode=!0;constructor(t,n=-1){this.metadata=t,this._declarationNodeIndex=n}elementStart(t,n){this.isApplyingToNode(n)&&this.matchTNode(t,n)}elementEnd(t){this._declarationNodeIndex===t.index&&(this._appliesToNextNode=!1)}template(t,n){this.elementStart(t,n)}embeddedTView(t,n){return this.isApplyingToNode(t)?(this.crossesNgTemplate=!0,this.addMatch(-t.index,n),new e(this.metadata)):null}isApplyingToNode(t){if(this._appliesToNextNode&&(this.metadata.flags&1)!==1){let n=this._declarationNodeIndex,r=t.parent;for(;r!==null&&r.type&8&&r.index!==n;)r=r.parent;return n===(r!==null?r.index:-1)}return this._appliesToNextNode}matchTNode(t,n){let r=this.metadata.predicate;if(Array.isArray(r))for(let o=0;o<r.length;o++){let i=r[o];this.matchTNodeWithReadOption(t,n,Hv(n,i)),this.matchTNodeWithReadOption(t,n,xo(n,t,i,!1,!1))}else r===un?n.type&4&&this.matchTNodeWithReadOption(t,n,-1):this.matchTNodeWithReadOption(t,n,xo(n,t,r,!1,!1))}matchTNodeWithReadOption(t,n,r){if(r!==null){let o=this.metadata.read;if(o!==null)if(o===pn||o===lr||o===un&&n.type&4)this.addMatch(n.index,-2);else{let i=xo(n,t,o,!1,!1);i!==null&&this.addMatch(n.index,i)}else this.addMatch(n.index,r)}}addMatch(t,n){this.matches===null?this.matches=[t,n]:this.matches.push(t,n)}};function Hv(e,t){let n=e.localNames;if(n!==null){for(let r=0;r<n.length;r+=2)if(n[r]===t)return n[r+1]}return null}function $v(e,t){return e.type&11?fn(e,t):e.type&4?mc(e,t):null}function Uv(e,t,n,r){return n===-1?$v(t,e):n===-2?zv(e,t,r):jo(e,e[y],n,t)}function zv(e,t,n){if(n===pn)return fn(t,e);if(n===un)return mc(t,e);if(n===lr)return Gf(t,e)}function Wf(e,t,n,r){let o=t[Te].queries[r];if(o.matches===null){let i=e.data,s=n.matches,a=[];for(let c=0;s!==null&&c<s.length;c+=2){let u=s[c];if(u<0)a.push(null);else{let l=i[u];a.push(Uv(t,l,s[c+1],n.metadata.read))}}o.matches=a}return o.matches}function ka(e,t,n,r){let o=e.queries.getByIndex(n),i=o.matches;if(i!==null){let s=Wf(e,t,o,n);for(let a=0;a<i.length;a+=2){let c=i[a];if(c>0)r.push(s[a/2]);else{let u=i[a+1],l=t[-c];for(let d=P;d<l.length;d++){let p=l[d];p[Ke]===p[U]&&ka(p[y],p,u,r)}if(l[Nt]!==null){let d=l[Nt];for(let p=0;p<d.length;p++){let f=d[p];ka(f[y],f,u,r)}}}}}return r}function Dc(e,t){return e[Te].queries[t].queryList}function qf(e,t,n){let r=new Bo((n&4)===4);return al(e,t,r,r.destroy),(t[Te]??=new xa).queries.push(new Aa(r))-1}function Zf(e,t,n){let r=V();return r.firstCreatePass&&(Yf(r,new Go(e,t,n),-1),(t&2)===2&&(r.staticViewQueries=!0)),qf(r,v(),t)}function Gv(e,t,n,r){let o=V();if(o.firstCreatePass){let i=W();Yf(o,new Go(t,n,r),i.index),qv(o,e),(n&2)===2&&(o.staticContentQueries=!0)}return qf(o,v(),n)}function Wv(e){return e.split(",").map(t=>t.trim())}function Yf(e,t,n){e.queries===null&&(e.queries=new Ra),e.queries.track(new Oa(t,n))}function qv(e,t){let n=e.contentQueries||(e.contentQueries=[]),r=n.length?n[n.length-1]:-1;t!==r&&n.push(e.queries.length-1,t)}function Ec(e,t){return e.queries.getByIndex(t)}function Qf(e,t){let n=e[y],r=Ec(n,t);return r.crossesNgTemplate?ka(n,e,t,[]):Wf(n,e,r,t)}function Kf(e,t,n){let r,o=En(()=>{r._dirtyCounter();let i=Yv(r,e);if(t&&i===void 0)throw new m(-951,!1);return i});return r=o[$],r._dirtyCounter=Io(0),r._flatValue=void 0,o}function Jf(e){return Kf(!0,!1,e)}function Xf(e){return Kf(!0,!0,e)}function Zv(e,t){let n=e[$];n._lView=v(),n._queryIndex=t,n._queryList=Dc(n._lView,t),n._queryList.onDirty(()=>n._dirtyCounter.update(r=>r+1))}function Yv(e,t){let n=e._lView,r=e._queryIndex;if(n===void 0||r===void 0||n[D]&4)return t?void 0:Fe;let o=Dc(n,r),i=Qf(n,r);return o.reset(i,Rd),t?o.first:o._changesDetected||e._flatValue===void 0?e._flatValue=o.toArray():e._flatValue}var Pt=class{},ep=class{};var Wo=class extends Pt{ngModuleType;_parent;_bootstrapComponents=[];_r3Injector;instance;destroyCbs=[];componentFactoryResolver=new Uo(this);constructor(t,n,r,o=!0){super(),this.ngModuleType=t,this._parent=n;let i=ys(t);this._bootstrapComponents=of(i.bootstrap),this._r3Injector=Qs(t,n,[{provide:Pt,useValue:this},{provide:ar,useValue:this.componentFactoryResolver},...r],Rn(t),new Set(["environment"])),o&&this.resolveInjectorInitializers()}resolveInjectorInitializers(){this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(this.ngModuleType)}get injector(){return this._r3Injector}destroy(){let t=this._r3Injector;!t.destroyed&&t.destroy(),this.destroyCbs.forEach(n=>n()),this.destroyCbs=null}onDestroy(t){this.destroyCbs.push(t)}},qo=class extends ep{moduleType;constructor(t){super(),this.moduleType=t}create(t){return new Wo(this.moduleType,t,[])}};var Xn=class extends Pt{injector;componentFactoryResolver=new Uo(this);instance=null;constructor(t){super();let n=new Et([...t.providers,{provide:Pt,useValue:this},{provide:ar,useValue:this.componentFactoryResolver}],t.parent||Pn(),t.debugName,new Set(["environment"]));this.injector=n,t.runEnvironmentInitializers&&n.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(t){this.injector.onDestroy(t)}};function tp(e,t,n=null){return new Xn({providers:e,parent:t,debugName:n,runEnvironmentInitializers:!0}).injector}var Qv=(()=>{class e{_injector;cachedInjectors=new Map;constructor(n){this._injector=n}getOrCreateStandaloneInjector(n){if(!n.standalone)return null;if(!this.cachedInjectors.has(n)){let r=bs(!1,n.type),o=r.length>0?tp([r],this._injector,""):null;this.cachedInjectors.set(n,o)}return this.cachedInjectors.get(n)}ngOnDestroy(){try{for(let n of this.cachedInjectors.values())n!==null&&n.destroy()}finally{this.cachedInjectors.clear()}}static \u0275prov=_({token:e,providedIn:"environment",factory:()=>new e(w(re))})}return e})();function Ic(e){return ei(()=>{let t=rp(e),n=H(j({},t),{decls:e.decls,vars:e.vars,template:e.template,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,onPush:e.changeDetection===Ga.OnPush,directiveDefs:null,pipeDefs:null,dependencies:t.standalone&&e.dependencies||null,getStandaloneInjector:t.standalone?o=>o.get(Qv).getOrCreateStandaloneInjector(n):null,getExternalStyles:null,signals:e.signals??!1,data:e.data||{},encapsulation:e.encapsulation||Ie.Emulated,styles:e.styles||Fe,_:null,schemas:e.schemas||null,tView:null,id:""});t.standalone&&Bt("NgStandalone"),op(n);let r=e.dependencies;return n.directiveDefs=id(r,Kv),n.pipeDefs=id(r,Vu),n.id=eD(n),n})}function Kv(e){return Qe(e)||vs(e)}function Jv(e,t){if(e==null)return bt;let n={};for(let r in e)if(e.hasOwnProperty(r)){let o=e[r],i,s,a,c;Array.isArray(o)?(a=o[0],i=o[1],s=o[2]??i,c=o[3]||null):(i=o,s=o,a=ci.None,c=null),n[i]=[r,a,c],t[i]=s}return n}function Xv(e){if(e==null)return bt;let t={};for(let n in e)e.hasOwnProperty(n)&&(t[e[n]]=n);return t}function np(e){return ei(()=>{let t=rp(e);return op(t),t})}function Cc(e){return{type:e.type,name:e.name,factory:null,pure:e.pure!==!1,standalone:e.standalone??!0,onDestroy:e.type.prototype.ngOnDestroy||null}}function rp(e){let t={};return{type:e.type,providersResolver:null,viewProvidersResolver:null,factory:null,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:t,inputConfig:e.inputs||bt,exportAs:e.exportAs||null,standalone:e.standalone??!0,signals:e.signals===!0,selectors:e.selectors||Fe,viewQuery:e.viewQuery||null,features:e.features||null,setInput:null,resolveHostDirectives:null,hostDirectives:null,controlDef:null,inputs:Jv(e.inputs,t),outputs:Xv(e.outputs),debugInfo:null}}function op(e){e.features?.forEach(t=>t(e))}function id(e,t){return e?()=>{let n=typeof e=="function"?e():e,r=[];for(let o of n){let i=t(o);i!==null&&r.push(i)}return r}:null}function eD(e){let t=0,n=typeof e.consts=="function"?"":e.consts,r=[e.selectors,e.ngContentSelectors,e.hostVars,e.hostAttrs,n,e.vars,e.decls,e.encapsulation,e.standalone,e.signals,e.exportAs,JSON.stringify(e.inputs),JSON.stringify(e.outputs),Object.getOwnPropertyNames(e.type.prototype),!!e.contentQueries,!!e.viewQuery];for(let i of r.join("|"))t=Math.imul(31,t)+i.charCodeAt(0)<<0;return t+=2147483648,"c"+t}function tD(e,t,n,r,o,i,s,a){if(n.firstCreatePass){e.mergedAttrs=ti(e.mergedAttrs,e.attrs);let l=e.tView=nc(2,e,o,i,s,n.directiveRegistry,n.pipeRegistry,null,n.schemas,n.consts,null);n.queries!==null&&(n.queries.template(n,e),l.queries=n.queries.embeddedTView(e))}a&&(e.flags|=a),Rt(e,!1);let c=nD(n,t,e,r);Eo()&&cc(n,t,c,e),an(c,t);let u=xf(c,t,c,e);t[r+F]=u,oc(t,u),Bv(u,e,t)}function er(e,t,n,r,o,i,s,a,c,u,l){let d=n+F,p;if(t.firstCreatePass){if(p=gn(t,d,4,s||null,a||null),u!=null){let f=Se(t.consts,u);p.localNames=[];for(let h=0;h<f.length;h+=2)p.localNames.push(f[h],-1)}}else p=t.data[d];return tD(p,e,t,n,r,o,i,c),u!=null&&di(e,p,l),p}var nD=rD;function rD(e,t,n,r){return Un(!0),t[k].createComment("")}var ip=(()=>{class e{log(n){console.log(n)}warn(n){console.warn(n)}static \u0275fac=function(r){return new(r||e)};static \u0275prov=_({token:e,factory:e.\u0275fac,providedIn:"platform"})}return e})();var wc=new b("");function pi(e){return!!e&&typeof e.then=="function"}function bc(e){return!!e&&typeof e.subscribe=="function"}var sp=new b("");var _c=(()=>{class e{resolve;reject;initialized=!1;done=!1;donePromise=new Promise((n,r)=>{this.resolve=n,this.reject=r});appInits=E(sp,{optional:!0})??[];injector=E(oe);constructor(){}runInitializers(){if(this.initialized)return;let n=[];for(let o of this.appInits){let i=io(this.injector,o);if(pi(i))n.push(i);else if(bc(i)){let s=new Promise((a,c)=>{i.subscribe({complete:a,error:c})});n.push(s)}}let r=()=>{this.done=!0,this.resolve()};Promise.all(n).then(()=>{r()}).catch(o=>{this.reject(o)}),n.length===0&&r(),this.initialized=!0}static \u0275fac=function(r){return new(r||e)};static \u0275prov=_({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),ap=new b("");function cp(){Li(()=>{let e="";throw new m(600,e)})}function up(e){return e.isBoundToModule}var oD=10;var dr=(()=>{class e{_runningTick=!1;_destroyed=!1;_destroyListeners=[];_views=[];internalErrorHandler=E(rt);afterRenderManager=E(df);zonelessEnabled=E(zn);rootEffectScheduler=E(bo);dirtyFlags=0;tracingSnapshot=null;allTestViews=new Set;autoDetectTestViews=new Set;includeAllTestViews=!1;afterTick=new pe;get allViews(){return[...(this.includeAllTestViews?this.allTestViews:this.autoDetectTestViews).keys(),...this._views]}get destroyed(){return this._destroyed}componentTypes=[];components=[];internalPendingTask=E(rn);get isStable(){return this.internalPendingTask.hasPendingTasksObservable.pipe(mt(n=>!n))}constructor(){E(hn,{optional:!0})}whenStable(){let n;return new Promise(r=>{n=this.isStable.subscribe({next:o=>{o&&r()}})}).finally(()=>{n.unsubscribe()})}_injector=E(re);_rendererFactory=null;get injector(){return this._injector}bootstrap(n,r){return this.bootstrapImpl(n,r)}bootstrapImpl(n,r,o=oe.NULL){return this._injector.get(ie).run(()=>{R(T.BootstrapComponentStart);let s=n instanceof fi;if(!this._injector.get(_c).done){let h="";throw new m(405,h)}let c;s?c=n:c=this._injector.get(ar).resolveComponentFactory(n),this.componentTypes.push(c.componentType);let u=up(c)?void 0:this._injector.get(Pt),l=r||c.selector,d=c.create(o,[],l,u),p=d.location.nativeElement,f=d.injector.get(wc,null);return f?.registerApplication(p),d.onDestroy(()=>{this.detachView(d.hostView),Zn(this.components,d),f?.unregisterApplication(p)}),this._loadComponent(d),R(T.BootstrapComponentEnd,d),d})}tick(){this.zonelessEnabled||(this.dirtyFlags|=1),this._tick()}_tick(){R(T.ChangeDetectionStart),this.tracingSnapshot!==null?this.tracingSnapshot.run(sc.CHANGE_DETECTION,this.tickImpl):this.tickImpl()}tickImpl=()=>{if(this._runningTick)throw R(T.ChangeDetectionEnd),new m(101,!1);let n=g(null);try{this._runningTick=!0,this.synchronize()}finally{this._runningTick=!1,this.tracingSnapshot?.dispose(),this.tracingSnapshot=null,g(n),this.afterTick.next(),R(T.ChangeDetectionEnd)}};synchronize(){this._rendererFactory===null&&!this._injector.destroyed&&(this._rendererFactory=this._injector.get(Lt,null,{optional:!0}));let n=0;for(;this.dirtyFlags!==0&&n++<oD;){R(T.ChangeDetectionSyncStart);try{this.synchronizeOnce()}finally{R(T.ChangeDetectionSyncEnd)}}}synchronizeOnce(){this.dirtyFlags&16&&(this.dirtyFlags&=-17,this.rootEffectScheduler.flush());let n=!1;if(this.dirtyFlags&7){let r=!!(this.dirtyFlags&1);this.dirtyFlags&=-8,this.dirtyFlags|=8;for(let{_lView:o}of this.allViews){if(!r&&!Hn(o))continue;let i=r&&!this.zonelessEnabled?0:1;Tf(o,i),n=!0}if(this.dirtyFlags&=-5,this.syncDirtyFlagsWithViews(),this.dirtyFlags&23)return}n||(this._rendererFactory?.begin?.(),this._rendererFactory?.end?.()),this.dirtyFlags&8&&(this.dirtyFlags&=-9,this.afterRenderManager.execute()),this.syncDirtyFlagsWithViews()}syncDirtyFlagsWithViews(){if(this.allViews.some(({_lView:n})=>Hn(n))){this.dirtyFlags|=2;return}else this.dirtyFlags&=-8}attachView(n){let r=n;this._views.push(r),r.attachToAppRef(this)}detachView(n){let r=n;Zn(this._views,r),r.detachFromAppRef()}_loadComponent(n){this.attachView(n.hostView);try{this.tick()}catch(o){this.internalErrorHandler(o)}this.components.push(n),this._injector.get(ap,[]).forEach(o=>o(n))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(n=>n()),this._views.slice().forEach(n=>n.destroy())}finally{this._destroyed=!0,this._views=[],this._destroyListeners=[]}}onDestroy(n){return this._destroyListeners.push(n),()=>Zn(this._destroyListeners,n)}destroy(){if(this._destroyed)throw new m(406,!1);let n=this._injector;n.destroy&&!n.destroyed&&n.destroy()}get viewCount(){return this._views.length}static \u0275fac=function(r){return new(r||e)};static \u0275prov=_({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();function Zn(e,t){let n=e.indexOf(t);n>-1&&e.splice(n,1)}function hi(e,t,n,r){let o=v(),i=Ot();if(Ce(o,i,t)){let s=V(),a=vo();Py(a,o,e,t,n,r)}return hi}var Fa=class{destroy(t){}updateValue(t,n){}swap(t,n){let r=Math.min(t,n),o=Math.max(t,n),i=this.detach(o);if(o-r>1){let s=this.detach(r);this.attach(r,i),this.attach(o,s)}else this.attach(r,i)}move(t,n){this.attach(n,this.detach(t))}};function ia(e,t,n,r,o){return e===n&&Object.is(t,r)?1:Object.is(o(e,t),o(n,r))?-1:0}function iD(e,t,n,r){let o,i,s=0,a=e.length-1,c=void 0;if(Array.isArray(t)){g(r);let u=t.length-1;for(g(null);s<=a&&s<=u;){let l=e.at(s),d=t[s],p=ia(s,l,s,d,n);if(p!==0){p<0&&e.updateValue(s,d),s++;continue}let f=e.at(a),h=t[u],M=ia(a,f,u,h,n);if(M!==0){M<0&&e.updateValue(a,h),a--,u--;continue}let O=n(s,l),L=n(a,f),ne=n(s,d);if(Object.is(ne,L)){let $t=n(u,h);Object.is($t,O)?(e.swap(s,a),e.updateValue(a,h),u--,a--):e.move(a,s),e.updateValue(s,d),s++;continue}if(o??=new Zo,i??=ad(e,s,a,n),La(e,o,s,ne))e.updateValue(s,d),s++,a++;else if(i.has(ne))o.set(O,e.detach(s)),a--;else{let $t=e.create(s,t[s]);e.attach(s,$t),s++,a++}}for(;s<=u;)sd(e,o,n,s,t[s]),s++}else if(t!=null){g(r);let u=t[Symbol.iterator]();g(null);let l=u.next();for(;!l.done&&s<=a;){let d=e.at(s),p=l.value,f=ia(s,d,s,p,n);if(f!==0)f<0&&e.updateValue(s,p),s++,l=u.next();else{o??=new Zo,i??=ad(e,s,a,n);let h=n(s,p);if(La(e,o,s,h))e.updateValue(s,p),s++,a++,l=u.next();else if(!i.has(h))e.attach(s,e.create(s,p)),s++,a++,l=u.next();else{let M=n(s,d);o.set(M,e.detach(s)),a--}}}for(;!l.done;)sd(e,o,n,e.length,l.value),l=u.next()}for(;s<=a;)e.destroy(e.detach(a--));o?.forEach(u=>{e.destroy(u)})}function La(e,t,n,r){return t!==void 0&&t.has(r)?(e.attach(n,t.get(r)),t.delete(r),!0):!1}function sd(e,t,n,r,o){if(La(e,t,r,n(r,o)))e.updateValue(r,o);else{let i=e.create(r,o);e.attach(r,i)}}function ad(e,t,n,r){let o=new Set;for(let i=t;i<=n;i++)o.add(r(i,e.at(i)));return o}var Zo=class{kvMap=new Map;_vMap=void 0;has(t){return this.kvMap.has(t)}delete(t){if(!this.has(t))return!1;let n=this.kvMap.get(t);return this._vMap!==void 0&&this._vMap.has(n)?(this.kvMap.set(t,this._vMap.get(n)),this._vMap.delete(n)):this.kvMap.delete(t),!0}get(t){return this.kvMap.get(t)}set(t,n){if(this.kvMap.has(t)){let r=this.kvMap.get(t);this._vMap===void 0&&(this._vMap=new Map);let o=this._vMap;for(;o.has(r);)r=o.get(r);o.set(r,n)}else this.kvMap.set(t,n)}forEach(t){for(let[n,r]of this.kvMap)if(t(r,n),this._vMap!==void 0){let o=this._vMap;for(;o.has(r);)r=o.get(r),t(r,n)}}};function sD(e,t,n,r,o,i,s,a){Bt("NgControlFlow");let c=v(),u=V(),l=Se(u.consts,i);return er(c,u,e,t,n,r,o,l,256,s,a),Mc}function Mc(e,t,n,r,o,i,s,a){Bt("NgControlFlow");let c=v(),u=V(),l=Se(u.consts,i);return er(c,u,e,t,n,r,o,l,512,s,a),Mc}function aD(e,t){Bt("NgControlFlow");let n=v(),r=Ot(),o=n[r]!==J?n[r]:-1,i=o!==-1?Yo(n,F+o):void 0,s=0;if(Ce(n,r,e)){let a=g(null);try{if(i!==void 0&&Of(i,s),e!==-1){let c=F+e,u=Yo(n,c),l=Va(n[y],c),d=Ff(u,l,n),p=ir(n,l,t,{dehydratedView:d});sr(u,p,s,cn(l,d))}}finally{g(a)}}else if(i!==void 0){let a=Rf(i,s);a!==void 0&&(a[B]=t)}}var Pa=class{lContainer;$implicit;$index;constructor(t,n,r){this.lContainer=t,this.$implicit=n,this.$index=r}get $count(){return this.lContainer.length-P}};function cD(e){return e}function uD(e,t){return t}var ja=class{hasEmptyBlock;trackByFn;liveCollection;constructor(t,n,r){this.hasEmptyBlock=t,this.trackByFn=n,this.liveCollection=r}};function lD(e,t,n,r,o,i,s,a,c,u,l,d,p){Bt("NgControlFlow");let f=v(),h=V(),M=c!==void 0,O=v(),L=a?s.bind(O[K][B]):s,ne=new ja(M,L);O[F+e]=ne,er(f,h,e+1,t,n,r,o,Se(h.consts,i),256),M&&er(f,h,e+2,c,u,l,d,Se(h.consts,p),512)}var Ba=class extends Fa{lContainer;hostLView;templateTNode;operationsCounter=void 0;needsIndexUpdate=!1;constructor(t,n,r){super(),this.lContainer=t,this.hostLView=n,this.templateTNode=r}get length(){return this.lContainer.length-P}at(t){return this.getLView(t)[B].$implicit}attach(t,n){let r=n[Mt];this.needsIndexUpdate||=t!==this.length,sr(this.lContainer,n,t,cn(this.templateTNode,r)),fD(this.lContainer,t)}detach(t){return this.needsIndexUpdate||=t!==this.length-1,pD(this.lContainer,t),hD(this.lContainer,t)}create(t,n){let r=Ho(this.lContainer,this.templateTNode.tView.ssrId);return ir(this.hostLView,this.templateTNode,new Pa(this.lContainer,n,t),{dehydratedView:r})}destroy(t){ui(t[y],t)}updateValue(t,n){this.getLView(t)[B].$implicit=n}reset(){this.needsIndexUpdate=!1}updateIndexes(){if(this.needsIndexUpdate)for(let t=0;t<this.length;t++)this.getLView(t)[B].$index=t}getLView(t){return gD(this.lContainer,t)}};function dD(e){let t=g(null),n=De();try{let r=v(),o=r[y],i=r[n],s=n+1,a=Yo(r,s);if(i.liveCollection===void 0){let u=Va(o,s);i.liveCollection=new Ba(a,r,u)}else i.liveCollection.reset();let c=i.liveCollection;if(iD(c,e,i.trackByFn,t),c.updateIndexes(),i.hasEmptyBlock){let u=Ot(),l=c.length===0;if(Ce(r,u,l)){let d=n+2,p=Yo(r,d);if(l){let f=Va(o,d),h=Ff(p,f,r),M=ir(r,f,void 0,{dehydratedView:h});sr(p,M,0,cn(f,h))}else o.firstUpdatePass&&av(p),Of(p,0)}}}finally{g(t)}}function Yo(e,t){return e[t]}function fD(e,t){if(e.length<=P)return;let n=P+t,r=e[n],o=r?r[Je]:void 0;if(r&&o&&o.detachedLeaveAnimationFns&&o.detachedLeaveAnimationFns.length>0){let i=r[Le];hy(i,o),Ft.delete(r[Pe]),o.detachedLeaveAnimationFns=void 0}}function pD(e,t){if(e.length<=P)return;let n=P+t,r=e[n],o=r?r[Je]:void 0;o&&o.leave&&o.leave.size>0&&(o.detachedLeaveAnimationFns=[])}function hD(e,t){return Kn(e,t)}function gD(e,t){return Rf(e,t)}function Va(e,t){return co(e,t)}function lp(e,t,n){let r=v(),o=Ot();if(Ce(r,o,t)){let i=V(),s=vo();Ry(s,r,e,t,r[k],n)}return lp}function cd(e,t,n,r,o){pc(t,e,n,o?"class":"style",r)}function Qo(e,t,n,r){let o=v(),i=o[y],s=e+F,a=i.firstCreatePass?yc(s,o,2,t,If,js(),n,r):i.data[s];if(Be(a)){let c=o[me].tracingService;if(c&&c.componentCreate){let u=i.data[a.directiveStart+a.componentOffset];return c.componentCreate(Uf(u),()=>(ud(e,t,o,a,r),Qo))}}return ud(e,t,o,a,r),Qo}function ud(e,t,n,r,o){if(dc(r,n,e,t,fp),Bn(r)){let i=n[y];lc(i,n,r),qa(i,r,n)}o!=null&&di(n,r)}function Tc(){let e=V(),t=W(),n=fc(t);return e.firstCreatePass&&vc(e,n),Vs(n)&&Hs(),Ps(),n.classesWithoutHost!=null&&Zg(n)&&cd(e,n,v(),n.classesWithoutHost,!0),n.stylesWithoutHost!=null&&Yg(n)&&cd(e,n,v(),n.stylesWithoutHost,!1),Tc}function dp(e,t,n,r){return Qo(e,t,n,r),Tc(),dp}function Sc(e,t,n,r){let o=v(),i=o[y],s=e+F,a=i.firstCreatePass?Cv(s,i,2,t,n,r):i.data[s];return dc(a,o,e,t,fp),r!=null&&di(o,a),Sc}function Nc(){let e=W(),t=fc(e);return Vs(t)&&Hs(),Ps(),Nc}function gi(e,t,n,r){return Sc(e,t,n,r),Nc(),gi}var fp=(e,t,n,r,o)=>(Un(!0),Jd(t[k],r,Ys()));function pp(e,t,n){let r=v(),o=r[y],i=e+F,s=o.firstCreatePass?yc(i,r,8,"ng-container",If,js(),t,n):o.data[i];if(dc(s,r,e,"ng-container",mD),Bn(s)){let a=r[y];lc(a,r,s),qa(a,s,r)}return n!=null&&di(r,s),pp}function hp(){let e=V(),t=W(),n=fc(t);return e.firstCreatePass&&vc(e,n),hp}var mD=(e,t,n,r,o)=>(Un(!0),Hm(t[k],""));function yD(){return v()}function mi(e,t,n){let r=v(),o=Ot();if(Ce(r,o,t)){let i=V(),s=vo();Ef(s,r,e,t,r[k],n)}return mi}var Gn=void 0;function vD(e){let t=Math.floor(Math.abs(e)),n=e.toString().replace(/^[^.]*\.?/,"").length;return t===1&&n===0?1:5}var DD=["en",[["a","p"],["AM","PM"]],[["AM","PM"]],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],Gn,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],Gn,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm\u202Fa","h:mm:ss\u202Fa","h:mm:ss\u202Fa z","h:mm:ss\u202Fa zzzz"],["{1}, {0}",Gn,Gn,Gn],[".",",",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","\xA4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",vD],sa=Object.create(null);function yi(e){let t=ED(e),n=ld(t);if(n)return n;let r=t.split("-")[0];if(n=ld(r),n)return n;if(r==="en")return DD;throw new m(701,!1)}function ld(e){return e in sa||(sa[e]=se.ng&&se.ng.common&&se.ng.common.locales&&se.ng.common.locales[e]),sa[e]}var Vt=(function(e){return e[e.LocaleId=0]="LocaleId",e[e.DayPeriodsFormat=1]="DayPeriodsFormat",e[e.DayPeriodsStandalone=2]="DayPeriodsStandalone",e[e.DaysFormat=3]="DaysFormat",e[e.DaysStandalone=4]="DaysStandalone",e[e.MonthsFormat=5]="MonthsFormat",e[e.MonthsStandalone=6]="MonthsStandalone",e[e.Eras=7]="Eras",e[e.FirstDayOfWeek=8]="FirstDayOfWeek",e[e.WeekendRange=9]="WeekendRange",e[e.DateFormat=10]="DateFormat",e[e.TimeFormat=11]="TimeFormat",e[e.DateTimeFormat=12]="DateTimeFormat",e[e.NumberSymbols=13]="NumberSymbols",e[e.NumberFormats=14]="NumberFormats",e[e.CurrencyCode=15]="CurrencyCode",e[e.CurrencySymbol=16]="CurrencySymbol",e[e.CurrencyName=17]="CurrencyName",e[e.Currencies=18]="Currencies",e[e.Directionality=19]="Directionality",e[e.PluralCase=20]="PluralCase",e[e.ExtraData=21]="ExtraData",e})(Vt||{});function ED(e){return e.toLowerCase().replace(/_/g,"-")}var fr="en-US";var ID=fr;function gp(e){typeof e=="string"&&(ID=e.toLowerCase().replace(/_/g,"-"))}function mp(e,t,n){let r=v(),o=V(),i=W();return CD(o,r,r[k],i,e,t,n),mp}function yp(e,t,n){let r=v(),o=V(),i=W();return(i.type&3||n)&&Hf(i,o,r,n,r[k],e,t,Oo(i,r,t)),yp}function CD(e,t,n,r,o,i,s){let a=!0,c=null;if((r.type&3||s)&&(c??=Oo(r,t,i),Hf(r,e,t,s,n,o,i,c)&&(a=!1)),a){let u=r.outputs?.[o],l=r.hostDirectiveOutputs?.[o];if(l&&l.length)for(let d=0;d<l.length;d+=2){let p=l[d],f=l[d+1];c??=Oo(r,t,i),nd(r,t,p,f,o,c)}if(u&&u.length)for(let d of u)c??=Oo(r,t,i),nd(r,t,d,o,o,c)}}function wD(e=1){return Cl(e)}function bD(e,t){let n=null,r=ey(e);for(let o=0;o<t.length;o++){let i=t[o];if(i==="*"){n=o;continue}if(r===null?af(e,i,!0):ry(r,i))return o}return n}function _D(e){let t=v()[K][Q];if(!t.projection){let n=e?e.length:1,r=t.projection=Wu(n,null),o=r.slice(),i=t.child;for(;i!==null;){if(i.type!==128){let s=e?bD(i,e):0;s!==null&&(o[s]?o[s].projectionNext=i:r[s]=i,o[s]=i)}i=i.next}}}function MD(e,t=0,n,r,o,i){let s=v(),a=V(),c=r?e+1:null;c!==null&&er(s,a,c,r,o,i,null,n);let u=gn(a,F+e,16,null,n||null);u.projection===null&&(u.projection=t),zs();let d=!s[Mt]||Bs();s[K][Q].projection[u.projection]===null&&c!==null?TD(s,a,c):d&&!ii(u)&&_y(a,s,u)}function TD(e,t,n){let r=F+n,o=t.data[r],i=e[r],s=Ho(i,o.tView.ssrId),a=ir(e,o,void 0,{dehydratedView:s});sr(i,a,0,cn(o,s))}function vp(e,t,n,r){return Gv(e,t,n,r),vp}function Dp(e,t,n){return Zf(e,t,n),Dp}function SD(e){let t=v(),n=V(),r=go();$n(r+1);let o=Ec(n,r);if(e.dirty&&rl(t)===((o.metadata.flags&2)===2)){if(o.matches===null)e.reset([]);else{let i=Qf(t,r);e.reset(i,Rd),e.notifyOnChanges()}return!0}return!1}function ND(){return Dc(v(),go())}function Ep(e,t,n,r){return Zv(e,Zf(t,n,r)),Ep}function AD(e=1){$n(go()+e)}function So(e,t){return e<<17|t<<2}function jt(e){return e>>17&32767}function xD(e){return(e&2)==2}function RD(e,t){return e&131071|t<<17}function Ha(e){return e|2}function dn(e){return(e&131068)>>2}function aa(e,t){return e&-131069|t<<2}function OD(e){return(e&1)===1}function $a(e){return e|1}function kD(e,t,n,r,o,i){let s=i?t.classBindings:t.styleBindings,a=jt(s),c=dn(s);e[r]=n;let u=!1,l;if(Array.isArray(n)){let d=n;l=d[1],(l===null||Jt(d,l)>0)&&(u=!0)}else l=n;if(o)if(c!==0){let p=jt(e[a+1]);e[r+1]=So(p,a),p!==0&&(e[p+1]=aa(e[p+1],r)),e[a+1]=RD(e[a+1],r)}else e[r+1]=So(a,0),a!==0&&(e[a+1]=aa(e[a+1],r)),a=r;else e[r+1]=So(c,0),a===0?a=r:e[c+1]=aa(e[c+1],r),c=r;u&&(e[r+1]=Ha(e[r+1])),dd(e,l,r,!0),dd(e,l,r,!1),FD(t,l,e,r,i),s=So(a,c),i?t.classBindings=s:t.styleBindings=s}function FD(e,t,n,r,o){let i=o?e.residualClasses:e.residualStyles;i!=null&&typeof t=="string"&&Jt(i,t)>=0&&(n[r+1]=$a(n[r+1]))}function dd(e,t,n,r){let o=e[n+1],i=t===null,s=r?jt(o):dn(o),a=!1;for(;s!==0&&(a===!1||i);){let c=e[s],u=e[s+1];LD(c,t)&&(a=!0,e[s+1]=r?$a(u):Ha(u)),s=r?jt(u):dn(u)}a&&(e[n+1]=r?Ha(o):$a(o))}function LD(e,t){return e===null||t==null||(Array.isArray(e)?e[1]:e)===t?!0:Array.isArray(e)&&typeof t=="string"?Jt(e,t)>=0:!1}function Ip(e,t,n){return wp(e,t,n,!1),Ip}function Cp(e,t){return wp(e,t,null,!0),Cp}function wp(e,t,n,r){let o=v(),i=V(),s=po(2);if(i.firstUpdatePass&&jD(i,e,s,r),t!==J&&Ce(o,s,t)){let a=i.data[De()];UD(i,a,o,o[k],e,o[s+1]=zD(t,n),r,s)}}function PD(e,t){return t>=e.expandoStartIndex}function jD(e,t,n,r){let o=e.data;if(o[n+1]===null){let i=o[De()],s=PD(e,n);GD(i,r)&&t===null&&!s&&(t=!1),t=BD(o,i,t,r),kD(o,i,t,n,s,r)}}function BD(e,t,n,r){let o=vl(e),i=r?t.residualClasses:t.residualStyles;if(o===null)(r?t.classBindings:t.styleBindings)===0&&(n=ca(null,e,t,n,r),n=tr(n,t.attrs,r),i=null);else{let s=t.directiveStylingLast;if(s===-1||e[s]!==o)if(n=ca(o,e,t,n,r),i===null){let c=VD(e,t,r);c!==void 0&&Array.isArray(c)&&(c=ca(null,e,t,c[1],r),c=tr(c,t.attrs,r),HD(e,t,r,c))}else i=$D(e,t,r)}return i!==void 0&&(r?t.residualClasses=i:t.residualStyles=i),n}function VD(e,t,n){let r=n?t.classBindings:t.styleBindings;if(dn(r)!==0)return e[jt(r)]}function HD(e,t,n,r){let o=n?t.classBindings:t.styleBindings;e[jt(o)]=r}function $D(e,t,n){let r,o=t.directiveEnd;for(let i=1+t.directiveStylingLast;i<o;i++){let s=e[i].hostAttrs;r=tr(r,s,n)}return tr(r,t.attrs,n)}function ca(e,t,n,r,o){let i=null,s=n.directiveEnd,a=n.directiveStylingLast;for(a===-1?a=n.directiveStart:a++;a<s&&(i=t[a],r=tr(r,i.hostAttrs,o),i!==e);)a++;return e!==null&&(n.directiveStylingLast=a),r}function tr(e,t,n){let r=n?1:2,o=-1;if(t!==null)for(let i=0;i<t.length;i++){let s=t[i];typeof s=="number"?o=s:o===r&&(Array.isArray(e)||(e=e===void 0?[]:["",e]),Zu(e,s,n?!0:t[++i]))}return e===void 0?null:e}function UD(e,t,n,r,o,i,s,a){if(!(t.type&3))return;let c=e.data,u=c[a+1],l=OD(u)?fd(c,t,n,o,dn(u),s):void 0;if(!Ko(l)){Ko(i)||xD(u)&&(i=fd(c,null,n,o,a,s));let d=xs(De(),n);Ty(r,s,d,o,i)}}function fd(e,t,n,r,o,i){let s=t===null,a;for(;o>0;){let c=e[o],u=Array.isArray(c),l=u?c[1]:c,d=l===null,p=n[o+1];p===J&&(p=d?Fe:void 0);let f=d?oo(p,r):l===r?p:void 0;if(u&&!Ko(f)&&(f=oo(c,r)),Ko(f)&&(a=f,s))return a;let h=e[o+1];o=s?jt(h):dn(h)}if(t!==null){let c=i?t.residualClasses:t.residualStyles;c!=null&&(a=oo(c,r))}return a}function Ko(e){return e!==void 0}function zD(e,t){return e==null||e===""||(typeof t=="string"?e=e+t:typeof e=="object"&&(e=Rn(we(e)))),e}function GD(e,t){return(e.flags&(t?8:16))!==0}function WD(e,t=""){let n=v(),r=V(),o=e+F,i=r.firstCreatePass?gn(r,o,1,t,null):r.data[o],s=qD(r,n,i,t);n[o]=s,Eo()&&cc(r,n,s,i),Rt(i,!1)}var qD=(e,t,n,r)=>(Un(!0),Bm(t[k],r));function ZD(e,t,n,r=""){return Ce(e,Ot(),n)?t+Me(n)+r:J}function YD(e,t,n,r,o,i=""){let s=Ws(),a=Jn(e,s,n,o);return po(2),a?t+Me(n)+r+Me(o)+i:J}function QD(e,t,n,r,o,i,s,a=""){let c=Ws(),u=Vf(e,c,n,o,s);return po(3),u?t+Me(n)+r+Me(o)+i+Me(s)+a:J}function bp(e){return Ac("",e),bp}function Ac(e,t,n){let r=v(),o=ZD(r,e,t,n);return o!==J&&xc(r,De(),o),Ac}function _p(e,t,n,r,o){let i=v(),s=YD(i,e,t,n,r,o);return s!==J&&xc(i,De(),s),_p}function Mp(e,t,n,r,o,i,s){let a=v(),c=QD(a,e,t,n,r,o,i,s);return c!==J&&xc(a,De(),c),Mp}function xc(e,t,n){let r=xs(t,e);Vm(e[k],r,n)}var Tp={};function Sp(e){Bt("NgLet");let t=V(),n=v(),r=e+F,o=gn(t,r,128,null,null);return Rt(o,!1),Vn(t,n,r,Tp),Sp}function KD(e){let t=V(),n=v(),r=De();return Vn(t,n,r,e),e}function JD(e){let t=pl(),n=uo(t,F+e);if(n===Tp)throw new m(314,!1);return n}function XD(e,t){let n=et()+e,r=v();return r[n]===J?ur(r,n,t()):wv(r,n)}function eE(e,t,n){return Np(v(),et(),e,t,n)}function tE(e,t,n,r){return Ap(v(),et(),e,t,n,r)}function nE(e,t,n,r,o){return oE(v(),et(),e,t,n,r,o)}function rE(e,t,n,r,o,i,s){return iE(v(),et(),e,t,n,r,o,i)}function vi(e,t){let n=e[t];return n===J?void 0:n}function Np(e,t,n,r,o,i){let s=t+n;return Ce(e,s,o)?ur(e,s+1,i?r.call(i,o):r(o)):vi(e,s+1)}function Ap(e,t,n,r,o,i,s){let a=t+n;return Jn(e,a,o,i)?ur(e,a+2,s?r.call(s,o,i):r(o,i)):vi(e,a+2)}function oE(e,t,n,r,o,i,s,a){let c=t+n;return Vf(e,c,o,i,s)?ur(e,c+3,a?r.call(a,o,i,s):r(o,i,s)):vi(e,c+3)}function iE(e,t,n,r,o,i,s,a,c){let u=t+n;return bv(e,u,o,i,s,a)?ur(e,u+4,c?r.call(c,o,i,s,a):r(o,i,s,a)):vi(e,u+4)}function sE(e,t){let n=V(),r,o=e+F;n.firstCreatePass?(r=aE(t,n.pipeRegistry),n.data[o]=r,r.onDestroy&&(n.destroyHooks??=[]).push(o,r.onDestroy)):r=n.data[o];let i=r.factory||(r.factory=qe(r.type,!0)),s,a=Y(cr);try{let c=Po(!1),u=i();return Po(c),Vn(n,v(),o,u),u}finally{Y(a)}}function aE(e,t){if(t)for(let n=t.length-1;n>=0;n--){let r=t[n];if(e===r.name)return r}}function cE(e,t,n){let r=e+F,o=v(),i=uo(o,r);return xp(o,r)?Np(o,et(),t,i.transform,n,i):i.transform(n)}function uE(e,t,n,r){let o=e+F,i=v(),s=uo(i,o);return xp(i,o)?Ap(i,et(),t,s.transform,n,r,s):s.transform(n,r)}function xp(e,t){return e[y].data[t].pure}var Jo=class{ngModuleFactory;componentFactories;constructor(t,n){this.ngModuleFactory=t,this.componentFactories=n}},lE=(()=>{class e{compileModuleSync(n){return new qo(n)}compileModuleAsync(n){return Promise.resolve(this.compileModuleSync(n))}compileModuleAndAllComponentsSync(n){let r=this.compileModuleSync(n),o=ys(n),i=of(o.declarations).reduce((s,a)=>{let c=Qe(a);return c&&s.push(new ln(c)),s},[]);return new Jo(r,i)}compileModuleAndAllComponentsAsync(n){return Promise.resolve(this.compileModuleAndAllComponentsSync(n))}clearCache(){}clearCacheFor(n){}getModuleId(n){}static \u0275fac=function(r){return new(r||e)};static \u0275prov=_({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var Rp=(()=>{class e{applicationErrorHandler=E(rt);appRef=E(dr);taskService=E(rn);ngZone=E(ie);zonelessEnabled=E(zn);tracing=E(hn,{optional:!0});zoneIsDefined=typeof Zone<"u"&&!!Zone.root.run;schedulerTickApplyArgs=[{data:{__scheduler_tick__:!0}}];subscriptions=new Z;angularZoneId=this.zoneIsDefined?this.ngZone._inner?.get(An):null;scheduleInRootZone=!this.zonelessEnabled&&this.zoneIsDefined&&(E(ea,{optional:!0})??!1);cancelScheduledCallback=null;useMicrotaskScheduler=!1;runningTick=!1;pendingRenderTaskId=null;constructor(){this.subscriptions.add(this.appRef.afterTick.subscribe(()=>{let n=this.taskService.add();if(!this.runningTick&&(this.cleanup(),!this.zonelessEnabled||this.appRef.includeAllTestViews)){this.taskService.remove(n);return}this.switchToMicrotaskScheduler(),this.taskService.remove(n)})),this.subscriptions.add(this.ngZone.onUnstable.subscribe(()=>{this.runningTick||this.cleanup()}))}switchToMicrotaskScheduler(){this.ngZone.runOutsideAngular(()=>{let n=this.taskService.add();this.useMicrotaskScheduler=!0,queueMicrotask(()=>{this.useMicrotaskScheduler=!1,this.taskService.remove(n)})})}notify(n){if(!this.zonelessEnabled&&n===5)return;switch(n){case 0:{this.appRef.dirtyFlags|=2;break}case 3:case 2:case 4:case 5:case 1:{this.appRef.dirtyFlags|=4;break}case 6:{this.appRef.dirtyFlags|=2;break}case 12:{this.appRef.dirtyFlags|=16;break}case 13:{this.appRef.dirtyFlags|=2;break}case 11:break;default:this.appRef.dirtyFlags|=8}if(this.appRef.tracingSnapshot=this.tracing?.snapshot(this.appRef.tracingSnapshot)??null,!this.shouldScheduleTick())return;let r=this.useMicrotaskScheduler?Tl:Ks;this.pendingRenderTaskId=this.taskService.add(),this.scheduleInRootZone?this.cancelScheduledCallback=Zone.root.run(()=>r(()=>this.tick())):this.cancelScheduledCallback=this.ngZone.runOutsideAngular(()=>r(()=>this.tick()))}shouldScheduleTick(){return!(this.appRef.destroyed||this.pendingRenderTaskId!==null||this.runningTick||this.appRef._runningTick||!this.zonelessEnabled&&this.zoneIsDefined&&Zone.current.get(An+this.angularZoneId))}tick(){if(this.runningTick||this.appRef.destroyed)return;if(this.appRef.dirtyFlags===0){this.cleanup();return}!this.zonelessEnabled&&this.appRef.dirtyFlags&7&&(this.appRef.dirtyFlags|=1);let n=this.taskService.add();try{this.ngZone.run(()=>{this.runningTick=!0,this.appRef._tick()},void 0,this.schedulerTickApplyArgs)}catch(r){this.applicationErrorHandler(r)}finally{this.taskService.remove(n),this.cleanup()}}ngOnDestroy(){this.subscriptions.unsubscribe(),this.cleanup()}cleanup(){if(this.runningTick=!1,this.cancelScheduledCallback?.(),this.cancelScheduledCallback=null,this.pendingRenderTaskId!==null){let n=this.pendingRenderTaskId;this.pendingRenderTaskId=null,this.taskService.remove(n)}}static \u0275fac=function(r){return new(r||e)};static \u0275prov=_({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();function Op(){return[{provide:It,useExisting:Rp},{provide:ie,useClass:xn},{provide:zn,useValue:!0}]}function dE(){return typeof $localize<"u"&&$localize.locale||fr}var pr=new b("",{factory:()=>E(pr,{optional:!0,skipSelf:!0})||dE()});var Di=class{destroyed=!1;listeners=null;errorHandler=E(he,{optional:!0});destroyRef=E(nt);constructor(){this.destroyRef.onDestroy(()=>{this.destroyed=!0,this.listeners=null})}subscribe(t){if(this.destroyed)throw new m(953,!1);return(this.listeners??=[]).push(t),{unsubscribe:()=>{let n=this.listeners?.indexOf(t);n!==void 0&&n!==-1&&this.listeners?.splice(n,1)}}}emit(t){if(this.destroyed){console.warn(Ct(953,!1));return}if(this.listeners===null)return;let n=g(null);try{for(let r of this.listeners)try{r(t)}catch(o){this.errorHandler?.handleError(o)}}finally{g(n)}}};function Fp(e){return Fu(e)}function Rc(e,t){return En(e,t?.equal)}var fE=e=>e;function pE(e,t){if(typeof e=="function"){let n=Ki(e,fE,t?.equal);return kp(n,t?.debugName)}else{let n=Ki(e.source,e.computation,e.equal);return kp(n,e.debugName)}}function kp(e,t){let n=e[$],r=e;return r.set=o=>Ou(n,o),r.update=o=>ku(n,o),r.asReadonly=Co.bind(e),r}var Bp=Symbol("InputSignalNode#UNSET"),TE=H(j({},_r),{transformFn:void 0,applyValueToInputSignal(e,t){ft(e,t)}});function Vp(e,t){let n=Object.create(TE);n.value=e,n.transformFn=t?.transform;function r(){if(ct(n),n.value===Bp){let o=null;throw new m(-950,o)}return n.value}return r[$]=n,r}var Lp=class{attributeName;constructor(t){this.attributeName=t}__NG_ELEMENT_ID__=()=>za(this.attributeName);toString(){return`HostAttributeToken ${this.attributeName}`}};function g1(e){return new Di}function Pp(e,t){return Vp(e,t)}function SE(e){return Vp(Bp,e)}var Ii=(Pp.required=SE,Pp);function jp(e,t){return Jf(t)}function NE(e,t){return Xf(t)}var m1=(jp.required=NE,jp);var Oc=new b(""),AE=new b("");function hr(e){return!e.moduleRef}function xE(e){let t=hr(e)?e.r3Injector:e.moduleRef.injector,n=t.get(ie);return n.run(()=>{hr(e)?e.r3Injector.resolveInjectorInitializers():e.moduleRef.resolveInjectorInitializers();let r=t.get(rt),o;if(n.runOutsideAngular(()=>{o=n.onError.subscribe({next:r})}),hr(e)){let i=()=>t.destroy(),s=e.platformInjector.get(Oc);s.add(i),t.onDestroy(()=>{o.unsubscribe(),s.delete(i)})}else{let i=()=>e.moduleRef.destroy(),s=e.platformInjector.get(Oc);s.add(i),e.moduleRef.onDestroy(()=>{Zn(e.allPlatformModules,e.moduleRef),o.unsubscribe(),s.delete(i)})}return OE(r,n,()=>{let i=t.get(rn),s=i.add(),a=t.get(_c);return a.runInitializers(),a.donePromise.then(()=>{let c=t.get(pr,fr);if(gp(c||fr),!t.get(AE,!0))return hr(e)?t.get(dr):(e.allPlatformModules.push(e.moduleRef),e.moduleRef);if(hr(e)){let l=t.get(dr);return e.rootComponent!==void 0&&l.bootstrap(e.rootComponent),l}else return RE?.(e.moduleRef,e.allPlatformModules),e.moduleRef}).finally(()=>{i.remove(s)})})})}var RE;function OE(e,t,n){try{let r=n();return pi(r)?r.catch(o=>{throw t.runOutsideAngular(()=>e(o)),o}):r}catch(r){throw t.runOutsideAngular(()=>e(r)),r}}var Ei=null;function kE(e=[],t){return oe.create({name:t,providers:[{provide:Ln,useValue:"platform"},{provide:Oc,useValue:new Set([()=>Ei=null])},...e]})}function FE(e=[]){if(Ei)return Ei;let t=kE(e);return Ei=t,cp(),LE(t),t}function LE(e){let t=e.get(ri,null);io(e,()=>{t?.forEach(n=>n())})}var PE=1e4;var y1=PE-1e3;var jE=(()=>{class e{static __NG_ELEMENT_ID__=BE}return e})();function BE(e){return VE(W(),v(),(e&16)===16)}function VE(e,t,n){if(Be(e)&&!n){let r=ue(e.index,t);return new ot(r,r)}else if(e.type&175){let r=t[K];return new ot(r,t)}return null}function Hp(e){let{rootComponent:t,appProviders:n,platformProviders:r,platformRef:o}=e;R(T.BootstrapApplicationStart);try{let i=o?.injector??FE(r),s=[Op(),Nl,...n||[]],a=new Xn({providers:s,parent:i,debugName:"",runEnvironmentInitializers:!1});return xE({r3Injector:a.injector,platformInjector:i,rootComponent:t})}catch(i){return Promise.reject(i)}finally{R(T.BootstrapApplicationEnd)}}function v1(e){return typeof e=="boolean"?e:e!=null&&e!=="false"}var $p=null;function $e(){return $p}function Fc(e){$p??=e}var gr=class{},Ci=(()=>{class e{historyGo(n){throw new Error("")}static \u0275fac=function(r){return new(r||e)};static \u0275prov=_({token:e,factory:()=>E(Up),providedIn:"platform"})}return e})();var Up=(()=>{class e extends Ci{_location;_history;_doc=E(z);constructor(){super(),this._location=window.location,this._history=window.history}getBaseHrefFromDOM(){return $e().getBaseHref(this._doc)}onPopState(n){let r=$e().getGlobalEventTarget(this._doc,"window");return r.addEventListener("popstate",n,!1),()=>r.removeEventListener("popstate",n)}onHashChange(n){let r=$e().getGlobalEventTarget(this._doc,"window");return r.addEventListener("hashchange",n,!1),()=>r.removeEventListener("hashchange",n)}get href(){return this._location.href}get protocol(){return this._location.protocol}get hostname(){return this._location.hostname}get port(){return this._location.port}get pathname(){return this._location.pathname}get search(){return this._location.search}get hash(){return this._location.hash}set pathname(n){this._location.pathname=n}pushState(n,r,o){this._history.pushState(n,r,o)}replaceState(n,r,o){this._history.replaceState(n,r,o)}forward(){this._history.forward()}back(){this._history.back()}historyGo(n=0){this._history.go(n)}getState(){return this._history.state}static \u0275fac=function(r){return new(r||e)};static \u0275prov=_({token:e,factory:()=>new e,providedIn:"platform"})}return e})();function Wp(e,t){return e?t?e.endsWith("/")?t.startsWith("/")?e+t.slice(1):e+t:t.startsWith("/")?e+t:`${e}/${t}`:e:t}function zp(e){let t=e.search(/#|\?|$/);return e[t-1]==="/"?e.slice(0,t-1)+e.slice(t):e}function it(e){return e&&e[0]!=="?"?`?${e}`:e}var wi=(()=>{class e{historyGo(n){throw new Error("")}static \u0275fac=function(r){return new(r||e)};static \u0275prov=_({token:e,factory:()=>E($E),providedIn:"root"})}return e})(),HE=new b(""),$E=(()=>{class e extends wi{_platformLocation;_baseHref;_removeListenerFns=[];constructor(n,r){super(),this._platformLocation=n,this._baseHref=r??this._platformLocation.getBaseHrefFromDOM()??E(z).location?.origin??""}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(n){this._removeListenerFns.push(this._platformLocation.onPopState(n),this._platformLocation.onHashChange(n))}getBaseHref(){return this._baseHref}prepareExternalUrl(n){return Wp(this._baseHref,n)}path(n=!1){let r=this._platformLocation.pathname+it(this._platformLocation.search),o=this._platformLocation.hash;return o&&n?`${r}${o}`:r}pushState(n,r,o,i){let s=this.prepareExternalUrl(o+it(i));this._platformLocation.pushState(n,r,s)}replaceState(n,r,o,i){let s=this.prepareExternalUrl(o+it(i));this._platformLocation.replaceState(n,r,s)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(n=0){this._platformLocation.historyGo?.(n)}static \u0275fac=function(r){return new(r||e)(w(Ci),w(HE,8))};static \u0275prov=_({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var qp=(()=>{class e{_subject=new pe;_basePath;_locationStrategy;_urlChangeListeners=[];_urlChangeSubscription=null;constructor(n){this._locationStrategy=n;let r=this._locationStrategy.getBaseHref();this._basePath=GE(zp(Gp(r))),this._locationStrategy.onPopState(o=>{this._subject.next({url:this.path(!0),pop:!0,state:o.state,type:o.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(n=!1){return this.normalize(this._locationStrategy.path(n))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(n,r=""){return this.path()==this.normalize(n+it(r))}normalize(n){return e.stripTrailingSlash(zE(this._basePath,Gp(n)))}prepareExternalUrl(n){return n&&n[0]!=="/"&&(n="/"+n),this._locationStrategy.prepareExternalUrl(n)}go(n,r="",o=null){this._locationStrategy.pushState(o,"",n,r),this._notifyUrlChangeListeners(this.prepareExternalUrl(n+it(r)),o)}replaceState(n,r="",o=null){this._locationStrategy.replaceState(o,"",n,r),this._notifyUrlChangeListeners(this.prepareExternalUrl(n+it(r)),o)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(n=0){this._locationStrategy.historyGo?.(n)}onUrlChange(n){return this._urlChangeListeners.push(n),this._urlChangeSubscription??=this.subscribe(r=>{this._notifyUrlChangeListeners(r.url,r.state)}),()=>{let r=this._urlChangeListeners.indexOf(n);this._urlChangeListeners.splice(r,1),this._urlChangeListeners.length===0&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(n="",r){this._urlChangeListeners.forEach(o=>o(n,r))}subscribe(n,r,o){return this._subject.subscribe({next:n,error:r??void 0,complete:o??void 0})}static normalizeQueryParams=it;static joinWithSlash=Wp;static stripTrailingSlash=zp;static \u0275fac=function(r){return new(r||e)(w(wi))};static \u0275prov=_({token:e,factory:()=>UE(),providedIn:"root"})}return e})();function UE(){return new qp(w(wi))}function zE(e,t){if(!e||!t.startsWith(e))return t;let n=t.substring(e.length);return n===""||["/",";","?","#"].includes(n[0])?n:t}function Gp(e){return e.replace(/\/index\.html$/,"")}function GE(e){if(new RegExp("^(https?:)?//").test(e)){let[,n]=e.split(/\/\/[^\/]+/);return n}return e}var jc=(function(e){return e[e.Decimal=0]="Decimal",e[e.Percent=1]="Percent",e[e.Currency=2]="Currency",e[e.Scientific=3]="Scientific",e})(jc||{});var Re={Decimal:0,Group:1,List:2,PercentSign:3,PlusSign:4,MinusSign:5,Exponential:6,SuperscriptingExponent:7,PerMille:8,Infinity:9,NaN:10,TimeSeparator:11,CurrencyDecimal:12,CurrencyGroup:13};function mn(e,t){let n=yi(e),r=n[Vt.NumberSymbols][t];if(typeof r>"u"){if(t===Re.CurrencyDecimal)return n[Vt.NumberSymbols][Re.Decimal];if(t===Re.CurrencyGroup)return n[Vt.NumberSymbols][Re.Group]}return r}function Yp(e,t){return yi(e)[Vt.NumberFormats][t]}var WE=/^(\d+)?\.((\d+)(-(\d+))?)?$/,Zp=22,bi=".",mr="0",qE=";",ZE=",",Lc="#";function YE(e,t,n,r,o,i,s=!1){let a="",c=!1;if(!isFinite(e))a=mn(n,Re.Infinity);else{let u=JE(e);s&&(u=KE(u));let l=t.minInt,d=t.minFrac,p=t.maxFrac;if(i){let ne=i.match(WE);if(ne===null)throw new m(2306,!1);let $t=ne[1],Ai=ne[3],Zc=ne[5];$t!=null&&(l=Pc($t)),Ai!=null&&(d=Pc(Ai)),Zc!=null?p=Pc(Zc):Ai!=null&&d>p&&(p=d);let xi=100;if(l>xi||d>xi||p>xi)throw new m(2306,!1)}XE(u,d,p);let f=u.digits,h=u.integerLen,M=u.exponent,O=[];for(c=f.every(ne=>!ne);h<l;h++)f.unshift(0);for(;h<0;h++)f.unshift(0);h>0?O=f.splice(h,f.length):(O=f,f=[0]);let L=[];for(f.length>=t.lgSize&&L.unshift(f.splice(-t.lgSize,f.length).join(""));f.length>t.gSize;)L.unshift(f.splice(-t.gSize,f.length).join(""));f.length&&L.unshift(f.join("")),a=L.join(mn(n,r)),O.length&&(a+=mn(n,o)+O.join("")),M&&(a+=mn(n,Re.Exponential)+"+"+M)}return e<0&&!c?a=t.negPre+a+t.negSuf:a=t.posPre+a+t.posSuf,a}function Qp(e,t,n){let r=Yp(t,jc.Decimal),o=QE(r,mn(t,Re.MinusSign));return YE(e,o,t,Re.Group,Re.Decimal,n)}function QE(e,t="-"){let n={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},r=e.split(qE),o=r[0],i=r[1],s=o.indexOf(bi)!==-1?o.split(bi):[o.substring(0,o.lastIndexOf(mr)+1),o.substring(o.lastIndexOf(mr)+1)],a=s[0],c=s[1]||"";n.posPre=a.substring(0,a.indexOf(Lc));for(let l=0;l<c.length;l++){let d=c.charAt(l);d===mr?n.minFrac=n.maxFrac=l+1:d===Lc?n.maxFrac=l+1:n.posSuf+=d}let u=a.split(ZE);if(n.gSize=u[1]?u[1].length:0,n.lgSize=u[2]||u[1]?(u[2]||u[1]).length:0,i){let l=o.length-n.posPre.length-n.posSuf.length,d=i.indexOf(Lc);n.negPre=i.substring(0,d).replace(/'/g,""),n.negSuf=i.slice(d+l).replace(/'/g,"")}else n.negPre=t+n.posPre,n.negSuf=n.posSuf;return n}function KE(e){if(e.digits[0]===0)return e;let t=e.digits.length-e.integerLen;return e.exponent?e.exponent+=2:(t===0?e.digits.push(0,0):t===1&&e.digits.push(0),e.integerLen+=2),e}function JE(e){let t=Math.abs(e)+"",n=0,r,o,i,s,a;for((o=t.indexOf(bi))>-1&&(t=t.replace(bi,"")),(i=t.search(/e/i))>0?(o<0&&(o=i),o+=+t.slice(i+1),t=t.substring(0,i)):o<0&&(o=t.length),i=0;t.charAt(i)===mr;i++);if(i===(a=t.length))r=[0],o=1;else{for(a--;t.charAt(a)===mr;)a--;for(o-=i,r=[],s=0;i<=a;i++,s++)r[s]=Number(t.charAt(i))}return o>Zp&&(r=r.splice(0,Zp-1),n=o-1,o=1),{digits:r,exponent:n,integerLen:o}}function XE(e,t,n){if(t>n)throw new m(2307,!1);let r=e.digits,o=r.length-e.integerLen,i=Math.min(Math.max(t,o),n),s=i+e.integerLen,a=r[s];if(s>0){r.splice(Math.max(e.integerLen,s));for(let d=s;d<r.length;d++)r[d]=0}else{o=Math.max(0,o),e.integerLen=1,r.length=Math.max(1,s=i+1),r[0]=0;for(let d=1;d<s;d++)r[d]=0}if(a>=5)if(s-1<0){for(let d=0;d>s;d--)r.unshift(0),e.integerLen++;r.unshift(1),e.integerLen++}else r[s-1]++;for(;o<Math.max(0,i);o++)r.push(0);let c=i!==0,u=t+e.integerLen,l=r.reduceRight(function(d,p,f,h){return p=p+d,h[f]=p<10?p:p-10,c&&(h[f]===0&&f>=u?h.pop():c=!1),p>=10?1:0},0);l&&(r.unshift(l),e.integerLen++)}function Pc(e){let t=parseInt(e);if(isNaN(t))throw new m(2305,!1);return t}function eI(e,t){return new m(2100,!1)}var tI=(()=>{class e{_locale;constructor(n){this._locale=n}transform(n,r,o){if(!nI(n))return null;o||=this._locale;try{let i=rI(n);return Qp(i,o,r)}catch(i){throw eI(e,i.message)}}static \u0275fac=function(r){return new(r||e)(cr(pr,16))};static \u0275pipe=Cc({name:"number",type:e,pure:!0})}return e})();function nI(e){return!(e==null||e===""||e!==e)}function rI(e){if(typeof e=="string"&&!isNaN(Number(e)-parseFloat(e)))return Number(e);if(typeof e!="number")throw new m(2309,!1);return e}function Bc(e,t){t=encodeURIComponent(t);for(let n of e.split(";")){let r=n.indexOf("="),[o,i]=r==-1?[n,""]:[n.slice(0,r),n.slice(r+1)];if(o.trim()===t)return decodeURIComponent(i)}return null}var yr=class{};var Kp="browser";var vr=class{_doc;constructor(t){this._doc=t}manager},_i=(()=>{class e extends vr{constructor(n){super(n)}supports(n){return!0}addEventListener(n,r,o,i){return n.addEventListener(r,o,i),()=>this.removeEventListener(n,r,o,i)}removeEventListener(n,r,o,i){return n.removeEventListener(r,o,i)}static \u0275fac=function(r){return new(r||e)(w(z))};static \u0275prov=_({token:e,factory:e.\u0275fac})}return e})(),Si=new b(""),Uc=(()=>{class e{_zone;_plugins;_eventNameToPlugin=new Map;constructor(n,r){this._zone=r,n.forEach(s=>{s.manager=this});let o=n.filter(s=>!(s instanceof _i));this._plugins=o.slice().reverse();let i=n.find(s=>s instanceof _i);i&&this._plugins.push(i)}addEventListener(n,r,o,i){return this._findPluginFor(r).addEventListener(n,r,o,i)}getZone(){return this._zone}_findPluginFor(n){let r=this._eventNameToPlugin.get(n);if(r)return r;if(r=this._plugins.find(i=>i.supports(n)),!r)throw new m(5101,!1);return this._eventNameToPlugin.set(n,r),r}static \u0275fac=function(r){return new(r||e)(w(Si),w(ie))};static \u0275prov=_({token:e,factory:e.\u0275fac})}return e})(),Vc="ng-app-id";function Jp(e){for(let t of e)t.remove()}function Xp(e,t){let n=t.createElement("style");return n.textContent=e,n}function sI(e,t,n,r){let o=e.head?.querySelectorAll(`style[${Vc}="${t}"],link[${Vc}="${t}"]`);if(o)for(let i of o)i.removeAttribute(Vc),i instanceof HTMLLinkElement?r.set(i.href.slice(i.href.lastIndexOf("/")+1),{usage:0,elements:[i]}):i.textContent&&n.set(i.textContent,{usage:0,elements:[i]})}function $c(e,t){let n=t.createElement("link");return n.setAttribute("rel","stylesheet"),n.setAttribute("href",e),n}var zc=(()=>{class e{doc;appId;nonce;inline=new Map;external=new Map;hosts=new Set;constructor(n,r,o,i={}){this.doc=n,this.appId=r,this.nonce=o,sI(n,r,this.inline,this.external),this.hosts.add(n.head)}addStyles(n,r){for(let o of n)this.addUsage(o,this.inline,Xp);r?.forEach(o=>this.addUsage(o,this.external,$c))}removeStyles(n,r){for(let o of n)this.removeUsage(o,this.inline);r?.forEach(o=>this.removeUsage(o,this.external))}addUsage(n,r,o){let i=r.get(n);i?i.usage++:r.set(n,{usage:1,elements:[...this.hosts].map(s=>this.addElement(s,o(n,this.doc)))})}removeUsage(n,r){let o=r.get(n);o&&(o.usage--,o.usage<=0&&(Jp(o.elements),r.delete(n)))}ngOnDestroy(){for(let[,{elements:n}]of[...this.inline,...this.external])Jp(n);this.hosts.clear()}addHost(n){this.hosts.add(n);for(let[r,{elements:o}]of this.inline)o.push(this.addElement(n,Xp(r,this.doc)));for(let[r,{elements:o}]of this.external)o.push(this.addElement(n,$c(r,this.doc)))}removeHost(n){this.hosts.delete(n)}addElement(n,r){return this.nonce&&r.setAttribute("nonce",this.nonce),n.appendChild(r)}static \u0275fac=function(r){return new(r||e)(w(z),w(ni),w(oi,8),w(nr))};static \u0275prov=_({token:e,factory:e.\u0275fac})}return e})(),Hc={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/",math:"http://www.w3.org/1998/Math/MathML"},Gc=/%COMP%/g;var th="%COMP%",aI=`_nghost-${th}`,cI=`_ngcontent-${th}`,uI=!0,lI=new b("",{factory:()=>uI});function dI(e){return cI.replace(Gc,e)}function fI(e){return aI.replace(Gc,e)}function nh(e,t){return t.map(n=>n.replace(Gc,e))}var Wc=(()=>{class e{eventManager;sharedStylesHost;appId;removeStylesOnCompDestroy;doc;ngZone;nonce;tracingService;rendererByCompId=new Map;defaultRenderer;constructor(n,r,o,i,s,a,c=null,u=null){this.eventManager=n,this.sharedStylesHost=r,this.appId=o,this.removeStylesOnCompDestroy=i,this.doc=s,this.ngZone=a,this.nonce=c,this.tracingService=u,this.defaultRenderer=new Dr(n,s,a,this.tracingService)}createRenderer(n,r){if(!n||!r)return this.defaultRenderer;let o=this.getOrCreateRenderer(n,r);return o instanceof Ti?o.applyToHost(n):o instanceof Er&&o.applyStyles(),o}getOrCreateRenderer(n,r){let o=this.rendererByCompId,i=o.get(r.id);if(!i){let s=this.doc,a=this.ngZone,c=this.eventManager,u=this.sharedStylesHost,l=this.removeStylesOnCompDestroy,d=this.tracingService;switch(r.encapsulation){case Ie.Emulated:i=new Ti(c,u,r,this.appId,l,s,a,d);break;case Ie.ShadowDom:return new Mi(c,n,r,s,a,this.nonce,d,u);case Ie.ExperimentalIsolatedShadowDom:return new Mi(c,n,r,s,a,this.nonce,d);default:i=new Er(c,u,r,l,s,a,d);break}o.set(r.id,i)}return i}ngOnDestroy(){this.rendererByCompId.clear()}componentReplaced(n){this.rendererByCompId.delete(n)}static \u0275fac=function(r){return new(r||e)(w(Uc),w(zc),w(ni),w(lI),w(z),w(ie),w(oi),w(hn,8))};static \u0275prov=_({token:e,factory:e.\u0275fac})}return e})(),Dr=class{eventManager;doc;ngZone;tracingService;data=Object.create(null);throwOnSyntheticProps=!0;constructor(t,n,r,o){this.eventManager=t,this.doc=n,this.ngZone=r,this.tracingService=o}destroy(){}destroyNode=null;createElement(t,n){return n?this.doc.createElementNS(Hc[n]||n,t):this.doc.createElement(t)}createComment(t){return this.doc.createComment(t)}createText(t){return this.doc.createTextNode(t)}appendChild(t,n){(eh(t)?t.content:t).appendChild(n)}insertBefore(t,n,r){t&&(eh(t)?t.content:t).insertBefore(n,r)}removeChild(t,n){n.remove()}selectRootElement(t,n){let r=typeof t=="string"?this.doc.querySelector(t):t;if(!r)throw new m(-5104,!1);return n||(r.textContent=""),r}parentNode(t){return t.parentNode}nextSibling(t){return t.nextSibling}setAttribute(t,n,r,o){if(o){n=o+":"+n;let i=Hc[o];i?t.setAttributeNS(i,n,r):t.setAttribute(n,r)}else t.setAttribute(n,r)}removeAttribute(t,n,r){if(r){let o=Hc[r];o?t.removeAttributeNS(o,n):t.removeAttribute(`${r}:${n}`)}else t.removeAttribute(n)}addClass(t,n){t.classList.add(n)}removeClass(t,n){t.classList.remove(n)}setStyle(t,n,r,o){o&(Ae.DashCase|Ae.Important)?t.style.setProperty(n,r,o&Ae.Important?"important":""):t.style[n]=r}removeStyle(t,n,r){r&Ae.DashCase?t.style.removeProperty(n):t.style[n]=""}setProperty(t,n,r){t!=null&&(t[n]=r)}setValue(t,n){t.nodeValue=n}listen(t,n,r,o){if(typeof t=="string"&&(t=$e().getGlobalEventTarget(this.doc,t),!t))throw new m(5102,!1);let i=this.decoratePreventDefault(r);return this.tracingService?.wrapEventListener&&(i=this.tracingService.wrapEventListener(t,n,i)),this.eventManager.addEventListener(t,n,i,o)}decoratePreventDefault(t){return n=>{if(n==="__ngUnwrap__")return t;t(n)===!1&&n.preventDefault()}}};function eh(e){return e.tagName==="TEMPLATE"&&e.content!==void 0}var Mi=class extends Dr{hostEl;sharedStylesHost;shadowRoot;constructor(t,n,r,o,i,s,a,c){super(t,o,i,a),this.hostEl=n,this.sharedStylesHost=c,this.shadowRoot=n.attachShadow({mode:"open"}),this.sharedStylesHost&&this.sharedStylesHost.addHost(this.shadowRoot);let u=r.styles;u=nh(r.id,u);for(let d of u){let p=document.createElement("style");s&&p.setAttribute("nonce",s),p.textContent=d,this.shadowRoot.appendChild(p)}let l=r.getExternalStyles?.();if(l)for(let d of l){let p=$c(d,o);s&&p.setAttribute("nonce",s),this.shadowRoot.appendChild(p)}}nodeOrShadowRoot(t){return t===this.hostEl?this.shadowRoot:t}appendChild(t,n){return super.appendChild(this.nodeOrShadowRoot(t),n)}insertBefore(t,n,r){return super.insertBefore(this.nodeOrShadowRoot(t),n,r)}removeChild(t,n){return super.removeChild(null,n)}parentNode(t){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(t)))}destroy(){this.sharedStylesHost&&this.sharedStylesHost.removeHost(this.shadowRoot)}},Er=class extends Dr{sharedStylesHost;removeStylesOnCompDestroy;styles;styleUrls;constructor(t,n,r,o,i,s,a,c){super(t,i,s,a),this.sharedStylesHost=n,this.removeStylesOnCompDestroy=o;let u=r.styles;this.styles=c?nh(c,u):u,this.styleUrls=r.getExternalStyles?.(c)}applyStyles(){this.sharedStylesHost.addStyles(this.styles,this.styleUrls)}destroy(){this.removeStylesOnCompDestroy&&Ft.size===0&&this.sharedStylesHost.removeStyles(this.styles,this.styleUrls)}},Ti=class extends Er{contentAttr;hostAttr;constructor(t,n,r,o,i,s,a,c){let u=o+"-"+r.id;super(t,n,r,i,s,a,c,u),this.contentAttr=dI(u),this.hostAttr=fI(u)}applyToHost(t){this.applyStyles(),this.setAttribute(t,this.hostAttr,"")}createElement(t,n){let r=super.createElement(t,n);return super.setAttribute(r,this.contentAttr,""),r}};var Ni=class e extends gr{supportsDOMEvents=!0;static makeCurrent(){Fc(new e)}onAndCancel(t,n,r,o){return t.addEventListener(n,r,o),()=>{t.removeEventListener(n,r,o)}}dispatchEvent(t,n){t.dispatchEvent(n)}remove(t){t.remove()}createElement(t,n){return n=n||this.getDefaultDocument(),n.createElement(t)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(t){return t.nodeType===Node.ELEMENT_NODE}isShadowRoot(t){return t instanceof DocumentFragment}getGlobalEventTarget(t,n){return n==="window"?window:n==="document"?t:n==="body"?t.body:null}getBaseHref(t){let n=pI();return n==null?null:hI(n)}resetBaseElement(){Ir=null}getUserAgent(){return window.navigator.userAgent}getCookie(t){return Bc(document.cookie,t)}},Ir=null;function pI(){return Ir=Ir||document.head.querySelector("base"),Ir?Ir.getAttribute("href"):null}function hI(e){return new URL(e,document.baseURI).pathname}var gI=(()=>{class e{build(){return new XMLHttpRequest}static \u0275fac=function(r){return new(r||e)};static \u0275prov=_({token:e,factory:e.\u0275fac})}return e})(),rh=["alt","control","meta","shift"],mI={"\b":"Backspace"," ":"Tab","\x7F":"Delete","\x1B":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},yI={alt:e=>e.altKey,control:e=>e.ctrlKey,meta:e=>e.metaKey,shift:e=>e.shiftKey},oh=(()=>{class e extends vr{constructor(n){super(n)}supports(n){return e.parseEventName(n)!=null}addEventListener(n,r,o,i){let s=e.parseEventName(r),a=e.eventCallback(s.fullKey,o,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>$e().onAndCancel(n,s.domEventName,a,i))}static parseEventName(n){let r=n.toLowerCase().split("."),o=r.shift();if(r.length===0||!(o==="keydown"||o==="keyup"))return null;let i=e._normalizeKey(r.pop()),s="",a=r.indexOf("code");if(a>-1&&(r.splice(a,1),s="code."),rh.forEach(u=>{let l=r.indexOf(u);l>-1&&(r.splice(l,1),s+=u+".")}),s+=i,r.length!=0||i.length===0)return null;let c={};return c.domEventName=o,c.fullKey=s,c}static matchEventFullKeyCode(n,r){let o=mI[n.key]||n.key,i="";return r.indexOf("code.")>-1&&(o=n.code,i="code."),o==null||!o?!1:(o=o.toLowerCase(),o===" "?o="space":o==="."&&(o="dot"),rh.forEach(s=>{if(s!==o){let a=yI[s];a(n)&&(i+=s+".")}}),i+=o,i===r)}static eventCallback(n,r,o){return i=>{e.matchEventFullKeyCode(i,n)&&o.runGuarded(()=>r(i))}}static _normalizeKey(n){return n==="esc"?"escape":n}static \u0275fac=function(r){return new(r||e)(w(z))};static \u0275prov=_({token:e,factory:e.\u0275fac})}return e})();async function vI(e,t,n){let r=j({rootComponent:e},DI(t,n));return Hp(r)}function DI(e,t){return{platformRef:t?.platformRef,appProviders:[...bI,...e?.providers??[]],platformProviders:wI}}function EI(){Ni.makeCurrent()}function II(){return new he}function CI(){return Wa(document),document}var wI=[{provide:nr,useValue:Kp},{provide:ri,useValue:EI,multi:!0},{provide:z,useFactory:CI}];var bI=[{provide:Ln,useValue:"root"},{provide:he,useFactory:II},{provide:Si,useClass:_i,multi:!0},{provide:Si,useClass:oh,multi:!0},Wc,zc,Uc,{provide:Lt,useExisting:Wc},{provide:yr,useClass:gI},[]];var Vk=(()=>{class e{_doc;constructor(n){this._doc=n}getTitle(){return this._doc.title}setTitle(n){this._doc.title=n||""}static \u0275fac=function(r){return new(r||e)(w(z))};static \u0275prov=_({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var qc=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275prov=_({token:e,factory:function(r){let o=null;return r?o=new(r||e):o=w(_I),o},providedIn:"root"})}return e})(),_I=(()=>{class e extends qc{_doc;constructor(n){super(),this._doc=n}sanitize(n,r){if(r==null)return null;switch(n){case le.NONE:return r;case le.HTML:return xe(r,"HTML")?we(r):ai(this._doc,String(r)).toString();case le.STYLE:return xe(r,"Style")?we(r):r;case le.SCRIPT:if(xe(r,"Script"))return we(r);throw new m(5200,!1);case le.URL:return xe(r,"URL")?we(r):rr(String(r));case le.RESOURCE_URL:if(xe(r,"ResourceURL"))return we(r);throw new m(5201,!1);default:throw new m(5202,!1)}}bypassSecurityTrustHtml(n){return Za(n)}bypassSecurityTrustStyle(n){return Ya(n)}bypassSecurityTrustScript(n){return Qa(n)}bypassSecurityTrustUrl(n){return Ka(n)}bypassSecurityTrustResourceUrl(n){return Ja(n)}static \u0275fac=function(r){return new(r||e)(w(z))};static \u0275prov=_({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var MI={dashboard:'<rect x="3" y="3" width="7" height="9"/><rect x="14" y="3" width="7" height="5"/><rect x="14" y="12" width="7" height="9"/><rect x="3" y="16" width="7" height="5"/>',graph:'<circle cx="5" cy="6" r="2.5"/><circle cx="19" cy="6" r="2.5"/><circle cx="12" cy="18" r="2.5"/><path d="M7 7.5 10.5 16M16.5 7.5 13.5 16M7 6h10"/>',book:'<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/>',drift:'<path d="M10.3 3.9 1.8 18a2 2 0 0 0 1.7 3h16.9a2 2 0 0 0 1.7-3L13.7 3.9a2 2 0 0 0-3.4 0z"/><path d="M12 9v4M12 17h.01"/>',workflow:'<rect x="3" y="3" width="6" height="6" rx="1"/><rect x="15" y="15" width="6" height="6" rx="1"/><path d="M6 9v3a3 3 0 0 0 3 3h6"/>',play:'<polygon points="6 3 20 12 6 21 6 3"/>',wrench:'<path d="M14.7 6.3a4 4 0 0 0-5.4 5.3L3 18v3h3l6.4-6.3a4 4 0 0 0 5.3-5.4l-2.9 2.9-2.1-2.1z"/>',database:'<ellipse cx="12" cy="5" rx="8" ry="3"/><path d="M4 5v6c0 1.7 3.6 3 8 3s8-1.3 8-3V5"/><path d="M4 11v6c0 1.7 3.6 3 8 3s8-1.3 8-3v-6"/>',bot:'<rect x="4" y="8" width="16" height="12" rx="2"/><path d="M12 4v4M9 14h.01M15 14h.01M2 13h2M20 13h2"/>',folder:'<path d="M20 10V7a2 2 0 0 0-2-2h-6l-2-2H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h7"/><path d="M12 10v11M16 14l-4-4-4 4M21 19h-6"/>',chat:'<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/>',sessions:'<path d="M3 3v18h18"/><path d="M7 14l3-4 3 3 4-6"/>',heatmap:'<rect x="3" y="3" width="7" height="7" rx="1"/><rect x="14" y="3" width="7" height="7" rx="1"/><rect x="3" y="14" width="7" height="7" rx="1"/><rect x="14" y="14" width="7" height="7" rx="1"/>',dollar:'<line x1="12" y1="1" x2="12" y2="23"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/>',compare:'<path d="M16 3h5v5M21 3l-7 7M8 21H3v-5M3 21l7-7"/>',tips:'<path d="M9 18h6M10 22h4M12 2a7 7 0 0 0-4 12.7c.6.5 1 1.3 1 2.1V18h6v-1.2c0-.8.4-1.6 1-2.1A7 7 0 0 0 12 2z"/>',settings:'<circle cx="12" cy="12" r="3"/><path d="M19.4 15a1.6 1.6 0 0 0 .3 1.8l.1.1a2 2 0 1 1-2.8 2.8l-.1-.1a1.6 1.6 0 0 0-1.8-.3 1.6 1.6 0 0 0-1 1.5V21a2 2 0 0 1-4 0v-.1a1.6 1.6 0 0 0-1-1.5 1.6 1.6 0 0 0-1.8.3l-.1.1a2 2 0 1 1-2.8-2.8l.1-.1a1.6 1.6 0 0 0 .3-1.8 1.6 1.6 0 0 0-1.5-1H3a2 2 0 0 1 0-4h.1a1.6 1.6 0 0 0 1.5-1 1.6 1.6 0 0 0-.3-1.8l-.1-.1a2 2 0 1 1 2.8-2.8l.1.1a1.6 1.6 0 0 0 1.8.3H9a1.6 1.6 0 0 0 1-1.5V3a2 2 0 0 1 4 0v.1a1.6 1.6 0 0 0 1 1.5 1.6 1.6 0 0 0 1.8-.3l.1-.1a2 2 0 1 1 2.8 2.8l-.1.1a1.6 1.6 0 0 0-.3 1.8V9a1.6 1.6 0 0 0 1.5 1H21a2 2 0 0 1 0 4h-.1a1.6 1.6 0 0 0-1.5 1z"/>',box:'<path d="M21 16V8a2 2 0 0 0-1-1.7l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.7l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"/><path d="m3.3 7 8.7 5 8.7-5M12 22V12"/>',search:'<circle cx="11" cy="11" r="7"/><line x1="21" y1="21" x2="16.7" y2="16.7"/>',command:'<path d="M15 6a3 3 0 1 1 3 3h-3V6zM9 6a3 3 0 1 0-3 3h3V6zM15 18a3 3 0 1 0 3-3h-3v3zM9 18a3 3 0 1 1-3-3h3v3zM9 9h6v6H9z"/>',chevronRight:'<polyline points="9 6 15 12 9 18"/>',chevronDown:'<polyline points="6 9 12 15 18 9"/>',chevronLeft:'<polyline points="15 6 9 12 15 18"/>',x:'<line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/>',check:'<polyline points="20 6 9 17 4 12"/>',copy:'<rect x="9" y="9" width="13" height="13" rx="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/>',arrowRight:'<line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/>',plus:'<line x1="12" y1="5" x2="12" y2="19"/><line x1="5" y1="12" x2="19" y2="12"/>',minus:'<line x1="5" y1="12" x2="19" y2="12"/>',maximize:'<path d="M8 3H5a2 2 0 0 0-2 2v3M21 8V5a2 2 0 0 0-2-2h-3M16 21h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"/>',recenter:'<circle cx="12" cy="12" r="3"/><path d="M12 2v4M12 18v4M2 12h4M18 12h4"/>',refresh:'<path d="M21 2v6h-6M3 22v-6h6"/><path d="M3.5 9a9 9 0 0 1 14.8-3.4L21 8M21 15a9 9 0 0 1-14.8 3.4L3 16"/>',filter:'<polygon points="22 3 2 3 10 12.5 10 19 14 21 14 12.5 22 3"/>',pause:'<rect x="6" y="4" width="4" height="16"/><rect x="14" y="4" width="4" height="16"/>',external:'<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><polyline points="15 3 21 3 21 9"/><line x1="10" y1="14" x2="21" y2="3"/>',zap:'<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/>',clock:'<circle cx="12" cy="12" r="9"/><polyline points="12 7 12 12 15 14"/>',trendUp:'<polyline points="22 7 13.5 15.5 8.5 10.5 2 17"/><polyline points="16 7 22 7 22 13"/>',trendDown:'<polyline points="22 17 13.5 8.5 8.5 13.5 2 7"/><polyline points="16 17 22 17 22 11"/>',circle:'<circle cx="12" cy="12" r="9"/>',dot:'<circle cx="12" cy="12" r="5"/>',reveal:'<path d="M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7z"/><circle cx="12" cy="12" r="3"/>',sparkles:'<path d="M12 3v4M12 17v4M3 12h4M17 12h4"/><path d="m6 6 2.5 2.5M15.5 15.5 18 18M18 6l-2.5 2.5M8.5 15.5 6 18"/>',menu:'<line x1="4" y1="6" x2="20" y2="6"/><line x1="4" y1="12" x2="20" y2="12"/><line x1="4" y1="18" x2="20" y2="18"/>',send:'<line x1="22" y1="2" x2="11" y2="13"/><polygon points="22 2 15 22 11 13 2 9 22 2"/>',paperclip:'<path d="M21.4 11.05 12.25 20.2a5 5 0 0 1-7.07-7.07l9.19-9.19a3 3 0 0 1 4.24 4.24l-9.2 9.19a1 1 0 0 1-1.41-1.41l8.48-8.49"/>',sortAsc:'<path d="M11 5h10M11 9h7M11 13h4M3 17l3 3 3-3M6 6v14"/>',flame:'<path d="M12 2c1 4 5 5 5 9a5 5 0 0 1-10 0c0-1.5.5-2.5 1.2-3.4C9 9 9.5 8 9.5 6.5c1 .5 2 1.5 2.5 2.5C13 7 12.5 4 12 2z"/>',coins:'<circle cx="8" cy="8" r="5"/><path d="M18.1 6.3a5 5 0 0 1 0 9.4M14.4 18.6a5 5 0 0 1-3.4 0"/>',cancel:'<circle cx="12" cy="12" r="9"/><line x1="9" y1="9" x2="15" y2="15"/><line x1="15" y1="9" x2="9" y2="15"/>',skip:'<polyline points="13 17 18 12 13 7"/><polyline points="6 17 11 12 6 7"/>',layers:'<polygon points="12 2 2 7 12 12 22 7 12 2"/><polyline points="2 12 12 17 22 12"/><polyline points="2 17 12 22 22 17"/>',sun:'<circle cx="12" cy="12" r="4"/><path d="M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4"/>',moon:'<path d="M21 12.8A9 9 0 1 1 11.2 3a7 7 0 0 0 9.8 9.8z"/>',memory:'<rect x="4" y="6" width="16" height="12" rx="2"/><path d="M8 6V3M12 6V3M16 6V3M8 21v-3M12 21v-3M16 21v-3M2 10h2M2 14h2M20 10h2M20 14h2"/><rect x="8.5" y="10" width="7" height="4" rx="1"/>',lock:'<rect x="4" y="11" width="16" height="10" rx="2"/><path d="M8 11V7a4 4 0 0 1 8 0v4"/>',palette:'<circle cx="12" cy="12" r="9"/><circle cx="7.5" cy="10.5" r="1"/><circle cx="12" cy="7" r="1"/><circle cx="16.5" cy="10.5" r="1"/><path d="M12 21a3 3 0 0 1 0-6c1.5 0 2 1 3.5 1a2 2 0 0 0 0-4"/>'},ih=class e{name=Ii.required();size=Ii(16);stroke=Ii(2);sanitizer=E(qc);markup=Rc(()=>this.sanitizer.bypassSecurityTrustHtml(MI[this.name()]??""));static \u0275fac=function(n){return new(n||e)};static \u0275cmp=Ic({type:e,selectors:[["app-icon"]],inputs:{name:[1,"name"],size:[1,"size"],stroke:[1,"stroke"]},decls:1,vars:4,consts:[["viewBox","0 0 24 24","fill","none","stroke","currentColor","stroke-linecap","round","stroke-linejoin","round",3,"innerHTML"]],template:function(n,r){n&1&&(Do(),gi(0,"svg",0)),n&2&&(mi("innerHTML",r.markup(),Xa),hi("width",r.size())("height",r.size())("stroke-width",r.stroke()))},styles:["[_nghost-%COMP%]{display:inline-flex;align-items:center;justify-content:center;line-height:0}"],changeDetection:0})};export{Z as a,mh as b,A as c,pe as d,wn as e,bn as f,We as g,Th as h,Sh as i,Nh as j,_n as k,mt as l,Ph as m,yt as n,qi as o,Ur as p,Bh as q,Zi as r,Nu as s,Vh as t,Yi as u,$h as v,Uh as w,zh as x,Gh as y,Wh as z,qh as A,Zh as B,m as C,Ct as D,_ as E,Jh as F,b as G,w as H,E as I,Fn as J,re as K,io as L,ll as M,dl as N,Do as O,wl as P,oe as Q,nt as R,rn as S,Oe as T,rt as U,Sg as V,Io as W,Al as X,gd as Y,Ad as Z,za as _,pn as $,Xa as aa,Wm as ba,qm as ca,Zm as da,ly as ea,Pf as fa,cr as ga,lr as ha,ep as ia,tp as ja,Ic as ka,np as la,ip as ma,pi as na,ap as oa,dr as pa,hi as qa,sD as ra,aD as sa,cD as ta,uD as ua,lD as va,dD as wa,lp as xa,Qo as ya,Tc as za,dp as Aa,Sc as Ba,Nc as Ca,gi as Da,pp as Ea,hp as Fa,yD as Ga,mi as Ha,mp as Ia,yp as Ja,wD as Ka,_D as La,MD as Ma,vp as Na,Dp as Oa,SD as Pa,ND as Qa,Ep as Ra,AD as Sa,Ip as Ta,Cp as Ua,WD as Va,bp as Wa,Ac as Xa,_p as Ya,Mp as Za,Sp as _a,KD as $a,JD as ab,XD as bb,eE as cb,tE as db,nE as eb,rE as fb,sE as gb,cE as hb,uE as ib,lE as jb,Fp as kb,Rc as lb,pE as mb,Lp as nb,g1 as ob,Ii as pb,m1 as qb,jE as rb,v1 as sb,wi as tb,qp as ub,tI as vb,vI as wb,Vk as xb,qc as yb,ih as zb};
@@ -0,0 +1 @@
1
+ import"./chunk-Q7L6LLAK.js";var e={comments:{lineComment:"#"}},t={defaultToken:"keyword",ignoreCase:!0,tokenPostfix:".azcli",str:/[^#\s]/,tokenizer:{root:[{include:"@comment"},[/\s-+@str*\s*/,{cases:{"@eos":{token:"key.identifier",next:"@popall"},"@default":{token:"key.identifier",next:"@type"}}}],[/^-+@str*\s*/,{cases:{"@eos":{token:"key.identifier",next:"@popall"},"@default":{token:"key.identifier",next:"@type"}}}]],type:[{include:"@comment"},[/-+@str*\s*/,{cases:{"@eos":{token:"key.identifier",next:"@popall"},"@default":"key.identifier"}}],[/@str+\s*/,{cases:{"@eos":{token:"string",next:"@popall"},"@default":"string"}}]],comment:[[/#.*$/,{cases:{"@eos":{token:"comment",next:"@popall"}}}]]}};export{e as conf,t as language};
@@ -0,0 +1 @@
1
+ import"./chunk-Q7L6LLAK.js";var e={comments:{lineComment:"//",blockComment:["/*","*/"]},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"[",close:"]"},{open:"{",close:"}"},{open:"(",close:")"},{open:"'",close:"'",notIn:["string","comment"]},{open:'"',close:'"',notIn:["string"]}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],folding:{markers:{start:new RegExp("^\\s*#pragma\\s+region\\b"),end:new RegExp("^\\s*#pragma\\s+endregion\\b")}}},n={defaultToken:"",tokenPostfix:".cpp",brackets:[{token:"delimiter.curly",open:"{",close:"}"},{token:"delimiter.parenthesis",open:"(",close:")"},{token:"delimiter.square",open:"[",close:"]"},{token:"delimiter.angle",open:"<",close:">"}],keywords:["abstract","amp","array","auto","bool","break","case","catch","char","class","const","constexpr","const_cast","continue","cpu","decltype","default","delegate","delete","do","double","dynamic_cast","each","else","enum","event","explicit","export","extern","false","final","finally","float","for","friend","gcnew","generic","goto","if","in","initonly","inline","int","interface","interior_ptr","internal","literal","long","mutable","namespace","new","noexcept","nullptr","__nullptr","operator","override","partial","pascal","pin_ptr","private","property","protected","public","ref","register","reinterpret_cast","restrict","return","safe_cast","sealed","short","signed","sizeof","static","static_assert","static_cast","struct","switch","template","this","thread_local","throw","tile_static","true","try","typedef","typeid","typename","union","unsigned","using","virtual","void","volatile","wchar_t","where","while","_asm","_based","_cdecl","_declspec","_fastcall","_if_exists","_if_not_exists","_inline","_multiple_inheritance","_pascal","_single_inheritance","_stdcall","_virtual_inheritance","_w64","__abstract","__alignof","__asm","__assume","__based","__box","__builtin_alignof","__cdecl","__clrcall","__declspec","__delegate","__event","__except","__fastcall","__finally","__forceinline","__gc","__hook","__identifier","__if_exists","__if_not_exists","__inline","__int128","__int16","__int32","__int64","__int8","__interface","__leave","__m128","__m128d","__m128i","__m256","__m256d","__m256i","__m512","__m512d","__m512i","__m64","__multiple_inheritance","__newslot","__nogc","__noop","__nounwind","__novtordisp","__pascal","__pin","__pragma","__property","__ptr32","__ptr64","__raise","__restrict","__resume","__sealed","__single_inheritance","__stdcall","__super","__thiscall","__try","__try_cast","__typeof","__unaligned","__unhook","__uuidof","__value","__virtual_inheritance","__w64","__wchar_t"],operators:["=",">","<","!","~","?",":","==","<=",">=","!=","&&","||","++","--","+","-","*","/","&","|","^","%","<<",">>","+=","-=","*=","/=","&=","|=","^=","%=","<<=",">>="],symbols:/[=><!~?:&|+\-*\/\^%]+/,escapes:/\\(?:[0abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,integersuffix:/([uU](ll|LL|l|L)|(ll|LL|l|L)?[uU]?)/,floatsuffix:/[fFlL]?/,encoding:/u|u8|U|L/,tokenizer:{root:[[/@encoding?R\"(?:([^ ()\\\t]*))\(/,{token:"string.raw.begin",next:"@raw.$1"}],[/[a-zA-Z_]\w*/,{cases:{"@keywords":{token:"keyword.$0"},"@default":"identifier"}}],[/^\s*#\s*include/,{token:"keyword.directive.include",next:"@include"}],[/^\s*#\s*\w+/,"keyword.directive"],{include:"@whitespace"},[/\[\s*\[/,{token:"annotation",next:"@annotation"}],[/[{}()<>\[\]]/,"@brackets"],[/@symbols/,{cases:{"@operators":"delimiter","@default":""}}],[/\d*\d+[eE]([\-+]?\d+)?(@floatsuffix)/,"number.float"],[/\d*\.\d+([eE][\-+]?\d+)?(@floatsuffix)/,"number.float"],[/0[xX][0-9a-fA-F']*[0-9a-fA-F](@integersuffix)/,"number.hex"],[/0[0-7']*[0-7](@integersuffix)/,"number.octal"],[/0[bB][0-1']*[0-1](@integersuffix)/,"number.binary"],[/\d[\d']*\d(@integersuffix)/,"number"],[/\d(@integersuffix)/,"number"],[/[;,.]/,"delimiter"],[/"([^"\\]|\\.)*$/,"string.invalid"],[/"/,"string","@string"],[/'[^\\']'/,"string"],[/(')(@escapes)(')/,["string","string.escape","string"]],[/'/,"string.invalid"]],whitespace:[[/[ \t\r\n]+/,""],[/\/\*\*(?!\/)/,"comment.doc","@doccomment"],[/\/\*/,"comment","@comment"],[/\/\/.*\\$/,"comment","@linecomment"],[/\/\/.*$/,"comment"]],comment:[[/[^\/*]+/,"comment"],[/\*\//,"comment","@pop"],[/[\/*]/,"comment"]],linecomment:[[/.*[^\\]$/,"comment","@pop"],[/[^]+/,"comment"]],doccomment:[[/[^\/*]+/,"comment.doc"],[/\*\//,"comment.doc","@pop"],[/[\/*]/,"comment.doc"]],string:[[/[^\\"]+/,"string"],[/@escapes/,"string.escape"],[/\\./,"string.escape.invalid"],[/"/,"string","@pop"]],raw:[[/[^)]+/,"string.raw"],[/\)$S2\"/,{token:"string.raw.end",next:"@pop"}],[/\)/,"string.raw"]],annotation:[{include:"@whitespace"},[/using|alignas/,"keyword"],[/[a-zA-Z0-9_]+/,"annotation"],[/[,:]/,"delimiter"],[/[()]/,"@brackets"],[/\]\s*\]/,{token:"annotation",next:"@pop"}]],include:[[/(\s*)(<)([^<>]*)(>)/,["","keyword.directive.include.begin","string.include.identifier",{token:"keyword.directive.include.end",next:"@pop"}]],[/(\s*)(")([^"]*)(")/,["","keyword.directive.include.begin","string.include.identifier",{token:"keyword.directive.include.end",next:"@pop"}]]]}};export{e as conf,n as language};
@@ -0,0 +1 @@
1
+ import"./chunk-Q7L6LLAK.js";var e={brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:"<",close:">",notIn:["string"]}],surroundingPairs:[{open:"(",close:")"},{open:"[",close:"]"},{open:"`",close:"`"}],folding:{markers:{start:new RegExp("^\\s*<!--\\s*#?region\\b.*-->"),end:new RegExp("^\\s*<!--\\s*#?endregion\\b.*-->")}}},n={defaultToken:"",tokenPostfix:".rst",control:/[\\`*_\[\]{}()#+\-\.!]/,escapes:/\\(?:@control)/,empty:["area","base","basefont","br","col","frame","hr","img","input","isindex","link","meta","param"],alphanumerics:/[A-Za-z0-9]/,simpleRefNameWithoutBq:/(?:@alphanumerics[-_+:.]*@alphanumerics)+|(?:@alphanumerics+)/,simpleRefName:/(?:`@phrase`|@simpleRefNameWithoutBq)/,phrase:/@simpleRefNameWithoutBq(?:\s@simpleRefNameWithoutBq)*/,citationName:/[A-Za-z][A-Za-z0-9-_.]*/,blockLiteralStart:/(?:[!"#$%&'()*+,-./:;<=>?@\[\]^_`{|}~]|[\s])/,precedingChars:/(?:[ -:/'"<([{])/,followingChars:/(?:[ -.,:;!?/'")\]}>]|$)/,punctuation:/(=|-|~|`|#|"|\^|\+|\*|:|\.|'|_|\+)/,tokenizer:{root:[[/^(@punctuation{3,}$){1,1}?/,"keyword"],[/^\s*([\*\-+‣•]|[a-zA-Z0-9]+\.|\([a-zA-Z0-9]+\)|[a-zA-Z0-9]+\))\s/,"keyword"],[/([ ]::)\s*$/,"keyword","@blankLineOfLiteralBlocks"],[/(::)\s*$/,"keyword","@blankLineOfLiteralBlocks"],{include:"@tables"},{include:"@explicitMarkupBlocks"},{include:"@inlineMarkup"}],explicitMarkupBlocks:[{include:"@citations"},{include:"@footnotes"},[/^(\.\.\s)(@simpleRefName)(::\s)(.*)$/,[{token:"",next:"subsequentLines"},"keyword","",""]],[/^(\.\.)(\s+)(_)(@simpleRefName)(:)(\s+)(.*)/,[{token:"",next:"hyperlinks"},"","","string.link","","","string.link"]],[/^((?:(?:\.\.)(?:\s+))?)(__)(:)(\s+)(.*)/,[{token:"",next:"subsequentLines"},"","","","string.link"]],[/^(__\s+)(.+)/,["","string.link"]],[/^(\.\.)( \|)([^| ]+[^|]*[^| ]*)(\| )(@simpleRefName)(:: .*)/,[{token:"",next:"subsequentLines"},"","string.link","","keyword",""],"@rawBlocks"],[/(\|)([^| ]+[^|]*[^| ]*)(\|_{0,2})/,["","string.link",""]],[/^(\.\.)([ ].*)$/,[{token:"",next:"@comments"},"comment"]]],inlineMarkup:[{include:"@citationsReference"},{include:"@footnotesReference"},[/(@simpleRefName)(_{1,2})/,["string.link",""]],[/(`)([^<`]+\s+)(<)(.*)(>)(`)(_)/,["","string.link","","string.link","","",""]],[/\*\*([^\\*]|\*(?!\*))+\*\*/,"strong"],[/\*[^*]+\*/,"emphasis"],[/(``)((?:[^`]|\`(?!`))+)(``)/,["","keyword",""]],[/(__\s+)(.+)/,["","keyword"]],[/(:)((?:@simpleRefNameWithoutBq)?)(:`)([^`]+)(`)/,["","keyword","","",""]],[/(`)([^`]+)(`:)((?:@simpleRefNameWithoutBq)?)(:)/,["","","","keyword",""]],[/(`)([^`]+)(`)/,""],[/(_`)(@phrase)(`)/,["","string.link",""]]],citations:[[/^(\.\.\s+\[)((?:@citationName))(\]\s+)(.*)/,[{token:"",next:"@subsequentLines"},"string.link","",""]]],citationsReference:[[/(\[)(@citationName)(\]_)/,["","string.link",""]]],footnotes:[[/^(\.\.\s+\[)((?:[0-9]+))(\]\s+.*)/,[{token:"",next:"@subsequentLines"},"string.link",""]],[/^(\.\.\s+\[)((?:#@simpleRefName?))(\]\s+)(.*)/,[{token:"",next:"@subsequentLines"},"string.link","",""]],[/^(\.\.\s+\[)((?:\*))(\]\s+)(.*)/,[{token:"",next:"@subsequentLines"},"string.link","",""]]],footnotesReference:[[/(\[)([0-9]+)(\])(_)/,["","string.link","",""]],[/(\[)(#@simpleRefName?)(\])(_)/,["","string.link","",""]],[/(\[)(\*)(\])(_)/,["","string.link","",""]]],blankLineOfLiteralBlocks:[[/^$/,"","@subsequentLinesOfLiteralBlocks"],[/^.*$/,"","@pop"]],subsequentLinesOfLiteralBlocks:[[/(@blockLiteralStart+)(.*)/,["keyword",""]],[/^(?!blockLiteralStart)/,"","@popall"]],subsequentLines:[[/^[\s]+.*/,""],[/^(?!\s)/,"","@pop"]],hyperlinks:[[/^[\s]+.*/,"string.link"],[/^(?!\s)/,"","@pop"]],comments:[[/^[\s]+.*/,"comment"],[/^(?!\s)/,"","@pop"]],tables:[[/\+-[+-]+/,"keyword"],[/\+=[+=]+/,"keyword"]]}};export{e as conf,n as language};
@@ -0,0 +1 @@
1
+ var g=Object.defineProperty,j=Object.defineProperties;var k=Object.getOwnPropertyDescriptors;var e=Object.getOwnPropertySymbols;var h=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;var f=(a,b,c)=>b in a?g(a,b,{enumerable:!0,configurable:!0,writable:!0,value:c}):a[b]=c,l=(a,b)=>{for(var c in b||={})h.call(b,c)&&f(a,c,b[c]);if(e)for(var c of e(b))i.call(b,c)&&f(a,c,b[c]);return a},m=(a,b)=>j(a,k(b));var n=(a,b)=>{var c={};for(var d in a)h.call(a,d)&&b.indexOf(d)<0&&(c[d]=a[d]);if(a!=null&&e)for(var d of e(a))b.indexOf(d)<0&&i.call(a,d)&&(c[d]=a[d]);return c};var o=(a,b)=>{for(var c in b)g(a,c,{get:b[c],enumerable:!0})};export{l as a,m as b,n as c,o as d};
@@ -0,0 +1 @@
1
+ import"./chunk-Q7L6LLAK.js";var e={comments:{lineComment:"//",blockComment:["/*","*/"]},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"[",close:"]"},{open:"{",close:"}"},{open:"(",close:")"},{open:'"',close:'"',notIn:["string"]}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],folding:{markers:{start:new RegExp("^\\s*#pragma\\s+region\\b"),end:new RegExp("^\\s*#pragma\\s+endregion\\b")}}},t={tokenPostfix:".rust",defaultToken:"invalid",keywords:["as","async","await","box","break","const","continue","crate","dyn","else","enum","extern","false","fn","for","if","impl","in","let","loop","match","mod","move","mut","pub","ref","return","self","static","struct","super","trait","true","try","type","unsafe","use","where","while","catch","default","union","static","abstract","alignof","become","do","final","macro","offsetof","override","priv","proc","pure","sizeof","typeof","unsized","virtual","yield"],typeKeywords:["Self","m32","m64","m128","f80","f16","f128","int","uint","float","char","bool","u8","u16","u32","u64","f32","f64","i8","i16","i32","i64","str","Option","Either","c_float","c_double","c_void","FILE","fpos_t","DIR","dirent","c_char","c_schar","c_uchar","c_short","c_ushort","c_int","c_uint","c_long","c_ulong","size_t","ptrdiff_t","clock_t","time_t","c_longlong","c_ulonglong","intptr_t","uintptr_t","off_t","dev_t","ino_t","pid_t","mode_t","ssize_t"],constants:["true","false","Some","None","Left","Right","Ok","Err"],supportConstants:["EXIT_FAILURE","EXIT_SUCCESS","RAND_MAX","EOF","SEEK_SET","SEEK_CUR","SEEK_END","_IOFBF","_IONBF","_IOLBF","BUFSIZ","FOPEN_MAX","FILENAME_MAX","L_tmpnam","TMP_MAX","O_RDONLY","O_WRONLY","O_RDWR","O_APPEND","O_CREAT","O_EXCL","O_TRUNC","S_IFIFO","S_IFCHR","S_IFBLK","S_IFDIR","S_IFREG","S_IFMT","S_IEXEC","S_IWRITE","S_IREAD","S_IRWXU","S_IXUSR","S_IWUSR","S_IRUSR","F_OK","R_OK","W_OK","X_OK","STDIN_FILENO","STDOUT_FILENO","STDERR_FILENO"],supportMacros:["format!","print!","println!","panic!","format_args!","unreachable!","write!","writeln!"],operators:["!","!=","%","%=","&","&=","&&","*","*=","+","+=","-","-=","->",".","..","...","/","/=",":",";","<<","<<=","<","<=","=","==","=>",">",">=",">>",">>=","@","^","^=","|","|=","||","_","?","#"],escapes:/\\([nrt0\"''\\]|x\h{2}|u\{\h{1,6}\})/,delimiters:/[,]/,symbols:/[\#\!\%\&\*\+\-\.\/\:\;\<\=\>\@\^\|_\?]+/,intSuffixes:/[iu](8|16|32|64|128|size)/,floatSuffixes:/f(32|64)/,tokenizer:{root:[[/r(#*)"/,{token:"string.quote",bracket:"@open",next:"@stringraw.$1"}],[/[a-zA-Z][a-zA-Z0-9_]*!?|_[a-zA-Z0-9_]+/,{cases:{"@typeKeywords":"keyword.type","@keywords":"keyword","@supportConstants":"keyword","@supportMacros":"keyword","@constants":"keyword","@default":"identifier"}}],[/\$/,"identifier"],[/'[a-zA-Z_][a-zA-Z0-9_]*(?=[^\'])/,"identifier"],[/'(\S|@escapes)'/,"string.byteliteral"],[/"/,{token:"string.quote",bracket:"@open",next:"@string"}],{include:"@numbers"},{include:"@whitespace"},[/@delimiters/,{cases:{"@keywords":"keyword","@default":"delimiter"}}],[/[{}()\[\]<>]/,"@brackets"],[/@symbols/,{cases:{"@operators":"operator","@default":""}}]],whitespace:[[/[ \t\r\n]+/,"white"],[/\/\*/,"comment","@comment"],[/\/\/.*$/,"comment"]],comment:[[/[^\/*]+/,"comment"],[/\/\*/,"comment","@push"],["\\*/","comment","@pop"],[/[\/*]/,"comment"]],string:[[/[^\\"]+/,"string"],[/@escapes/,"string.escape"],[/\\./,"string.escape.invalid"],[/"/,{token:"string.quote",bracket:"@close",next:"@pop"}]],stringraw:[[/[^"#]+/,{token:"string"}],[/"(#*)/,{cases:{"$1==$S2":{token:"string.quote",bracket:"@close",next:"@pop"},"@default":{token:"string"}}}],[/["#]/,{token:"string"}]],numbers:[[/(0o[0-7_]+)(@intSuffixes)?/,{token:"number"}],[/(0b[0-1_]+)(@intSuffixes)?/,{token:"number"}],[/[\d][\d_]*(\.[\d][\d_]*)?[eE][+-][\d_]+(@floatSuffixes)?/,{token:"number"}],[/\b(\d\.?[\d_]*)(@floatSuffixes)?\b/,{token:"number"}],[/(0x[\da-fA-F]+)_?(@intSuffixes)?/,{token:"number"}],[/[\d][\d_]*(@intSuffixes?)?/,{token:"number"}]]}};export{e as conf,t as language};
@@ -0,0 +1 @@
1
+ import"./chunk-Q7L6LLAK.js";var e={wordPattern:/(-?\d*\.\d\w*)|([^\`\~\!\@\#%\^\&\*\(\)\=\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\?\s]+)/g,comments:{lineComment:"#",blockComment:["<#","#>"]},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"',notIn:["string"]},{open:"'",close:"'",notIn:["string","comment"]}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],folding:{markers:{start:new RegExp("^\\s*#region\\b"),end:new RegExp("^\\s*#endregion\\b")}}},n={defaultToken:"",ignoreCase:!0,tokenPostfix:".ps1",brackets:[{token:"delimiter.curly",open:"{",close:"}"},{token:"delimiter.square",open:"[",close:"]"},{token:"delimiter.parenthesis",open:"(",close:")"}],keywords:["begin","break","catch","class","continue","data","define","do","dynamicparam","else","elseif","end","exit","filter","finally","for","foreach","from","function","if","in","param","process","return","switch","throw","trap","try","until","using","var","while","workflow","parallel","sequence","inlinescript","configuration"],helpKeywords:/SYNOPSIS|DESCRIPTION|PARAMETER|EXAMPLE|INPUTS|OUTPUTS|NOTES|LINK|COMPONENT|ROLE|FUNCTIONALITY|FORWARDHELPTARGETNAME|FORWARDHELPCATEGORY|REMOTEHELPRUNSPACE|EXTERNALHELP/,symbols:/[=><!~?&%|+\-*\/\^;\.,]+/,escapes:/`(?:[abfnrtv\\"'$]|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,tokenizer:{root:[[/[a-zA-Z_][\w-]*/,{cases:{"@keywords":{token:"keyword.$0"},"@default":""}}],[/[ \t\r\n]+/,""],[/^:\w*/,"metatag"],[/\$(\{((global|local|private|script|using):)?[\w]+\}|((global|local|private|script|using):)?[\w]+)/,"variable"],[/<#/,"comment","@comment"],[/#.*$/,"comment"],[/[{}()\[\]]/,"@brackets"],[/@symbols/,"delimiter"],[/\d*\.\d+([eE][\-+]?\d+)?/,"number.float"],[/0[xX][0-9a-fA-F_]*[0-9a-fA-F]/,"number.hex"],[/\d+?/,"number"],[/[;,.]/,"delimiter"],[/\@"/,"string",'@herestring."'],[/\@'/,"string","@herestring.'"],[/"/,{cases:{"@eos":"string","@default":{token:"string",next:'@string."'}}}],[/'/,{cases:{"@eos":"string","@default":{token:"string",next:"@string.'"}}}]],string:[[/[^"'\$`]+/,{cases:{"@eos":{token:"string",next:"@popall"},"@default":"string"}}],[/@escapes/,{cases:{"@eos":{token:"string.escape",next:"@popall"},"@default":"string.escape"}}],[/`./,{cases:{"@eos":{token:"string.escape.invalid",next:"@popall"},"@default":"string.escape.invalid"}}],[/\$[\w]+$/,{cases:{'$S2=="':{token:"variable",next:"@popall"},"@default":{token:"string",next:"@popall"}}}],[/\$[\w]+/,{cases:{'$S2=="':"variable","@default":"string"}}],[/["']/,{cases:{"$#==$S2":{token:"string",next:"@pop"},"@default":{cases:{"@eos":{token:"string",next:"@popall"},"@default":"string"}}}}]],herestring:[[/^\s*(["'])@/,{cases:{"$1==$S2":{token:"string",next:"@pop"},"@default":"string"}}],[/[^\$`]+/,"string"],[/@escapes/,"string.escape"],[/`./,"string.escape.invalid"],[/\$[\w]+/,{cases:{'$S2=="':"variable","@default":"string"}}]],comment:[[/[^#\.]+/,"comment"],[/#>/,"comment","@pop"],[/(\.)(@helpKeywords)(?!\w)/,{token:"comment.keyword.$2"}],[/[\.#]/,"comment"]]}};export{e as conf,n as language};
@@ -0,0 +1 @@
1
+ import"./chunk-Q7L6LLAK.js";var e={comments:{lineComment:";",blockComment:["#|","|#"]},brackets:[["(",")"],["{","}"],["[","]"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'}]},o={defaultToken:"",ignoreCase:!0,tokenPostfix:".scheme",brackets:[{open:"(",close:")",token:"delimiter.parenthesis"},{open:"{",close:"}",token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.square"}],keywords:["case","do","let","loop","if","else","when","cons","car","cdr","cond","lambda","lambda*","syntax-rules","format","set!","quote","eval","append","list","list?","member?","load"],constants:["#t","#f"],operators:["eq?","eqv?","equal?","and","or","not","null?"],tokenizer:{root:[[/#[xXoObB][0-9a-fA-F]+/,"number.hex"],[/[+-]?\d+(?:(?:\.\d*)?(?:[eE][+-]?\d+)?)?/,"number.float"],[/(?:\b(?:(define|define-syntax|define-macro))\b)(\s+)((?:\w|\-|\!|\?)*)/,["keyword","white","variable"]],{include:"@whitespace"},{include:"@strings"},[/[a-zA-Z_#][a-zA-Z0-9_\-\?\!\*]*/,{cases:{"@keywords":"keyword","@constants":"constant","@operators":"operators","@default":"identifier"}}]],comment:[[/[^\|#]+/,"comment"],[/#\|/,"comment","@push"],[/\|#/,"comment","@pop"],[/[\|#]/,"comment"]],whitespace:[[/[ \t\r\n]+/,"white"],[/#\|/,"comment","@comment"],[/;.*$/,"comment"]],strings:[[/"$/,"string","@popall"],[/"(?=.)/,"string","@multiLineString"]],multiLineString:[[/[^\\"]+$/,"string","@popall"],[/[^\\"]+/,"string"],[/\\./,"string.escape"],[/"/,"string","@popall"],[/\\$/,"string"]]}};export{e as conf,o as language};
@@ -0,0 +1 @@
1
+ import"./chunk-Q7L6LLAK.js";var e={comments:{lineComment:"//",blockComment:["/*","*/"]},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}]},n={defaultToken:"",tokenPostfix:".objective-c",keywords:["#import","#include","#define","#else","#endif","#if","#ifdef","#ifndef","#ident","#undef","@class","@defs","@dynamic","@encode","@end","@implementation","@interface","@package","@private","@protected","@property","@protocol","@public","@selector","@synthesize","__declspec","assign","auto","BOOL","break","bycopy","byref","case","char","Class","const","copy","continue","default","do","double","else","enum","extern","FALSE","false","float","for","goto","if","in","int","id","inout","IMP","long","nil","nonatomic","NULL","oneway","out","private","public","protected","readwrite","readonly","register","return","SEL","self","short","signed","sizeof","static","struct","super","switch","typedef","TRUE","true","union","unsigned","volatile","void","while"],decpart:/\d(_?\d)*/,decimal:/0|@decpart/,tokenizer:{root:[{include:"@comments"},{include:"@whitespace"},{include:"@numbers"},{include:"@strings"},[/[,:;]/,"delimiter"],[/[{}\[\]()<>]/,"@brackets"],[/[a-zA-Z@#]\w*/,{cases:{"@keywords":"keyword","@default":"identifier"}}],[/[<>=\\+\\-\\*\\/\\^\\|\\~,]|and\\b|or\\b|not\\b]/,"operator"]],whitespace:[[/\s+/,"white"]],comments:[["\\/\\*","comment","@comment"],["\\/\\/+.*","comment"]],comment:[["\\*\\/","comment","@pop"],[".","comment"]],numbers:[[/0[xX][0-9a-fA-F]*(_?[0-9a-fA-F])*/,"number.hex"],[/@decimal((\.@decpart)?([eE][\-+]?@decpart)?)[fF]*/,{cases:{"(\\d)*":"number",$0:"number.float"}}]],strings:[[/'$/,"string.escape","@popall"],[/'/,"string.escape","@stringBody"],[/"$/,"string.escape","@popall"],[/"/,"string.escape","@dblStringBody"]],stringBody:[[/[^\\']+$/,"string","@popall"],[/[^\\']+/,"string"],[/\\./,"string"],[/'/,"string.escape","@popall"],[/\\$/,"string"]],dblStringBody:[[/[^\\"]+$/,"string","@popall"],[/[^\\"]+/,"string"],[/\\./,"string"],[/"/,"string.escape","@popall"],[/\\$/,"string"]]}};export{e as conf,n as language};
@@ -0,0 +1 @@
1
+ import"./chunk-Q7L6LLAK.js";var e={brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}]},o={defaultToken:"",tokenPostfix:".dockerfile",variable:/\${?[\w]+}?/,tokenizer:{root:[{include:"@whitespace"},{include:"@comment"},[/(ONBUILD)(\s+)/,["keyword",""]],[/(ENV)(\s+)([\w]+)/,["keyword","",{token:"variable",next:"@arguments"}]],[/(FROM|MAINTAINER|RUN|EXPOSE|ENV|ADD|ARG|VOLUME|LABEL|USER|WORKDIR|COPY|CMD|STOPSIGNAL|SHELL|HEALTHCHECK|ENTRYPOINT)/,{token:"keyword",next:"@arguments"}]],arguments:[{include:"@whitespace"},{include:"@strings"},[/(@variable)/,{cases:{"@eos":{token:"variable",next:"@popall"},"@default":"variable"}}],[/\\/,{cases:{"@eos":"","@default":""}}],[/./,{cases:{"@eos":{token:"",next:"@popall"},"@default":""}}]],whitespace:[[/\s+/,{cases:{"@eos":{token:"",next:"@popall"},"@default":""}}]],comment:[[/(^#.*$)/,"comment","@popall"]],strings:[[/\\'$/,"","@popall"],[/\\'/,""],[/'$/,"string","@popall"],[/'/,"string","@stringBody"],[/"$/,"string","@popall"],[/"/,"string","@dblStringBody"]],stringBody:[[/[^\\\$']/,{cases:{"@eos":{token:"string",next:"@popall"},"@default":"string"}}],[/\\./,"string.escape"],[/'$/,"string","@popall"],[/'/,"string","@pop"],[/(@variable)/,"variable"],[/\\$/,"string"],[/$/,"string","@popall"]],dblStringBody:[[/[^\\\$"]/,{cases:{"@eos":{token:"string",next:"@popall"},"@default":"string"}}],[/\\./,"string.escape"],[/"$/,"string","@popall"],[/"/,"string","@pop"],[/(@variable)/,"variable"],[/\\$/,"string"],[/$/,"string","@popall"]]}};export{e as conf,o as language};
@@ -0,0 +1 @@
1
+ import{Aa as m,Ia as u,Ka as b,Ta as g,Va as f,W as l,Xa as C,ea as i,ka as s,pb as a,ra as c,sa as p,xa as r,ya as d,za as y,zb as v}from"./chunk-PDN6QYGJ.js";function h(t,n){if(t&1&&f(0),t&2){let e=b();C(" ",e.label()," ")}}var x=class t{text=a("");label=a("");done=l(!1);copy(n){n.stopPropagation(),navigator.clipboard?.writeText(this.text()),this.done.set(!0),setTimeout(()=>this.done.set(!1),1100)}static \u0275fac=function(e){return new(e||t)};static \u0275cmp=s({type:t,selectors:[["app-copy-btn"]],inputs:{text:[1,"text"],label:[1,"label"]},decls:3,vars:5,consts:[["type","button","title","Copy",1,"btn","btn-ghost","btn-xs",3,"click"],[3,"name","size"]],template:function(e,o){e&1&&(d(0,"button",0),u("click",function(_){return o.copy(_)}),m(1,"app-icon",1),c(2,h,1,1),y()),e&2&&(g("color",o.done()?"var(--success)":null),i(),r("name",o.done()?"check":"copy")("size",12),i(),p(o.label()?2:-1))},dependencies:[v],styles:["[_nghost-%COMP%]{display:inline-flex}"],changeDetection:0})};export{x as a};