@fps-games/editor 0.2.0-beta.4 → 0.2.1-beta.2

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 (1506) hide show
  1. package/dist/agent-bridge/capabilities/editor-state.d.ts.map +1 -1
  2. package/dist/agent-bridge/capabilities/editor-state.js +12 -6
  3. package/dist/agent-bridge/capabilities/editor-state.js.map +1 -1
  4. package/dist/agent-bridge/capabilities/hierarchy.d.ts +4 -0
  5. package/dist/agent-bridge/capabilities/hierarchy.d.ts.map +1 -0
  6. package/dist/agent-bridge/capabilities/hierarchy.js +209 -0
  7. package/dist/agent-bridge/capabilities/hierarchy.js.map +1 -0
  8. package/dist/agent-bridge/capabilities/prefabs.d.ts.map +1 -1
  9. package/dist/agent-bridge/capabilities/prefabs.js +208 -73
  10. package/dist/agent-bridge/capabilities/prefabs.js.map +1 -1
  11. package/dist/agent-bridge/capabilities/scene-objects.d.ts +3 -4
  12. package/dist/agent-bridge/capabilities/scene-objects.d.ts.map +1 -1
  13. package/dist/agent-bridge/capabilities/scene-objects.js +24 -23
  14. package/dist/agent-bridge/capabilities/scene-objects.js.map +1 -1
  15. package/dist/agent-bridge/capabilities/shadows.d.ts.map +1 -1
  16. package/dist/agent-bridge/capabilities/shadows.js +829 -66
  17. package/dist/agent-bridge/capabilities/shadows.js.map +1 -1
  18. package/dist/agent-bridge/capabilities/ui-regions.d.ts.map +1 -1
  19. package/dist/agent-bridge/capabilities/ui-regions.js +19 -1
  20. package/dist/agent-bridge/capabilities/ui-regions.js.map +1 -1
  21. package/dist/agent-bridge/capabilities/viewport.d.ts.map +1 -1
  22. package/dist/agent-bridge/capabilities/viewport.js +22 -9
  23. package/dist/agent-bridge/capabilities/viewport.js.map +1 -1
  24. package/dist/agent-bridge/capability-sources.d.ts.map +1 -1
  25. package/dist/agent-bridge/capability-sources.js +2 -0
  26. package/dist/agent-bridge/capability-sources.js.map +1 -1
  27. package/dist/agent-bridge/register.d.ts.map +1 -1
  28. package/dist/agent-bridge/register.js +194 -0
  29. package/dist/agent-bridge/register.js.map +1 -1
  30. package/dist/agent-bridge/shared.d.ts +231 -11
  31. package/dist/agent-bridge/shared.d.ts.map +1 -1
  32. package/dist/agent-bridge/shared.js +162 -20
  33. package/dist/agent-bridge/shared.js.map +1 -1
  34. package/dist/agent-bridge/source-types.d.ts +17 -1
  35. package/dist/agent-bridge/source-types.d.ts.map +1 -1
  36. package/dist/agent-bridge/source-types.js.map +1 -1
  37. package/dist/build-info.json +57 -42
  38. package/dist/index.d.ts +7 -6
  39. package/dist/index.d.ts.map +1 -1
  40. package/dist/index.js +4 -3
  41. package/dist/index.js.map +1 -1
  42. package/dist/internal/babylon-preview-engine.d.ts +3 -0
  43. package/dist/internal/babylon-preview-engine.d.ts.map +1 -0
  44. package/dist/internal/babylon-preview-engine.js +11 -0
  45. package/dist/internal/babylon-preview-engine.js.map +1 -0
  46. package/dist/internal/material-preview.d.ts +22 -0
  47. package/dist/internal/material-preview.d.ts.map +1 -0
  48. package/dist/internal/material-preview.js +186 -0
  49. package/dist/internal/material-preview.js.map +1 -0
  50. package/dist/internal/product-local-editor-cleanup.d.ts +5 -0
  51. package/dist/internal/product-local-editor-cleanup.d.ts.map +1 -0
  52. package/dist/internal/product-local-editor-cleanup.js +20 -0
  53. package/dist/internal/product-local-editor-cleanup.js.map +1 -0
  54. package/dist/internal/project-model-preview.d.ts +4 -0
  55. package/dist/internal/project-model-preview.d.ts.map +1 -0
  56. package/dist/internal/project-model-preview.js +359 -0
  57. package/dist/internal/project-model-preview.js.map +1 -0
  58. package/dist/local-editor-agent-actions.d.ts +2 -4
  59. package/dist/local-editor-agent-actions.d.ts.map +1 -1
  60. package/dist/local-editor-agent-actions.js +56 -32
  61. package/dist/local-editor-agent-actions.js.map +1 -1
  62. package/dist/local-editor-agent-context.d.ts +17 -6
  63. package/dist/local-editor-agent-context.d.ts.map +1 -1
  64. package/dist/local-editor-agent-context.js +47 -0
  65. package/dist/local-editor-agent-context.js.map +1 -1
  66. package/dist/local-editor-harness.d.ts +353 -35
  67. package/dist/local-editor-harness.d.ts.map +1 -1
  68. package/dist/local-editor-harness.js +4115 -1313
  69. package/dist/local-editor-harness.js.map +1 -1
  70. package/dist/local-editor-marker-graph.d.ts +15 -15
  71. package/dist/local-editor-marker-graph.d.ts.map +1 -1
  72. package/dist/local-editor-marker-graph.js +3 -0
  73. package/dist/local-editor-marker-graph.js.map +1 -1
  74. package/dist/local-editor-performance-stats.d.ts +3 -2
  75. package/dist/local-editor-performance-stats.d.ts.map +1 -1
  76. package/dist/local-editor-performance-stats.js.map +1 -1
  77. package/dist/local-editor-prefab-stage-transaction.d.ts +19 -0
  78. package/dist/local-editor-prefab-stage-transaction.d.ts.map +1 -0
  79. package/dist/local-editor-prefab-stage-transaction.js +45 -0
  80. package/dist/local-editor-prefab-stage-transaction.js.map +1 -0
  81. package/dist/local-editor-scene-view-interaction-runtime.d.ts +3 -1
  82. package/dist/local-editor-scene-view-interaction-runtime.d.ts.map +1 -1
  83. package/dist/local-editor-scene-view-interaction-runtime.js +24 -0
  84. package/dist/local-editor-scene-view-interaction-runtime.js.map +1 -1
  85. package/dist/local-editor-tools.d.ts +19 -0
  86. package/dist/local-editor-tools.d.ts.map +1 -0
  87. package/dist/local-editor-tools.js +56 -0
  88. package/dist/local-editor-tools.js.map +1 -0
  89. package/dist/playable-babylon-rendering.d.ts +9 -0
  90. package/dist/playable-babylon-rendering.d.ts.map +1 -1
  91. package/dist/playable-babylon-rendering.js +162 -6
  92. package/dist/playable-babylon-rendering.js.map +1 -1
  93. package/dist/playable-local-editor-entry.d.ts +68 -0
  94. package/dist/playable-local-editor-entry.d.ts.map +1 -0
  95. package/dist/playable-local-editor-entry.js +424 -0
  96. package/dist/playable-local-editor-entry.js.map +1 -0
  97. package/dist/playable-local-editor-host.d.ts +55 -29
  98. package/dist/playable-local-editor-host.d.ts.map +1 -1
  99. package/dist/playable-local-editor-host.js +50 -11
  100. package/dist/playable-local-editor-host.js.map +1 -1
  101. package/dist/playable-product-local-editor.d.ts +10 -12
  102. package/dist/playable-product-local-editor.d.ts.map +1 -1
  103. package/dist/playable-product-local-editor.js +178 -85
  104. package/dist/playable-product-local-editor.js.map +1 -1
  105. package/dist/playable-product-projection-preview.d.ts +4 -1
  106. package/dist/playable-product-projection-preview.d.ts.map +1 -1
  107. package/dist/playable-product-projection-preview.js +122 -5
  108. package/dist/playable-product-projection-preview.js.map +1 -1
  109. package/dist/playable-product-rendering.d.ts +12 -0
  110. package/dist/playable-product-rendering.d.ts.map +1 -1
  111. package/dist/playable-product-rendering.js +128 -6
  112. package/dist/playable-product-rendering.js.map +1 -1
  113. package/dist/playable-product-scene-capabilities.d.ts +24 -7
  114. package/dist/playable-product-scene-capabilities.d.ts.map +1 -1
  115. package/dist/playable-product-scene-capabilities.js +180 -17
  116. package/dist/playable-product-scene-capabilities.js.map +1 -1
  117. package/dist/playable-project-mode.d.ts +17 -0
  118. package/dist/playable-project-mode.d.ts.map +1 -0
  119. package/dist/playable-project-mode.js +2 -0
  120. package/dist/playable-project-mode.js.map +1 -0
  121. package/dist/playable-runtime-babylon.d.ts +3 -6
  122. package/dist/playable-runtime-babylon.d.ts.map +1 -1
  123. package/dist/playable-runtime-babylon.js +1 -5
  124. package/dist/playable-runtime-babylon.js.map +1 -1
  125. package/dist/playable-sdk.d.ts +16 -9
  126. package/dist/playable-sdk.d.ts.map +1 -1
  127. package/dist/playable-sdk.js +6 -4
  128. package/dist/playable-sdk.js.map +1 -1
  129. package/dist/playable-standard-project.d.ts +23 -14
  130. package/dist/playable-standard-project.d.ts.map +1 -1
  131. package/dist/playable-standard-project.js +57 -20
  132. package/dist/playable-standard-project.js.map +1 -1
  133. package/dist/vite-client.d.ts +4 -0
  134. package/node_modules/@babel/helper-string-parser/lib/index.js +0 -1
  135. package/node_modules/@babel/helper-validator-identifier/lib/identifier.js +0 -1
  136. package/node_modules/@babel/helper-validator-identifier/lib/index.js +0 -1
  137. package/node_modules/@babel/helper-validator-identifier/lib/keyword.js +0 -1
  138. package/node_modules/@babel/parser/lib/index.js +0 -1
  139. package/node_modules/@babel/types/lib/asserts/assertNode.js +0 -1
  140. package/node_modules/@babel/types/lib/asserts/generated/index.js +0 -1
  141. package/node_modules/@babel/types/lib/ast-types/generated/index.js +0 -1
  142. package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +0 -1
  143. package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +0 -1
  144. package/node_modules/@babel/types/lib/builders/generated/index.js +0 -1
  145. package/node_modules/@babel/types/lib/builders/generated/lowercase.js +0 -1
  146. package/node_modules/@babel/types/lib/builders/generated/uppercase.js +0 -1
  147. package/node_modules/@babel/types/lib/builders/productions.js +0 -1
  148. package/node_modules/@babel/types/lib/builders/react/buildChildren.js +0 -1
  149. package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +0 -1
  150. package/node_modules/@babel/types/lib/builders/validateNode.js +0 -1
  151. package/node_modules/@babel/types/lib/clone/clone.js +0 -1
  152. package/node_modules/@babel/types/lib/clone/cloneDeep.js +0 -1
  153. package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +0 -1
  154. package/node_modules/@babel/types/lib/clone/cloneNode.js +0 -1
  155. package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +0 -1
  156. package/node_modules/@babel/types/lib/comments/addComment.js +0 -1
  157. package/node_modules/@babel/types/lib/comments/addComments.js +0 -1
  158. package/node_modules/@babel/types/lib/comments/inheritInnerComments.js +0 -1
  159. package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +0 -1
  160. package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +0 -1
  161. package/node_modules/@babel/types/lib/comments/inheritsComments.js +0 -1
  162. package/node_modules/@babel/types/lib/comments/removeComments.js +0 -1
  163. package/node_modules/@babel/types/lib/constants/generated/index.js +0 -1
  164. package/node_modules/@babel/types/lib/constants/index.js +0 -1
  165. package/node_modules/@babel/types/lib/converters/ensureBlock.js +0 -1
  166. package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +0 -1
  167. package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +0 -1
  168. package/node_modules/@babel/types/lib/converters/toBlock.js +0 -1
  169. package/node_modules/@babel/types/lib/converters/toComputedKey.js +0 -1
  170. package/node_modules/@babel/types/lib/converters/toExpression.js +0 -1
  171. package/node_modules/@babel/types/lib/converters/toIdentifier.js +0 -1
  172. package/node_modules/@babel/types/lib/converters/toKeyAlias.js +0 -1
  173. package/node_modules/@babel/types/lib/converters/toSequenceExpression.js +0 -1
  174. package/node_modules/@babel/types/lib/converters/toStatement.js +0 -1
  175. package/node_modules/@babel/types/lib/converters/valueToNode.js +0 -1
  176. package/node_modules/@babel/types/lib/definitions/core.js +0 -1
  177. package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +0 -1
  178. package/node_modules/@babel/types/lib/definitions/experimental.js +0 -1
  179. package/node_modules/@babel/types/lib/definitions/flow.js +0 -1
  180. package/node_modules/@babel/types/lib/definitions/index.js +0 -1
  181. package/node_modules/@babel/types/lib/definitions/jsx.js +0 -1
  182. package/node_modules/@babel/types/lib/definitions/misc.js +0 -1
  183. package/node_modules/@babel/types/lib/definitions/placeholders.js +0 -1
  184. package/node_modules/@babel/types/lib/definitions/typescript.js +0 -1
  185. package/node_modules/@babel/types/lib/definitions/utils.js +0 -1
  186. package/node_modules/@babel/types/lib/index.js +0 -1
  187. package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +0 -1
  188. package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +0 -1
  189. package/node_modules/@babel/types/lib/modifications/inherits.js +0 -1
  190. package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +0 -1
  191. package/node_modules/@babel/types/lib/modifications/removeProperties.js +0 -1
  192. package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +0 -1
  193. package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +0 -1
  194. package/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js +0 -1
  195. package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +0 -1
  196. package/node_modules/@babel/types/lib/retrievers/getFunctionName.js +0 -1
  197. package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +0 -1
  198. package/node_modules/@babel/types/lib/traverse/traverse.js +0 -1
  199. package/node_modules/@babel/types/lib/traverse/traverseFast.js +0 -1
  200. package/node_modules/@babel/types/lib/utils/deprecationWarning.js +0 -1
  201. package/node_modules/@babel/types/lib/utils/inherit.js +0 -1
  202. package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +0 -1
  203. package/node_modules/@babel/types/lib/utils/shallowEqual.js +0 -1
  204. package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +0 -1
  205. package/node_modules/@babel/types/lib/validators/generated/index.js +0 -1
  206. package/node_modules/@babel/types/lib/validators/is.js +0 -1
  207. package/node_modules/@babel/types/lib/validators/isBinding.js +0 -1
  208. package/node_modules/@babel/types/lib/validators/isBlockScoped.js +0 -1
  209. package/node_modules/@babel/types/lib/validators/isImmutable.js +0 -1
  210. package/node_modules/@babel/types/lib/validators/isLet.js +0 -1
  211. package/node_modules/@babel/types/lib/validators/isNode.js +0 -1
  212. package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +0 -1
  213. package/node_modules/@babel/types/lib/validators/isPlaceholderType.js +0 -1
  214. package/node_modules/@babel/types/lib/validators/isReferenced.js +0 -1
  215. package/node_modules/@babel/types/lib/validators/isScope.js +0 -1
  216. package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +0 -1
  217. package/node_modules/@babel/types/lib/validators/isType.js +0 -1
  218. package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +0 -1
  219. package/node_modules/@babel/types/lib/validators/isValidIdentifier.js +0 -1
  220. package/node_modules/@babel/types/lib/validators/isVar.js +0 -1
  221. package/node_modules/@babel/types/lib/validators/matchesPattern.js +0 -1
  222. package/node_modules/@babel/types/lib/validators/react/isCompatTag.js +0 -1
  223. package/node_modules/@babel/types/lib/validators/react/isReactComponent.js +0 -1
  224. package/node_modules/@babel/types/lib/validators/validate.js +0 -1
  225. package/node_modules/@babylonjs/loaders/BVH/bvhFileLoader.d.ts +69 -0
  226. package/node_modules/@babylonjs/loaders/BVH/bvhFileLoader.js +132 -0
  227. package/node_modules/@babylonjs/loaders/BVH/bvhFileLoader.metadata.d.ts +8 -0
  228. package/node_modules/@babylonjs/loaders/BVH/bvhFileLoader.metadata.js +7 -0
  229. package/node_modules/@babylonjs/loaders/BVH/bvhLoader.d.ts +14 -0
  230. package/node_modules/@babylonjs/loaders/BVH/bvhLoader.js +328 -0
  231. package/node_modules/@babylonjs/loaders/BVH/bvhLoadingOptions.d.ts +9 -0
  232. package/node_modules/@babylonjs/loaders/BVH/bvhLoadingOptions.js +1 -0
  233. package/node_modules/@babylonjs/loaders/BVH/index.d.ts +2 -0
  234. package/node_modules/@babylonjs/loaders/BVH/index.js +3 -0
  235. package/node_modules/@babylonjs/loaders/OBJ/index.d.ts +4 -0
  236. package/node_modules/@babylonjs/loaders/OBJ/index.js +4 -0
  237. package/node_modules/@babylonjs/loaders/OBJ/mtlFileLoader.d.ts +41 -0
  238. package/node_modules/@babylonjs/loaders/OBJ/mtlFileLoader.js +230 -0
  239. package/node_modules/@babylonjs/loaders/OBJ/objFileLoader.d.ts +136 -0
  240. package/node_modules/@babylonjs/loaders/OBJ/objFileLoader.js +317 -0
  241. package/node_modules/@babylonjs/loaders/OBJ/objFileLoader.metadata.d.ts +4 -0
  242. package/node_modules/@babylonjs/loaders/OBJ/objFileLoader.metadata.js +4 -0
  243. package/node_modules/@babylonjs/loaders/OBJ/objLoadingOptions.d.ts +47 -0
  244. package/node_modules/@babylonjs/loaders/OBJ/objLoadingOptions.js +1 -0
  245. package/node_modules/@babylonjs/loaders/OBJ/solidParser.d.ts +175 -0
  246. package/node_modules/@babylonjs/loaders/OBJ/solidParser.js +903 -0
  247. package/node_modules/@babylonjs/loaders/SPLAT/index.d.ts +2 -0
  248. package/node_modules/@babylonjs/loaders/SPLAT/index.js +3 -0
  249. package/node_modules/@babylonjs/loaders/SPLAT/sog.d.ts +84 -0
  250. package/node_modules/@babylonjs/loaders/SPLAT/sog.js +294 -0
  251. package/node_modules/@babylonjs/loaders/SPLAT/splatDefs.d.ts +26 -0
  252. package/node_modules/@babylonjs/loaders/SPLAT/splatDefs.js +10 -0
  253. package/node_modules/@babylonjs/loaders/SPLAT/splatFileLoader.d.ts +100 -0
  254. package/node_modules/@babylonjs/loaders/SPLAT/splatFileLoader.js +536 -0
  255. package/node_modules/@babylonjs/loaders/SPLAT/splatFileLoader.metadata.d.ts +20 -0
  256. package/node_modules/@babylonjs/loaders/SPLAT/splatFileLoader.metadata.js +15 -0
  257. package/node_modules/@babylonjs/loaders/SPLAT/splatLoadingOptions.d.ts +33 -0
  258. package/node_modules/@babylonjs/loaders/SPLAT/splatLoadingOptions.js +1 -0
  259. package/node_modules/@babylonjs/loaders/SPLAT/spz.d.ts +11 -0
  260. package/node_modules/@babylonjs/loaders/SPLAT/spz.js +168 -0
  261. package/node_modules/@babylonjs/loaders/STL/index.d.ts +1 -0
  262. package/node_modules/@babylonjs/loaders/STL/index.js +1 -0
  263. package/node_modules/@babylonjs/loaders/STL/stlFileLoader.d.ts +78 -0
  264. package/node_modules/@babylonjs/loaders/STL/stlFileLoader.js +238 -0
  265. package/node_modules/@babylonjs/loaders/STL/stlFileLoader.metadata.d.ts +8 -0
  266. package/node_modules/@babylonjs/loaders/STL/stlFileLoader.metadata.js +7 -0
  267. package/node_modules/@babylonjs/loaders/bvh/license.md +21 -0
  268. package/node_modules/@babylonjs/loaders/dynamic.d.ts +5 -0
  269. package/node_modules/@babylonjs/loaders/dynamic.js +56 -0
  270. package/node_modules/@babylonjs/loaders/glTF/1.0/glTFBinaryExtension.d.ts +16 -0
  271. package/node_modules/@babylonjs/loaders/glTF/1.0/glTFBinaryExtension.js +64 -0
  272. package/node_modules/@babylonjs/loaders/glTF/1.0/glTFLoader.d.ts +144 -0
  273. package/node_modules/@babylonjs/loaders/glTF/1.0/glTFLoader.js +1841 -0
  274. package/node_modules/@babylonjs/loaders/glTF/1.0/glTFLoaderInterfaces.d.ts +412 -0
  275. package/node_modules/@babylonjs/loaders/glTF/1.0/glTFLoaderInterfaces.js +95 -0
  276. package/node_modules/@babylonjs/loaders/glTF/1.0/glTFLoaderUtils.d.ts +71 -0
  277. package/node_modules/@babylonjs/loaders/glTF/1.0/glTFLoaderUtils.js +254 -0
  278. package/node_modules/@babylonjs/loaders/glTF/1.0/glTFMaterialsCommonExtension.d.ts +13 -0
  279. package/node_modules/@babylonjs/loaders/glTF/1.0/glTFMaterialsCommonExtension.js +130 -0
  280. package/node_modules/@babylonjs/loaders/glTF/1.0/index.d.ts +5 -0
  281. package/node_modules/@babylonjs/loaders/glTF/1.0/index.js +5 -0
  282. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_lights_area.d.ts +41 -0
  283. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_lights_area.js +93 -0
  284. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_lights_ies.d.ts +41 -0
  285. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_lights_ies.js +83 -0
  286. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_lights_image_based.d.ts +48 -0
  287. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_lights_image_based.js +115 -0
  288. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_mesh_gpu_instancing.d.ts +39 -0
  289. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_mesh_gpu_instancing.js +94 -0
  290. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_meshopt_compression.d.ts +39 -0
  291. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_meshopt_compression.js +50 -0
  292. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_texture_avif.d.ts +34 -0
  293. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_texture_avif.js +38 -0
  294. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_texture_webp.d.ts +33 -0
  295. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/EXT_texture_webp.js +37 -0
  296. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/ExtrasAsMetadata.d.ts +53 -0
  297. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/ExtrasAsMetadata.js +73 -0
  298. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_animation_pointer.d.ts +47 -0
  299. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_animation_pointer.data.d.ts +1 -0
  300. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_animation_pointer.data.js +251 -0
  301. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_animation_pointer.js +77 -0
  302. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_draco_mesh_compression.d.ts +47 -0
  303. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_draco_mesh_compression.js +92 -0
  304. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/declarationMapper.d.ts +355 -0
  305. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/declarationMapper.js +1678 -0
  306. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/flowGraphGLTFDataProvider.d.ts +33 -0
  307. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/flowGraphGLTFDataProvider.js +19 -0
  308. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/index.d.ts +3 -0
  309. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/index.js +3 -0
  310. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/interactivityGraphParser.d.ts +70 -0
  311. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity/interactivityGraphParser.js +438 -0
  312. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity.d.ts +38 -0
  313. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_interactivity.js +150 -0
  314. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_lights_punctual.d.ts +41 -0
  315. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_lights_punctual.js +91 -0
  316. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_anisotropy.d.ts +42 -0
  317. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_anisotropy.js +65 -0
  318. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_clearcoat.d.ts +43 -0
  319. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_clearcoat.js +79 -0
  320. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_coat.d.ts +49 -0
  321. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_coat.js +119 -0
  322. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_diffuse_roughness.d.ts +43 -0
  323. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_diffuse_roughness.js +58 -0
  324. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_diffuse_transmission.d.ts +43 -0
  325. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_diffuse_transmission.js +69 -0
  326. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_dispersion.d.ts +43 -0
  327. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_dispersion.js +56 -0
  328. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_emissive_strength.d.ts +42 -0
  329. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_emissive_strength.js +47 -0
  330. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_fuzz.d.ts +43 -0
  331. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_fuzz.js +77 -0
  332. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_ior.d.ts +46 -0
  333. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_ior.js +54 -0
  334. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_iridescence.d.ts +42 -0
  335. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_iridescence.js +68 -0
  336. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_pbrSpecularGlossiness.d.ts +42 -0
  337. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_pbrSpecularGlossiness.js +80 -0
  338. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_sheen.d.ts +43 -0
  339. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_sheen.js +73 -0
  340. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_specular.d.ts +42 -0
  341. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_specular.js +76 -0
  342. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_transmission.d.ts +42 -0
  343. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_transmission.js +303 -0
  344. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_unlit.d.ts +42 -0
  345. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_unlit.js +66 -0
  346. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_variants.d.ts +112 -0
  347. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_variants.js +262 -0
  348. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_volume.d.ts +43 -0
  349. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_volume.js +82 -0
  350. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_volume_scatter.d.ts +45 -0
  351. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_materials_volume_scatter.js +109 -0
  352. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_mesh_quantization.d.ts +29 -0
  353. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_mesh_quantization.js +22 -0
  354. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_node_hoverability.d.ts +31 -0
  355. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_node_hoverability.js +189 -0
  356. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_node_selectability.d.ts +30 -0
  357. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_node_selectability.js +123 -0
  358. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_node_visibility.d.ts +30 -0
  359. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_node_visibility.js +66 -0
  360. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_texture_basisu.d.ts +33 -0
  361. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_texture_basisu.js +37 -0
  362. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_texture_transform.d.ts +37 -0
  363. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_texture_transform.js +58 -0
  364. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_xmp_json_ld.d.ts +39 -0
  365. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/KHR_xmp_json_ld.js +47 -0
  366. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_audio_emitter.d.ts +56 -0
  367. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_audio_emitter.js +228 -0
  368. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_lod.d.ts +104 -0
  369. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_lod.js +337 -0
  370. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_minecraftMesh.d.ts +27 -0
  371. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_minecraftMesh.js +39 -0
  372. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_sRGBFactors.d.ts +27 -0
  373. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/MSFT_sRGBFactors.js +38 -0
  374. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/dynamic.d.ts +4 -0
  375. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/dynamic.js +212 -0
  376. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/gltfPathToObjectConverter.d.ts +45 -0
  377. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/gltfPathToObjectConverter.js +100 -0
  378. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/index.d.ts +43 -0
  379. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/index.js +44 -0
  380. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/objectModelMapping.d.ts +306 -0
  381. package/node_modules/@babylonjs/loaders/glTF/2.0/Extensions/objectModelMapping.js +884 -0
  382. package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoader.d.ts +450 -0
  383. package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoader.js +2485 -0
  384. package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderAnimation.d.ts +42 -0
  385. package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderAnimation.js +79 -0
  386. package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderExtension.d.ts +165 -0
  387. package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderExtension.js +1 -0
  388. package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderExtensionRegistry.d.ts +25 -0
  389. package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderExtensionRegistry.js +32 -0
  390. package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderInterfaces.d.ts +262 -0
  391. package/node_modules/@babylonjs/loaders/glTF/2.0/glTFLoaderInterfaces.js +1 -0
  392. package/node_modules/@babylonjs/loaders/glTF/2.0/index.d.ts +8 -0
  393. package/node_modules/@babylonjs/loaders/glTF/2.0/index.js +9 -0
  394. package/node_modules/@babylonjs/loaders/glTF/2.0/materialLoadingAdapter.d.ts +364 -0
  395. package/node_modules/@babylonjs/loaders/glTF/2.0/materialLoadingAdapter.js +1 -0
  396. package/node_modules/@babylonjs/loaders/glTF/2.0/openpbrMaterialLoadingAdapter.d.ts +674 -0
  397. package/node_modules/@babylonjs/loaders/glTF/2.0/openpbrMaterialLoadingAdapter.js +1034 -0
  398. package/node_modules/@babylonjs/loaders/glTF/2.0/pbrMaterialLoadingAdapter.d.ts +705 -0
  399. package/node_modules/@babylonjs/loaders/glTF/2.0/pbrMaterialLoadingAdapter.js +1126 -0
  400. package/node_modules/@babylonjs/loaders/glTF/glTFFileLoader.d.ts +553 -0
  401. package/node_modules/@babylonjs/loaders/glTF/glTFFileLoader.js +998 -0
  402. package/node_modules/@babylonjs/loaders/glTF/glTFFileLoader.metadata.d.ts +15 -0
  403. package/node_modules/@babylonjs/loaders/glTF/glTFFileLoader.metadata.js +17 -0
  404. package/node_modules/@babylonjs/loaders/glTF/glTFValidation.d.ts +35 -0
  405. package/node_modules/@babylonjs/loaders/glTF/glTFValidation.js +131 -0
  406. package/node_modules/@babylonjs/loaders/glTF/index.d.ts +5 -0
  407. package/node_modules/@babylonjs/loaders/glTF/index.js +6 -0
  408. package/node_modules/@babylonjs/loaders/index.d.ts +6 -0
  409. package/node_modules/@babylonjs/loaders/index.js +7 -0
  410. package/node_modules/@babylonjs/loaders/legacy/legacy-bvhFileLoader.d.ts +1 -0
  411. package/node_modules/@babylonjs/loaders/legacy/legacy-bvhFileLoader.js +15 -0
  412. package/node_modules/@babylonjs/loaders/legacy/legacy-dynamic.d.ts +1 -0
  413. package/node_modules/@babylonjs/loaders/legacy/legacy-dynamic.js +13 -0
  414. package/node_modules/@babylonjs/loaders/legacy/legacy-glTF.d.ts +2 -0
  415. package/node_modules/@babylonjs/loaders/legacy/legacy-glTF.js +18 -0
  416. package/node_modules/@babylonjs/loaders/legacy/legacy-glTF1.d.ts +2 -0
  417. package/node_modules/@babylonjs/loaders/legacy/legacy-glTF1.js +15 -0
  418. package/node_modules/@babylonjs/loaders/legacy/legacy-glTF1FileLoader.d.ts +2 -0
  419. package/node_modules/@babylonjs/loaders/legacy/legacy-glTF1FileLoader.js +3 -0
  420. package/node_modules/@babylonjs/loaders/legacy/legacy-glTF2.d.ts +2 -0
  421. package/node_modules/@babylonjs/loaders/legacy/legacy-glTF2.js +34 -0
  422. package/node_modules/@babylonjs/loaders/legacy/legacy-glTF2FileLoader.d.ts +2 -0
  423. package/node_modules/@babylonjs/loaders/legacy/legacy-glTF2FileLoader.js +3 -0
  424. package/node_modules/@babylonjs/loaders/legacy/legacy-glTFFileLoader.d.ts +3 -0
  425. package/node_modules/@babylonjs/loaders/legacy/legacy-glTFFileLoader.js +4 -0
  426. package/node_modules/@babylonjs/loaders/legacy/legacy-objFileLoader.d.ts +1 -0
  427. package/node_modules/@babylonjs/loaders/legacy/legacy-objFileLoader.js +15 -0
  428. package/node_modules/@babylonjs/loaders/legacy/legacy-stlFileLoader.d.ts +1 -0
  429. package/node_modules/@babylonjs/loaders/legacy/legacy-stlFileLoader.js +15 -0
  430. package/node_modules/@babylonjs/loaders/legacy/legacy.d.ts +8 -0
  431. package/node_modules/@babylonjs/loaders/legacy/legacy.js +10 -0
  432. package/node_modules/@babylonjs/loaders/license.md +71 -0
  433. package/node_modules/@babylonjs/loaders/package.json +49 -0
  434. package/node_modules/@babylonjs/loaders/readme.md +23 -0
  435. package/node_modules/@fps-games/babylon-renderer/dist/game-world-plugin-lifecycle.d.ts +22 -0
  436. package/node_modules/@fps-games/babylon-renderer/dist/game-world-plugin-lifecycle.d.ts.map +1 -0
  437. package/node_modules/@fps-games/babylon-renderer/dist/game-world-plugin-lifecycle.js +187 -0
  438. package/node_modules/@fps-games/babylon-renderer/dist/game-world-plugin-lifecycle.js.map +1 -0
  439. package/node_modules/@fps-games/babylon-renderer/dist/index.d.ts +3 -0
  440. package/node_modules/@fps-games/babylon-renderer/dist/index.d.ts.map +1 -1
  441. package/node_modules/@fps-games/babylon-renderer/dist/index.js +3 -0
  442. package/node_modules/@fps-games/babylon-renderer/dist/index.js.map +1 -1
  443. package/node_modules/@fps-games/babylon-renderer/dist/material-owner-candidates.d.ts +19 -0
  444. package/node_modules/@fps-games/babylon-renderer/dist/material-owner-candidates.d.ts.map +1 -0
  445. package/node_modules/@fps-games/babylon-renderer/dist/material-owner-candidates.js +212 -0
  446. package/node_modules/@fps-games/babylon-renderer/dist/material-owner-candidates.js.map +1 -0
  447. package/node_modules/@fps-games/babylon-renderer/dist/plugin.d.ts +17 -2
  448. package/node_modules/@fps-games/babylon-renderer/dist/plugin.d.ts.map +1 -1
  449. package/node_modules/@fps-games/babylon-renderer/dist/plugin.js +192 -17
  450. package/node_modules/@fps-games/babylon-renderer/dist/plugin.js.map +1 -1
  451. package/node_modules/@fps-games/babylon-renderer/dist/post-process/babylon-default-pipeline.d.ts +2 -0
  452. package/node_modules/@fps-games/babylon-renderer/dist/post-process/babylon-default-pipeline.d.ts.map +1 -1
  453. package/node_modules/@fps-games/babylon-renderer/dist/post-process/babylon-default-pipeline.js +139 -3
  454. package/node_modules/@fps-games/babylon-renderer/dist/post-process/babylon-default-pipeline.js.map +1 -1
  455. package/node_modules/@fps-games/babylon-renderer/dist/post-process/types.d.ts +4 -0
  456. package/node_modules/@fps-games/babylon-renderer/dist/post-process/types.d.ts.map +1 -1
  457. package/node_modules/@fps-games/babylon-renderer/dist/post-process/types.js.map +1 -1
  458. package/node_modules/@fps-games/babylon-renderer/dist/shadows/dynamic-shadow-system.d.ts +1 -0
  459. package/node_modules/@fps-games/babylon-renderer/dist/shadows/dynamic-shadow-system.d.ts.map +1 -1
  460. package/node_modules/@fps-games/babylon-renderer/dist/shadows/dynamic-shadow-system.js +1 -0
  461. package/node_modules/@fps-games/babylon-renderer/dist/shadows/dynamic-shadow-system.js.map +1 -1
  462. package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-generator-shaders.d.ts +14 -0
  463. package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-generator-shaders.d.ts.map +1 -0
  464. package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-generator-shaders.js +14 -0
  465. package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-generator-shaders.js.map +1 -0
  466. package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-depth-backend.d.ts +59 -0
  467. package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-depth-backend.d.ts.map +1 -0
  468. package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-depth-backend.js +725 -0
  469. package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-depth-backend.js.map +1 -0
  470. package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-system.d.ts +136 -0
  471. package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-system.d.ts.map +1 -0
  472. package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-system.js +2735 -0
  473. package/node_modules/@fps-games/babylon-renderer/dist/shadows/shadow-map-experiment-system.js.map +1 -0
  474. package/node_modules/@fps-games/babylon-renderer/package.json +7 -7
  475. package/node_modules/@fps-games/editor-babylon/dist/camera-controller.js +1 -1
  476. package/node_modules/@fps-games/editor-babylon/dist/camera-controller.js.map +1 -1
  477. package/node_modules/@fps-games/editor-babylon/dist/index.d.ts +2 -1
  478. package/node_modules/@fps-games/editor-babylon/dist/index.d.ts.map +1 -1
  479. package/node_modules/@fps-games/editor-babylon/dist/index.js +2 -1
  480. package/node_modules/@fps-games/editor-babylon/dist/index.js.map +1 -1
  481. package/node_modules/@fps-games/editor-babylon/dist/main-camera-preview.d.ts +2 -0
  482. package/node_modules/@fps-games/editor-babylon/dist/main-camera-preview.d.ts.map +1 -1
  483. package/node_modules/@fps-games/editor-babylon/dist/main-camera-preview.js +59 -6
  484. package/node_modules/@fps-games/editor-babylon/dist/main-camera-preview.js.map +1 -1
  485. package/node_modules/@fps-games/editor-babylon/dist/marker-overlay.js +24 -0
  486. package/node_modules/@fps-games/editor-babylon/dist/marker-overlay.js.map +1 -1
  487. package/node_modules/@fps-games/editor-babylon/dist/material-slot-source-resolver.d.ts.map +1 -1
  488. package/node_modules/@fps-games/editor-babylon/dist/material-slot-source-resolver.js +81 -11
  489. package/node_modules/@fps-games/editor-babylon/dist/material-slot-source-resolver.js.map +1 -1
  490. package/node_modules/@fps-games/editor-babylon/dist/projection-asset-container-importer.js +2 -8
  491. package/node_modules/@fps-games/editor-babylon/dist/projection-asset-container-importer.js.map +1 -1
  492. package/node_modules/@fps-games/editor-babylon/dist/projection.d.ts +26 -5
  493. package/node_modules/@fps-games/editor-babylon/dist/projection.d.ts.map +1 -1
  494. package/node_modules/@fps-games/editor-babylon/dist/projection.js +396 -363
  495. package/node_modules/@fps-games/editor-babylon/dist/projection.js.map +1 -1
  496. package/node_modules/@fps-games/editor-babylon/dist/scene-view-camera-controller.d.ts +4 -0
  497. package/node_modules/@fps-games/editor-babylon/dist/scene-view-camera-controller.d.ts.map +1 -1
  498. package/node_modules/@fps-games/editor-babylon/dist/scene-view-camera-controller.js +76 -10
  499. package/node_modules/@fps-games/editor-babylon/dist/scene-view-camera-controller.js.map +1 -1
  500. package/node_modules/@fps-games/editor-babylon/dist/scene-view-spatial-overlay-controller.d.ts.map +1 -1
  501. package/node_modules/@fps-games/editor-babylon/dist/scene-view-spatial-overlay-controller.js +85 -22
  502. package/node_modules/@fps-games/editor-babylon/dist/scene-view-spatial-overlay-controller.js.map +1 -1
  503. package/node_modules/@fps-games/editor-babylon/dist/selection-identity-pass.d.ts +46 -0
  504. package/node_modules/@fps-games/editor-babylon/dist/selection-identity-pass.d.ts.map +1 -0
  505. package/node_modules/@fps-games/editor-babylon/dist/selection-identity-pass.js +304 -0
  506. package/node_modules/@fps-games/editor-babylon/dist/selection-identity-pass.js.map +1 -0
  507. package/node_modules/@fps-games/editor-babylon/dist/selection-presentation-controller.d.ts +87 -0
  508. package/node_modules/@fps-games/editor-babylon/dist/selection-presentation-controller.d.ts.map +1 -0
  509. package/node_modules/@fps-games/editor-babylon/dist/selection-presentation-controller.js +1746 -0
  510. package/node_modules/@fps-games/editor-babylon/dist/selection-presentation-controller.js.map +1 -0
  511. package/node_modules/@fps-games/editor-babylon/dist/shadow-preview-controller.d.ts +11 -3
  512. package/node_modules/@fps-games/editor-babylon/dist/shadow-preview-controller.d.ts.map +1 -1
  513. package/node_modules/@fps-games/editor-babylon/dist/shadow-preview-controller.js +105 -15
  514. package/node_modules/@fps-games/editor-babylon/dist/shadow-preview-controller.js.map +1 -1
  515. package/node_modules/@fps-games/editor-babylon/dist/transform-gizmo-controller.d.ts +1 -0
  516. package/node_modules/@fps-games/editor-babylon/dist/transform-gizmo-controller.d.ts.map +1 -1
  517. package/node_modules/@fps-games/editor-babylon/dist/transform-gizmo-controller.js +249 -15
  518. package/node_modules/@fps-games/editor-babylon/dist/transform-gizmo-controller.js.map +1 -1
  519. package/node_modules/@fps-games/editor-babylon/dist/types.d.ts +1 -1
  520. package/node_modules/@fps-games/editor-babylon/dist/types.d.ts.map +1 -1
  521. package/node_modules/@fps-games/editor-babylon/dist/types.js.map +1 -1
  522. package/node_modules/@fps-games/editor-babylon/dist/viewport-ground-projection.d.ts +25 -0
  523. package/node_modules/@fps-games/editor-babylon/dist/viewport-ground-projection.d.ts.map +1 -0
  524. package/node_modules/@fps-games/editor-babylon/dist/viewport-ground-projection.js +44 -0
  525. package/node_modules/@fps-games/editor-babylon/dist/viewport-ground-projection.js.map +1 -0
  526. package/node_modules/@fps-games/editor-babylon/package.json +6 -5
  527. package/node_modules/@fps-games/editor-browser/dist/index.d.ts +13 -11
  528. package/node_modules/@fps-games/editor-browser/dist/index.d.ts.map +1 -1
  529. package/node_modules/@fps-games/editor-browser/dist/index.js +9 -9
  530. package/node_modules/@fps-games/editor-browser/dist/index.js.map +1 -1
  531. package/node_modules/@fps-games/editor-browser/dist/local-editor-asset-browser-continuity.d.ts +35 -0
  532. package/node_modules/@fps-games/editor-browser/dist/local-editor-asset-browser-continuity.d.ts.map +1 -0
  533. package/node_modules/@fps-games/editor-browser/dist/local-editor-asset-browser-continuity.js +136 -0
  534. package/node_modules/@fps-games/editor-browser/dist/local-editor-asset-browser-continuity.js.map +1 -0
  535. package/node_modules/@fps-games/editor-browser/dist/local-editor-asset-filesystem.d.ts +46 -0
  536. package/node_modules/@fps-games/editor-browser/dist/local-editor-asset-filesystem.d.ts.map +1 -0
  537. package/node_modules/@fps-games/editor-browser/dist/local-editor-asset-filesystem.js +283 -0
  538. package/node_modules/@fps-games/editor-browser/dist/local-editor-asset-filesystem.js.map +1 -0
  539. package/node_modules/@fps-games/editor-browser/dist/local-editor-clipboard.d.ts +2 -0
  540. package/node_modules/@fps-games/editor-browser/dist/local-editor-clipboard.d.ts.map +1 -0
  541. package/node_modules/@fps-games/editor-browser/dist/local-editor-clipboard.js +36 -0
  542. package/node_modules/@fps-games/editor-browser/dist/local-editor-clipboard.js.map +1 -0
  543. package/node_modules/@fps-games/editor-browser/dist/local-editor-inspector-groups.d.ts +2 -0
  544. package/node_modules/@fps-games/editor-browser/dist/local-editor-inspector-groups.d.ts.map +1 -1
  545. package/node_modules/@fps-games/editor-browser/dist/local-editor-inspector-groups.js +17 -0
  546. package/node_modules/@fps-games/editor-browser/dist/local-editor-inspector-groups.js.map +1 -1
  547. package/node_modules/@fps-games/editor-browser/dist/local-editor-preview-cleanup-registry.d.ts +12 -0
  548. package/node_modules/@fps-games/editor-browser/dist/local-editor-preview-cleanup-registry.d.ts.map +1 -0
  549. package/node_modules/@fps-games/editor-browser/dist/local-editor-preview-cleanup-registry.js +67 -0
  550. package/node_modules/@fps-games/editor-browser/dist/local-editor-preview-cleanup-registry.js.map +1 -0
  551. package/node_modules/@fps-games/editor-browser/dist/local-editor-project-file-open.d.ts +6 -0
  552. package/node_modules/@fps-games/editor-browser/dist/local-editor-project-file-open.d.ts.map +1 -0
  553. package/node_modules/@fps-games/editor-browser/dist/local-editor-project-file-open.js +9 -0
  554. package/node_modules/@fps-games/editor-browser/dist/local-editor-project-file-open.js.map +1 -0
  555. package/node_modules/@fps-games/editor-browser/dist/local-editor-project-file-preview.d.ts +7 -0
  556. package/node_modules/@fps-games/editor-browser/dist/local-editor-project-file-preview.d.ts.map +1 -0
  557. package/node_modules/@fps-games/editor-browser/dist/local-editor-project-file-preview.js +20 -0
  558. package/node_modules/@fps-games/editor-browser/dist/local-editor-project-file-preview.js.map +1 -0
  559. package/node_modules/@fps-games/editor-browser/dist/local-editor-project-media-thumbnail-cache.d.ts +9 -0
  560. package/node_modules/@fps-games/editor-browser/dist/local-editor-project-media-thumbnail-cache.d.ts.map +1 -0
  561. package/node_modules/@fps-games/editor-browser/dist/local-editor-project-media-thumbnail-cache.js +219 -0
  562. package/node_modules/@fps-games/editor-browser/dist/local-editor-project-media-thumbnail-cache.js.map +1 -0
  563. package/node_modules/@fps-games/editor-browser/dist/local-editor-tool-presentation.d.ts +14 -0
  564. package/node_modules/@fps-games/editor-browser/dist/local-editor-tool-presentation.d.ts.map +1 -0
  565. package/node_modules/@fps-games/editor-browser/dist/local-editor-tool-presentation.js +42 -0
  566. package/node_modules/@fps-games/editor-browser/dist/local-editor-tool-presentation.js.map +1 -0
  567. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-asset-kind.d.ts +1 -1
  568. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-asset-kind.d.ts.map +1 -1
  569. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-asset-kind.js +8 -0
  570. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-asset-kind.js.map +1 -1
  571. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-console.d.ts +27 -0
  572. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-console.d.ts.map +1 -0
  573. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-console.js +288 -0
  574. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-console.js.map +1 -0
  575. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-context-menu.d.ts.map +1 -1
  576. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-context-menu.js +157 -77
  577. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-context-menu.js.map +1 -1
  578. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-dock-panel.d.ts.map +1 -1
  579. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-dock-panel.js +27 -21
  580. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-dock-panel.js.map +1 -1
  581. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-formal-surface-visibility.d.ts +19 -0
  582. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-formal-surface-visibility.d.ts.map +1 -0
  583. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-formal-surface-visibility.js +44 -0
  584. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-formal-surface-visibility.js.map +1 -0
  585. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-controller.d.ts +36 -6
  586. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-controller.d.ts.map +1 -1
  587. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-controller.js +829 -866
  588. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-controller.js.map +1 -1
  589. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-drag-policy.d.ts +8 -7
  590. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-drag-policy.d.ts.map +1 -1
  591. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-drag-policy.js +1 -7
  592. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-drag-policy.js.map +1 -1
  593. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view-adapter.d.ts +7 -0
  594. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view-adapter.d.ts.map +1 -0
  595. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view-adapter.js +20 -0
  596. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view-adapter.js.map +1 -0
  597. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view.d.ts +6 -7
  598. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view.d.ts.map +1 -1
  599. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view.js +266 -114
  600. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-view.js.map +1 -1
  601. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-icons.d.ts +1 -1
  602. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-icons.d.ts.map +1 -1
  603. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-icons.js +34 -0
  604. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-icons.js.map +1 -1
  605. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-input-router.d.ts.map +1 -1
  606. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-input-router.js +3 -17
  607. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-input-router.js.map +1 -1
  608. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-modal-dialog.d.ts +14 -0
  609. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-modal-dialog.d.ts.map +1 -1
  610. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-modal-dialog.js +44 -62
  611. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-modal-dialog.js.map +1 -1
  612. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-panels.d.ts +30 -8
  613. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-panels.d.ts.map +1 -1
  614. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-panels.js +911 -698
  615. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-panels.js.map +1 -1
  616. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-prefab-stage.d.ts +10 -37
  617. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-prefab-stage.d.ts.map +1 -1
  618. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-prefab-stage.js +29 -105
  619. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-prefab-stage.js.map +1 -1
  620. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-primitives.d.ts.map +1 -1
  621. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-primitives.js +29 -110
  622. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-primitives.js.map +1 -1
  623. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shared.d.ts +1 -3
  624. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shared.d.ts.map +1 -1
  625. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shared.js +6 -90
  626. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shared.js.map +1 -1
  627. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shortcuts.d.ts.map +1 -1
  628. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shortcuts.js +9 -54
  629. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-shortcuts.js.map +1 -1
  630. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-diagnostics.d.ts +16 -1
  631. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-diagnostics.d.ts.map +1 -1
  632. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-diagnostics.js +44 -39
  633. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-diagnostics.js.map +1 -1
  634. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-format.d.ts +4 -0
  635. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-format.d.ts.map +1 -0
  636. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-format.js +44 -0
  637. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-status-format.js.map +1 -0
  638. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-structured-drag-policy.d.ts.map +1 -1
  639. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-structured-drag-policy.js +35 -44
  640. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-structured-drag-policy.js.map +1 -1
  641. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-theme.d.ts.map +1 -1
  642. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-theme.js +40 -24
  643. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-theme.js.map +1 -1
  644. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-tooltip.d.ts.map +1 -1
  645. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-tooltip.js +2 -20
  646. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-tooltip.js.map +1 -1
  647. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-types.d.ts +114 -343
  648. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-types.d.ts.map +1 -1
  649. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-types.js.map +1 -1
  650. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-workbench.d.ts +13 -14
  651. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-workbench.d.ts.map +1 -1
  652. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-workbench.js +120 -134
  653. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-workbench.js.map +1 -1
  654. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui.d.ts +6 -10
  655. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui.d.ts.map +1 -1
  656. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui.js +2019 -861
  657. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui.js.map +1 -1
  658. package/node_modules/@fps-games/editor-browser/dist/local-editor-viewport-orientation.d.ts +13 -0
  659. package/node_modules/@fps-games/editor-browser/dist/local-editor-viewport-orientation.d.ts.map +1 -0
  660. package/node_modules/@fps-games/editor-browser/dist/local-editor-viewport-orientation.js +15 -0
  661. package/node_modules/@fps-games/editor-browser/dist/local-editor-viewport-orientation.js.map +1 -0
  662. package/node_modules/@fps-games/editor-browser/dist/plugin-contributions.d.ts +2 -3
  663. package/node_modules/@fps-games/editor-browser/dist/plugin-contributions.d.ts.map +1 -1
  664. package/node_modules/@fps-games/editor-browser/dist/plugin-contributions.js +0 -180
  665. package/node_modules/@fps-games/editor-browser/dist/plugin-contributions.js.map +1 -1
  666. package/node_modules/@fps-games/editor-browser/dist/runtime-debug.d.ts +5 -0
  667. package/node_modules/@fps-games/editor-browser/dist/runtime-debug.d.ts.map +1 -0
  668. package/node_modules/@fps-games/editor-browser/dist/runtime-debug.js +5 -0
  669. package/node_modules/@fps-games/editor-browser/dist/runtime-debug.js.map +1 -0
  670. package/node_modules/@fps-games/editor-browser/package.json +15 -4
  671. package/node_modules/@fps-games/editor-core/dist/editor-diagnostic-store.d.ts +22 -0
  672. package/node_modules/@fps-games/editor-core/dist/editor-diagnostic-store.d.ts.map +1 -0
  673. package/node_modules/@fps-games/editor-core/dist/editor-diagnostic-store.js +226 -0
  674. package/node_modules/@fps-games/editor-core/dist/editor-diagnostic-store.js.map +1 -0
  675. package/node_modules/@fps-games/editor-core/dist/editor-plugin-host.d.ts +6 -1
  676. package/node_modules/@fps-games/editor-core/dist/editor-plugin-host.d.ts.map +1 -1
  677. package/node_modules/@fps-games/editor-core/dist/editor-plugin-host.js +94 -2
  678. package/node_modules/@fps-games/editor-core/dist/editor-plugin-host.js.map +1 -1
  679. package/node_modules/@fps-games/editor-core/dist/editor-session.d.ts +24 -2
  680. package/node_modules/@fps-games/editor-core/dist/editor-session.d.ts.map +1 -1
  681. package/node_modules/@fps-games/editor-core/dist/editor-session.js +70 -10
  682. package/node_modules/@fps-games/editor-core/dist/editor-session.js.map +1 -1
  683. package/node_modules/@fps-games/editor-core/dist/editor-tools.d.ts +113 -0
  684. package/node_modules/@fps-games/editor-core/dist/editor-tools.d.ts.map +1 -0
  685. package/node_modules/@fps-games/editor-core/dist/editor-tools.js +615 -0
  686. package/node_modules/@fps-games/editor-core/dist/editor-tools.js.map +1 -0
  687. package/node_modules/@fps-games/editor-core/dist/inspector.d.ts +46 -0
  688. package/node_modules/@fps-games/editor-core/dist/inspector.d.ts.map +1 -1
  689. package/node_modules/@fps-games/editor-core/dist/inspector.js +62 -0
  690. package/node_modules/@fps-games/editor-core/dist/inspector.js.map +1 -1
  691. package/node_modules/@fps-games/editor-core/dist/scene-graph.d.ts +1 -0
  692. package/node_modules/@fps-games/editor-core/dist/scene-graph.d.ts.map +1 -1
  693. package/node_modules/@fps-games/editor-core/dist/scene-graph.js.map +1 -1
  694. package/node_modules/@fps-games/editor-core/dist/viewport-tools.d.ts +11 -2
  695. package/node_modules/@fps-games/editor-core/dist/viewport-tools.d.ts.map +1 -1
  696. package/node_modules/@fps-games/editor-core/dist/viewport-tools.js +12 -1
  697. package/node_modules/@fps-games/editor-core/dist/viewport-tools.js.map +1 -1
  698. package/node_modules/@fps-games/editor-core/package.json +14 -6
  699. package/node_modules/@fps-games/editor-forge-play/package.json +2 -2
  700. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/metadata.js +14 -3
  701. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/metadata.js.map +1 -1
  702. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/node.d.ts +1 -1
  703. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/node.d.ts.map +1 -1
  704. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/node.js +1 -1
  705. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/node.js.map +1 -1
  706. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/registry.d.ts +14 -0
  707. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/registry.d.ts.map +1 -1
  708. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/registry.js +49 -1
  709. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-database/registry.js.map +1 -1
  710. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/catalog.d.ts +1 -0
  711. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/catalog.d.ts.map +1 -1
  712. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/catalog.js +63 -2
  713. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/catalog.js.map +1 -1
  714. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/document.d.ts.map +1 -1
  715. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/document.js +48 -6
  716. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/document.js.map +1 -1
  717. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/index.d.ts +1 -1
  718. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/index.d.ts.map +1 -1
  719. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/index.js +1 -1
  720. package/node_modules/@fps-games/editor-playable-sdk/dist/asset-library/index.js.map +1 -1
  721. package/node_modules/@fps-games/editor-playable-sdk/dist/authoring-server/handler.d.ts.map +1 -1
  722. package/node_modules/@fps-games/editor-playable-sdk/dist/authoring-server/handler.js +15 -1
  723. package/node_modules/@fps-games/editor-playable-sdk/dist/authoring-server/handler.js.map +1 -1
  724. package/node_modules/@fps-games/editor-playable-sdk/dist/authoring-server/routes.d.ts.map +1 -1
  725. package/node_modules/@fps-games/editor-playable-sdk/dist/authoring-server/routes.js +3 -0
  726. package/node_modules/@fps-games/editor-playable-sdk/dist/authoring-server/routes.js.map +1 -1
  727. package/node_modules/@fps-games/editor-playable-sdk/dist/authoring-server/types.d.ts +6 -1
  728. package/node_modules/@fps-games/editor-playable-sdk/dist/authoring-server/types.d.ts.map +1 -1
  729. package/node_modules/@fps-games/editor-playable-sdk/dist/authoring-server/types.js.map +1 -1
  730. package/node_modules/@fps-games/editor-playable-sdk/dist/document/helpers.d.ts +28 -3
  731. package/node_modules/@fps-games/editor-playable-sdk/dist/document/helpers.d.ts.map +1 -1
  732. package/node_modules/@fps-games/editor-playable-sdk/dist/document/helpers.js +314 -6
  733. package/node_modules/@fps-games/editor-playable-sdk/dist/document/helpers.js.map +1 -1
  734. package/node_modules/@fps-games/editor-playable-sdk/dist/document/index.d.ts +2 -0
  735. package/node_modules/@fps-games/editor-playable-sdk/dist/document/index.d.ts.map +1 -1
  736. package/node_modules/@fps-games/editor-playable-sdk/dist/document/index.js +2 -0
  737. package/node_modules/@fps-games/editor-playable-sdk/dist/document/index.js.map +1 -1
  738. package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-instance-identity.d.ts +11 -0
  739. package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-instance-identity.d.ts.map +1 -0
  740. package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-instance-identity.js +27 -0
  741. package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-instance-identity.js.map +1 -0
  742. package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-marker.d.ts +5 -0
  743. package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-marker.d.ts.map +1 -0
  744. package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-marker.js +285 -0
  745. package/node_modules/@fps-games/editor-playable-sdk/dist/document/prefab-marker.js.map +1 -0
  746. package/node_modules/@fps-games/editor-playable-sdk/dist/document/types.d.ts +7 -3
  747. package/node_modules/@fps-games/editor-playable-sdk/dist/document/types.d.ts.map +1 -1
  748. package/node_modules/@fps-games/editor-playable-sdk/dist/document/types.js.map +1 -1
  749. package/node_modules/@fps-games/editor-playable-sdk/dist/index.d.ts +4 -0
  750. package/node_modules/@fps-games/editor-playable-sdk/dist/index.d.ts.map +1 -1
  751. package/node_modules/@fps-games/editor-playable-sdk/dist/index.js +7 -0
  752. package/node_modules/@fps-games/editor-playable-sdk/dist/index.js.map +1 -1
  753. package/node_modules/@fps-games/editor-playable-sdk/dist/inspector/document-sections.d.ts.map +1 -1
  754. package/node_modules/@fps-games/editor-playable-sdk/dist/inspector/document-sections.js +23 -81
  755. package/node_modules/@fps-games/editor-playable-sdk/dist/inspector/document-sections.js.map +1 -1
  756. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-manifest.d.ts +41 -0
  757. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-manifest.d.ts.map +1 -0
  758. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-manifest.js +93 -0
  759. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-manifest.js.map +1 -0
  760. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-module.d.ts +29 -0
  761. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-module.d.ts.map +1 -0
  762. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-module.js +77 -0
  763. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-module.js.map +1 -0
  764. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-performance.d.ts +51 -0
  765. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-performance.d.ts.map +1 -0
  766. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-performance.js +105 -0
  767. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry-performance.js.map +1 -0
  768. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry.d.ts +60 -0
  769. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry.d.ts.map +1 -0
  770. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry.js +287 -0
  771. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/editor-entry.js.map +1 -0
  772. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play-types.d.ts +6 -1
  773. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play-types.d.ts.map +1 -1
  774. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play-types.js.map +1 -1
  775. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play.d.ts +1 -0
  776. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play.d.ts.map +1 -1
  777. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play.js +53 -17
  778. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/forge-play.js.map +1 -1
  779. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/host-controller.d.ts +16 -8
  780. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/host-controller.d.ts.map +1 -1
  781. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/host-controller.js +10 -6
  782. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/host-controller.js.map +1 -1
  783. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/index.d.ts +5 -3
  784. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/index.d.ts.map +1 -1
  785. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/index.js +2 -1
  786. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/index.js.map +1 -1
  787. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/lifecycle.d.ts.map +1 -1
  788. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/lifecycle.js +134 -66
  789. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/lifecycle.js.map +1 -1
  790. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/project-asset-commands.d.ts +11 -0
  791. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/project-asset-commands.d.ts.map +1 -1
  792. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/project-asset-commands.js +21 -14
  793. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/project-asset-commands.js.map +1 -1
  794. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/types.d.ts +17 -9
  795. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/types.d.ts.map +1 -1
  796. package/node_modules/@fps-games/editor-playable-sdk/dist/local-harness/types.js.map +1 -1
  797. package/node_modules/@fps-games/editor-playable-sdk/dist/mutation/field-patch.d.ts.map +1 -1
  798. package/node_modules/@fps-games/editor-playable-sdk/dist/mutation/field-patch.js +20 -0
  799. package/node_modules/@fps-games/editor-playable-sdk/dist/mutation/field-patch.js.map +1 -1
  800. package/node_modules/@fps-games/editor-playable-sdk/dist/mutation/reducer.d.ts.map +1 -1
  801. package/node_modules/@fps-games/editor-playable-sdk/dist/mutation/reducer.js +49 -10
  802. package/node_modules/@fps-games/editor-playable-sdk/dist/mutation/reducer.js.map +1 -1
  803. package/node_modules/@fps-games/editor-playable-sdk/dist/package-resolution/aliases.d.ts +2 -2
  804. package/node_modules/@fps-games/editor-playable-sdk/dist/package-resolution/aliases.d.ts.map +1 -1
  805. package/node_modules/@fps-games/editor-playable-sdk/dist/package-resolution/aliases.js +18 -0
  806. package/node_modules/@fps-games/editor-playable-sdk/dist/package-resolution/aliases.js.map +1 -1
  807. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/action-patches.d.ts +7 -0
  808. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/action-patches.d.ts.map +1 -1
  809. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/action-patches.js +130 -20
  810. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/action-patches.js.map +1 -1
  811. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/assets.d.ts +1 -1
  812. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/assets.d.ts.map +1 -1
  813. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/assets.js +12 -3
  814. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/assets.js.map +1 -1
  815. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/derived-markers.d.ts +11 -0
  816. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/derived-markers.d.ts.map +1 -0
  817. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/derived-markers.js +136 -0
  818. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/derived-markers.js.map +1 -0
  819. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/index.d.ts +1 -0
  820. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/index.d.ts.map +1 -1
  821. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/index.js +1 -0
  822. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/index.js.map +1 -1
  823. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/projection.d.ts +36 -51
  824. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/projection.d.ts.map +1 -1
  825. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/projection.js +40 -65
  826. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/projection.js.map +1 -1
  827. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/stage-inspector.d.ts +5 -2
  828. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/stage-inspector.d.ts.map +1 -1
  829. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/stage-inspector.js +207 -1
  830. package/node_modules/@fps-games/editor-playable-sdk/dist/prefab-stage/stage-inspector.js.map +1 -1
  831. package/node_modules/@fps-games/editor-playable-sdk/dist/product/index.d.ts +1 -0
  832. package/node_modules/@fps-games/editor-playable-sdk/dist/product/index.d.ts.map +1 -1
  833. package/node_modules/@fps-games/editor-playable-sdk/dist/product/index.js +3 -0
  834. package/node_modules/@fps-games/editor-playable-sdk/dist/product/index.js.map +1 -1
  835. package/node_modules/@fps-games/editor-playable-sdk/dist/product/project-host-services.d.ts +18 -7
  836. package/node_modules/@fps-games/editor-playable-sdk/dist/product/project-host-services.d.ts.map +1 -1
  837. package/node_modules/@fps-games/editor-playable-sdk/dist/product/project-host-services.js +110 -18
  838. package/node_modules/@fps-games/editor-playable-sdk/dist/product/project-host-services.js.map +1 -1
  839. package/node_modules/@fps-games/editor-playable-sdk/dist/product/scene-source.d.ts +9 -0
  840. package/node_modules/@fps-games/editor-playable-sdk/dist/product/scene-source.d.ts.map +1 -1
  841. package/node_modules/@fps-games/editor-playable-sdk/dist/product/scene-source.js +16 -1
  842. package/node_modules/@fps-games/editor-playable-sdk/dist/product/scene-source.js.map +1 -1
  843. package/node_modules/@fps-games/editor-playable-sdk/dist/product/standard-scene-assembly.d.ts +5 -2
  844. package/node_modules/@fps-games/editor-playable-sdk/dist/product/standard-scene-assembly.d.ts.map +1 -1
  845. package/node_modules/@fps-games/editor-playable-sdk/dist/product/standard-scene-assembly.js +22 -2
  846. package/node_modules/@fps-games/editor-playable-sdk/dist/product/standard-scene-assembly.js.map +1 -1
  847. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/index.d.ts +4 -0
  848. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/index.d.ts.map +1 -0
  849. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/index.js +4 -0
  850. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/index.js.map +1 -0
  851. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/protocol.d.ts +4 -0
  852. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/protocol.d.ts.map +1 -0
  853. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/protocol.js +86 -0
  854. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/protocol.js.map +1 -0
  855. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/support.d.ts +9 -0
  856. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/support.d.ts.map +1 -0
  857. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/support.js +76 -0
  858. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/support.js.map +1 -0
  859. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/types.d.ts +34 -0
  860. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/types.d.ts.map +1 -0
  861. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/types.js +2 -0
  862. package/node_modules/@fps-games/editor-playable-sdk/dist/project-files/types.js.map +1 -0
  863. package/node_modules/@fps-games/editor-playable-sdk/dist/rendering-profile/panel.d.ts.map +1 -1
  864. package/node_modules/@fps-games/editor-playable-sdk/dist/rendering-profile/panel.js +144 -0
  865. package/node_modules/@fps-games/editor-playable-sdk/dist/rendering-profile/panel.js.map +1 -1
  866. package/node_modules/@fps-games/editor-playable-sdk/dist/rendering-profile/types.d.ts +16 -0
  867. package/node_modules/@fps-games/editor-playable-sdk/dist/rendering-profile/types.d.ts.map +1 -1
  868. package/node_modules/@fps-games/editor-playable-sdk/dist/rendering-profile/types.js.map +1 -1
  869. package/node_modules/@fps-games/editor-playable-sdk/dist/runtime-preview/nodes.d.ts.map +1 -1
  870. package/node_modules/@fps-games/editor-playable-sdk/dist/runtime-preview/nodes.js +1 -0
  871. package/node_modules/@fps-games/editor-playable-sdk/dist/runtime-preview/nodes.js.map +1 -1
  872. package/node_modules/@fps-games/editor-playable-sdk/dist/runtime-preview/types.d.ts +2 -1
  873. package/node_modules/@fps-games/editor-playable-sdk/dist/runtime-preview/types.d.ts.map +1 -1
  874. package/node_modules/@fps-games/editor-playable-sdk/dist/runtime-preview/types.js.map +1 -1
  875. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/compiler.d.ts +2 -0
  876. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/compiler.d.ts.map +1 -1
  877. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/compiler.js +241 -13
  878. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/compiler.js.map +1 -1
  879. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/index.d.ts +1 -0
  880. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/index.d.ts.map +1 -1
  881. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/index.js +1 -0
  882. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/index.js.map +1 -1
  883. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/shadow-map-experiment-migration.d.ts +31 -0
  884. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/shadow-map-experiment-migration.d.ts.map +1 -0
  885. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/shadow-map-experiment-migration.js +170 -0
  886. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/shadow-map-experiment-migration.js.map +1 -0
  887. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/types.d.ts +153 -13
  888. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/types.d.ts.map +1 -1
  889. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/types.js.map +1 -1
  890. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/validation.d.ts +17 -0
  891. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/validation.d.ts.map +1 -1
  892. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/validation.js +1295 -3
  893. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-compiler/validation.js.map +1 -1
  894. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/client.d.ts +4 -0
  895. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/client.d.ts.map +1 -1
  896. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/client.js +54 -0
  897. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/client.js.map +1 -1
  898. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/driver.d.ts.map +1 -1
  899. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/driver.js +57 -34
  900. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/driver.js.map +1 -1
  901. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/protocol.d.ts.map +1 -1
  902. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/protocol.js +4 -1
  903. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/protocol.js.map +1 -1
  904. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/types.d.ts +4 -0
  905. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/types.d.ts.map +1 -1
  906. package/node_modules/@fps-games/editor-playable-sdk/dist/scene-source/types.js.map +1 -1
  907. package/node_modules/@fps-games/editor-playable-sdk/dist/serialized-property/inspector.d.ts.map +1 -1
  908. package/node_modules/@fps-games/editor-playable-sdk/dist/serialized-property/inspector.js +20 -198
  909. package/node_modules/@fps-games/editor-playable-sdk/dist/serialized-property/inspector.js.map +1 -1
  910. package/node_modules/@fps-games/editor-playable-sdk/dist/session/hierarchy-facade.d.ts.map +1 -1
  911. package/node_modules/@fps-games/editor-playable-sdk/dist/session/hierarchy-facade.js +5 -1
  912. package/node_modules/@fps-games/editor-playable-sdk/dist/session/hierarchy-facade.js.map +1 -1
  913. package/node_modules/@fps-games/editor-playable-sdk/dist/session/patches.d.ts +5 -0
  914. package/node_modules/@fps-games/editor-playable-sdk/dist/session/patches.d.ts.map +1 -1
  915. package/node_modules/@fps-games/editor-playable-sdk/dist/session/patches.js +144 -8
  916. package/node_modules/@fps-games/editor-playable-sdk/dist/session/patches.js.map +1 -1
  917. package/node_modules/@fps-games/editor-playable-sdk/dist/session/reducer-core.d.ts +1 -1
  918. package/node_modules/@fps-games/editor-playable-sdk/dist/session/reducer-core.d.ts.map +1 -1
  919. package/node_modules/@fps-games/editor-playable-sdk/dist/session/reducer-core.js +30 -1
  920. package/node_modules/@fps-games/editor-playable-sdk/dist/session/reducer-core.js.map +1 -1
  921. package/node_modules/@fps-games/editor-playable-sdk/dist/session/types.d.ts +6 -0
  922. package/node_modules/@fps-games/editor-playable-sdk/dist/session/types.d.ts.map +1 -1
  923. package/node_modules/@fps-games/editor-playable-sdk/dist/session/types.js.map +1 -1
  924. package/node_modules/@fps-games/editor-playable-sdk/dist/upgrade-doctor/inspectors.js +31 -3
  925. package/node_modules/@fps-games/editor-playable-sdk/dist/upgrade-doctor/inspectors.js.map +1 -1
  926. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/editor-scene-workflow.d.ts +5 -2
  927. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/editor-scene-workflow.d.ts.map +1 -1
  928. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/editor-scene-workflow.js +40 -4
  929. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/editor-scene-workflow.js.map +1 -1
  930. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/index.d.ts +1 -0
  931. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/index.d.ts.map +1 -1
  932. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/index.js +1 -0
  933. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/index.js.map +1 -1
  934. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/plugin.d.ts.map +1 -1
  935. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/plugin.js +116 -3
  936. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/plugin.js.map +1 -1
  937. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-adapter.d.ts +2 -1
  938. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-adapter.d.ts.map +1 -1
  939. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-adapter.js +1 -0
  940. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-adapter.js.map +1 -1
  941. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-asset-authoring.d.ts +17 -1
  942. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-asset-authoring.d.ts.map +1 -1
  943. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-asset-authoring.js +50 -2
  944. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-asset-authoring.js.map +1 -1
  945. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-authoring-api.d.ts +1 -0
  946. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-authoring-api.d.ts.map +1 -1
  947. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-authoring-api.js +101 -5
  948. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-authoring-api.js.map +1 -1
  949. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-scene-authoring.d.ts +5 -6
  950. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-scene-authoring.d.ts.map +1 -1
  951. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-scene-authoring.js +31 -17
  952. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/product-scene-authoring.js.map +1 -1
  953. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/project-file-handle.d.ts +14 -0
  954. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/project-file-handle.d.ts.map +1 -0
  955. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/project-file-handle.js +101 -0
  956. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/project-file-handle.js.map +1 -0
  957. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/project-files.d.ts +23 -0
  958. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/project-files.d.ts.map +1 -0
  959. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/project-files.js +180 -0
  960. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/project-files.js.map +1 -0
  961. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/types.d.ts +6 -0
  962. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/types.d.ts.map +1 -1
  963. package/node_modules/@fps-games/editor-playable-sdk/dist/vite/types.js.map +1 -1
  964. package/node_modules/@fps-games/editor-playable-sdk/package.json +6 -6
  965. package/node_modules/@fps-games/editor-protocol/dist/agent-bridge.d.ts +417 -2
  966. package/node_modules/@fps-games/editor-protocol/dist/agent-bridge.d.ts.map +1 -1
  967. package/node_modules/@fps-games/editor-protocol/dist/agent-bridge.js +692 -2
  968. package/node_modules/@fps-games/editor-protocol/dist/agent-bridge.js.map +1 -1
  969. package/node_modules/@fps-games/editor-protocol/dist/agent.d.ts +23 -3
  970. package/node_modules/@fps-games/editor-protocol/dist/agent.d.ts.map +1 -1
  971. package/node_modules/@fps-games/editor-protocol/dist/agent.js.map +1 -1
  972. package/node_modules/@fps-games/editor-protocol/dist/editor-diagnostics.d.ts +55 -0
  973. package/node_modules/@fps-games/editor-protocol/dist/editor-diagnostics.d.ts.map +1 -0
  974. package/node_modules/@fps-games/editor-protocol/dist/editor-diagnostics.js +2 -0
  975. package/node_modules/@fps-games/editor-protocol/dist/editor-diagnostics.js.map +1 -0
  976. package/node_modules/@fps-games/editor-protocol/dist/index.d.ts +3 -18
  977. package/node_modules/@fps-games/editor-protocol/dist/index.d.ts.map +1 -1
  978. package/node_modules/@fps-games/editor-protocol/dist/index.js +1 -0
  979. package/node_modules/@fps-games/editor-protocol/dist/index.js.map +1 -1
  980. package/node_modules/@fps-games/editor-protocol/package.json +2 -2
  981. package/node_modules/@fps-games/editor-tooling/dist/package-metadata-node.d.ts.map +1 -1
  982. package/node_modules/@fps-games/editor-tooling/dist/package-metadata-node.js +5 -0
  983. package/node_modules/@fps-games/editor-tooling/dist/package-metadata-node.js.map +1 -1
  984. package/node_modules/@fps-games/editor-tooling/dist/vite.d.ts.map +1 -1
  985. package/node_modules/@fps-games/editor-tooling/dist/vite.js +151 -5
  986. package/node_modules/@fps-games/editor-tooling/dist/vite.js.map +1 -1
  987. package/node_modules/@fps-games/editor-tooling/package.json +3 -3
  988. package/node_modules/@fps-games/editor-ui/dist/editor-ui-controls.d.ts +107 -0
  989. package/node_modules/@fps-games/editor-ui/dist/editor-ui-controls.d.ts.map +1 -0
  990. package/node_modules/@fps-games/editor-ui/dist/editor-ui-controls.js +770 -0
  991. package/node_modules/@fps-games/editor-ui/dist/editor-ui-controls.js.map +1 -0
  992. package/node_modules/@fps-games/editor-ui/dist/editor-ui-layer-host.d.ts +21 -0
  993. package/node_modules/@fps-games/editor-ui/dist/editor-ui-layer-host.d.ts.map +1 -0
  994. package/node_modules/@fps-games/editor-ui/dist/editor-ui-layer-host.js +172 -0
  995. package/node_modules/@fps-games/editor-ui/dist/editor-ui-layer-host.js.map +1 -0
  996. package/node_modules/@fps-games/editor-ui/dist/editor-ui-shell.d.ts +14 -0
  997. package/node_modules/@fps-games/editor-ui/dist/editor-ui-shell.d.ts.map +1 -0
  998. package/node_modules/@fps-games/editor-ui/dist/editor-ui-shell.js +32 -0
  999. package/node_modules/@fps-games/editor-ui/dist/editor-ui-shell.js.map +1 -0
  1000. package/node_modules/@fps-games/editor-ui/dist/editor-ui-theme.d.ts +3 -0
  1001. package/node_modules/@fps-games/editor-ui/dist/editor-ui-theme.d.ts.map +1 -0
  1002. package/node_modules/@fps-games/editor-ui/dist/editor-ui-theme.js +746 -0
  1003. package/node_modules/@fps-games/editor-ui/dist/editor-ui-theme.js.map +1 -0
  1004. package/node_modules/@fps-games/editor-ui/dist/gallery.d.ts +3 -0
  1005. package/node_modules/@fps-games/editor-ui/dist/gallery.d.ts.map +1 -0
  1006. package/node_modules/@fps-games/editor-ui/dist/gallery.js +3 -0
  1007. package/node_modules/@fps-games/editor-ui/dist/gallery.js.map +1 -0
  1008. package/node_modules/@fps-games/editor-ui/dist/index.d.ts +5 -0
  1009. package/node_modules/@fps-games/editor-ui/dist/index.d.ts.map +1 -0
  1010. package/node_modules/@fps-games/editor-ui/dist/index.js +5 -0
  1011. package/node_modules/@fps-games/editor-ui/dist/index.js.map +1 -0
  1012. package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-model.d.ts +7 -0
  1013. package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-model.d.ts.map +1 -0
  1014. package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-model.js +29 -0
  1015. package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-model.js.map +1 -0
  1016. package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-styles.d.ts +2 -0
  1017. package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-styles.d.ts.map +1 -0
  1018. package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-styles.js +95 -0
  1019. package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery-styles.js.map +1 -0
  1020. package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery.d.ts +28 -0
  1021. package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery.d.ts.map +1 -0
  1022. package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery.js +387 -0
  1023. package/node_modules/@fps-games/editor-ui/dist/inspector-property-gallery.js.map +1 -0
  1024. package/node_modules/@fps-games/editor-ui/package.json +23 -0
  1025. package/node_modules/@fps-games/playable-assets/package.json +1 -1
  1026. package/node_modules/@fps-games/playable-contracts/dist/index.d.ts +1 -0
  1027. package/node_modules/@fps-games/playable-contracts/dist/index.d.ts.map +1 -1
  1028. package/node_modules/@fps-games/playable-contracts/dist/index.js +1 -0
  1029. package/node_modules/@fps-games/playable-contracts/dist/index.js.map +1 -1
  1030. package/node_modules/@fps-games/playable-contracts/dist/material-owner.d.ts +116 -0
  1031. package/node_modules/@fps-games/playable-contracts/dist/material-owner.d.ts.map +1 -0
  1032. package/node_modules/@fps-games/playable-contracts/dist/material-owner.js +403 -0
  1033. package/node_modules/@fps-games/playable-contracts/dist/material-owner.js.map +1 -0
  1034. package/node_modules/@fps-games/playable-contracts/package.json +1 -1
  1035. package/node_modules/@fps-games/playable-rendering/dist/index.d.ts +3 -0
  1036. package/node_modules/@fps-games/playable-rendering/dist/index.d.ts.map +1 -1
  1037. package/node_modules/@fps-games/playable-rendering/dist/index.js +3 -0
  1038. package/node_modules/@fps-games/playable-rendering/dist/index.js.map +1 -1
  1039. package/node_modules/@fps-games/playable-rendering/dist/rendering-profile-validation.js +5 -25
  1040. package/node_modules/@fps-games/playable-rendering/dist/rendering-profile-validation.js.map +1 -1
  1041. package/node_modules/@fps-games/playable-rendering/dist/runtime.d.ts +3 -0
  1042. package/node_modules/@fps-games/playable-rendering/dist/runtime.d.ts.map +1 -1
  1043. package/node_modules/@fps-games/playable-rendering/dist/runtime.js +3 -0
  1044. package/node_modules/@fps-games/playable-rendering/dist/runtime.js.map +1 -1
  1045. package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-depth.d.ts +61 -0
  1046. package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-depth.d.ts.map +1 -0
  1047. package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-depth.js +176 -0
  1048. package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-depth.js.map +1 -0
  1049. package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-lifecycle.d.ts +84 -0
  1050. package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-lifecycle.d.ts.map +1 -0
  1051. package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-lifecycle.js +362 -0
  1052. package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment-lifecycle.js.map +1 -0
  1053. package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment.d.ts +167 -0
  1054. package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment.d.ts.map +1 -0
  1055. package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment.js +484 -0
  1056. package/node_modules/@fps-games/playable-rendering/dist/shadow-map-experiment.js.map +1 -0
  1057. package/node_modules/@fps-games/playable-rendering/package.json +2 -2
  1058. package/node_modules/@fps-games/playable-runtime/dist/compiled-scene-data.d.ts +5 -0
  1059. package/node_modules/@fps-games/playable-runtime/dist/compiled-scene-data.d.ts.map +1 -1
  1060. package/node_modules/@fps-games/playable-runtime/dist/compiled-scene-data.js +1 -0
  1061. package/node_modules/@fps-games/playable-runtime/dist/compiled-scene-data.js.map +1 -1
  1062. package/node_modules/@fps-games/playable-runtime/package.json +12 -12
  1063. package/node_modules/@fps-games/playable-runtime-data/package.json +4 -4
  1064. package/node_modules/@fps-games/playable-scene/package.json +2 -2
  1065. package/node_modules/@fps-games/plugin-api/package.json +1 -1
  1066. package/node_modules/@fps-games/plugin-assets/dist/version.d.ts +1 -1
  1067. package/node_modules/@fps-games/plugin-assets/dist/version.js +1 -1
  1068. package/node_modules/@fps-games/plugin-assets/dist/version.js.map +1 -1
  1069. package/node_modules/@fps-games/plugin-assets/package.json +5 -5
  1070. package/node_modules/@fps-games/plugin-hierarchy/dist/editor.d.ts +6 -0
  1071. package/node_modules/@fps-games/plugin-hierarchy/dist/editor.d.ts.map +1 -0
  1072. package/node_modules/@fps-games/plugin-hierarchy/dist/editor.js +16 -0
  1073. package/node_modules/@fps-games/plugin-hierarchy/dist/editor.js.map +1 -0
  1074. package/node_modules/@fps-games/plugin-hierarchy/dist/integration.d.ts +7 -0
  1075. package/node_modules/@fps-games/plugin-hierarchy/dist/integration.d.ts.map +1 -0
  1076. package/node_modules/@fps-games/plugin-hierarchy/dist/integration.js +47 -0
  1077. package/node_modules/@fps-games/plugin-hierarchy/dist/integration.js.map +1 -0
  1078. package/node_modules/@fps-games/plugin-hierarchy/dist/kernel.d.ts +306 -0
  1079. package/node_modules/@fps-games/plugin-hierarchy/dist/kernel.d.ts.map +1 -0
  1080. package/node_modules/@fps-games/plugin-hierarchy/dist/kernel.js +1237 -0
  1081. package/node_modules/@fps-games/plugin-hierarchy/dist/kernel.js.map +1 -0
  1082. package/node_modules/@fps-games/plugin-hierarchy/dist/reference.d.ts +8 -0
  1083. package/node_modules/@fps-games/plugin-hierarchy/dist/reference.d.ts.map +1 -0
  1084. package/node_modules/@fps-games/plugin-hierarchy/dist/reference.js +32 -0
  1085. package/node_modules/@fps-games/plugin-hierarchy/dist/reference.js.map +1 -0
  1086. package/node_modules/@fps-games/plugin-hierarchy/dist/version.d.ts +2 -0
  1087. package/node_modules/@fps-games/plugin-hierarchy/dist/version.d.ts.map +1 -0
  1088. package/node_modules/@fps-games/plugin-hierarchy/dist/version.js +2 -0
  1089. package/node_modules/@fps-games/plugin-hierarchy/dist/version.js.map +1 -0
  1090. package/node_modules/@fps-games/plugin-hierarchy/package.json +57 -0
  1091. package/node_modules/@fps-games/plugin-host/package.json +2 -2
  1092. package/node_modules/@fps-games/plugin-markers/dist/version.d.ts +1 -1
  1093. package/node_modules/@fps-games/plugin-markers/dist/version.js +1 -1
  1094. package/node_modules/@fps-games/plugin-markers/dist/version.js.map +1 -1
  1095. package/node_modules/@fps-games/plugin-markers/package.json +5 -5
  1096. package/node_modules/@fps-games/plugin-materials/dist/version.d.ts +1 -1
  1097. package/node_modules/@fps-games/plugin-materials/dist/version.js +1 -1
  1098. package/node_modules/@fps-games/plugin-materials/dist/version.js.map +1 -1
  1099. package/node_modules/@fps-games/plugin-materials/package.json +5 -5
  1100. package/node_modules/@fps-games/plugin-rendering/dist/version.d.ts +1 -1
  1101. package/node_modules/@fps-games/plugin-rendering/dist/version.js +1 -1
  1102. package/node_modules/@fps-games/plugin-rendering/dist/version.js.map +1 -1
  1103. package/node_modules/@fps-games/plugin-rendering/package.json +5 -5
  1104. package/node_modules/@fps-games/plugin-scene/dist/version.d.ts +1 -1
  1105. package/node_modules/@fps-games/plugin-scene/dist/version.js +1 -1
  1106. package/node_modules/@fps-games/plugin-scene/dist/version.js.map +1 -1
  1107. package/node_modules/@fps-games/plugin-scene/package.json +5 -5
  1108. package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/reference.d.ts +8 -0
  1109. package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/reference.d.ts.map +1 -0
  1110. package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/reference.js +35 -0
  1111. package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/reference.js.map +1 -0
  1112. package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/runtime.d.ts +11 -0
  1113. package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/runtime.d.ts.map +1 -0
  1114. package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/runtime.js +14 -0
  1115. package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/runtime.js.map +1 -0
  1116. package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/version.d.ts +2 -0
  1117. package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/version.d.ts.map +1 -0
  1118. package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/version.js +2 -0
  1119. package/node_modules/@fps-games/plugin-shadow-map-experiment/dist/version.js.map +1 -0
  1120. package/node_modules/@fps-games/plugin-shadow-map-experiment/package.json +53 -0
  1121. package/node_modules/@fps-games/plugin-shadows/dist/version.d.ts +1 -1
  1122. package/node_modules/@fps-games/plugin-shadows/dist/version.js +1 -1
  1123. package/node_modules/@fps-games/plugin-shadows/dist/version.js.map +1 -1
  1124. package/node_modules/@fps-games/plugin-shadows/package.json +7 -7
  1125. package/node_modules/@playcanvas/observer/LICENSE +19 -0
  1126. package/node_modules/@playcanvas/observer/README.md +72 -0
  1127. package/node_modules/@playcanvas/observer/dist/index.cjs +2033 -0
  1128. package/node_modules/@playcanvas/observer/dist/index.js +2039 -0
  1129. package/node_modules/@playcanvas/observer/dist/index.mjs +2026 -0
  1130. package/node_modules/@playcanvas/observer/package.json +78 -0
  1131. package/node_modules/@playcanvas/observer/types/event-handle.d.ts +41 -0
  1132. package/node_modules/@playcanvas/observer/types/events.d.ts +162 -0
  1133. package/node_modules/@playcanvas/observer/types/history.d.ts +123 -0
  1134. package/node_modules/@playcanvas/observer/types/index.d.ts +15 -0
  1135. package/node_modules/@playcanvas/observer/types/observer-history.d.ts +32 -0
  1136. package/node_modules/@playcanvas/observer/types/observer-list.d.ts +39 -0
  1137. package/node_modules/@playcanvas/observer/types/observer.d.ts +157 -0
  1138. package/node_modules/@playcanvas/observer/types/utils.d.ts +33 -0
  1139. package/node_modules/@playcanvas/pcui/LICENSE +19 -0
  1140. package/node_modules/@playcanvas/pcui/README.md +164 -0
  1141. package/node_modules/@playcanvas/pcui/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/constants.mjs +6 -0
  1142. package/node_modules/@playcanvas/pcui/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/curve-evaluator.mjs +119 -0
  1143. package/node_modules/@playcanvas/pcui/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/curve-set.mjs +82 -0
  1144. package/node_modules/@playcanvas/pcui/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/curve.mjs +92 -0
  1145. package/node_modules/@playcanvas/pcui/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/math.mjs +105 -0
  1146. package/node_modules/@playcanvas/pcui/dist/module/src/Math/color-value.mjs +77 -0
  1147. package/node_modules/@playcanvas/pcui/dist/module/src/binding/BindingBase/index.mjs +215 -0
  1148. package/node_modules/@playcanvas/pcui/dist/module/src/binding/BindingElementToObservers/index.mjs +297 -0
  1149. package/node_modules/@playcanvas/pcui/dist/module/src/binding/BindingObserversToElement/index.mjs +110 -0
  1150. package/node_modules/@playcanvas/pcui/dist/module/src/binding/BindingTwoWay/index.mjs +113 -0
  1151. package/node_modules/@playcanvas/pcui/dist/module/src/class.mjs +19 -0
  1152. package/node_modules/@playcanvas/pcui/dist/module/src/components/ArrayInput/index.mjs +498 -0
  1153. package/node_modules/@playcanvas/pcui/dist/module/src/components/BooleanInput/index.mjs +122 -0
  1154. package/node_modules/@playcanvas/pcui/dist/module/src/components/Button/index.mjs +119 -0
  1155. package/node_modules/@playcanvas/pcui/dist/module/src/components/Canvas/index.mjs +104 -0
  1156. package/node_modules/@playcanvas/pcui/dist/module/src/components/Code/index.mjs +43 -0
  1157. package/node_modules/@playcanvas/pcui/dist/module/src/components/ColorPicker/index.mjs +619 -0
  1158. package/node_modules/@playcanvas/pcui/dist/module/src/components/Container/index.mjs +642 -0
  1159. package/node_modules/@playcanvas/pcui/dist/module/src/components/Divider/index.mjs +20 -0
  1160. package/node_modules/@playcanvas/pcui/dist/module/src/components/Element/index.mjs +829 -0
  1161. package/node_modules/@playcanvas/pcui/dist/module/src/components/GradientPicker/index.mjs +1136 -0
  1162. package/node_modules/@playcanvas/pcui/dist/module/src/components/GridView/index.mjs +448 -0
  1163. package/node_modules/@playcanvas/pcui/dist/module/src/components/GridViewItem/index.mjs +152 -0
  1164. package/node_modules/@playcanvas/pcui/dist/module/src/components/InfoBox/index.mjs +90 -0
  1165. package/node_modules/@playcanvas/pcui/dist/module/src/components/InputElement/index.mjs +186 -0
  1166. package/node_modules/@playcanvas/pcui/dist/module/src/components/Label/index.mjs +124 -0
  1167. package/node_modules/@playcanvas/pcui/dist/module/src/components/LabelGroup/index.mjs +74 -0
  1168. package/node_modules/@playcanvas/pcui/dist/module/src/components/Menu/index.mjs +174 -0
  1169. package/node_modules/@playcanvas/pcui/dist/module/src/components/MenuItem/index.mjs +223 -0
  1170. package/node_modules/@playcanvas/pcui/dist/module/src/components/NumericInput/index.mjs +400 -0
  1171. package/node_modules/@playcanvas/pcui/dist/module/src/components/Overlay/index.mjs +108 -0
  1172. package/node_modules/@playcanvas/pcui/dist/module/src/components/Panel/index.mjs +400 -0
  1173. package/node_modules/@playcanvas/pcui/dist/module/src/components/Progress/index.mjs +45 -0
  1174. package/node_modules/@playcanvas/pcui/dist/module/src/components/RadioButton/index.mjs +113 -0
  1175. package/node_modules/@playcanvas/pcui/dist/module/src/components/SelectInput/index.mjs +1085 -0
  1176. package/node_modules/@playcanvas/pcui/dist/module/src/components/SliderInput/index.mjs +333 -0
  1177. package/node_modules/@playcanvas/pcui/dist/module/src/components/Spinner/index.mjs +34 -0
  1178. package/node_modules/@playcanvas/pcui/dist/module/src/components/TextAreaInput/index.mjs +50 -0
  1179. package/node_modules/@playcanvas/pcui/dist/module/src/components/TextInput/index.mjs +98 -0
  1180. package/node_modules/@playcanvas/pcui/dist/module/src/components/TreeView/index.mjs +1131 -0
  1181. package/node_modules/@playcanvas/pcui/dist/module/src/components/TreeViewItem/index.mjs +500 -0
  1182. package/node_modules/@playcanvas/pcui/dist/module/src/components/VectorInput/index.mjs +366 -0
  1183. package/node_modules/@playcanvas/pcui/dist/module/src/helpers/search.mjs +194 -0
  1184. package/node_modules/@playcanvas/pcui/dist/module/src/helpers/utils.mjs +43 -0
  1185. package/node_modules/@playcanvas/pcui/dist/module/src/index.mjs +56 -0
  1186. package/node_modules/@playcanvas/pcui/dist/pcui-theme-green.scss +2798 -0
  1187. package/node_modules/@playcanvas/pcui/dist/pcui-theme-grey.scss +2798 -0
  1188. package/node_modules/@playcanvas/pcui/package.json +150 -0
  1189. package/node_modules/@playcanvas/pcui/react/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/constants.mjs +6 -0
  1190. package/node_modules/@playcanvas/pcui/react/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/curve-evaluator.mjs +119 -0
  1191. package/node_modules/@playcanvas/pcui/react/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/curve-set.mjs +82 -0
  1192. package/node_modules/@playcanvas/pcui/react/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/curve.mjs +92 -0
  1193. package/node_modules/@playcanvas/pcui/react/dist/module/node_modules/playcanvas/build/playcanvas/src/core/math/math.mjs +105 -0
  1194. package/node_modules/@playcanvas/pcui/react/dist/module/src/Math/color-value.mjs +77 -0
  1195. package/node_modules/@playcanvas/pcui/react/dist/module/src/binding/BindingBase/index.mjs +215 -0
  1196. package/node_modules/@playcanvas/pcui/react/dist/module/src/binding/BindingElementToObservers/index.mjs +297 -0
  1197. package/node_modules/@playcanvas/pcui/react/dist/module/src/binding/BindingObserversToElement/index.mjs +110 -0
  1198. package/node_modules/@playcanvas/pcui/react/dist/module/src/binding/BindingTwoWay/index.mjs +113 -0
  1199. package/node_modules/@playcanvas/pcui/react/dist/module/src/class.mjs +19 -0
  1200. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/ArrayInput/component.mjs +11 -0
  1201. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/ArrayInput/index.mjs +498 -0
  1202. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/BooleanInput/component.mjs +11 -0
  1203. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/BooleanInput/index.mjs +122 -0
  1204. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Button/component.mjs +16 -0
  1205. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Button/index.mjs +119 -0
  1206. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Canvas/component.mjs +16 -0
  1207. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Canvas/index.mjs +104 -0
  1208. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Code/component.mjs +11 -0
  1209. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Code/index.mjs +43 -0
  1210. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/ColorPicker/component.mjs +16 -0
  1211. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/ColorPicker/index.mjs +619 -0
  1212. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Container/component.mjs +36 -0
  1213. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Container/index.mjs +642 -0
  1214. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Divider/component.mjs +11 -0
  1215. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Divider/index.mjs +20 -0
  1216. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Element/component.mjs +107 -0
  1217. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Element/index.mjs +829 -0
  1218. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/GradientPicker/component.mjs +16 -0
  1219. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/GradientPicker/index.mjs +1136 -0
  1220. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/GridView/component.mjs +38 -0
  1221. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/GridView/index.mjs +448 -0
  1222. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/GridViewItem/component.mjs +11 -0
  1223. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/GridViewItem/index.mjs +152 -0
  1224. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/InfoBox/component.mjs +16 -0
  1225. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/InfoBox/index.mjs +90 -0
  1226. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/InputElement/index.mjs +186 -0
  1227. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Label/component.mjs +16 -0
  1228. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Label/index.mjs +124 -0
  1229. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/LabelGroup/component.mjs +42 -0
  1230. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/LabelGroup/index.mjs +74 -0
  1231. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Menu/component.mjs +23 -0
  1232. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Menu/index.mjs +174 -0
  1233. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/MenuItem/index.mjs +223 -0
  1234. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/NumericInput/component.mjs +11 -0
  1235. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/NumericInput/index.mjs +400 -0
  1236. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Overlay/component.mjs +11 -0
  1237. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Overlay/index.mjs +108 -0
  1238. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Panel/component.mjs +32 -0
  1239. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Panel/index.mjs +400 -0
  1240. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Progress/component.mjs +11 -0
  1241. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Progress/index.mjs +45 -0
  1242. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/RadioButton/component.mjs +11 -0
  1243. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/RadioButton/index.mjs +113 -0
  1244. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/SelectInput/component.mjs +21 -0
  1245. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/SelectInput/index.mjs +1085 -0
  1246. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/SliderInput/component.mjs +12 -0
  1247. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/SliderInput/index.mjs +333 -0
  1248. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Spinner/component.mjs +16 -0
  1249. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/Spinner/index.mjs +34 -0
  1250. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TextAreaInput/component.mjs +11 -0
  1251. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TextAreaInput/index.mjs +50 -0
  1252. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TextInput/component.mjs +23 -0
  1253. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TextInput/index.mjs +98 -0
  1254. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TreeView/component.mjs +52 -0
  1255. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TreeView/index.mjs +1131 -0
  1256. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TreeViewItem/component.mjs +33 -0
  1257. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/TreeViewItem/index.mjs +500 -0
  1258. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/VectorInput/component.mjs +11 -0
  1259. package/node_modules/@playcanvas/pcui/react/dist/module/src/components/VectorInput/index.mjs +366 -0
  1260. package/node_modules/@playcanvas/pcui/react/dist/module/src/helpers/search.mjs +194 -0
  1261. package/node_modules/@playcanvas/pcui/react/dist/module/src/helpers/utils.mjs +43 -0
  1262. package/node_modules/@playcanvas/pcui/react/dist/module/src/index.mjs +39 -0
  1263. package/node_modules/@playcanvas/pcui/react/package.json +18 -0
  1264. package/node_modules/@playcanvas/pcui/react/types/Math/color-value.d.ts +3 -0
  1265. package/node_modules/@playcanvas/pcui/react/types/binding/BindingBase/index.d.ts +178 -0
  1266. package/node_modules/@playcanvas/pcui/react/types/binding/BindingElementToObservers/index.d.ts +24 -0
  1267. package/node_modules/@playcanvas/pcui/react/types/binding/BindingObserversToElement/index.d.ts +40 -0
  1268. package/node_modules/@playcanvas/pcui/react/types/binding/BindingTwoWay/index.d.ts +54 -0
  1269. package/node_modules/@playcanvas/pcui/react/types/binding/index.d.ts +5 -0
  1270. package/node_modules/@playcanvas/pcui/react/types/class.d.ts +17 -0
  1271. package/node_modules/@playcanvas/pcui/react/types/components/ArrayInput/component.d.ts +9 -0
  1272. package/node_modules/@playcanvas/pcui/react/types/components/ArrayInput/index.d.ts +140 -0
  1273. package/node_modules/@playcanvas/pcui/react/types/components/BooleanInput/component.d.ts +9 -0
  1274. package/node_modules/@playcanvas/pcui/react/types/components/BooleanInput/index.d.ts +41 -0
  1275. package/node_modules/@playcanvas/pcui/react/types/components/Button/component.d.ts +11 -0
  1276. package/node_modules/@playcanvas/pcui/react/types/components/Button/index.d.ts +75 -0
  1277. package/node_modules/@playcanvas/pcui/react/types/components/Canvas/component.d.ts +11 -0
  1278. package/node_modules/@playcanvas/pcui/react/types/components/Canvas/index.d.ts +61 -0
  1279. package/node_modules/@playcanvas/pcui/react/types/components/Code/component.d.ts +9 -0
  1280. package/node_modules/@playcanvas/pcui/react/types/components/Code/index.d.ts +33 -0
  1281. package/node_modules/@playcanvas/pcui/react/types/components/ColorPicker/component.d.ts +11 -0
  1282. package/node_modules/@playcanvas/pcui/react/types/components/ColorPicker/index.d.ts +99 -0
  1283. package/node_modules/@playcanvas/pcui/react/types/components/Container/component.d.ts +15 -0
  1284. package/node_modules/@playcanvas/pcui/react/types/components/Container/index.d.ts +292 -0
  1285. package/node_modules/@playcanvas/pcui/react/types/components/Divider/component.d.ts +10 -0
  1286. package/node_modules/@playcanvas/pcui/react/types/components/Divider/index.d.ts +13 -0
  1287. package/node_modules/@playcanvas/pcui/react/types/components/Element/component.d.ts +23 -0
  1288. package/node_modules/@playcanvas/pcui/react/types/components/Element/index.d.ts +671 -0
  1289. package/node_modules/@playcanvas/pcui/react/types/components/GradientPicker/component.d.ts +11 -0
  1290. package/node_modules/@playcanvas/pcui/react/types/components/GradientPicker/index.d.ts +152 -0
  1291. package/node_modules/@playcanvas/pcui/react/types/components/GridView/component.d.ts +14 -0
  1292. package/node_modules/@playcanvas/pcui/react/types/components/GridView/index.d.ts +103 -0
  1293. package/node_modules/@playcanvas/pcui/react/types/components/GridViewItem/component.d.ts +9 -0
  1294. package/node_modules/@playcanvas/pcui/react/types/components/GridViewItem/index.d.ts +82 -0
  1295. package/node_modules/@playcanvas/pcui/react/types/components/InfoBox/component.d.ts +11 -0
  1296. package/node_modules/@playcanvas/pcui/react/types/components/InfoBox/index.d.ts +71 -0
  1297. package/node_modules/@playcanvas/pcui/react/types/components/InputElement/index.d.ts +84 -0
  1298. package/node_modules/@playcanvas/pcui/react/types/components/Label/component.d.ts +11 -0
  1299. package/node_modules/@playcanvas/pcui/react/types/components/Label/index.d.ts +85 -0
  1300. package/node_modules/@playcanvas/pcui/react/types/components/LabelGroup/component.d.ts +10 -0
  1301. package/node_modules/@playcanvas/pcui/react/types/components/LabelGroup/index.d.ts +62 -0
  1302. package/node_modules/@playcanvas/pcui/react/types/components/Menu/component.d.ts +14 -0
  1303. package/node_modules/@playcanvas/pcui/react/types/components/Menu/index.d.ts +70 -0
  1304. package/node_modules/@playcanvas/pcui/react/types/components/MenuItem/index.d.ts +139 -0
  1305. package/node_modules/@playcanvas/pcui/react/types/components/NumericInput/component.d.ts +9 -0
  1306. package/node_modules/@playcanvas/pcui/react/types/components/NumericInput/index.d.ts +173 -0
  1307. package/node_modules/@playcanvas/pcui/react/types/components/Overlay/component.d.ts +9 -0
  1308. package/node_modules/@playcanvas/pcui/react/types/components/Overlay/index.d.ts +53 -0
  1309. package/node_modules/@playcanvas/pcui/react/types/components/Panel/component.d.ts +16 -0
  1310. package/node_modules/@playcanvas/pcui/react/types/components/Panel/index.d.ts +178 -0
  1311. package/node_modules/@playcanvas/pcui/react/types/components/Progress/component.d.ts +9 -0
  1312. package/node_modules/@playcanvas/pcui/react/types/components/Progress/index.d.ts +33 -0
  1313. package/node_modules/@playcanvas/pcui/react/types/components/RadioButton/component.d.ts +9 -0
  1314. package/node_modules/@playcanvas/pcui/react/types/components/RadioButton/index.d.ts +33 -0
  1315. package/node_modules/@playcanvas/pcui/react/types/components/SelectInput/component.d.ts +12 -0
  1316. package/node_modules/@playcanvas/pcui/react/types/components/SelectInput/index.d.ts +278 -0
  1317. package/node_modules/@playcanvas/pcui/react/types/components/SliderInput/component.d.ts +10 -0
  1318. package/node_modules/@playcanvas/pcui/react/types/components/SliderInput/index.d.ts +133 -0
  1319. package/node_modules/@playcanvas/pcui/react/types/components/Spinner/component.d.ts +11 -0
  1320. package/node_modules/@playcanvas/pcui/react/types/components/Spinner/index.d.ts +27 -0
  1321. package/node_modules/@playcanvas/pcui/react/types/components/TextAreaInput/component.d.ts +9 -0
  1322. package/node_modules/@playcanvas/pcui/react/types/components/TextAreaInput/index.d.ts +24 -0
  1323. package/node_modules/@playcanvas/pcui/react/types/components/TextInput/component.d.ts +12 -0
  1324. package/node_modules/@playcanvas/pcui/react/types/components/TextInput/index.d.ts +40 -0
  1325. package/node_modules/@playcanvas/pcui/react/types/components/TreeView/component.d.ts +17 -0
  1326. package/node_modules/@playcanvas/pcui/react/types/components/TreeView/index.d.ts +359 -0
  1327. package/node_modules/@playcanvas/pcui/react/types/components/TreeViewItem/component.d.ts +13 -0
  1328. package/node_modules/@playcanvas/pcui/react/types/components/TreeViewItem/index.d.ts +224 -0
  1329. package/node_modules/@playcanvas/pcui/react/types/components/VectorInput/component.d.ts +9 -0
  1330. package/node_modules/@playcanvas/pcui/react/types/components/VectorInput/index.d.ts +176 -0
  1331. package/node_modules/@playcanvas/pcui/react/types/components/components.d.ts +30 -0
  1332. package/node_modules/@playcanvas/pcui/react/types/components/index.d.ts +32 -0
  1333. package/node_modules/@playcanvas/pcui/react/types/helpers/search.d.ts +31 -0
  1334. package/node_modules/@playcanvas/pcui/react/types/helpers/utils.d.ts +2 -0
  1335. package/node_modules/@playcanvas/pcui/react/types/index.d.ts +4 -0
  1336. package/node_modules/@playcanvas/pcui/styles/dist/index.mjs +11 -0
  1337. package/node_modules/@playcanvas/pcui/styles/package.json +17 -0
  1338. package/node_modules/@playcanvas/pcui/types/Math/color-value.d.ts +3 -0
  1339. package/node_modules/@playcanvas/pcui/types/binding/BindingBase/index.d.ts +178 -0
  1340. package/node_modules/@playcanvas/pcui/types/binding/BindingElementToObservers/index.d.ts +24 -0
  1341. package/node_modules/@playcanvas/pcui/types/binding/BindingObserversToElement/index.d.ts +40 -0
  1342. package/node_modules/@playcanvas/pcui/types/binding/BindingTwoWay/index.d.ts +54 -0
  1343. package/node_modules/@playcanvas/pcui/types/binding/index.d.ts +5 -0
  1344. package/node_modules/@playcanvas/pcui/types/class.d.ts +17 -0
  1345. package/node_modules/@playcanvas/pcui/types/components/ArrayInput/index.d.ts +140 -0
  1346. package/node_modules/@playcanvas/pcui/types/components/BooleanInput/index.d.ts +41 -0
  1347. package/node_modules/@playcanvas/pcui/types/components/Button/index.d.ts +75 -0
  1348. package/node_modules/@playcanvas/pcui/types/components/Canvas/index.d.ts +61 -0
  1349. package/node_modules/@playcanvas/pcui/types/components/Code/index.d.ts +33 -0
  1350. package/node_modules/@playcanvas/pcui/types/components/ColorPicker/index.d.ts +99 -0
  1351. package/node_modules/@playcanvas/pcui/types/components/Container/index.d.ts +292 -0
  1352. package/node_modules/@playcanvas/pcui/types/components/Divider/index.d.ts +13 -0
  1353. package/node_modules/@playcanvas/pcui/types/components/Element/index.d.ts +671 -0
  1354. package/node_modules/@playcanvas/pcui/types/components/GradientPicker/index.d.ts +152 -0
  1355. package/node_modules/@playcanvas/pcui/types/components/GridView/index.d.ts +103 -0
  1356. package/node_modules/@playcanvas/pcui/types/components/GridViewItem/index.d.ts +82 -0
  1357. package/node_modules/@playcanvas/pcui/types/components/InfoBox/index.d.ts +71 -0
  1358. package/node_modules/@playcanvas/pcui/types/components/InputElement/index.d.ts +84 -0
  1359. package/node_modules/@playcanvas/pcui/types/components/Label/index.d.ts +85 -0
  1360. package/node_modules/@playcanvas/pcui/types/components/LabelGroup/index.d.ts +62 -0
  1361. package/node_modules/@playcanvas/pcui/types/components/Menu/index.d.ts +70 -0
  1362. package/node_modules/@playcanvas/pcui/types/components/MenuItem/index.d.ts +139 -0
  1363. package/node_modules/@playcanvas/pcui/types/components/NumericInput/index.d.ts +173 -0
  1364. package/node_modules/@playcanvas/pcui/types/components/Overlay/index.d.ts +53 -0
  1365. package/node_modules/@playcanvas/pcui/types/components/Panel/index.d.ts +178 -0
  1366. package/node_modules/@playcanvas/pcui/types/components/Progress/index.d.ts +33 -0
  1367. package/node_modules/@playcanvas/pcui/types/components/RadioButton/index.d.ts +33 -0
  1368. package/node_modules/@playcanvas/pcui/types/components/SelectInput/index.d.ts +278 -0
  1369. package/node_modules/@playcanvas/pcui/types/components/SliderInput/index.d.ts +133 -0
  1370. package/node_modules/@playcanvas/pcui/types/components/Spinner/index.d.ts +27 -0
  1371. package/node_modules/@playcanvas/pcui/types/components/TextAreaInput/index.d.ts +24 -0
  1372. package/node_modules/@playcanvas/pcui/types/components/TextInput/index.d.ts +40 -0
  1373. package/node_modules/@playcanvas/pcui/types/components/TreeView/index.d.ts +359 -0
  1374. package/node_modules/@playcanvas/pcui/types/components/TreeViewItem/index.d.ts +224 -0
  1375. package/node_modules/@playcanvas/pcui/types/components/VectorInput/index.d.ts +176 -0
  1376. package/node_modules/@playcanvas/pcui/types/components/index.d.ts +32 -0
  1377. package/node_modules/@playcanvas/pcui/types/helpers/search.d.ts +31 -0
  1378. package/node_modules/@playcanvas/pcui/types/helpers/utils.d.ts +2 -0
  1379. package/node_modules/@playcanvas/pcui/types/index.d.ts +20 -0
  1380. package/node_modules/babylonjs-gltf2interface/babylon.glTF2Interface.d.ts +1655 -0
  1381. package/node_modules/babylonjs-gltf2interface/license.md +71 -0
  1382. package/node_modules/babylonjs-gltf2interface/package.json +26 -0
  1383. package/package.json +31 -19
  1384. package/dist/editor-plugin-hierarchy-command.d.ts +0 -19
  1385. package/dist/editor-plugin-hierarchy-command.d.ts.map +0 -1
  1386. package/dist/editor-plugin-hierarchy-command.js +0 -119
  1387. package/dist/editor-plugin-hierarchy-command.js.map +0 -1
  1388. package/node_modules/@babel/helper-string-parser/lib/index.js.map +0 -1
  1389. package/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +0 -1
  1390. package/node_modules/@babel/helper-validator-identifier/lib/index.js.map +0 -1
  1391. package/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +0 -1
  1392. package/node_modules/@babel/parser/lib/index.js.map +0 -1
  1393. package/node_modules/@babel/types/lib/asserts/assertNode.js.map +0 -1
  1394. package/node_modules/@babel/types/lib/asserts/generated/index.js.map +0 -1
  1395. package/node_modules/@babel/types/lib/ast-types/generated/index.js.map +0 -1
  1396. package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +0 -1
  1397. package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +0 -1
  1398. package/node_modules/@babel/types/lib/builders/generated/index.js.map +0 -1
  1399. package/node_modules/@babel/types/lib/builders/generated/lowercase.js.map +0 -1
  1400. package/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +0 -1
  1401. package/node_modules/@babel/types/lib/builders/productions.js.map +0 -1
  1402. package/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +0 -1
  1403. package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +0 -1
  1404. package/node_modules/@babel/types/lib/builders/validateNode.js.map +0 -1
  1405. package/node_modules/@babel/types/lib/clone/clone.js.map +0 -1
  1406. package/node_modules/@babel/types/lib/clone/cloneDeep.js.map +0 -1
  1407. package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +0 -1
  1408. package/node_modules/@babel/types/lib/clone/cloneNode.js.map +0 -1
  1409. package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +0 -1
  1410. package/node_modules/@babel/types/lib/comments/addComment.js.map +0 -1
  1411. package/node_modules/@babel/types/lib/comments/addComments.js.map +0 -1
  1412. package/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +0 -1
  1413. package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +0 -1
  1414. package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +0 -1
  1415. package/node_modules/@babel/types/lib/comments/inheritsComments.js.map +0 -1
  1416. package/node_modules/@babel/types/lib/comments/removeComments.js.map +0 -1
  1417. package/node_modules/@babel/types/lib/constants/generated/index.js.map +0 -1
  1418. package/node_modules/@babel/types/lib/constants/index.js.map +0 -1
  1419. package/node_modules/@babel/types/lib/converters/ensureBlock.js.map +0 -1
  1420. package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +0 -1
  1421. package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +0 -1
  1422. package/node_modules/@babel/types/lib/converters/toBlock.js.map +0 -1
  1423. package/node_modules/@babel/types/lib/converters/toComputedKey.js.map +0 -1
  1424. package/node_modules/@babel/types/lib/converters/toExpression.js.map +0 -1
  1425. package/node_modules/@babel/types/lib/converters/toIdentifier.js.map +0 -1
  1426. package/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +0 -1
  1427. package/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +0 -1
  1428. package/node_modules/@babel/types/lib/converters/toStatement.js.map +0 -1
  1429. package/node_modules/@babel/types/lib/converters/valueToNode.js.map +0 -1
  1430. package/node_modules/@babel/types/lib/definitions/core.js.map +0 -1
  1431. package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +0 -1
  1432. package/node_modules/@babel/types/lib/definitions/experimental.js.map +0 -1
  1433. package/node_modules/@babel/types/lib/definitions/flow.js.map +0 -1
  1434. package/node_modules/@babel/types/lib/definitions/index.js.map +0 -1
  1435. package/node_modules/@babel/types/lib/definitions/jsx.js.map +0 -1
  1436. package/node_modules/@babel/types/lib/definitions/misc.js.map +0 -1
  1437. package/node_modules/@babel/types/lib/definitions/placeholders.js.map +0 -1
  1438. package/node_modules/@babel/types/lib/definitions/typescript.js.map +0 -1
  1439. package/node_modules/@babel/types/lib/definitions/utils.js.map +0 -1
  1440. package/node_modules/@babel/types/lib/index.js.map +0 -1
  1441. package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +0 -1
  1442. package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +0 -1
  1443. package/node_modules/@babel/types/lib/modifications/inherits.js.map +0 -1
  1444. package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +0 -1
  1445. package/node_modules/@babel/types/lib/modifications/removeProperties.js.map +0 -1
  1446. package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +0 -1
  1447. package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +0 -1
  1448. package/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js.map +0 -1
  1449. package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +0 -1
  1450. package/node_modules/@babel/types/lib/retrievers/getFunctionName.js.map +0 -1
  1451. package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +0 -1
  1452. package/node_modules/@babel/types/lib/traverse/traverse.js.map +0 -1
  1453. package/node_modules/@babel/types/lib/traverse/traverseFast.js.map +0 -1
  1454. package/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +0 -1
  1455. package/node_modules/@babel/types/lib/utils/inherit.js.map +0 -1
  1456. package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +0 -1
  1457. package/node_modules/@babel/types/lib/utils/shallowEqual.js.map +0 -1
  1458. package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +0 -1
  1459. package/node_modules/@babel/types/lib/validators/generated/index.js.map +0 -1
  1460. package/node_modules/@babel/types/lib/validators/is.js.map +0 -1
  1461. package/node_modules/@babel/types/lib/validators/isBinding.js.map +0 -1
  1462. package/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +0 -1
  1463. package/node_modules/@babel/types/lib/validators/isImmutable.js.map +0 -1
  1464. package/node_modules/@babel/types/lib/validators/isLet.js.map +0 -1
  1465. package/node_modules/@babel/types/lib/validators/isNode.js.map +0 -1
  1466. package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +0 -1
  1467. package/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +0 -1
  1468. package/node_modules/@babel/types/lib/validators/isReferenced.js.map +0 -1
  1469. package/node_modules/@babel/types/lib/validators/isScope.js.map +0 -1
  1470. package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +0 -1
  1471. package/node_modules/@babel/types/lib/validators/isType.js.map +0 -1
  1472. package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +0 -1
  1473. package/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +0 -1
  1474. package/node_modules/@babel/types/lib/validators/isVar.js.map +0 -1
  1475. package/node_modules/@babel/types/lib/validators/matchesPattern.js.map +0 -1
  1476. package/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +0 -1
  1477. package/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +0 -1
  1478. package/node_modules/@babel/types/lib/validators/validate.js.map +0 -1
  1479. package/node_modules/@fps-games/editor-babylon/dist/prefab-comparison-preview-controller.d.ts +0 -37
  1480. package/node_modules/@fps-games/editor-babylon/dist/prefab-comparison-preview-controller.d.ts.map +0 -1
  1481. package/node_modules/@fps-games/editor-babylon/dist/prefab-comparison-preview-controller.js +0 -451
  1482. package/node_modules/@fps-games/editor-babylon/dist/prefab-comparison-preview-controller.js.map +0 -1
  1483. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-actions.d.ts +0 -49
  1484. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-actions.d.ts.map +0 -1
  1485. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-actions.js +0 -627
  1486. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-actions.js.map +0 -1
  1487. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-attach-dialog.d.ts +0 -52
  1488. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-attach-dialog.d.ts.map +0 -1
  1489. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-attach-dialog.js +0 -450
  1490. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-attach-dialog.js.map +0 -1
  1491. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-command-adapter.d.ts +0 -21
  1492. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-command-adapter.d.ts.map +0 -1
  1493. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-command-adapter.js +0 -75
  1494. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-command-adapter.js.map +0 -1
  1495. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-projection.d.ts +0 -7
  1496. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-projection.d.ts.map +0 -1
  1497. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-projection.js +0 -186
  1498. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-projection.js.map +0 -1
  1499. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-scope.d.ts +0 -5
  1500. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-scope.d.ts.map +0 -1
  1501. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-scope.js +0 -98
  1502. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-scope.js.map +0 -1
  1503. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-tree.d.ts +0 -63
  1504. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-tree.d.ts.map +0 -1
  1505. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-tree.js +0 -301
  1506. package/node_modules/@fps-games/editor-browser/dist/local-editor-ui-hierarchy-tree.js.map +0 -1
@@ -1 +0,0 @@
1
- {"version":3,"names":["_validate","require","_deprecationWarning","utils","validateInternal","validate","NODE_FIELDS","bigIntLiteral","value","toString","node","type","defs","BigIntLiteral","arrayExpression","elements","ArrayExpression","assignmentExpression","operator","left","right","AssignmentExpression","binaryExpression","BinaryExpression","interpreterDirective","InterpreterDirective","directive","Directive","directiveLiteral","DirectiveLiteral","blockStatement","body","directives","BlockStatement","breakStatement","label","BreakStatement","callExpression","callee","_arguments","arguments","CallExpression","catchClause","param","CatchClause","conditionalExpression","test","consequent","alternate","ConditionalExpression","continueStatement","ContinueStatement","debuggerStatement","doWhileStatement","DoWhileStatement","emptyStatement","expressionStatement","expression","ExpressionStatement","file","program","comments","tokens","File","forInStatement","ForInStatement","forStatement","init","update","ForStatement","functionDeclaration","id","params","generator","async","FunctionDeclaration","functionExpression","FunctionExpression","identifier","name","Identifier","ifStatement","IfStatement","labeledStatement","LabeledStatement","stringLiteral","StringLiteral","numericLiteral","NumericLiteral","nullLiteral","booleanLiteral","BooleanLiteral","regExpLiteral","pattern","flags","RegExpLiteral","logicalExpression","LogicalExpression","memberExpression","object","property","computed","optional","MemberExpression","newExpression","NewExpression","sourceType","interpreter","Program","objectExpression","properties","ObjectExpression","objectMethod","kind","key","ObjectMethod","objectProperty","shorthand","decorators","ObjectProperty","restElement","argument","RestElement","returnStatement","ReturnStatement","sequenceExpression","expressions","SequenceExpression","parenthesizedExpression","ParenthesizedExpression","switchCase","SwitchCase","switchStatement","discriminant","cases","SwitchStatement","thisExpression","throwStatement","ThrowStatement","tryStatement","block","handler","finalizer","TryStatement","unaryExpression","prefix","UnaryExpression","updateExpression","UpdateExpression","variableDeclaration","declarations","VariableDeclaration","variableDeclarator","VariableDeclarator","whileStatement","WhileStatement","withStatement","WithStatement","assignmentPattern","AssignmentPattern","arrayPattern","ArrayPattern","arrowFunctionExpression","ArrowFunctionExpression","classBody","ClassBody","classExpression","superClass","ClassExpression","classDeclaration","ClassDeclaration","exportAllDeclaration","source","attributes","ExportAllDeclaration","exportDefaultDeclaration","declaration","ExportDefaultDeclaration","exportNamedDeclaration","specifiers","ExportNamedDeclaration","exportSpecifier","local","exported","ExportSpecifier","forOfStatement","_await","await","ForOfStatement","importDeclaration","ImportDeclaration","importDefaultSpecifier","ImportDefaultSpecifier","importNamespaceSpecifier","ImportNamespaceSpecifier","importSpecifier","imported","ImportSpecifier","importExpression","options","ImportExpression","metaProperty","meta","MetaProperty","classMethod","_static","static","ClassMethod","objectPattern","ObjectPattern","spreadElement","SpreadElement","_super","taggedTemplateExpression","tag","quasi","TaggedTemplateExpression","templateElement","tail","TemplateElement","templateLiteral","quasis","TemplateLiteral","yieldExpression","delegate","YieldExpression","awaitExpression","AwaitExpression","_import","exportNamespaceSpecifier","ExportNamespaceSpecifier","optionalMemberExpression","OptionalMemberExpression","optionalCallExpression","OptionalCallExpression","classProperty","typeAnnotation","ClassProperty","classAccessorProperty","ClassAccessorProperty","classPrivateProperty","ClassPrivateProperty","classPrivateMethod","ClassPrivateMethod","privateName","PrivateName","staticBlock","StaticBlock","importAttribute","ImportAttribute","anyTypeAnnotation","arrayTypeAnnotation","elementType","ArrayTypeAnnotation","booleanTypeAnnotation","booleanLiteralTypeAnnotation","BooleanLiteralTypeAnnotation","nullLiteralTypeAnnotation","classImplements","typeParameters","ClassImplements","declareClass","_extends","extends","DeclareClass","declareFunction","DeclareFunction","declareInterface","DeclareInterface","declareModule","DeclareModule","declareModuleExports","DeclareModuleExports","declareTypeAlias","DeclareTypeAlias","declareOpaqueType","supertype","DeclareOpaqueType","declareVariable","DeclareVariable","declareExportDeclaration","DeclareExportDeclaration","declareExportAllDeclaration","DeclareExportAllDeclaration","declaredPredicate","DeclaredPredicate","existsTypeAnnotation","functionTypeAnnotation","rest","returnType","FunctionTypeAnnotation","functionTypeParam","FunctionTypeParam","genericTypeAnnotation","GenericTypeAnnotation","inferredPredicate","interfaceExtends","InterfaceExtends","interfaceDeclaration","InterfaceDeclaration","interfaceTypeAnnotation","InterfaceTypeAnnotation","intersectionTypeAnnotation","types","IntersectionTypeAnnotation","mixedTypeAnnotation","emptyTypeAnnotation","nullableTypeAnnotation","NullableTypeAnnotation","numberLiteralTypeAnnotation","NumberLiteralTypeAnnotation","numberTypeAnnotation","objectTypeAnnotation","indexers","callProperties","internalSlots","exact","ObjectTypeAnnotation","objectTypeInternalSlot","method","ObjectTypeInternalSlot","objectTypeCallProperty","ObjectTypeCallProperty","objectTypeIndexer","variance","ObjectTypeIndexer","objectTypeProperty","proto","ObjectTypeProperty","objectTypeSpreadProperty","ObjectTypeSpreadProperty","opaqueType","impltype","OpaqueType","qualifiedTypeIdentifier","qualification","QualifiedTypeIdentifier","stringLiteralTypeAnnotation","StringLiteralTypeAnnotation","stringTypeAnnotation","symbolTypeAnnotation","thisTypeAnnotation","tupleTypeAnnotation","TupleTypeAnnotation","typeofTypeAnnotation","TypeofTypeAnnotation","typeAlias","TypeAlias","TypeAnnotation","typeCastExpression","TypeCastExpression","typeParameter","bound","_default","default","TypeParameter","typeParameterDeclaration","TypeParameterDeclaration","typeParameterInstantiation","TypeParameterInstantiation","unionTypeAnnotation","UnionTypeAnnotation","Variance","voidTypeAnnotation","enumDeclaration","EnumDeclaration","enumBooleanBody","members","explicitType","hasUnknownMembers","EnumBooleanBody","enumNumberBody","EnumNumberBody","enumStringBody","EnumStringBody","enumSymbolBody","EnumSymbolBody","enumBooleanMember","EnumBooleanMember","enumNumberMember","EnumNumberMember","enumStringMember","EnumStringMember","enumDefaultedMember","EnumDefaultedMember","indexedAccessType","objectType","indexType","IndexedAccessType","optionalIndexedAccessType","OptionalIndexedAccessType","jsxAttribute","JSXAttribute","jsxClosingElement","JSXClosingElement","jsxElement","openingElement","closingElement","children","selfClosing","JSXElement","jsxEmptyExpression","jsxExpressionContainer","JSXExpressionContainer","jsxSpreadChild","JSXSpreadChild","jsxIdentifier","JSXIdentifier","jsxMemberExpression","JSXMemberExpression","jsxNamespacedName","namespace","JSXNamespacedName","jsxOpeningElement","JSXOpeningElement","jsxSpreadAttribute","JSXSpreadAttribute","jsxText","JSXText","jsxFragment","openingFragment","closingFragment","JSXFragment","jsxOpeningFragment","jsxClosingFragment","noop","placeholder","expectedNode","Placeholder","v8IntrinsicIdentifier","V8IntrinsicIdentifier","argumentPlaceholder","bindExpression","BindExpression","decorator","Decorator","doExpression","DoExpression","exportDefaultSpecifier","ExportDefaultSpecifier","recordExpression","RecordExpression","tupleExpression","TupleExpression","decimalLiteral","DecimalLiteral","moduleExpression","ModuleExpression","topicReference","pipelineTopicExpression","PipelineTopicExpression","pipelineBareFunction","PipelineBareFunction","pipelinePrimaryTopicReference","voidPattern","tsParameterProperty","parameter","TSParameterProperty","tsDeclareFunction","TSDeclareFunction","tsDeclareMethod","TSDeclareMethod","tsQualifiedName","TSQualifiedName","tsCallSignatureDeclaration","parameters","TSCallSignatureDeclaration","tsConstructSignatureDeclaration","TSConstructSignatureDeclaration","tsPropertySignature","TSPropertySignature","tsMethodSignature","TSMethodSignature","tsIndexSignature","TSIndexSignature","tsAnyKeyword","tsBooleanKeyword","tsBigIntKeyword","tsIntrinsicKeyword","tsNeverKeyword","tsNullKeyword","tsNumberKeyword","tsObjectKeyword","tsStringKeyword","tsSymbolKeyword","tsUndefinedKeyword","tsUnknownKeyword","tsVoidKeyword","tsThisType","tsFunctionType","TSFunctionType","tsConstructorType","TSConstructorType","tsTypeReference","typeName","TSTypeReference","tsTypePredicate","parameterName","asserts","TSTypePredicate","tsTypeQuery","exprName","TSTypeQuery","tsTypeLiteral","TSTypeLiteral","tsArrayType","TSArrayType","tsTupleType","elementTypes","TSTupleType","tsOptionalType","TSOptionalType","tsRestType","TSRestType","tsNamedTupleMember","TSNamedTupleMember","tsUnionType","TSUnionType","tsIntersectionType","TSIntersectionType","tsConditionalType","checkType","extendsType","trueType","falseType","TSConditionalType","tsInferType","TSInferType","tsParenthesizedType","TSParenthesizedType","tsTypeOperator","TSTypeOperator","tsIndexedAccessType","TSIndexedAccessType","tsMappedType","nameType","TSMappedType","tsTemplateLiteralType","TSTemplateLiteralType","tsLiteralType","literal","TSLiteralType","tsExpressionWithTypeArguments","TSExpressionWithTypeArguments","tsInterfaceDeclaration","TSInterfaceDeclaration","tsInterfaceBody","TSInterfaceBody","tsTypeAliasDeclaration","TSTypeAliasDeclaration","tsInstantiationExpression","TSInstantiationExpression","tsAsExpression","TSAsExpression","tsSatisfiesExpression","TSSatisfiesExpression","tsTypeAssertion","TSTypeAssertion","tsEnumBody","TSEnumBody","tsEnumDeclaration","TSEnumDeclaration","tsEnumMember","initializer","TSEnumMember","tsModuleDeclaration","TSModuleDeclaration","tsModuleBlock","TSModuleBlock","tsImportType","qualifier","TSImportType","tsImportEqualsDeclaration","moduleReference","isExport","TSImportEqualsDeclaration","tsExternalModuleReference","TSExternalModuleReference","tsNonNullExpression","TSNonNullExpression","tsExportAssignment","TSExportAssignment","tsNamespaceExportDeclaration","TSNamespaceExportDeclaration","tsTypeAnnotation","TSTypeAnnotation","tsTypeParameterInstantiation","TSTypeParameterInstantiation","tsTypeParameterDeclaration","TSTypeParameterDeclaration","tsTypeParameter","constraint","TSTypeParameter","NumberLiteral","deprecationWarning","RegexLiteral","RestProperty","SpreadProperty"],"sources":["../../../src/builders/generated/lowercase.ts"],"sourcesContent":["/*\n * This file is auto-generated! Do not modify it directly.\n * To re-generate run 'make build'\n */\nimport * as _validate from \"../../validators/validate.ts\";\nimport type * as t from \"../../ast-types/generated/index.ts\";\nimport deprecationWarning from \"../../utils/deprecationWarning.ts\";\nimport * as utils from \"../../definitions/utils.ts\";\n\nconst { validateInternal: validate } = _validate;\nconst { NODE_FIELDS } = utils;\n\n/** @deprecated */ export function bigIntLiteral(\n value: string,\n): t.BigIntLiteral;\nexport function bigIntLiteral(value: bigint): t.BigIntLiteral;\nexport function bigIntLiteral(value: bigint | string): t.BigIntLiteral {\n if (typeof value === \"bigint\") {\n value = value.toString();\n }\n const node: t.BigIntLiteral = {\n type: \"BigIntLiteral\",\n value,\n };\n const defs = NODE_FIELDS.BigIntLiteral;\n validate(defs.value, node, \"value\", value);\n return node;\n}\nexport function arrayExpression(\n elements: (null | t.Expression | t.SpreadElement)[] = [],\n): t.ArrayExpression {\n const node: t.ArrayExpression = {\n type: \"ArrayExpression\",\n elements,\n };\n const defs = NODE_FIELDS.ArrayExpression;\n validate(defs.elements, node, \"elements\", elements, 1);\n return node;\n}\nexport function assignmentExpression(\n operator: string,\n left: t.LVal | t.OptionalMemberExpression,\n right: t.Expression,\n): t.AssignmentExpression {\n const node: t.AssignmentExpression = {\n type: \"AssignmentExpression\",\n operator,\n left,\n right,\n };\n const defs = NODE_FIELDS.AssignmentExpression;\n validate(defs.operator, node, \"operator\", operator);\n validate(defs.left, node, \"left\", left, 1);\n validate(defs.right, node, \"right\", right, 1);\n return node;\n}\nexport function binaryExpression(\n operator:\n | \"+\"\n | \"-\"\n | \"/\"\n | \"%\"\n | \"*\"\n | \"**\"\n | \"&\"\n | \"|\"\n | \">>\"\n | \">>>\"\n | \"<<\"\n | \"^\"\n | \"==\"\n | \"===\"\n | \"!=\"\n | \"!==\"\n | \"in\"\n | \"instanceof\"\n | \">\"\n | \"<\"\n | \">=\"\n | \"<=\"\n | \"|>\",\n left: t.Expression | t.PrivateName,\n right: t.Expression,\n): t.BinaryExpression {\n const node: t.BinaryExpression = {\n type: \"BinaryExpression\",\n operator,\n left,\n right,\n };\n const defs = NODE_FIELDS.BinaryExpression;\n validate(defs.operator, node, \"operator\", operator);\n validate(defs.left, node, \"left\", left, 1);\n validate(defs.right, node, \"right\", right, 1);\n return node;\n}\nexport function interpreterDirective(value: string): t.InterpreterDirective {\n const node: t.InterpreterDirective = {\n type: \"InterpreterDirective\",\n value,\n };\n const defs = NODE_FIELDS.InterpreterDirective;\n validate(defs.value, node, \"value\", value);\n return node;\n}\nexport function directive(value: t.DirectiveLiteral): t.Directive {\n const node: t.Directive = {\n type: \"Directive\",\n value,\n };\n const defs = NODE_FIELDS.Directive;\n validate(defs.value, node, \"value\", value, 1);\n return node;\n}\nexport function directiveLiteral(value: string): t.DirectiveLiteral {\n const node: t.DirectiveLiteral = {\n type: \"DirectiveLiteral\",\n value,\n };\n const defs = NODE_FIELDS.DirectiveLiteral;\n validate(defs.value, node, \"value\", value);\n return node;\n}\nexport function blockStatement(\n body: t.Statement[],\n directives: t.Directive[] = [],\n): t.BlockStatement {\n const node: t.BlockStatement = {\n type: \"BlockStatement\",\n body,\n directives,\n };\n const defs = NODE_FIELDS.BlockStatement;\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.directives, node, \"directives\", directives, 1);\n return node;\n}\nexport function breakStatement(\n label: t.Identifier | null = null,\n): t.BreakStatement {\n const node: t.BreakStatement = {\n type: \"BreakStatement\",\n label,\n };\n const defs = NODE_FIELDS.BreakStatement;\n validate(defs.label, node, \"label\", label, 1);\n return node;\n}\nexport function callExpression(\n callee: t.Expression | t.Super | t.V8IntrinsicIdentifier,\n _arguments: (t.Expression | t.SpreadElement | t.ArgumentPlaceholder)[],\n): t.CallExpression {\n const node: t.CallExpression = {\n type: \"CallExpression\",\n callee,\n arguments: _arguments,\n };\n const defs = NODE_FIELDS.CallExpression;\n validate(defs.callee, node, \"callee\", callee, 1);\n validate(defs.arguments, node, \"arguments\", _arguments, 1);\n return node;\n}\nexport function catchClause(\n param:\n | t.Identifier\n | t.ArrayPattern\n | t.ObjectPattern\n | null\n | undefined = null,\n body: t.BlockStatement,\n): t.CatchClause {\n const node: t.CatchClause = {\n type: \"CatchClause\",\n param,\n body,\n };\n const defs = NODE_FIELDS.CatchClause;\n validate(defs.param, node, \"param\", param, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function conditionalExpression(\n test: t.Expression,\n consequent: t.Expression,\n alternate: t.Expression,\n): t.ConditionalExpression {\n const node: t.ConditionalExpression = {\n type: \"ConditionalExpression\",\n test,\n consequent,\n alternate,\n };\n const defs = NODE_FIELDS.ConditionalExpression;\n validate(defs.test, node, \"test\", test, 1);\n validate(defs.consequent, node, \"consequent\", consequent, 1);\n validate(defs.alternate, node, \"alternate\", alternate, 1);\n return node;\n}\nexport function continueStatement(\n label: t.Identifier | null = null,\n): t.ContinueStatement {\n const node: t.ContinueStatement = {\n type: \"ContinueStatement\",\n label,\n };\n const defs = NODE_FIELDS.ContinueStatement;\n validate(defs.label, node, \"label\", label, 1);\n return node;\n}\nexport function debuggerStatement(): t.DebuggerStatement {\n return {\n type: \"DebuggerStatement\",\n };\n}\nexport function doWhileStatement(\n test: t.Expression,\n body: t.Statement,\n): t.DoWhileStatement {\n const node: t.DoWhileStatement = {\n type: \"DoWhileStatement\",\n test,\n body,\n };\n const defs = NODE_FIELDS.DoWhileStatement;\n validate(defs.test, node, \"test\", test, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function emptyStatement(): t.EmptyStatement {\n return {\n type: \"EmptyStatement\",\n };\n}\nexport function expressionStatement(\n expression: t.Expression,\n): t.ExpressionStatement {\n const node: t.ExpressionStatement = {\n type: \"ExpressionStatement\",\n expression,\n };\n const defs = NODE_FIELDS.ExpressionStatement;\n validate(defs.expression, node, \"expression\", expression, 1);\n return node;\n}\nexport function file(\n program: t.Program,\n comments: (t.CommentBlock | t.CommentLine)[] | null = null,\n tokens: any[] | null = null,\n): t.File {\n const node: t.File = {\n type: \"File\",\n program,\n comments,\n tokens,\n };\n const defs = NODE_FIELDS.File;\n validate(defs.program, node, \"program\", program, 1);\n validate(defs.comments, node, \"comments\", comments, 1);\n validate(defs.tokens, node, \"tokens\", tokens);\n return node;\n}\nexport function forInStatement(\n left: t.VariableDeclaration | t.LVal,\n right: t.Expression,\n body: t.Statement,\n): t.ForInStatement {\n const node: t.ForInStatement = {\n type: \"ForInStatement\",\n left,\n right,\n body,\n };\n const defs = NODE_FIELDS.ForInStatement;\n validate(defs.left, node, \"left\", left, 1);\n validate(defs.right, node, \"right\", right, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function forStatement(\n init: t.VariableDeclaration | t.Expression | null | undefined = null,\n test: t.Expression | null | undefined = null,\n update: t.Expression | null | undefined = null,\n body: t.Statement,\n): t.ForStatement {\n const node: t.ForStatement = {\n type: \"ForStatement\",\n init,\n test,\n update,\n body,\n };\n const defs = NODE_FIELDS.ForStatement;\n validate(defs.init, node, \"init\", init, 1);\n validate(defs.test, node, \"test\", test, 1);\n validate(defs.update, node, \"update\", update, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function functionDeclaration(\n id: t.Identifier | null | undefined = null,\n params: t.FunctionParameter[],\n body: t.BlockStatement,\n generator: boolean = false,\n async: boolean = false,\n): t.FunctionDeclaration {\n const node: t.FunctionDeclaration = {\n type: \"FunctionDeclaration\",\n id,\n params,\n body,\n generator,\n async,\n };\n const defs = NODE_FIELDS.FunctionDeclaration;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.params, node, \"params\", params, 1);\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.generator, node, \"generator\", generator);\n validate(defs.async, node, \"async\", async);\n return node;\n}\nexport function functionExpression(\n id: t.Identifier | null | undefined = null,\n params: t.FunctionParameter[],\n body: t.BlockStatement,\n generator: boolean = false,\n async: boolean = false,\n): t.FunctionExpression {\n const node: t.FunctionExpression = {\n type: \"FunctionExpression\",\n id,\n params,\n body,\n generator,\n async,\n };\n const defs = NODE_FIELDS.FunctionExpression;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.params, node, \"params\", params, 1);\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.generator, node, \"generator\", generator);\n validate(defs.async, node, \"async\", async);\n return node;\n}\nexport function identifier(name: string): t.Identifier {\n const node: t.Identifier = {\n type: \"Identifier\",\n name,\n };\n const defs = NODE_FIELDS.Identifier;\n validate(defs.name, node, \"name\", name);\n return node;\n}\nexport function ifStatement(\n test: t.Expression,\n consequent: t.Statement,\n alternate: t.Statement | null = null,\n): t.IfStatement {\n const node: t.IfStatement = {\n type: \"IfStatement\",\n test,\n consequent,\n alternate,\n };\n const defs = NODE_FIELDS.IfStatement;\n validate(defs.test, node, \"test\", test, 1);\n validate(defs.consequent, node, \"consequent\", consequent, 1);\n validate(defs.alternate, node, \"alternate\", alternate, 1);\n return node;\n}\nexport function labeledStatement(\n label: t.Identifier,\n body: t.Statement,\n): t.LabeledStatement {\n const node: t.LabeledStatement = {\n type: \"LabeledStatement\",\n label,\n body,\n };\n const defs = NODE_FIELDS.LabeledStatement;\n validate(defs.label, node, \"label\", label, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function stringLiteral(value: string): t.StringLiteral {\n const node: t.StringLiteral = {\n type: \"StringLiteral\",\n value,\n };\n const defs = NODE_FIELDS.StringLiteral;\n validate(defs.value, node, \"value\", value);\n return node;\n}\nexport function numericLiteral(value: number): t.NumericLiteral {\n const node: t.NumericLiteral = {\n type: \"NumericLiteral\",\n value,\n };\n const defs = NODE_FIELDS.NumericLiteral;\n validate(defs.value, node, \"value\", value);\n return node;\n}\nexport function nullLiteral(): t.NullLiteral {\n return {\n type: \"NullLiteral\",\n };\n}\nexport function booleanLiteral(value: boolean): t.BooleanLiteral {\n const node: t.BooleanLiteral = {\n type: \"BooleanLiteral\",\n value,\n };\n const defs = NODE_FIELDS.BooleanLiteral;\n validate(defs.value, node, \"value\", value);\n return node;\n}\nexport function regExpLiteral(\n pattern: string,\n flags: string = \"\",\n): t.RegExpLiteral {\n const node: t.RegExpLiteral = {\n type: \"RegExpLiteral\",\n pattern,\n flags,\n };\n const defs = NODE_FIELDS.RegExpLiteral;\n validate(defs.pattern, node, \"pattern\", pattern);\n validate(defs.flags, node, \"flags\", flags);\n return node;\n}\nexport function logicalExpression(\n operator: \"||\" | \"&&\" | \"??\",\n left: t.Expression,\n right: t.Expression,\n): t.LogicalExpression {\n const node: t.LogicalExpression = {\n type: \"LogicalExpression\",\n operator,\n left,\n right,\n };\n const defs = NODE_FIELDS.LogicalExpression;\n validate(defs.operator, node, \"operator\", operator);\n validate(defs.left, node, \"left\", left, 1);\n validate(defs.right, node, \"right\", right, 1);\n return node;\n}\nexport function memberExpression(\n object: t.Expression | t.Super,\n property: t.Expression | t.Identifier | t.PrivateName,\n computed: boolean = false,\n optional: boolean | null = null,\n): t.MemberExpression {\n const node: t.MemberExpression = {\n type: \"MemberExpression\",\n object,\n property,\n computed,\n optional,\n };\n const defs = NODE_FIELDS.MemberExpression;\n validate(defs.object, node, \"object\", object, 1);\n validate(defs.property, node, \"property\", property, 1);\n validate(defs.computed, node, \"computed\", computed);\n validate(defs.optional, node, \"optional\", optional);\n return node;\n}\nexport function newExpression(\n callee: t.Expression | t.Super | t.V8IntrinsicIdentifier,\n _arguments: (t.Expression | t.SpreadElement | t.ArgumentPlaceholder)[],\n): t.NewExpression {\n const node: t.NewExpression = {\n type: \"NewExpression\",\n callee,\n arguments: _arguments,\n };\n const defs = NODE_FIELDS.NewExpression;\n validate(defs.callee, node, \"callee\", callee, 1);\n validate(defs.arguments, node, \"arguments\", _arguments, 1);\n return node;\n}\nexport function program(\n body: t.Statement[],\n directives: t.Directive[] = [],\n sourceType: \"script\" | \"module\" = \"script\",\n interpreter: t.InterpreterDirective | null = null,\n): t.Program {\n const node: t.Program = {\n type: \"Program\",\n body,\n directives,\n sourceType,\n interpreter,\n };\n const defs = NODE_FIELDS.Program;\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.directives, node, \"directives\", directives, 1);\n validate(defs.sourceType, node, \"sourceType\", sourceType);\n validate(defs.interpreter, node, \"interpreter\", interpreter, 1);\n return node;\n}\nexport function objectExpression(\n properties: (t.ObjectMethod | t.ObjectProperty | t.SpreadElement)[],\n): t.ObjectExpression {\n const node: t.ObjectExpression = {\n type: \"ObjectExpression\",\n properties,\n };\n const defs = NODE_FIELDS.ObjectExpression;\n validate(defs.properties, node, \"properties\", properties, 1);\n return node;\n}\nexport function objectMethod(\n kind: \"method\" | \"get\" | \"set\" | undefined = \"method\",\n key:\n | t.Expression\n | t.Identifier\n | t.StringLiteral\n | t.NumericLiteral\n | t.BigIntLiteral,\n params: t.FunctionParameter[],\n body: t.BlockStatement,\n computed: boolean = false,\n generator: boolean = false,\n async: boolean = false,\n): t.ObjectMethod {\n const node: t.ObjectMethod = {\n type: \"ObjectMethod\",\n kind,\n key,\n params,\n body,\n computed,\n generator,\n async,\n };\n const defs = NODE_FIELDS.ObjectMethod;\n validate(defs.kind, node, \"kind\", kind);\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.params, node, \"params\", params, 1);\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.computed, node, \"computed\", computed);\n validate(defs.generator, node, \"generator\", generator);\n validate(defs.async, node, \"async\", async);\n return node;\n}\nexport function objectProperty(\n key:\n | t.Expression\n | t.Identifier\n | t.StringLiteral\n | t.NumericLiteral\n | t.BigIntLiteral\n | t.DecimalLiteral\n | t.PrivateName,\n value: t.Expression | t.PatternLike,\n computed: boolean = false,\n shorthand: boolean = false,\n decorators: t.Decorator[] | null = null,\n): t.ObjectProperty {\n const node: t.ObjectProperty = {\n type: \"ObjectProperty\",\n key,\n value,\n computed,\n shorthand,\n decorators,\n };\n const defs = NODE_FIELDS.ObjectProperty;\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.value, node, \"value\", value, 1);\n validate(defs.computed, node, \"computed\", computed);\n validate(defs.shorthand, node, \"shorthand\", shorthand);\n validate(defs.decorators, node, \"decorators\", decorators, 1);\n return node;\n}\nexport function restElement(\n argument:\n | t.Identifier\n | t.ArrayPattern\n | t.ObjectPattern\n | t.MemberExpression\n | t.TSAsExpression\n | t.TSSatisfiesExpression\n | t.TSTypeAssertion\n | t.TSNonNullExpression\n | t.RestElement\n | t.AssignmentPattern,\n): t.RestElement {\n const node: t.RestElement = {\n type: \"RestElement\",\n argument,\n };\n const defs = NODE_FIELDS.RestElement;\n validate(defs.argument, node, \"argument\", argument, 1);\n return node;\n}\nexport function returnStatement(\n argument: t.Expression | null = null,\n): t.ReturnStatement {\n const node: t.ReturnStatement = {\n type: \"ReturnStatement\",\n argument,\n };\n const defs = NODE_FIELDS.ReturnStatement;\n validate(defs.argument, node, \"argument\", argument, 1);\n return node;\n}\nexport function sequenceExpression(\n expressions: t.Expression[],\n): t.SequenceExpression {\n const node: t.SequenceExpression = {\n type: \"SequenceExpression\",\n expressions,\n };\n const defs = NODE_FIELDS.SequenceExpression;\n validate(defs.expressions, node, \"expressions\", expressions, 1);\n return node;\n}\nexport function parenthesizedExpression(\n expression: t.Expression,\n): t.ParenthesizedExpression {\n const node: t.ParenthesizedExpression = {\n type: \"ParenthesizedExpression\",\n expression,\n };\n const defs = NODE_FIELDS.ParenthesizedExpression;\n validate(defs.expression, node, \"expression\", expression, 1);\n return node;\n}\nexport function switchCase(\n test: t.Expression | null | undefined = null,\n consequent: t.Statement[],\n): t.SwitchCase {\n const node: t.SwitchCase = {\n type: \"SwitchCase\",\n test,\n consequent,\n };\n const defs = NODE_FIELDS.SwitchCase;\n validate(defs.test, node, \"test\", test, 1);\n validate(defs.consequent, node, \"consequent\", consequent, 1);\n return node;\n}\nexport function switchStatement(\n discriminant: t.Expression,\n cases: t.SwitchCase[],\n): t.SwitchStatement {\n const node: t.SwitchStatement = {\n type: \"SwitchStatement\",\n discriminant,\n cases,\n };\n const defs = NODE_FIELDS.SwitchStatement;\n validate(defs.discriminant, node, \"discriminant\", discriminant, 1);\n validate(defs.cases, node, \"cases\", cases, 1);\n return node;\n}\nexport function thisExpression(): t.ThisExpression {\n return {\n type: \"ThisExpression\",\n };\n}\nexport function throwStatement(argument: t.Expression): t.ThrowStatement {\n const node: t.ThrowStatement = {\n type: \"ThrowStatement\",\n argument,\n };\n const defs = NODE_FIELDS.ThrowStatement;\n validate(defs.argument, node, \"argument\", argument, 1);\n return node;\n}\nexport function tryStatement(\n block: t.BlockStatement,\n handler: t.CatchClause | null = null,\n finalizer: t.BlockStatement | null = null,\n): t.TryStatement {\n const node: t.TryStatement = {\n type: \"TryStatement\",\n block,\n handler,\n finalizer,\n };\n const defs = NODE_FIELDS.TryStatement;\n validate(defs.block, node, \"block\", block, 1);\n validate(defs.handler, node, \"handler\", handler, 1);\n validate(defs.finalizer, node, \"finalizer\", finalizer, 1);\n return node;\n}\nexport function unaryExpression(\n operator: \"void\" | \"throw\" | \"delete\" | \"!\" | \"+\" | \"-\" | \"~\" | \"typeof\",\n argument: t.Expression,\n prefix: boolean = true,\n): t.UnaryExpression {\n const node: t.UnaryExpression = {\n type: \"UnaryExpression\",\n operator,\n argument,\n prefix,\n };\n const defs = NODE_FIELDS.UnaryExpression;\n validate(defs.operator, node, \"operator\", operator);\n validate(defs.argument, node, \"argument\", argument, 1);\n validate(defs.prefix, node, \"prefix\", prefix);\n return node;\n}\nexport function updateExpression(\n operator: \"++\" | \"--\",\n argument: t.Expression,\n prefix: boolean = false,\n): t.UpdateExpression {\n const node: t.UpdateExpression = {\n type: \"UpdateExpression\",\n operator,\n argument,\n prefix,\n };\n const defs = NODE_FIELDS.UpdateExpression;\n validate(defs.operator, node, \"operator\", operator);\n validate(defs.argument, node, \"argument\", argument, 1);\n validate(defs.prefix, node, \"prefix\", prefix);\n return node;\n}\nexport function variableDeclaration(\n kind: \"var\" | \"let\" | \"const\" | \"using\" | \"await using\",\n declarations: t.VariableDeclarator[],\n): t.VariableDeclaration {\n const node: t.VariableDeclaration = {\n type: \"VariableDeclaration\",\n kind,\n declarations,\n };\n const defs = NODE_FIELDS.VariableDeclaration;\n validate(defs.kind, node, \"kind\", kind);\n validate(defs.declarations, node, \"declarations\", declarations, 1);\n return node;\n}\nexport function variableDeclarator(\n id: t.LVal | t.VoidPattern,\n init: t.Expression | null = null,\n): t.VariableDeclarator {\n const node: t.VariableDeclarator = {\n type: \"VariableDeclarator\",\n id,\n init,\n };\n const defs = NODE_FIELDS.VariableDeclarator;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.init, node, \"init\", init, 1);\n return node;\n}\nexport function whileStatement(\n test: t.Expression,\n body: t.Statement,\n): t.WhileStatement {\n const node: t.WhileStatement = {\n type: \"WhileStatement\",\n test,\n body,\n };\n const defs = NODE_FIELDS.WhileStatement;\n validate(defs.test, node, \"test\", test, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function withStatement(\n object: t.Expression,\n body: t.Statement,\n): t.WithStatement {\n const node: t.WithStatement = {\n type: \"WithStatement\",\n object,\n body,\n };\n const defs = NODE_FIELDS.WithStatement;\n validate(defs.object, node, \"object\", object, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function assignmentPattern(\n left:\n | t.Identifier\n | t.ObjectPattern\n | t.ArrayPattern\n | t.MemberExpression\n | t.TSAsExpression\n | t.TSSatisfiesExpression\n | t.TSTypeAssertion\n | t.TSNonNullExpression,\n right: t.Expression,\n): t.AssignmentPattern {\n const node: t.AssignmentPattern = {\n type: \"AssignmentPattern\",\n left,\n right,\n };\n const defs = NODE_FIELDS.AssignmentPattern;\n validate(defs.left, node, \"left\", left, 1);\n validate(defs.right, node, \"right\", right, 1);\n return node;\n}\nexport function arrayPattern(\n elements: (null | t.PatternLike)[],\n): t.ArrayPattern {\n const node: t.ArrayPattern = {\n type: \"ArrayPattern\",\n elements,\n };\n const defs = NODE_FIELDS.ArrayPattern;\n validate(defs.elements, node, \"elements\", elements, 1);\n return node;\n}\nexport function arrowFunctionExpression(\n params: t.FunctionParameter[],\n body: t.BlockStatement | t.Expression,\n async: boolean = false,\n): t.ArrowFunctionExpression {\n const node: t.ArrowFunctionExpression = {\n type: \"ArrowFunctionExpression\",\n params,\n body,\n async,\n expression: null,\n };\n const defs = NODE_FIELDS.ArrowFunctionExpression;\n validate(defs.params, node, \"params\", params, 1);\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.async, node, \"async\", async);\n return node;\n}\nexport function classBody(\n body: (\n | t.ClassMethod\n | t.ClassPrivateMethod\n | t.ClassProperty\n | t.ClassPrivateProperty\n | t.ClassAccessorProperty\n | t.TSDeclareMethod\n | t.TSIndexSignature\n | t.StaticBlock\n )[],\n): t.ClassBody {\n const node: t.ClassBody = {\n type: \"ClassBody\",\n body,\n };\n const defs = NODE_FIELDS.ClassBody;\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function classExpression(\n id: t.Identifier | null | undefined = null,\n superClass: t.Expression | null | undefined = null,\n body: t.ClassBody,\n decorators: t.Decorator[] | null = null,\n): t.ClassExpression {\n const node: t.ClassExpression = {\n type: \"ClassExpression\",\n id,\n superClass,\n body,\n decorators,\n };\n const defs = NODE_FIELDS.ClassExpression;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.superClass, node, \"superClass\", superClass, 1);\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.decorators, node, \"decorators\", decorators, 1);\n return node;\n}\nexport function classDeclaration(\n id: t.Identifier | null | undefined = null,\n superClass: t.Expression | null | undefined = null,\n body: t.ClassBody,\n decorators: t.Decorator[] | null = null,\n): t.ClassDeclaration {\n const node: t.ClassDeclaration = {\n type: \"ClassDeclaration\",\n id,\n superClass,\n body,\n decorators,\n };\n const defs = NODE_FIELDS.ClassDeclaration;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.superClass, node, \"superClass\", superClass, 1);\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.decorators, node, \"decorators\", decorators, 1);\n return node;\n}\nexport function exportAllDeclaration(\n source: t.StringLiteral,\n attributes: t.ImportAttribute[] | null = null,\n): t.ExportAllDeclaration {\n const node: t.ExportAllDeclaration = {\n type: \"ExportAllDeclaration\",\n source,\n attributes,\n };\n const defs = NODE_FIELDS.ExportAllDeclaration;\n validate(defs.source, node, \"source\", source, 1);\n validate(defs.attributes, node, \"attributes\", attributes, 1);\n return node;\n}\nexport function exportDefaultDeclaration(\n declaration:\n | t.TSDeclareFunction\n | t.FunctionDeclaration\n | t.ClassDeclaration\n | t.Expression,\n): t.ExportDefaultDeclaration {\n const node: t.ExportDefaultDeclaration = {\n type: \"ExportDefaultDeclaration\",\n declaration,\n };\n const defs = NODE_FIELDS.ExportDefaultDeclaration;\n validate(defs.declaration, node, \"declaration\", declaration, 1);\n return node;\n}\nexport function exportNamedDeclaration(\n declaration: t.Declaration | null = null,\n specifiers: (\n | t.ExportSpecifier\n | t.ExportDefaultSpecifier\n | t.ExportNamespaceSpecifier\n )[] = [],\n source: t.StringLiteral | null = null,\n attributes: t.ImportAttribute[] | null = null,\n): t.ExportNamedDeclaration {\n const node: t.ExportNamedDeclaration = {\n type: \"ExportNamedDeclaration\",\n declaration,\n specifiers,\n source,\n attributes,\n };\n const defs = NODE_FIELDS.ExportNamedDeclaration;\n validate(defs.declaration, node, \"declaration\", declaration, 1);\n validate(defs.specifiers, node, \"specifiers\", specifiers, 1);\n validate(defs.source, node, \"source\", source, 1);\n validate(defs.attributes, node, \"attributes\", attributes, 1);\n return node;\n}\nexport function exportSpecifier(\n local: t.Identifier,\n exported: t.Identifier | t.StringLiteral,\n): t.ExportSpecifier {\n const node: t.ExportSpecifier = {\n type: \"ExportSpecifier\",\n local,\n exported,\n };\n const defs = NODE_FIELDS.ExportSpecifier;\n validate(defs.local, node, \"local\", local, 1);\n validate(defs.exported, node, \"exported\", exported, 1);\n return node;\n}\nexport function forOfStatement(\n left: t.VariableDeclaration | t.LVal,\n right: t.Expression,\n body: t.Statement,\n _await: boolean = false,\n): t.ForOfStatement {\n const node: t.ForOfStatement = {\n type: \"ForOfStatement\",\n left,\n right,\n body,\n await: _await,\n };\n const defs = NODE_FIELDS.ForOfStatement;\n validate(defs.left, node, \"left\", left, 1);\n validate(defs.right, node, \"right\", right, 1);\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.await, node, \"await\", _await);\n return node;\n}\nexport function importDeclaration(\n specifiers: (\n | t.ImportSpecifier\n | t.ImportDefaultSpecifier\n | t.ImportNamespaceSpecifier\n )[],\n source: t.StringLiteral,\n attributes: t.ImportAttribute[] | null = null,\n): t.ImportDeclaration {\n const node: t.ImportDeclaration = {\n type: \"ImportDeclaration\",\n specifiers,\n source,\n attributes,\n };\n const defs = NODE_FIELDS.ImportDeclaration;\n validate(defs.specifiers, node, \"specifiers\", specifiers, 1);\n validate(defs.source, node, \"source\", source, 1);\n validate(defs.attributes, node, \"attributes\", attributes, 1);\n return node;\n}\nexport function importDefaultSpecifier(\n local: t.Identifier,\n): t.ImportDefaultSpecifier {\n const node: t.ImportDefaultSpecifier = {\n type: \"ImportDefaultSpecifier\",\n local,\n };\n const defs = NODE_FIELDS.ImportDefaultSpecifier;\n validate(defs.local, node, \"local\", local, 1);\n return node;\n}\nexport function importNamespaceSpecifier(\n local: t.Identifier,\n): t.ImportNamespaceSpecifier {\n const node: t.ImportNamespaceSpecifier = {\n type: \"ImportNamespaceSpecifier\",\n local,\n };\n const defs = NODE_FIELDS.ImportNamespaceSpecifier;\n validate(defs.local, node, \"local\", local, 1);\n return node;\n}\nexport function importSpecifier(\n local: t.Identifier,\n imported: t.Identifier | t.StringLiteral,\n): t.ImportSpecifier {\n const node: t.ImportSpecifier = {\n type: \"ImportSpecifier\",\n local,\n imported,\n };\n const defs = NODE_FIELDS.ImportSpecifier;\n validate(defs.local, node, \"local\", local, 1);\n validate(defs.imported, node, \"imported\", imported, 1);\n return node;\n}\nexport function importExpression(\n source: t.Expression,\n options: t.Expression | null = null,\n): t.ImportExpression {\n const node: t.ImportExpression = {\n type: \"ImportExpression\",\n source,\n options,\n };\n const defs = NODE_FIELDS.ImportExpression;\n validate(defs.source, node, \"source\", source, 1);\n validate(defs.options, node, \"options\", options, 1);\n return node;\n}\nexport function metaProperty(\n meta: t.Identifier,\n property: t.Identifier,\n): t.MetaProperty {\n const node: t.MetaProperty = {\n type: \"MetaProperty\",\n meta,\n property,\n };\n const defs = NODE_FIELDS.MetaProperty;\n validate(defs.meta, node, \"meta\", meta, 1);\n validate(defs.property, node, \"property\", property, 1);\n return node;\n}\nexport function classMethod(\n kind: \"get\" | \"set\" | \"method\" | \"constructor\" | undefined = \"method\",\n key:\n | t.Identifier\n | t.StringLiteral\n | t.NumericLiteral\n | t.BigIntLiteral\n | t.Expression,\n params: (t.FunctionParameter | t.TSParameterProperty)[],\n body: t.BlockStatement,\n computed: boolean = false,\n _static: boolean = false,\n generator: boolean = false,\n async: boolean = false,\n): t.ClassMethod {\n const node: t.ClassMethod = {\n type: \"ClassMethod\",\n kind,\n key,\n params,\n body,\n computed,\n static: _static,\n generator,\n async,\n };\n const defs = NODE_FIELDS.ClassMethod;\n validate(defs.kind, node, \"kind\", kind);\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.params, node, \"params\", params, 1);\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.computed, node, \"computed\", computed);\n validate(defs.static, node, \"static\", _static);\n validate(defs.generator, node, \"generator\", generator);\n validate(defs.async, node, \"async\", async);\n return node;\n}\nexport function objectPattern(\n properties: (t.RestElement | t.ObjectProperty)[],\n): t.ObjectPattern {\n const node: t.ObjectPattern = {\n type: \"ObjectPattern\",\n properties,\n };\n const defs = NODE_FIELDS.ObjectPattern;\n validate(defs.properties, node, \"properties\", properties, 1);\n return node;\n}\nexport function spreadElement(argument: t.Expression): t.SpreadElement {\n const node: t.SpreadElement = {\n type: \"SpreadElement\",\n argument,\n };\n const defs = NODE_FIELDS.SpreadElement;\n validate(defs.argument, node, \"argument\", argument, 1);\n return node;\n}\nfunction _super(): t.Super {\n return {\n type: \"Super\",\n };\n}\nexport { _super as super };\nexport function taggedTemplateExpression(\n tag: t.Expression,\n quasi: t.TemplateLiteral,\n): t.TaggedTemplateExpression {\n const node: t.TaggedTemplateExpression = {\n type: \"TaggedTemplateExpression\",\n tag,\n quasi,\n };\n const defs = NODE_FIELDS.TaggedTemplateExpression;\n validate(defs.tag, node, \"tag\", tag, 1);\n validate(defs.quasi, node, \"quasi\", quasi, 1);\n return node;\n}\nexport function templateElement(\n value: { raw: string; cooked?: string },\n tail: boolean = false,\n): t.TemplateElement {\n const node: t.TemplateElement = {\n type: \"TemplateElement\",\n value,\n tail,\n };\n const defs = NODE_FIELDS.TemplateElement;\n validate(defs.value, node, \"value\", value);\n validate(defs.tail, node, \"tail\", tail);\n return node;\n}\nexport function templateLiteral(\n quasis: t.TemplateElement[],\n expressions: (t.Expression | t.TSType)[],\n): t.TemplateLiteral {\n const node: t.TemplateLiteral = {\n type: \"TemplateLiteral\",\n quasis,\n expressions,\n };\n const defs = NODE_FIELDS.TemplateLiteral;\n validate(defs.quasis, node, \"quasis\", quasis, 1);\n validate(defs.expressions, node, \"expressions\", expressions, 1);\n return node;\n}\nexport function yieldExpression(\n argument: t.Expression | null = null,\n delegate: boolean = false,\n): t.YieldExpression {\n const node: t.YieldExpression = {\n type: \"YieldExpression\",\n argument,\n delegate,\n };\n const defs = NODE_FIELDS.YieldExpression;\n validate(defs.argument, node, \"argument\", argument, 1);\n validate(defs.delegate, node, \"delegate\", delegate);\n return node;\n}\nexport function awaitExpression(argument: t.Expression): t.AwaitExpression {\n const node: t.AwaitExpression = {\n type: \"AwaitExpression\",\n argument,\n };\n const defs = NODE_FIELDS.AwaitExpression;\n validate(defs.argument, node, \"argument\", argument, 1);\n return node;\n}\nfunction _import(): t.Import {\n return {\n type: \"Import\",\n };\n}\nexport { _import as import };\nexport function exportNamespaceSpecifier(\n exported: t.Identifier,\n): t.ExportNamespaceSpecifier {\n const node: t.ExportNamespaceSpecifier = {\n type: \"ExportNamespaceSpecifier\",\n exported,\n };\n const defs = NODE_FIELDS.ExportNamespaceSpecifier;\n validate(defs.exported, node, \"exported\", exported, 1);\n return node;\n}\nexport function optionalMemberExpression(\n object: t.Expression,\n property: t.Expression | t.Identifier,\n computed: boolean | undefined = false,\n optional: boolean,\n): t.OptionalMemberExpression {\n const node: t.OptionalMemberExpression = {\n type: \"OptionalMemberExpression\",\n object,\n property,\n computed,\n optional,\n };\n const defs = NODE_FIELDS.OptionalMemberExpression;\n validate(defs.object, node, \"object\", object, 1);\n validate(defs.property, node, \"property\", property, 1);\n validate(defs.computed, node, \"computed\", computed);\n validate(defs.optional, node, \"optional\", optional);\n return node;\n}\nexport function optionalCallExpression(\n callee: t.Expression,\n _arguments: (t.Expression | t.SpreadElement | t.ArgumentPlaceholder)[],\n optional: boolean,\n): t.OptionalCallExpression {\n const node: t.OptionalCallExpression = {\n type: \"OptionalCallExpression\",\n callee,\n arguments: _arguments,\n optional,\n };\n const defs = NODE_FIELDS.OptionalCallExpression;\n validate(defs.callee, node, \"callee\", callee, 1);\n validate(defs.arguments, node, \"arguments\", _arguments, 1);\n validate(defs.optional, node, \"optional\", optional);\n return node;\n}\nexport function classProperty(\n key:\n | t.Identifier\n | t.StringLiteral\n | t.NumericLiteral\n | t.BigIntLiteral\n | t.Expression,\n value: t.Expression | null = null,\n typeAnnotation: t.TypeAnnotation | t.TSTypeAnnotation | t.Noop | null = null,\n decorators: t.Decorator[] | null = null,\n computed: boolean = false,\n _static: boolean = false,\n): t.ClassProperty {\n const node: t.ClassProperty = {\n type: \"ClassProperty\",\n key,\n value,\n typeAnnotation,\n decorators,\n computed,\n static: _static,\n };\n const defs = NODE_FIELDS.ClassProperty;\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.value, node, \"value\", value, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n validate(defs.decorators, node, \"decorators\", decorators, 1);\n validate(defs.computed, node, \"computed\", computed);\n validate(defs.static, node, \"static\", _static);\n return node;\n}\nexport function classAccessorProperty(\n key:\n | t.Identifier\n | t.StringLiteral\n | t.NumericLiteral\n | t.BigIntLiteral\n | t.Expression\n | t.PrivateName,\n value: t.Expression | null = null,\n typeAnnotation: t.TypeAnnotation | t.TSTypeAnnotation | t.Noop | null = null,\n decorators: t.Decorator[] | null = null,\n computed: boolean = false,\n _static: boolean = false,\n): t.ClassAccessorProperty {\n const node: t.ClassAccessorProperty = {\n type: \"ClassAccessorProperty\",\n key,\n value,\n typeAnnotation,\n decorators,\n computed,\n static: _static,\n };\n const defs = NODE_FIELDS.ClassAccessorProperty;\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.value, node, \"value\", value, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n validate(defs.decorators, node, \"decorators\", decorators, 1);\n validate(defs.computed, node, \"computed\", computed);\n validate(defs.static, node, \"static\", _static);\n return node;\n}\nexport function classPrivateProperty(\n key: t.PrivateName,\n value: t.Expression | null = null,\n decorators: t.Decorator[] | null = null,\n _static: boolean = false,\n): t.ClassPrivateProperty {\n const node: t.ClassPrivateProperty = {\n type: \"ClassPrivateProperty\",\n key,\n value,\n decorators,\n static: _static,\n };\n const defs = NODE_FIELDS.ClassPrivateProperty;\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.value, node, \"value\", value, 1);\n validate(defs.decorators, node, \"decorators\", decorators, 1);\n validate(defs.static, node, \"static\", _static);\n return node;\n}\nexport function classPrivateMethod(\n kind: \"get\" | \"set\" | \"method\" | undefined = \"method\",\n key: t.PrivateName,\n params: (t.FunctionParameter | t.TSParameterProperty)[],\n body: t.BlockStatement,\n _static: boolean = false,\n): t.ClassPrivateMethod {\n const node: t.ClassPrivateMethod = {\n type: \"ClassPrivateMethod\",\n kind,\n key,\n params,\n body,\n static: _static,\n };\n const defs = NODE_FIELDS.ClassPrivateMethod;\n validate(defs.kind, node, \"kind\", kind);\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.params, node, \"params\", params, 1);\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.static, node, \"static\", _static);\n return node;\n}\nexport function privateName(id: t.Identifier): t.PrivateName {\n const node: t.PrivateName = {\n type: \"PrivateName\",\n id,\n };\n const defs = NODE_FIELDS.PrivateName;\n validate(defs.id, node, \"id\", id, 1);\n return node;\n}\nexport function staticBlock(body: t.Statement[]): t.StaticBlock {\n const node: t.StaticBlock = {\n type: \"StaticBlock\",\n body,\n };\n const defs = NODE_FIELDS.StaticBlock;\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function importAttribute(\n key: t.Identifier | t.StringLiteral,\n value: t.StringLiteral,\n): t.ImportAttribute {\n const node: t.ImportAttribute = {\n type: \"ImportAttribute\",\n key,\n value,\n };\n const defs = NODE_FIELDS.ImportAttribute;\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.value, node, \"value\", value, 1);\n return node;\n}\nexport function anyTypeAnnotation(): t.AnyTypeAnnotation {\n return {\n type: \"AnyTypeAnnotation\",\n };\n}\nexport function arrayTypeAnnotation(\n elementType: t.FlowType,\n): t.ArrayTypeAnnotation {\n const node: t.ArrayTypeAnnotation = {\n type: \"ArrayTypeAnnotation\",\n elementType,\n };\n const defs = NODE_FIELDS.ArrayTypeAnnotation;\n validate(defs.elementType, node, \"elementType\", elementType, 1);\n return node;\n}\nexport function booleanTypeAnnotation(): t.BooleanTypeAnnotation {\n return {\n type: \"BooleanTypeAnnotation\",\n };\n}\nexport function booleanLiteralTypeAnnotation(\n value: boolean,\n): t.BooleanLiteralTypeAnnotation {\n const node: t.BooleanLiteralTypeAnnotation = {\n type: \"BooleanLiteralTypeAnnotation\",\n value,\n };\n const defs = NODE_FIELDS.BooleanLiteralTypeAnnotation;\n validate(defs.value, node, \"value\", value);\n return node;\n}\nexport function nullLiteralTypeAnnotation(): t.NullLiteralTypeAnnotation {\n return {\n type: \"NullLiteralTypeAnnotation\",\n };\n}\nexport function classImplements(\n id: t.Identifier,\n typeParameters: t.TypeParameterInstantiation | null = null,\n): t.ClassImplements {\n const node: t.ClassImplements = {\n type: \"ClassImplements\",\n id,\n typeParameters,\n };\n const defs = NODE_FIELDS.ClassImplements;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n return node;\n}\nexport function declareClass(\n id: t.Identifier,\n typeParameters: t.TypeParameterDeclaration | null | undefined = null,\n _extends: t.InterfaceExtends[] | null | undefined = null,\n body: t.ObjectTypeAnnotation,\n): t.DeclareClass {\n const node: t.DeclareClass = {\n type: \"DeclareClass\",\n id,\n typeParameters,\n extends: _extends,\n body,\n };\n const defs = NODE_FIELDS.DeclareClass;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.extends, node, \"extends\", _extends, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function declareFunction(id: t.Identifier): t.DeclareFunction {\n const node: t.DeclareFunction = {\n type: \"DeclareFunction\",\n id,\n };\n const defs = NODE_FIELDS.DeclareFunction;\n validate(defs.id, node, \"id\", id, 1);\n return node;\n}\nexport function declareInterface(\n id: t.Identifier,\n typeParameters: t.TypeParameterDeclaration | null | undefined = null,\n _extends: t.InterfaceExtends[] | null | undefined = null,\n body: t.ObjectTypeAnnotation,\n): t.DeclareInterface {\n const node: t.DeclareInterface = {\n type: \"DeclareInterface\",\n id,\n typeParameters,\n extends: _extends,\n body,\n };\n const defs = NODE_FIELDS.DeclareInterface;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.extends, node, \"extends\", _extends, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function declareModule(\n id: t.Identifier | t.StringLiteral,\n body: t.BlockStatement,\n kind: \"CommonJS\" | \"ES\" | null = null,\n): t.DeclareModule {\n const node: t.DeclareModule = {\n type: \"DeclareModule\",\n id,\n body,\n kind,\n };\n const defs = NODE_FIELDS.DeclareModule;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.kind, node, \"kind\", kind);\n return node;\n}\nexport function declareModuleExports(\n typeAnnotation: t.TypeAnnotation,\n): t.DeclareModuleExports {\n const node: t.DeclareModuleExports = {\n type: \"DeclareModuleExports\",\n typeAnnotation,\n };\n const defs = NODE_FIELDS.DeclareModuleExports;\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport function declareTypeAlias(\n id: t.Identifier,\n typeParameters: t.TypeParameterDeclaration | null | undefined = null,\n right: t.FlowType,\n): t.DeclareTypeAlias {\n const node: t.DeclareTypeAlias = {\n type: \"DeclareTypeAlias\",\n id,\n typeParameters,\n right,\n };\n const defs = NODE_FIELDS.DeclareTypeAlias;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.right, node, \"right\", right, 1);\n return node;\n}\nexport function declareOpaqueType(\n id: t.Identifier,\n typeParameters: t.TypeParameterDeclaration | null = null,\n supertype: t.FlowType | null = null,\n): t.DeclareOpaqueType {\n const node: t.DeclareOpaqueType = {\n type: \"DeclareOpaqueType\",\n id,\n typeParameters,\n supertype,\n };\n const defs = NODE_FIELDS.DeclareOpaqueType;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.supertype, node, \"supertype\", supertype, 1);\n return node;\n}\nexport function declareVariable(id: t.Identifier): t.DeclareVariable {\n const node: t.DeclareVariable = {\n type: \"DeclareVariable\",\n id,\n };\n const defs = NODE_FIELDS.DeclareVariable;\n validate(defs.id, node, \"id\", id, 1);\n return node;\n}\nexport function declareExportDeclaration(\n declaration: t.Flow | null = null,\n specifiers: (t.ExportSpecifier | t.ExportNamespaceSpecifier)[] | null = null,\n source: t.StringLiteral | null = null,\n attributes: t.ImportAttribute[] | null = null,\n): t.DeclareExportDeclaration {\n const node: t.DeclareExportDeclaration = {\n type: \"DeclareExportDeclaration\",\n declaration,\n specifiers,\n source,\n attributes,\n };\n const defs = NODE_FIELDS.DeclareExportDeclaration;\n validate(defs.declaration, node, \"declaration\", declaration, 1);\n validate(defs.specifiers, node, \"specifiers\", specifiers, 1);\n validate(defs.source, node, \"source\", source, 1);\n validate(defs.attributes, node, \"attributes\", attributes, 1);\n return node;\n}\nexport function declareExportAllDeclaration(\n source: t.StringLiteral,\n attributes: t.ImportAttribute[] | null = null,\n): t.DeclareExportAllDeclaration {\n const node: t.DeclareExportAllDeclaration = {\n type: \"DeclareExportAllDeclaration\",\n source,\n attributes,\n };\n const defs = NODE_FIELDS.DeclareExportAllDeclaration;\n validate(defs.source, node, \"source\", source, 1);\n validate(defs.attributes, node, \"attributes\", attributes, 1);\n return node;\n}\nexport function declaredPredicate(value: t.Flow): t.DeclaredPredicate {\n const node: t.DeclaredPredicate = {\n type: \"DeclaredPredicate\",\n value,\n };\n const defs = NODE_FIELDS.DeclaredPredicate;\n validate(defs.value, node, \"value\", value, 1);\n return node;\n}\nexport function existsTypeAnnotation(): t.ExistsTypeAnnotation {\n return {\n type: \"ExistsTypeAnnotation\",\n };\n}\nexport function functionTypeAnnotation(\n typeParameters: t.TypeParameterDeclaration | null | undefined = null,\n params: t.FunctionTypeParam[],\n rest: t.FunctionTypeParam | null | undefined = null,\n returnType: t.FlowType,\n): t.FunctionTypeAnnotation {\n const node: t.FunctionTypeAnnotation = {\n type: \"FunctionTypeAnnotation\",\n typeParameters,\n params,\n rest,\n returnType,\n };\n const defs = NODE_FIELDS.FunctionTypeAnnotation;\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.params, node, \"params\", params, 1);\n validate(defs.rest, node, \"rest\", rest, 1);\n validate(defs.returnType, node, \"returnType\", returnType, 1);\n return node;\n}\nexport function functionTypeParam(\n name: t.Identifier | null | undefined = null,\n typeAnnotation: t.FlowType,\n): t.FunctionTypeParam {\n const node: t.FunctionTypeParam = {\n type: \"FunctionTypeParam\",\n name,\n typeAnnotation,\n };\n const defs = NODE_FIELDS.FunctionTypeParam;\n validate(defs.name, node, \"name\", name, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport function genericTypeAnnotation(\n id: t.Identifier | t.QualifiedTypeIdentifier,\n typeParameters: t.TypeParameterInstantiation | null = null,\n): t.GenericTypeAnnotation {\n const node: t.GenericTypeAnnotation = {\n type: \"GenericTypeAnnotation\",\n id,\n typeParameters,\n };\n const defs = NODE_FIELDS.GenericTypeAnnotation;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n return node;\n}\nexport function inferredPredicate(): t.InferredPredicate {\n return {\n type: \"InferredPredicate\",\n };\n}\nexport function interfaceExtends(\n id: t.Identifier | t.QualifiedTypeIdentifier,\n typeParameters: t.TypeParameterInstantiation | null = null,\n): t.InterfaceExtends {\n const node: t.InterfaceExtends = {\n type: \"InterfaceExtends\",\n id,\n typeParameters,\n };\n const defs = NODE_FIELDS.InterfaceExtends;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n return node;\n}\nexport function interfaceDeclaration(\n id: t.Identifier,\n typeParameters: t.TypeParameterDeclaration | null | undefined = null,\n _extends: t.InterfaceExtends[] | null | undefined = null,\n body: t.ObjectTypeAnnotation,\n): t.InterfaceDeclaration {\n const node: t.InterfaceDeclaration = {\n type: \"InterfaceDeclaration\",\n id,\n typeParameters,\n extends: _extends,\n body,\n };\n const defs = NODE_FIELDS.InterfaceDeclaration;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.extends, node, \"extends\", _extends, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function interfaceTypeAnnotation(\n _extends: t.InterfaceExtends[] | null | undefined = null,\n body: t.ObjectTypeAnnotation,\n): t.InterfaceTypeAnnotation {\n const node: t.InterfaceTypeAnnotation = {\n type: \"InterfaceTypeAnnotation\",\n extends: _extends,\n body,\n };\n const defs = NODE_FIELDS.InterfaceTypeAnnotation;\n validate(defs.extends, node, \"extends\", _extends, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function intersectionTypeAnnotation(\n types: t.FlowType[],\n): t.IntersectionTypeAnnotation {\n const node: t.IntersectionTypeAnnotation = {\n type: \"IntersectionTypeAnnotation\",\n types,\n };\n const defs = NODE_FIELDS.IntersectionTypeAnnotation;\n validate(defs.types, node, \"types\", types, 1);\n return node;\n}\nexport function mixedTypeAnnotation(): t.MixedTypeAnnotation {\n return {\n type: \"MixedTypeAnnotation\",\n };\n}\nexport function emptyTypeAnnotation(): t.EmptyTypeAnnotation {\n return {\n type: \"EmptyTypeAnnotation\",\n };\n}\nexport function nullableTypeAnnotation(\n typeAnnotation: t.FlowType,\n): t.NullableTypeAnnotation {\n const node: t.NullableTypeAnnotation = {\n type: \"NullableTypeAnnotation\",\n typeAnnotation,\n };\n const defs = NODE_FIELDS.NullableTypeAnnotation;\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport function numberLiteralTypeAnnotation(\n value: number,\n): t.NumberLiteralTypeAnnotation {\n const node: t.NumberLiteralTypeAnnotation = {\n type: \"NumberLiteralTypeAnnotation\",\n value,\n };\n const defs = NODE_FIELDS.NumberLiteralTypeAnnotation;\n validate(defs.value, node, \"value\", value);\n return node;\n}\nexport function numberTypeAnnotation(): t.NumberTypeAnnotation {\n return {\n type: \"NumberTypeAnnotation\",\n };\n}\nexport function objectTypeAnnotation(\n properties: (t.ObjectTypeProperty | t.ObjectTypeSpreadProperty)[],\n indexers: t.ObjectTypeIndexer[] = [],\n callProperties: t.ObjectTypeCallProperty[] = [],\n internalSlots: t.ObjectTypeInternalSlot[] = [],\n exact: boolean = false,\n): t.ObjectTypeAnnotation {\n const node: t.ObjectTypeAnnotation = {\n type: \"ObjectTypeAnnotation\",\n properties,\n indexers,\n callProperties,\n internalSlots,\n exact,\n };\n const defs = NODE_FIELDS.ObjectTypeAnnotation;\n validate(defs.properties, node, \"properties\", properties, 1);\n validate(defs.indexers, node, \"indexers\", indexers, 1);\n validate(defs.callProperties, node, \"callProperties\", callProperties, 1);\n validate(defs.internalSlots, node, \"internalSlots\", internalSlots, 1);\n validate(defs.exact, node, \"exact\", exact);\n return node;\n}\nexport function objectTypeInternalSlot(\n id: t.Identifier,\n value: t.FlowType,\n optional: boolean,\n _static: boolean,\n method: boolean,\n): t.ObjectTypeInternalSlot {\n const node: t.ObjectTypeInternalSlot = {\n type: \"ObjectTypeInternalSlot\",\n id,\n value,\n optional,\n static: _static,\n method,\n };\n const defs = NODE_FIELDS.ObjectTypeInternalSlot;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.value, node, \"value\", value, 1);\n validate(defs.optional, node, \"optional\", optional);\n validate(defs.static, node, \"static\", _static);\n validate(defs.method, node, \"method\", method);\n return node;\n}\nexport function objectTypeCallProperty(\n value: t.FlowType,\n): t.ObjectTypeCallProperty {\n const node: t.ObjectTypeCallProperty = {\n type: \"ObjectTypeCallProperty\",\n value,\n static: null,\n };\n const defs = NODE_FIELDS.ObjectTypeCallProperty;\n validate(defs.value, node, \"value\", value, 1);\n return node;\n}\nexport function objectTypeIndexer(\n id: t.Identifier | null | undefined = null,\n key: t.FlowType,\n value: t.FlowType,\n variance: t.Variance | null = null,\n): t.ObjectTypeIndexer {\n const node: t.ObjectTypeIndexer = {\n type: \"ObjectTypeIndexer\",\n id,\n key,\n value,\n variance,\n static: null,\n };\n const defs = NODE_FIELDS.ObjectTypeIndexer;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.value, node, \"value\", value, 1);\n validate(defs.variance, node, \"variance\", variance, 1);\n return node;\n}\nexport function objectTypeProperty(\n key: t.Identifier | t.StringLiteral,\n value: t.FlowType,\n variance: t.Variance | null = null,\n): t.ObjectTypeProperty {\n const node: t.ObjectTypeProperty = {\n type: \"ObjectTypeProperty\",\n key,\n value,\n variance,\n kind: null,\n method: null,\n optional: null,\n proto: null,\n static: null,\n };\n const defs = NODE_FIELDS.ObjectTypeProperty;\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.value, node, \"value\", value, 1);\n validate(defs.variance, node, \"variance\", variance, 1);\n return node;\n}\nexport function objectTypeSpreadProperty(\n argument: t.FlowType,\n): t.ObjectTypeSpreadProperty {\n const node: t.ObjectTypeSpreadProperty = {\n type: \"ObjectTypeSpreadProperty\",\n argument,\n };\n const defs = NODE_FIELDS.ObjectTypeSpreadProperty;\n validate(defs.argument, node, \"argument\", argument, 1);\n return node;\n}\nexport function opaqueType(\n id: t.Identifier,\n typeParameters: t.TypeParameterDeclaration | null | undefined = null,\n supertype: t.FlowType | null | undefined = null,\n impltype: t.FlowType,\n): t.OpaqueType {\n const node: t.OpaqueType = {\n type: \"OpaqueType\",\n id,\n typeParameters,\n supertype,\n impltype,\n };\n const defs = NODE_FIELDS.OpaqueType;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.supertype, node, \"supertype\", supertype, 1);\n validate(defs.impltype, node, \"impltype\", impltype, 1);\n return node;\n}\nexport function qualifiedTypeIdentifier(\n id: t.Identifier,\n qualification: t.Identifier | t.QualifiedTypeIdentifier,\n): t.QualifiedTypeIdentifier {\n const node: t.QualifiedTypeIdentifier = {\n type: \"QualifiedTypeIdentifier\",\n id,\n qualification,\n };\n const defs = NODE_FIELDS.QualifiedTypeIdentifier;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.qualification, node, \"qualification\", qualification, 1);\n return node;\n}\nexport function stringLiteralTypeAnnotation(\n value: string,\n): t.StringLiteralTypeAnnotation {\n const node: t.StringLiteralTypeAnnotation = {\n type: \"StringLiteralTypeAnnotation\",\n value,\n };\n const defs = NODE_FIELDS.StringLiteralTypeAnnotation;\n validate(defs.value, node, \"value\", value);\n return node;\n}\nexport function stringTypeAnnotation(): t.StringTypeAnnotation {\n return {\n type: \"StringTypeAnnotation\",\n };\n}\nexport function symbolTypeAnnotation(): t.SymbolTypeAnnotation {\n return {\n type: \"SymbolTypeAnnotation\",\n };\n}\nexport function thisTypeAnnotation(): t.ThisTypeAnnotation {\n return {\n type: \"ThisTypeAnnotation\",\n };\n}\nexport function tupleTypeAnnotation(\n types: t.FlowType[],\n): t.TupleTypeAnnotation {\n const node: t.TupleTypeAnnotation = {\n type: \"TupleTypeAnnotation\",\n types,\n };\n const defs = NODE_FIELDS.TupleTypeAnnotation;\n validate(defs.types, node, \"types\", types, 1);\n return node;\n}\nexport function typeofTypeAnnotation(\n argument: t.FlowType,\n): t.TypeofTypeAnnotation {\n const node: t.TypeofTypeAnnotation = {\n type: \"TypeofTypeAnnotation\",\n argument,\n };\n const defs = NODE_FIELDS.TypeofTypeAnnotation;\n validate(defs.argument, node, \"argument\", argument, 1);\n return node;\n}\nexport function typeAlias(\n id: t.Identifier,\n typeParameters: t.TypeParameterDeclaration | null | undefined = null,\n right: t.FlowType,\n): t.TypeAlias {\n const node: t.TypeAlias = {\n type: \"TypeAlias\",\n id,\n typeParameters,\n right,\n };\n const defs = NODE_FIELDS.TypeAlias;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.right, node, \"right\", right, 1);\n return node;\n}\nexport function typeAnnotation(typeAnnotation: t.FlowType): t.TypeAnnotation {\n const node: t.TypeAnnotation = {\n type: \"TypeAnnotation\",\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TypeAnnotation;\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport function typeCastExpression(\n expression: t.Expression,\n typeAnnotation: t.TypeAnnotation,\n): t.TypeCastExpression {\n const node: t.TypeCastExpression = {\n type: \"TypeCastExpression\",\n expression,\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TypeCastExpression;\n validate(defs.expression, node, \"expression\", expression, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport function typeParameter(\n bound: t.TypeAnnotation | null = null,\n _default: t.FlowType | null = null,\n variance: t.Variance | null = null,\n): t.TypeParameter {\n const node: t.TypeParameter = {\n type: \"TypeParameter\",\n bound,\n default: _default,\n variance,\n name: null,\n };\n const defs = NODE_FIELDS.TypeParameter;\n validate(defs.bound, node, \"bound\", bound, 1);\n validate(defs.default, node, \"default\", _default, 1);\n validate(defs.variance, node, \"variance\", variance, 1);\n return node;\n}\nexport function typeParameterDeclaration(\n params: t.TypeParameter[],\n): t.TypeParameterDeclaration {\n const node: t.TypeParameterDeclaration = {\n type: \"TypeParameterDeclaration\",\n params,\n };\n const defs = NODE_FIELDS.TypeParameterDeclaration;\n validate(defs.params, node, \"params\", params, 1);\n return node;\n}\nexport function typeParameterInstantiation(\n params: t.FlowType[],\n): t.TypeParameterInstantiation {\n const node: t.TypeParameterInstantiation = {\n type: \"TypeParameterInstantiation\",\n params,\n };\n const defs = NODE_FIELDS.TypeParameterInstantiation;\n validate(defs.params, node, \"params\", params, 1);\n return node;\n}\nexport function unionTypeAnnotation(\n types: t.FlowType[],\n): t.UnionTypeAnnotation {\n const node: t.UnionTypeAnnotation = {\n type: \"UnionTypeAnnotation\",\n types,\n };\n const defs = NODE_FIELDS.UnionTypeAnnotation;\n validate(defs.types, node, \"types\", types, 1);\n return node;\n}\nexport function variance(kind: \"minus\" | \"plus\"): t.Variance {\n const node: t.Variance = {\n type: \"Variance\",\n kind,\n };\n const defs = NODE_FIELDS.Variance;\n validate(defs.kind, node, \"kind\", kind);\n return node;\n}\nexport function voidTypeAnnotation(): t.VoidTypeAnnotation {\n return {\n type: \"VoidTypeAnnotation\",\n };\n}\nexport function enumDeclaration(\n id: t.Identifier,\n body:\n | t.EnumBooleanBody\n | t.EnumNumberBody\n | t.EnumStringBody\n | t.EnumSymbolBody,\n): t.EnumDeclaration {\n const node: t.EnumDeclaration = {\n type: \"EnumDeclaration\",\n id,\n body,\n };\n const defs = NODE_FIELDS.EnumDeclaration;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function enumBooleanBody(\n members: t.EnumBooleanMember[],\n): t.EnumBooleanBody {\n const node: t.EnumBooleanBody = {\n type: \"EnumBooleanBody\",\n members,\n explicitType: null,\n hasUnknownMembers: null,\n };\n const defs = NODE_FIELDS.EnumBooleanBody;\n validate(defs.members, node, \"members\", members, 1);\n return node;\n}\nexport function enumNumberBody(\n members: t.EnumNumberMember[],\n): t.EnumNumberBody {\n const node: t.EnumNumberBody = {\n type: \"EnumNumberBody\",\n members,\n explicitType: null,\n hasUnknownMembers: null,\n };\n const defs = NODE_FIELDS.EnumNumberBody;\n validate(defs.members, node, \"members\", members, 1);\n return node;\n}\nexport function enumStringBody(\n members: (t.EnumStringMember | t.EnumDefaultedMember)[],\n): t.EnumStringBody {\n const node: t.EnumStringBody = {\n type: \"EnumStringBody\",\n members,\n explicitType: null,\n hasUnknownMembers: null,\n };\n const defs = NODE_FIELDS.EnumStringBody;\n validate(defs.members, node, \"members\", members, 1);\n return node;\n}\nexport function enumSymbolBody(\n members: t.EnumDefaultedMember[],\n): t.EnumSymbolBody {\n const node: t.EnumSymbolBody = {\n type: \"EnumSymbolBody\",\n members,\n hasUnknownMembers: null,\n };\n const defs = NODE_FIELDS.EnumSymbolBody;\n validate(defs.members, node, \"members\", members, 1);\n return node;\n}\nexport function enumBooleanMember(id: t.Identifier): t.EnumBooleanMember {\n const node: t.EnumBooleanMember = {\n type: \"EnumBooleanMember\",\n id,\n init: null,\n };\n const defs = NODE_FIELDS.EnumBooleanMember;\n validate(defs.id, node, \"id\", id, 1);\n return node;\n}\nexport function enumNumberMember(\n id: t.Identifier,\n init: t.NumericLiteral,\n): t.EnumNumberMember {\n const node: t.EnumNumberMember = {\n type: \"EnumNumberMember\",\n id,\n init,\n };\n const defs = NODE_FIELDS.EnumNumberMember;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.init, node, \"init\", init, 1);\n return node;\n}\nexport function enumStringMember(\n id: t.Identifier,\n init: t.StringLiteral,\n): t.EnumStringMember {\n const node: t.EnumStringMember = {\n type: \"EnumStringMember\",\n id,\n init,\n };\n const defs = NODE_FIELDS.EnumStringMember;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.init, node, \"init\", init, 1);\n return node;\n}\nexport function enumDefaultedMember(id: t.Identifier): t.EnumDefaultedMember {\n const node: t.EnumDefaultedMember = {\n type: \"EnumDefaultedMember\",\n id,\n };\n const defs = NODE_FIELDS.EnumDefaultedMember;\n validate(defs.id, node, \"id\", id, 1);\n return node;\n}\nexport function indexedAccessType(\n objectType: t.FlowType,\n indexType: t.FlowType,\n): t.IndexedAccessType {\n const node: t.IndexedAccessType = {\n type: \"IndexedAccessType\",\n objectType,\n indexType,\n };\n const defs = NODE_FIELDS.IndexedAccessType;\n validate(defs.objectType, node, \"objectType\", objectType, 1);\n validate(defs.indexType, node, \"indexType\", indexType, 1);\n return node;\n}\nexport function optionalIndexedAccessType(\n objectType: t.FlowType,\n indexType: t.FlowType,\n): t.OptionalIndexedAccessType {\n const node: t.OptionalIndexedAccessType = {\n type: \"OptionalIndexedAccessType\",\n objectType,\n indexType,\n optional: null,\n };\n const defs = NODE_FIELDS.OptionalIndexedAccessType;\n validate(defs.objectType, node, \"objectType\", objectType, 1);\n validate(defs.indexType, node, \"indexType\", indexType, 1);\n return node;\n}\nexport function jsxAttribute(\n name: t.JSXIdentifier | t.JSXNamespacedName,\n value:\n | t.JSXElement\n | t.JSXFragment\n | t.StringLiteral\n | t.JSXExpressionContainer\n | null = null,\n): t.JSXAttribute {\n const node: t.JSXAttribute = {\n type: \"JSXAttribute\",\n name,\n value,\n };\n const defs = NODE_FIELDS.JSXAttribute;\n validate(defs.name, node, \"name\", name, 1);\n validate(defs.value, node, \"value\", value, 1);\n return node;\n}\nexport { jsxAttribute as jSXAttribute };\nexport function jsxClosingElement(\n name: t.JSXIdentifier | t.JSXMemberExpression | t.JSXNamespacedName,\n): t.JSXClosingElement {\n const node: t.JSXClosingElement = {\n type: \"JSXClosingElement\",\n name,\n };\n const defs = NODE_FIELDS.JSXClosingElement;\n validate(defs.name, node, \"name\", name, 1);\n return node;\n}\nexport { jsxClosingElement as jSXClosingElement };\nexport function jsxElement(\n openingElement: t.JSXOpeningElement,\n closingElement: t.JSXClosingElement | null | undefined = null,\n children: (\n | t.JSXText\n | t.JSXExpressionContainer\n | t.JSXSpreadChild\n | t.JSXElement\n | t.JSXFragment\n )[],\n selfClosing: boolean | null = null,\n): t.JSXElement {\n const node: t.JSXElement = {\n type: \"JSXElement\",\n openingElement,\n closingElement,\n children,\n selfClosing,\n };\n const defs = NODE_FIELDS.JSXElement;\n validate(defs.openingElement, node, \"openingElement\", openingElement, 1);\n validate(defs.closingElement, node, \"closingElement\", closingElement, 1);\n validate(defs.children, node, \"children\", children, 1);\n validate(defs.selfClosing, node, \"selfClosing\", selfClosing);\n return node;\n}\nexport { jsxElement as jSXElement };\nexport function jsxEmptyExpression(): t.JSXEmptyExpression {\n return {\n type: \"JSXEmptyExpression\",\n };\n}\nexport { jsxEmptyExpression as jSXEmptyExpression };\nexport function jsxExpressionContainer(\n expression: t.Expression | t.JSXEmptyExpression,\n): t.JSXExpressionContainer {\n const node: t.JSXExpressionContainer = {\n type: \"JSXExpressionContainer\",\n expression,\n };\n const defs = NODE_FIELDS.JSXExpressionContainer;\n validate(defs.expression, node, \"expression\", expression, 1);\n return node;\n}\nexport { jsxExpressionContainer as jSXExpressionContainer };\nexport function jsxSpreadChild(expression: t.Expression): t.JSXSpreadChild {\n const node: t.JSXSpreadChild = {\n type: \"JSXSpreadChild\",\n expression,\n };\n const defs = NODE_FIELDS.JSXSpreadChild;\n validate(defs.expression, node, \"expression\", expression, 1);\n return node;\n}\nexport { jsxSpreadChild as jSXSpreadChild };\nexport function jsxIdentifier(name: string): t.JSXIdentifier {\n const node: t.JSXIdentifier = {\n type: \"JSXIdentifier\",\n name,\n };\n const defs = NODE_FIELDS.JSXIdentifier;\n validate(defs.name, node, \"name\", name);\n return node;\n}\nexport { jsxIdentifier as jSXIdentifier };\nexport function jsxMemberExpression(\n object: t.JSXMemberExpression | t.JSXIdentifier,\n property: t.JSXIdentifier,\n): t.JSXMemberExpression {\n const node: t.JSXMemberExpression = {\n type: \"JSXMemberExpression\",\n object,\n property,\n };\n const defs = NODE_FIELDS.JSXMemberExpression;\n validate(defs.object, node, \"object\", object, 1);\n validate(defs.property, node, \"property\", property, 1);\n return node;\n}\nexport { jsxMemberExpression as jSXMemberExpression };\nexport function jsxNamespacedName(\n namespace: t.JSXIdentifier,\n name: t.JSXIdentifier,\n): t.JSXNamespacedName {\n const node: t.JSXNamespacedName = {\n type: \"JSXNamespacedName\",\n namespace,\n name,\n };\n const defs = NODE_FIELDS.JSXNamespacedName;\n validate(defs.namespace, node, \"namespace\", namespace, 1);\n validate(defs.name, node, \"name\", name, 1);\n return node;\n}\nexport { jsxNamespacedName as jSXNamespacedName };\nexport function jsxOpeningElement(\n name: t.JSXIdentifier | t.JSXMemberExpression | t.JSXNamespacedName,\n attributes: (t.JSXAttribute | t.JSXSpreadAttribute)[],\n selfClosing: boolean = false,\n): t.JSXOpeningElement {\n const node: t.JSXOpeningElement = {\n type: \"JSXOpeningElement\",\n name,\n attributes,\n selfClosing,\n };\n const defs = NODE_FIELDS.JSXOpeningElement;\n validate(defs.name, node, \"name\", name, 1);\n validate(defs.attributes, node, \"attributes\", attributes, 1);\n validate(defs.selfClosing, node, \"selfClosing\", selfClosing);\n return node;\n}\nexport { jsxOpeningElement as jSXOpeningElement };\nexport function jsxSpreadAttribute(\n argument: t.Expression,\n): t.JSXSpreadAttribute {\n const node: t.JSXSpreadAttribute = {\n type: \"JSXSpreadAttribute\",\n argument,\n };\n const defs = NODE_FIELDS.JSXSpreadAttribute;\n validate(defs.argument, node, \"argument\", argument, 1);\n return node;\n}\nexport { jsxSpreadAttribute as jSXSpreadAttribute };\nexport function jsxText(value: string): t.JSXText {\n const node: t.JSXText = {\n type: \"JSXText\",\n value,\n };\n const defs = NODE_FIELDS.JSXText;\n validate(defs.value, node, \"value\", value);\n return node;\n}\nexport { jsxText as jSXText };\nexport function jsxFragment(\n openingFragment: t.JSXOpeningFragment,\n closingFragment: t.JSXClosingFragment,\n children: (\n | t.JSXText\n | t.JSXExpressionContainer\n | t.JSXSpreadChild\n | t.JSXElement\n | t.JSXFragment\n )[],\n): t.JSXFragment {\n const node: t.JSXFragment = {\n type: \"JSXFragment\",\n openingFragment,\n closingFragment,\n children,\n };\n const defs = NODE_FIELDS.JSXFragment;\n validate(defs.openingFragment, node, \"openingFragment\", openingFragment, 1);\n validate(defs.closingFragment, node, \"closingFragment\", closingFragment, 1);\n validate(defs.children, node, \"children\", children, 1);\n return node;\n}\nexport { jsxFragment as jSXFragment };\nexport function jsxOpeningFragment(): t.JSXOpeningFragment {\n return {\n type: \"JSXOpeningFragment\",\n };\n}\nexport { jsxOpeningFragment as jSXOpeningFragment };\nexport function jsxClosingFragment(): t.JSXClosingFragment {\n return {\n type: \"JSXClosingFragment\",\n };\n}\nexport { jsxClosingFragment as jSXClosingFragment };\nexport function noop(): t.Noop {\n return {\n type: \"Noop\",\n };\n}\nexport function placeholder(\n expectedNode:\n | \"Identifier\"\n | \"StringLiteral\"\n | \"Expression\"\n | \"Statement\"\n | \"Declaration\"\n | \"BlockStatement\"\n | \"ClassBody\"\n | \"Pattern\",\n name: t.Identifier,\n): t.Placeholder {\n const node: t.Placeholder = {\n type: \"Placeholder\",\n expectedNode,\n name,\n };\n const defs = NODE_FIELDS.Placeholder;\n validate(defs.expectedNode, node, \"expectedNode\", expectedNode);\n validate(defs.name, node, \"name\", name, 1);\n return node;\n}\nexport function v8IntrinsicIdentifier(name: string): t.V8IntrinsicIdentifier {\n const node: t.V8IntrinsicIdentifier = {\n type: \"V8IntrinsicIdentifier\",\n name,\n };\n const defs = NODE_FIELDS.V8IntrinsicIdentifier;\n validate(defs.name, node, \"name\", name);\n return node;\n}\nexport function argumentPlaceholder(): t.ArgumentPlaceholder {\n return {\n type: \"ArgumentPlaceholder\",\n };\n}\nexport function bindExpression(\n object: t.Expression,\n callee: t.Expression,\n): t.BindExpression {\n const node: t.BindExpression = {\n type: \"BindExpression\",\n object,\n callee,\n };\n const defs = NODE_FIELDS.BindExpression;\n validate(defs.object, node, \"object\", object, 1);\n validate(defs.callee, node, \"callee\", callee, 1);\n return node;\n}\nexport function decorator(expression: t.Expression): t.Decorator {\n const node: t.Decorator = {\n type: \"Decorator\",\n expression,\n };\n const defs = NODE_FIELDS.Decorator;\n validate(defs.expression, node, \"expression\", expression, 1);\n return node;\n}\nexport function doExpression(\n body: t.BlockStatement,\n async: boolean = false,\n): t.DoExpression {\n const node: t.DoExpression = {\n type: \"DoExpression\",\n body,\n async,\n };\n const defs = NODE_FIELDS.DoExpression;\n validate(defs.body, node, \"body\", body, 1);\n validate(defs.async, node, \"async\", async);\n return node;\n}\nexport function exportDefaultSpecifier(\n exported: t.Identifier,\n): t.ExportDefaultSpecifier {\n const node: t.ExportDefaultSpecifier = {\n type: \"ExportDefaultSpecifier\",\n exported,\n };\n const defs = NODE_FIELDS.ExportDefaultSpecifier;\n validate(defs.exported, node, \"exported\", exported, 1);\n return node;\n}\nexport function recordExpression(\n properties: (t.ObjectProperty | t.SpreadElement)[],\n): t.RecordExpression {\n const node: t.RecordExpression = {\n type: \"RecordExpression\",\n properties,\n };\n const defs = NODE_FIELDS.RecordExpression;\n validate(defs.properties, node, \"properties\", properties, 1);\n return node;\n}\nexport function tupleExpression(\n elements: (t.Expression | t.SpreadElement)[] = [],\n): t.TupleExpression {\n const node: t.TupleExpression = {\n type: \"TupleExpression\",\n elements,\n };\n const defs = NODE_FIELDS.TupleExpression;\n validate(defs.elements, node, \"elements\", elements, 1);\n return node;\n}\nexport function decimalLiteral(value: string): t.DecimalLiteral {\n const node: t.DecimalLiteral = {\n type: \"DecimalLiteral\",\n value,\n };\n const defs = NODE_FIELDS.DecimalLiteral;\n validate(defs.value, node, \"value\", value);\n return node;\n}\nexport function moduleExpression(body: t.Program): t.ModuleExpression {\n const node: t.ModuleExpression = {\n type: \"ModuleExpression\",\n body,\n };\n const defs = NODE_FIELDS.ModuleExpression;\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport function topicReference(): t.TopicReference {\n return {\n type: \"TopicReference\",\n };\n}\nexport function pipelineTopicExpression(\n expression: t.Expression,\n): t.PipelineTopicExpression {\n const node: t.PipelineTopicExpression = {\n type: \"PipelineTopicExpression\",\n expression,\n };\n const defs = NODE_FIELDS.PipelineTopicExpression;\n validate(defs.expression, node, \"expression\", expression, 1);\n return node;\n}\nexport function pipelineBareFunction(\n callee: t.Expression,\n): t.PipelineBareFunction {\n const node: t.PipelineBareFunction = {\n type: \"PipelineBareFunction\",\n callee,\n };\n const defs = NODE_FIELDS.PipelineBareFunction;\n validate(defs.callee, node, \"callee\", callee, 1);\n return node;\n}\nexport function pipelinePrimaryTopicReference(): t.PipelinePrimaryTopicReference {\n return {\n type: \"PipelinePrimaryTopicReference\",\n };\n}\nexport function voidPattern(): t.VoidPattern {\n return {\n type: \"VoidPattern\",\n };\n}\nexport function tsParameterProperty(\n parameter: t.Identifier | t.AssignmentPattern,\n): t.TSParameterProperty {\n const node: t.TSParameterProperty = {\n type: \"TSParameterProperty\",\n parameter,\n };\n const defs = NODE_FIELDS.TSParameterProperty;\n validate(defs.parameter, node, \"parameter\", parameter, 1);\n return node;\n}\nexport { tsParameterProperty as tSParameterProperty };\nexport function tsDeclareFunction(\n id: t.Identifier | null | undefined = null,\n typeParameters:\n | t.TSTypeParameterDeclaration\n | t.Noop\n | null\n | undefined = null,\n params: t.FunctionParameter[],\n returnType: t.TSTypeAnnotation | t.Noop | null = null,\n): t.TSDeclareFunction {\n const node: t.TSDeclareFunction = {\n type: \"TSDeclareFunction\",\n id,\n typeParameters,\n params,\n returnType,\n };\n const defs = NODE_FIELDS.TSDeclareFunction;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.params, node, \"params\", params, 1);\n validate(defs.returnType, node, \"returnType\", returnType, 1);\n return node;\n}\nexport { tsDeclareFunction as tSDeclareFunction };\nexport function tsDeclareMethod(\n decorators: t.Decorator[] | null | undefined = null,\n key:\n | t.Identifier\n | t.StringLiteral\n | t.NumericLiteral\n | t.BigIntLiteral\n | t.Expression,\n typeParameters:\n | t.TSTypeParameterDeclaration\n | t.Noop\n | null\n | undefined = null,\n params: (t.FunctionParameter | t.TSParameterProperty)[],\n returnType: t.TSTypeAnnotation | t.Noop | null = null,\n): t.TSDeclareMethod {\n const node: t.TSDeclareMethod = {\n type: \"TSDeclareMethod\",\n decorators,\n key,\n typeParameters,\n params,\n returnType,\n };\n const defs = NODE_FIELDS.TSDeclareMethod;\n validate(defs.decorators, node, \"decorators\", decorators, 1);\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.params, node, \"params\", params, 1);\n validate(defs.returnType, node, \"returnType\", returnType, 1);\n return node;\n}\nexport { tsDeclareMethod as tSDeclareMethod };\nexport function tsQualifiedName(\n left: t.TSEntityName,\n right: t.Identifier,\n): t.TSQualifiedName {\n const node: t.TSQualifiedName = {\n type: \"TSQualifiedName\",\n left,\n right,\n };\n const defs = NODE_FIELDS.TSQualifiedName;\n validate(defs.left, node, \"left\", left, 1);\n validate(defs.right, node, \"right\", right, 1);\n return node;\n}\nexport { tsQualifiedName as tSQualifiedName };\nexport function tsCallSignatureDeclaration(\n typeParameters: t.TSTypeParameterDeclaration | null | undefined = null,\n parameters: (\n | t.ArrayPattern\n | t.Identifier\n | t.ObjectPattern\n | t.RestElement\n )[],\n typeAnnotation: t.TSTypeAnnotation | null = null,\n): t.TSCallSignatureDeclaration {\n const node: t.TSCallSignatureDeclaration = {\n type: \"TSCallSignatureDeclaration\",\n typeParameters,\n parameters,\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSCallSignatureDeclaration;\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.parameters, node, \"parameters\", parameters, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsCallSignatureDeclaration as tSCallSignatureDeclaration };\nexport function tsConstructSignatureDeclaration(\n typeParameters: t.TSTypeParameterDeclaration | null | undefined = null,\n parameters: (\n | t.ArrayPattern\n | t.Identifier\n | t.ObjectPattern\n | t.RestElement\n )[],\n typeAnnotation: t.TSTypeAnnotation | null = null,\n): t.TSConstructSignatureDeclaration {\n const node: t.TSConstructSignatureDeclaration = {\n type: \"TSConstructSignatureDeclaration\",\n typeParameters,\n parameters,\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSConstructSignatureDeclaration;\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.parameters, node, \"parameters\", parameters, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsConstructSignatureDeclaration as tSConstructSignatureDeclaration };\nexport function tsPropertySignature(\n key: t.Expression,\n typeAnnotation: t.TSTypeAnnotation | null = null,\n): t.TSPropertySignature {\n const node: t.TSPropertySignature = {\n type: \"TSPropertySignature\",\n key,\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSPropertySignature;\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsPropertySignature as tSPropertySignature };\nexport function tsMethodSignature(\n key: t.Expression,\n typeParameters: t.TSTypeParameterDeclaration | null | undefined = null,\n parameters: (\n | t.ArrayPattern\n | t.Identifier\n | t.ObjectPattern\n | t.RestElement\n )[],\n typeAnnotation: t.TSTypeAnnotation | null = null,\n): t.TSMethodSignature {\n const node: t.TSMethodSignature = {\n type: \"TSMethodSignature\",\n key,\n typeParameters,\n parameters,\n typeAnnotation,\n kind: null,\n };\n const defs = NODE_FIELDS.TSMethodSignature;\n validate(defs.key, node, \"key\", key, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.parameters, node, \"parameters\", parameters, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsMethodSignature as tSMethodSignature };\nexport function tsIndexSignature(\n parameters: t.Identifier[],\n typeAnnotation: t.TSTypeAnnotation | null = null,\n): t.TSIndexSignature {\n const node: t.TSIndexSignature = {\n type: \"TSIndexSignature\",\n parameters,\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSIndexSignature;\n validate(defs.parameters, node, \"parameters\", parameters, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsIndexSignature as tSIndexSignature };\nexport function tsAnyKeyword(): t.TSAnyKeyword {\n return {\n type: \"TSAnyKeyword\",\n };\n}\nexport { tsAnyKeyword as tSAnyKeyword };\nexport function tsBooleanKeyword(): t.TSBooleanKeyword {\n return {\n type: \"TSBooleanKeyword\",\n };\n}\nexport { tsBooleanKeyword as tSBooleanKeyword };\nexport function tsBigIntKeyword(): t.TSBigIntKeyword {\n return {\n type: \"TSBigIntKeyword\",\n };\n}\nexport { tsBigIntKeyword as tSBigIntKeyword };\nexport function tsIntrinsicKeyword(): t.TSIntrinsicKeyword {\n return {\n type: \"TSIntrinsicKeyword\",\n };\n}\nexport { tsIntrinsicKeyword as tSIntrinsicKeyword };\nexport function tsNeverKeyword(): t.TSNeverKeyword {\n return {\n type: \"TSNeverKeyword\",\n };\n}\nexport { tsNeverKeyword as tSNeverKeyword };\nexport function tsNullKeyword(): t.TSNullKeyword {\n return {\n type: \"TSNullKeyword\",\n };\n}\nexport { tsNullKeyword as tSNullKeyword };\nexport function tsNumberKeyword(): t.TSNumberKeyword {\n return {\n type: \"TSNumberKeyword\",\n };\n}\nexport { tsNumberKeyword as tSNumberKeyword };\nexport function tsObjectKeyword(): t.TSObjectKeyword {\n return {\n type: \"TSObjectKeyword\",\n };\n}\nexport { tsObjectKeyword as tSObjectKeyword };\nexport function tsStringKeyword(): t.TSStringKeyword {\n return {\n type: \"TSStringKeyword\",\n };\n}\nexport { tsStringKeyword as tSStringKeyword };\nexport function tsSymbolKeyword(): t.TSSymbolKeyword {\n return {\n type: \"TSSymbolKeyword\",\n };\n}\nexport { tsSymbolKeyword as tSSymbolKeyword };\nexport function tsUndefinedKeyword(): t.TSUndefinedKeyword {\n return {\n type: \"TSUndefinedKeyword\",\n };\n}\nexport { tsUndefinedKeyword as tSUndefinedKeyword };\nexport function tsUnknownKeyword(): t.TSUnknownKeyword {\n return {\n type: \"TSUnknownKeyword\",\n };\n}\nexport { tsUnknownKeyword as tSUnknownKeyword };\nexport function tsVoidKeyword(): t.TSVoidKeyword {\n return {\n type: \"TSVoidKeyword\",\n };\n}\nexport { tsVoidKeyword as tSVoidKeyword };\nexport function tsThisType(): t.TSThisType {\n return {\n type: \"TSThisType\",\n };\n}\nexport { tsThisType as tSThisType };\nexport function tsFunctionType(\n typeParameters: t.TSTypeParameterDeclaration | null | undefined = null,\n parameters: (\n | t.ArrayPattern\n | t.Identifier\n | t.ObjectPattern\n | t.RestElement\n )[],\n typeAnnotation: t.TSTypeAnnotation | null = null,\n): t.TSFunctionType {\n const node: t.TSFunctionType = {\n type: \"TSFunctionType\",\n typeParameters,\n parameters,\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSFunctionType;\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.parameters, node, \"parameters\", parameters, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsFunctionType as tSFunctionType };\nexport function tsConstructorType(\n typeParameters: t.TSTypeParameterDeclaration | null | undefined = null,\n parameters: (\n | t.ArrayPattern\n | t.Identifier\n | t.ObjectPattern\n | t.RestElement\n )[],\n typeAnnotation: t.TSTypeAnnotation | null = null,\n): t.TSConstructorType {\n const node: t.TSConstructorType = {\n type: \"TSConstructorType\",\n typeParameters,\n parameters,\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSConstructorType;\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.parameters, node, \"parameters\", parameters, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsConstructorType as tSConstructorType };\nexport function tsTypeReference(\n typeName: t.TSEntityName,\n typeParameters: t.TSTypeParameterInstantiation | null = null,\n): t.TSTypeReference {\n const node: t.TSTypeReference = {\n type: \"TSTypeReference\",\n typeName,\n typeParameters,\n };\n const defs = NODE_FIELDS.TSTypeReference;\n validate(defs.typeName, node, \"typeName\", typeName, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n return node;\n}\nexport { tsTypeReference as tSTypeReference };\nexport function tsTypePredicate(\n parameterName: t.Identifier | t.TSThisType,\n typeAnnotation: t.TSTypeAnnotation | null = null,\n asserts: boolean | null = null,\n): t.TSTypePredicate {\n const node: t.TSTypePredicate = {\n type: \"TSTypePredicate\",\n parameterName,\n typeAnnotation,\n asserts,\n };\n const defs = NODE_FIELDS.TSTypePredicate;\n validate(defs.parameterName, node, \"parameterName\", parameterName, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n validate(defs.asserts, node, \"asserts\", asserts);\n return node;\n}\nexport { tsTypePredicate as tSTypePredicate };\nexport function tsTypeQuery(\n exprName: t.TSEntityName | t.TSImportType,\n typeParameters: t.TSTypeParameterInstantiation | null = null,\n): t.TSTypeQuery {\n const node: t.TSTypeQuery = {\n type: \"TSTypeQuery\",\n exprName,\n typeParameters,\n };\n const defs = NODE_FIELDS.TSTypeQuery;\n validate(defs.exprName, node, \"exprName\", exprName, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n return node;\n}\nexport { tsTypeQuery as tSTypeQuery };\nexport function tsTypeLiteral(members: t.TSTypeElement[]): t.TSTypeLiteral {\n const node: t.TSTypeLiteral = {\n type: \"TSTypeLiteral\",\n members,\n };\n const defs = NODE_FIELDS.TSTypeLiteral;\n validate(defs.members, node, \"members\", members, 1);\n return node;\n}\nexport { tsTypeLiteral as tSTypeLiteral };\nexport function tsArrayType(elementType: t.TSType): t.TSArrayType {\n const node: t.TSArrayType = {\n type: \"TSArrayType\",\n elementType,\n };\n const defs = NODE_FIELDS.TSArrayType;\n validate(defs.elementType, node, \"elementType\", elementType, 1);\n return node;\n}\nexport { tsArrayType as tSArrayType };\nexport function tsTupleType(\n elementTypes: (t.TSType | t.TSNamedTupleMember)[],\n): t.TSTupleType {\n const node: t.TSTupleType = {\n type: \"TSTupleType\",\n elementTypes,\n };\n const defs = NODE_FIELDS.TSTupleType;\n validate(defs.elementTypes, node, \"elementTypes\", elementTypes, 1);\n return node;\n}\nexport { tsTupleType as tSTupleType };\nexport function tsOptionalType(typeAnnotation: t.TSType): t.TSOptionalType {\n const node: t.TSOptionalType = {\n type: \"TSOptionalType\",\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSOptionalType;\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsOptionalType as tSOptionalType };\nexport function tsRestType(typeAnnotation: t.TSType): t.TSRestType {\n const node: t.TSRestType = {\n type: \"TSRestType\",\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSRestType;\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsRestType as tSRestType };\nexport function tsNamedTupleMember(\n label: t.Identifier,\n elementType: t.TSType,\n optional: boolean = false,\n): t.TSNamedTupleMember {\n const node: t.TSNamedTupleMember = {\n type: \"TSNamedTupleMember\",\n label,\n elementType,\n optional,\n };\n const defs = NODE_FIELDS.TSNamedTupleMember;\n validate(defs.label, node, \"label\", label, 1);\n validate(defs.elementType, node, \"elementType\", elementType, 1);\n validate(defs.optional, node, \"optional\", optional);\n return node;\n}\nexport { tsNamedTupleMember as tSNamedTupleMember };\nexport function tsUnionType(types: t.TSType[]): t.TSUnionType {\n const node: t.TSUnionType = {\n type: \"TSUnionType\",\n types,\n };\n const defs = NODE_FIELDS.TSUnionType;\n validate(defs.types, node, \"types\", types, 1);\n return node;\n}\nexport { tsUnionType as tSUnionType };\nexport function tsIntersectionType(types: t.TSType[]): t.TSIntersectionType {\n const node: t.TSIntersectionType = {\n type: \"TSIntersectionType\",\n types,\n };\n const defs = NODE_FIELDS.TSIntersectionType;\n validate(defs.types, node, \"types\", types, 1);\n return node;\n}\nexport { tsIntersectionType as tSIntersectionType };\nexport function tsConditionalType(\n checkType: t.TSType,\n extendsType: t.TSType,\n trueType: t.TSType,\n falseType: t.TSType,\n): t.TSConditionalType {\n const node: t.TSConditionalType = {\n type: \"TSConditionalType\",\n checkType,\n extendsType,\n trueType,\n falseType,\n };\n const defs = NODE_FIELDS.TSConditionalType;\n validate(defs.checkType, node, \"checkType\", checkType, 1);\n validate(defs.extendsType, node, \"extendsType\", extendsType, 1);\n validate(defs.trueType, node, \"trueType\", trueType, 1);\n validate(defs.falseType, node, \"falseType\", falseType, 1);\n return node;\n}\nexport { tsConditionalType as tSConditionalType };\nexport function tsInferType(typeParameter: t.TSTypeParameter): t.TSInferType {\n const node: t.TSInferType = {\n type: \"TSInferType\",\n typeParameter,\n };\n const defs = NODE_FIELDS.TSInferType;\n validate(defs.typeParameter, node, \"typeParameter\", typeParameter, 1);\n return node;\n}\nexport { tsInferType as tSInferType };\nexport function tsParenthesizedType(\n typeAnnotation: t.TSType,\n): t.TSParenthesizedType {\n const node: t.TSParenthesizedType = {\n type: \"TSParenthesizedType\",\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSParenthesizedType;\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsParenthesizedType as tSParenthesizedType };\nexport function tsTypeOperator(\n typeAnnotation: t.TSType,\n operator: string = \"keyof\",\n): t.TSTypeOperator {\n const node: t.TSTypeOperator = {\n type: \"TSTypeOperator\",\n typeAnnotation,\n operator,\n };\n const defs = NODE_FIELDS.TSTypeOperator;\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n validate(defs.operator, node, \"operator\", operator);\n return node;\n}\nexport { tsTypeOperator as tSTypeOperator };\nexport function tsIndexedAccessType(\n objectType: t.TSType,\n indexType: t.TSType,\n): t.TSIndexedAccessType {\n const node: t.TSIndexedAccessType = {\n type: \"TSIndexedAccessType\",\n objectType,\n indexType,\n };\n const defs = NODE_FIELDS.TSIndexedAccessType;\n validate(defs.objectType, node, \"objectType\", objectType, 1);\n validate(defs.indexType, node, \"indexType\", indexType, 1);\n return node;\n}\nexport { tsIndexedAccessType as tSIndexedAccessType };\nexport function tsMappedType(\n typeParameter: t.TSTypeParameter,\n typeAnnotation: t.TSType | null = null,\n nameType: t.TSType | null = null,\n): t.TSMappedType {\n const node: t.TSMappedType = {\n type: \"TSMappedType\",\n typeParameter,\n typeAnnotation,\n nameType,\n };\n const defs = NODE_FIELDS.TSMappedType;\n validate(defs.typeParameter, node, \"typeParameter\", typeParameter, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n validate(defs.nameType, node, \"nameType\", nameType, 1);\n return node;\n}\nexport { tsMappedType as tSMappedType };\nexport function tsTemplateLiteralType(\n quasis: t.TemplateElement[],\n types: t.TSType[],\n): t.TSTemplateLiteralType {\n const node: t.TSTemplateLiteralType = {\n type: \"TSTemplateLiteralType\",\n quasis,\n types,\n };\n const defs = NODE_FIELDS.TSTemplateLiteralType;\n validate(defs.quasis, node, \"quasis\", quasis, 1);\n validate(defs.types, node, \"types\", types, 1);\n return node;\n}\nexport { tsTemplateLiteralType as tSTemplateLiteralType };\nexport function tsLiteralType(\n literal:\n | t.NumericLiteral\n | t.StringLiteral\n | t.BooleanLiteral\n | t.BigIntLiteral\n | t.TemplateLiteral\n | t.UnaryExpression,\n): t.TSLiteralType {\n const node: t.TSLiteralType = {\n type: \"TSLiteralType\",\n literal,\n };\n const defs = NODE_FIELDS.TSLiteralType;\n validate(defs.literal, node, \"literal\", literal, 1);\n return node;\n}\nexport { tsLiteralType as tSLiteralType };\nexport function tsExpressionWithTypeArguments(\n expression: t.TSEntityName,\n typeParameters: t.TSTypeParameterInstantiation | null = null,\n): t.TSExpressionWithTypeArguments {\n const node: t.TSExpressionWithTypeArguments = {\n type: \"TSExpressionWithTypeArguments\",\n expression,\n typeParameters,\n };\n const defs = NODE_FIELDS.TSExpressionWithTypeArguments;\n validate(defs.expression, node, \"expression\", expression, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n return node;\n}\nexport { tsExpressionWithTypeArguments as tSExpressionWithTypeArguments };\nexport function tsInterfaceDeclaration(\n id: t.Identifier,\n typeParameters: t.TSTypeParameterDeclaration | null | undefined = null,\n _extends: t.TSExpressionWithTypeArguments[] | null | undefined = null,\n body: t.TSInterfaceBody,\n): t.TSInterfaceDeclaration {\n const node: t.TSInterfaceDeclaration = {\n type: \"TSInterfaceDeclaration\",\n id,\n typeParameters,\n extends: _extends,\n body,\n };\n const defs = NODE_FIELDS.TSInterfaceDeclaration;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.extends, node, \"extends\", _extends, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport { tsInterfaceDeclaration as tSInterfaceDeclaration };\nexport function tsInterfaceBody(body: t.TSTypeElement[]): t.TSInterfaceBody {\n const node: t.TSInterfaceBody = {\n type: \"TSInterfaceBody\",\n body,\n };\n const defs = NODE_FIELDS.TSInterfaceBody;\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport { tsInterfaceBody as tSInterfaceBody };\nexport function tsTypeAliasDeclaration(\n id: t.Identifier,\n typeParameters: t.TSTypeParameterDeclaration | null | undefined = null,\n typeAnnotation: t.TSType,\n): t.TSTypeAliasDeclaration {\n const node: t.TSTypeAliasDeclaration = {\n type: \"TSTypeAliasDeclaration\",\n id,\n typeParameters,\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSTypeAliasDeclaration;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsTypeAliasDeclaration as tSTypeAliasDeclaration };\nexport function tsInstantiationExpression(\n expression: t.Expression,\n typeParameters: t.TSTypeParameterInstantiation | null = null,\n): t.TSInstantiationExpression {\n const node: t.TSInstantiationExpression = {\n type: \"TSInstantiationExpression\",\n expression,\n typeParameters,\n };\n const defs = NODE_FIELDS.TSInstantiationExpression;\n validate(defs.expression, node, \"expression\", expression, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n return node;\n}\nexport { tsInstantiationExpression as tSInstantiationExpression };\nexport function tsAsExpression(\n expression: t.Expression,\n typeAnnotation: t.TSType,\n): t.TSAsExpression {\n const node: t.TSAsExpression = {\n type: \"TSAsExpression\",\n expression,\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSAsExpression;\n validate(defs.expression, node, \"expression\", expression, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsAsExpression as tSAsExpression };\nexport function tsSatisfiesExpression(\n expression: t.Expression,\n typeAnnotation: t.TSType,\n): t.TSSatisfiesExpression {\n const node: t.TSSatisfiesExpression = {\n type: \"TSSatisfiesExpression\",\n expression,\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSSatisfiesExpression;\n validate(defs.expression, node, \"expression\", expression, 1);\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsSatisfiesExpression as tSSatisfiesExpression };\nexport function tsTypeAssertion(\n typeAnnotation: t.TSType,\n expression: t.Expression,\n): t.TSTypeAssertion {\n const node: t.TSTypeAssertion = {\n type: \"TSTypeAssertion\",\n typeAnnotation,\n expression,\n };\n const defs = NODE_FIELDS.TSTypeAssertion;\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n validate(defs.expression, node, \"expression\", expression, 1);\n return node;\n}\nexport { tsTypeAssertion as tSTypeAssertion };\nexport function tsEnumBody(members: t.TSEnumMember[]): t.TSEnumBody {\n const node: t.TSEnumBody = {\n type: \"TSEnumBody\",\n members,\n };\n const defs = NODE_FIELDS.TSEnumBody;\n validate(defs.members, node, \"members\", members, 1);\n return node;\n}\nexport { tsEnumBody as tSEnumBody };\nexport function tsEnumDeclaration(\n id: t.Identifier,\n members: t.TSEnumMember[],\n): t.TSEnumDeclaration {\n const node: t.TSEnumDeclaration = {\n type: \"TSEnumDeclaration\",\n id,\n members,\n };\n const defs = NODE_FIELDS.TSEnumDeclaration;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.members, node, \"members\", members, 1);\n return node;\n}\nexport { tsEnumDeclaration as tSEnumDeclaration };\nexport function tsEnumMember(\n id: t.Identifier | t.StringLiteral,\n initializer: t.Expression | null = null,\n): t.TSEnumMember {\n const node: t.TSEnumMember = {\n type: \"TSEnumMember\",\n id,\n initializer,\n };\n const defs = NODE_FIELDS.TSEnumMember;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.initializer, node, \"initializer\", initializer, 1);\n return node;\n}\nexport { tsEnumMember as tSEnumMember };\nexport function tsModuleDeclaration(\n id: t.Identifier | t.StringLiteral,\n body: t.TSModuleBlock | t.TSModuleDeclaration,\n): t.TSModuleDeclaration {\n const node: t.TSModuleDeclaration = {\n type: \"TSModuleDeclaration\",\n id,\n body,\n kind: null,\n };\n const defs = NODE_FIELDS.TSModuleDeclaration;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport { tsModuleDeclaration as tSModuleDeclaration };\nexport function tsModuleBlock(body: t.Statement[]): t.TSModuleBlock {\n const node: t.TSModuleBlock = {\n type: \"TSModuleBlock\",\n body,\n };\n const defs = NODE_FIELDS.TSModuleBlock;\n validate(defs.body, node, \"body\", body, 1);\n return node;\n}\nexport { tsModuleBlock as tSModuleBlock };\nexport function tsImportType(\n argument: t.StringLiteral,\n qualifier: t.TSEntityName | null = null,\n typeParameters: t.TSTypeParameterInstantiation | null = null,\n): t.TSImportType {\n const node: t.TSImportType = {\n type: \"TSImportType\",\n argument,\n qualifier,\n typeParameters,\n };\n const defs = NODE_FIELDS.TSImportType;\n validate(defs.argument, node, \"argument\", argument, 1);\n validate(defs.qualifier, node, \"qualifier\", qualifier, 1);\n validate(defs.typeParameters, node, \"typeParameters\", typeParameters, 1);\n return node;\n}\nexport { tsImportType as tSImportType };\nexport function tsImportEqualsDeclaration(\n id: t.Identifier,\n moduleReference: t.TSEntityName | t.TSExternalModuleReference,\n): t.TSImportEqualsDeclaration {\n const node: t.TSImportEqualsDeclaration = {\n type: \"TSImportEqualsDeclaration\",\n id,\n moduleReference,\n isExport: null,\n };\n const defs = NODE_FIELDS.TSImportEqualsDeclaration;\n validate(defs.id, node, \"id\", id, 1);\n validate(defs.moduleReference, node, \"moduleReference\", moduleReference, 1);\n return node;\n}\nexport { tsImportEqualsDeclaration as tSImportEqualsDeclaration };\nexport function tsExternalModuleReference(\n expression: t.StringLiteral,\n): t.TSExternalModuleReference {\n const node: t.TSExternalModuleReference = {\n type: \"TSExternalModuleReference\",\n expression,\n };\n const defs = NODE_FIELDS.TSExternalModuleReference;\n validate(defs.expression, node, \"expression\", expression, 1);\n return node;\n}\nexport { tsExternalModuleReference as tSExternalModuleReference };\nexport function tsNonNullExpression(\n expression: t.Expression,\n): t.TSNonNullExpression {\n const node: t.TSNonNullExpression = {\n type: \"TSNonNullExpression\",\n expression,\n };\n const defs = NODE_FIELDS.TSNonNullExpression;\n validate(defs.expression, node, \"expression\", expression, 1);\n return node;\n}\nexport { tsNonNullExpression as tSNonNullExpression };\nexport function tsExportAssignment(\n expression: t.Expression,\n): t.TSExportAssignment {\n const node: t.TSExportAssignment = {\n type: \"TSExportAssignment\",\n expression,\n };\n const defs = NODE_FIELDS.TSExportAssignment;\n validate(defs.expression, node, \"expression\", expression, 1);\n return node;\n}\nexport { tsExportAssignment as tSExportAssignment };\nexport function tsNamespaceExportDeclaration(\n id: t.Identifier,\n): t.TSNamespaceExportDeclaration {\n const node: t.TSNamespaceExportDeclaration = {\n type: \"TSNamespaceExportDeclaration\",\n id,\n };\n const defs = NODE_FIELDS.TSNamespaceExportDeclaration;\n validate(defs.id, node, \"id\", id, 1);\n return node;\n}\nexport { tsNamespaceExportDeclaration as tSNamespaceExportDeclaration };\nexport function tsTypeAnnotation(typeAnnotation: t.TSType): t.TSTypeAnnotation {\n const node: t.TSTypeAnnotation = {\n type: \"TSTypeAnnotation\",\n typeAnnotation,\n };\n const defs = NODE_FIELDS.TSTypeAnnotation;\n validate(defs.typeAnnotation, node, \"typeAnnotation\", typeAnnotation, 1);\n return node;\n}\nexport { tsTypeAnnotation as tSTypeAnnotation };\nexport function tsTypeParameterInstantiation(\n params: t.TSType[],\n): t.TSTypeParameterInstantiation {\n const node: t.TSTypeParameterInstantiation = {\n type: \"TSTypeParameterInstantiation\",\n params,\n };\n const defs = NODE_FIELDS.TSTypeParameterInstantiation;\n validate(defs.params, node, \"params\", params, 1);\n return node;\n}\nexport { tsTypeParameterInstantiation as tSTypeParameterInstantiation };\nexport function tsTypeParameterDeclaration(\n params: t.TSTypeParameter[],\n): t.TSTypeParameterDeclaration {\n const node: t.TSTypeParameterDeclaration = {\n type: \"TSTypeParameterDeclaration\",\n params,\n };\n const defs = NODE_FIELDS.TSTypeParameterDeclaration;\n validate(defs.params, node, \"params\", params, 1);\n return node;\n}\nexport { tsTypeParameterDeclaration as tSTypeParameterDeclaration };\nexport function tsTypeParameter(\n constraint: t.TSType | null | undefined = null,\n _default: t.TSType | null | undefined = null,\n name: string,\n): t.TSTypeParameter {\n const node: t.TSTypeParameter = {\n type: \"TSTypeParameter\",\n constraint,\n default: _default,\n name,\n };\n const defs = NODE_FIELDS.TSTypeParameter;\n validate(defs.constraint, node, \"constraint\", constraint, 1);\n validate(defs.default, node, \"default\", _default, 1);\n validate(defs.name, node, \"name\", name);\n return node;\n}\nexport { tsTypeParameter as tSTypeParameter };\n/** @deprecated */\nfunction NumberLiteral(value: number) {\n deprecationWarning(\"NumberLiteral\", \"NumericLiteral\", \"The node type \");\n return numericLiteral(value);\n}\nexport { NumberLiteral as numberLiteral };\n/** @deprecated */\nfunction RegexLiteral(pattern: string, flags: string = \"\") {\n deprecationWarning(\"RegexLiteral\", \"RegExpLiteral\", \"The node type \");\n return regExpLiteral(pattern, flags);\n}\nexport { RegexLiteral as regexLiteral };\n/** @deprecated */\nfunction RestProperty(\n argument:\n | t.Identifier\n | t.ArrayPattern\n | t.ObjectPattern\n | t.MemberExpression\n | t.TSAsExpression\n | t.TSSatisfiesExpression\n | t.TSTypeAssertion\n | t.TSNonNullExpression\n | t.RestElement\n | t.AssignmentPattern,\n) {\n deprecationWarning(\"RestProperty\", \"RestElement\", \"The node type \");\n return restElement(argument);\n}\nexport { RestProperty as restProperty };\n/** @deprecated */\nfunction SpreadProperty(argument: t.Expression) {\n deprecationWarning(\"SpreadProperty\", \"SpreadElement\", \"The node type \");\n return spreadElement(argument);\n}\nexport { SpreadProperty as spreadProperty };\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,IAAAA,SAAA,GAAAC,OAAA;AAEA,IAAAC,mBAAA,GAAAD,OAAA;AACA,IAAAE,KAAA,GAAAF,OAAA;AAEA,MAAM;EAAEG,gBAAgB,EAAEC;AAAS,CAAC,GAAGL,SAAS;AAChD,MAAM;EAAEM;AAAY,CAAC,GAAGH,KAAK;AAMtB,SAASI,aAAaA,CAACC,KAAsB,EAAmB;EACrE,IAAI,OAAOA,KAAK,KAAK,QAAQ,EAAE;IAC7BA,KAAK,GAAGA,KAAK,CAACC,QAAQ,CAAC,CAAC;EAC1B;EACA,MAAMC,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrBH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAACO,aAAa;EACtCR,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,CAAC;EAC1C,OAAOE,IAAI;AACb;AACO,SAASI,eAAeA,CAC7BC,QAAmD,GAAG,EAAE,EACrC;EACnB,MAAML,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBI;EACF,CAAC;EACD,MAAMH,IAAI,GAAGN,WAAW,CAACU,eAAe;EACxCX,QAAQ,CAACO,IAAI,CAACG,QAAQ,EAAEL,IAAI,EAAE,UAAU,EAAEK,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAOL,IAAI;AACb;AACO,SAASO,oBAAoBA,CAClCC,QAAgB,EAChBC,IAAyC,EACzCC,KAAmB,EACK;EACxB,MAAMV,IAA4B,GAAG;IACnCC,IAAI,EAAE,sBAAsB;IAC5BO,QAAQ;IACRC,IAAI;IACJC;EACF,CAAC;EACD,MAAMR,IAAI,GAAGN,WAAW,CAACe,oBAAoB;EAC7ChB,QAAQ,CAACO,IAAI,CAACM,QAAQ,EAAER,IAAI,EAAE,UAAU,EAAEQ,QAAQ,CAAC;EACnDb,QAAQ,CAACO,IAAI,CAACO,IAAI,EAAET,IAAI,EAAE,MAAM,EAAES,IAAI,EAAE,CAAC,CAAC;EAC1Cd,QAAQ,CAACO,IAAI,CAACQ,KAAK,EAAEV,IAAI,EAAE,OAAO,EAAEU,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOV,IAAI;AACb;AACO,SAASY,gBAAgBA,CAC9BJ,QAuBQ,EACRC,IAAkC,EAClCC,KAAmB,EACC;EACpB,MAAMV,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxBO,QAAQ;IACRC,IAAI;IACJC;EACF,CAAC;EACD,MAAMR,IAAI,GAAGN,WAAW,CAACiB,gBAAgB;EACzClB,QAAQ,CAACO,IAAI,CAACM,QAAQ,EAAER,IAAI,EAAE,UAAU,EAAEQ,QAAQ,CAAC;EACnDb,QAAQ,CAACO,IAAI,CAACO,IAAI,EAAET,IAAI,EAAE,MAAM,EAAES,IAAI,EAAE,CAAC,CAAC;EAC1Cd,QAAQ,CAACO,IAAI,CAACQ,KAAK,EAAEV,IAAI,EAAE,OAAO,EAAEU,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOV,IAAI;AACb;AACO,SAASc,oBAAoBA,CAAChB,KAAa,EAA0B;EAC1E,MAAME,IAA4B,GAAG;IACnCC,IAAI,EAAE,sBAAsB;IAC5BH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAACmB,oBAAoB;EAC7CpB,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,CAAC;EAC1C,OAAOE,IAAI;AACb;AACO,SAASgB,SAASA,CAAClB,KAAyB,EAAe;EAChE,MAAME,IAAiB,GAAG;IACxBC,IAAI,EAAE,WAAW;IACjBH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAACqB,SAAS;EAClCtB,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOE,IAAI;AACb;AACO,SAASkB,gBAAgBA,CAACpB,KAAa,EAAsB;EAClE,MAAME,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxBH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAACuB,gBAAgB;EACzCxB,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,CAAC;EAC1C,OAAOE,IAAI;AACb;AACO,SAASoB,cAAcA,CAC5BC,IAAmB,EACnBC,UAAyB,GAAG,EAAE,EACZ;EAClB,MAAMtB,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBoB,IAAI;IACJC;EACF,CAAC;EACD,MAAMpB,IAAI,GAAGN,WAAW,CAAC2B,cAAc;EACvC5B,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAACoB,UAAU,EAAEtB,IAAI,EAAE,YAAY,EAAEsB,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOtB,IAAI;AACb;AACO,SAASwB,cAAcA,CAC5BC,KAA0B,GAAG,IAAI,EACf;EAClB,MAAMzB,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBwB;EACF,CAAC;EACD,MAAMvB,IAAI,GAAGN,WAAW,CAAC8B,cAAc;EACvC/B,QAAQ,CAACO,IAAI,CAACuB,KAAK,EAAEzB,IAAI,EAAE,OAAO,EAAEyB,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOzB,IAAI;AACb;AACO,SAAS2B,cAAcA,CAC5BC,MAAwD,EACxDC,UAAsE,EACpD;EAClB,MAAM7B,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtB2B,MAAM;IACNE,SAAS,EAAED;EACb,CAAC;EACD,MAAM3B,IAAI,GAAGN,WAAW,CAACmC,cAAc;EACvCpC,QAAQ,CAACO,IAAI,CAAC0B,MAAM,EAAE5B,IAAI,EAAE,QAAQ,EAAE4B,MAAM,EAAE,CAAC,CAAC;EAChDjC,QAAQ,CAACO,IAAI,CAAC4B,SAAS,EAAE9B,IAAI,EAAE,WAAW,EAAE6B,UAAU,EAAE,CAAC,CAAC;EAC1D,OAAO7B,IAAI;AACb;AACO,SAASgC,WAAWA,CACzBC,KAKa,GAAG,IAAI,EACpBZ,IAAsB,EACP;EACf,MAAMrB,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnBgC,KAAK;IACLZ;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAACsC,WAAW;EACpCvC,QAAQ,CAACO,IAAI,CAAC+B,KAAK,EAAEjC,IAAI,EAAE,OAAO,EAAEiC,KAAK,EAAE,CAAC,CAAC;EAC7CtC,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAASmC,qBAAqBA,CACnCC,IAAkB,EAClBC,UAAwB,EACxBC,SAAuB,EACE;EACzB,MAAMtC,IAA6B,GAAG;IACpCC,IAAI,EAAE,uBAAuB;IAC7BmC,IAAI;IACJC,UAAU;IACVC;EACF,CAAC;EACD,MAAMpC,IAAI,GAAGN,WAAW,CAAC2C,qBAAqB;EAC9C5C,QAAQ,CAACO,IAAI,CAACkC,IAAI,EAAEpC,IAAI,EAAE,MAAM,EAAEoC,IAAI,EAAE,CAAC,CAAC;EAC1CzC,QAAQ,CAACO,IAAI,CAACmC,UAAU,EAAErC,IAAI,EAAE,YAAY,EAAEqC,UAAU,EAAE,CAAC,CAAC;EAC5D1C,QAAQ,CAACO,IAAI,CAACoC,SAAS,EAAEtC,IAAI,EAAE,WAAW,EAAEsC,SAAS,EAAE,CAAC,CAAC;EACzD,OAAOtC,IAAI;AACb;AACO,SAASwC,iBAAiBA,CAC/Bf,KAA0B,GAAG,IAAI,EACZ;EACrB,MAAMzB,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzBwB;EACF,CAAC;EACD,MAAMvB,IAAI,GAAGN,WAAW,CAAC6C,iBAAiB;EAC1C9C,QAAQ,CAACO,IAAI,CAACuB,KAAK,EAAEzB,IAAI,EAAE,OAAO,EAAEyB,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOzB,IAAI;AACb;AACO,SAAS0C,iBAAiBA,CAAA,EAAwB;EACvD,OAAO;IACLzC,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAAS0C,gBAAgBA,CAC9BP,IAAkB,EAClBf,IAAiB,EACG;EACpB,MAAMrB,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxBmC,IAAI;IACJf;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAACgD,gBAAgB;EACzCjD,QAAQ,CAACO,IAAI,CAACkC,IAAI,EAAEpC,IAAI,EAAE,MAAM,EAAEoC,IAAI,EAAE,CAAC,CAAC;EAC1CzC,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAAS6C,cAAcA,CAAA,EAAqB;EACjD,OAAO;IACL5C,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAAS6C,mBAAmBA,CACjCC,UAAwB,EACD;EACvB,MAAM/C,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3B8C;EACF,CAAC;EACD,MAAM7C,IAAI,GAAGN,WAAW,CAACoD,mBAAmB;EAC5CrD,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO/C,IAAI;AACb;AACO,SAASiD,IAAIA,CAClBC,OAAkB,EAClBC,QAAmD,GAAG,IAAI,EAC1DC,MAAoB,GAAG,IAAI,EACnB;EACR,MAAMpD,IAAY,GAAG;IACnBC,IAAI,EAAE,MAAM;IACZiD,OAAO;IACPC,QAAQ;IACRC;EACF,CAAC;EACD,MAAMlD,IAAI,GAAGN,WAAW,CAACyD,IAAI;EAC7B1D,QAAQ,CAACO,IAAI,CAACgD,OAAO,EAAElD,IAAI,EAAE,SAAS,EAAEkD,OAAO,EAAE,CAAC,CAAC;EACnDvD,QAAQ,CAACO,IAAI,CAACiD,QAAQ,EAAEnD,IAAI,EAAE,UAAU,EAAEmD,QAAQ,EAAE,CAAC,CAAC;EACtDxD,QAAQ,CAACO,IAAI,CAACkD,MAAM,EAAEpD,IAAI,EAAE,QAAQ,EAAEoD,MAAM,CAAC;EAC7C,OAAOpD,IAAI;AACb;AACO,SAASsD,cAAcA,CAC5B7C,IAAoC,EACpCC,KAAmB,EACnBW,IAAiB,EACC;EAClB,MAAMrB,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBQ,IAAI;IACJC,KAAK;IACLW;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAAC2D,cAAc;EACvC5D,QAAQ,CAACO,IAAI,CAACO,IAAI,EAAET,IAAI,EAAE,MAAM,EAAES,IAAI,EAAE,CAAC,CAAC;EAC1Cd,QAAQ,CAACO,IAAI,CAACQ,KAAK,EAAEV,IAAI,EAAE,OAAO,EAAEU,KAAK,EAAE,CAAC,CAAC;EAC7Cf,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAASwD,YAAYA,CAC1BC,IAA6D,GAAG,IAAI,EACpErB,IAAqC,GAAG,IAAI,EAC5CsB,MAAuC,GAAG,IAAI,EAC9CrC,IAAiB,EACD;EAChB,MAAMrB,IAAoB,GAAG;IAC3BC,IAAI,EAAE,cAAc;IACpBwD,IAAI;IACJrB,IAAI;IACJsB,MAAM;IACNrC;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAAC+D,YAAY;EACrChE,QAAQ,CAACO,IAAI,CAACuD,IAAI,EAAEzD,IAAI,EAAE,MAAM,EAAEyD,IAAI,EAAE,CAAC,CAAC;EAC1C9D,QAAQ,CAACO,IAAI,CAACkC,IAAI,EAAEpC,IAAI,EAAE,MAAM,EAAEoC,IAAI,EAAE,CAAC,CAAC;EAC1CzC,QAAQ,CAACO,IAAI,CAACwD,MAAM,EAAE1D,IAAI,EAAE,QAAQ,EAAE0D,MAAM,EAAE,CAAC,CAAC;EAChD/D,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAAS4D,mBAAmBA,CACjCC,EAAmC,GAAG,IAAI,EAC1CC,MAA6B,EAC7BzC,IAAsB,EACtB0C,SAAkB,GAAG,KAAK,EAC1BC,KAAc,GAAG,KAAK,EACC;EACvB,MAAMhE,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3B4D,EAAE;IACFC,MAAM;IACNzC,IAAI;IACJ0C,SAAS;IACTC;EACF,CAAC;EACD,MAAM9D,IAAI,GAAGN,WAAW,CAACqE,mBAAmB;EAC5CtE,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChDnE,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAAC6D,SAAS,EAAE/D,IAAI,EAAE,WAAW,EAAE+D,SAAS,CAAC;EACtDpE,QAAQ,CAACO,IAAI,CAAC8D,KAAK,EAAEhE,IAAI,EAAE,OAAO,EAAEgE,KAAK,CAAC;EAC1C,OAAOhE,IAAI;AACb;AACO,SAASkE,kBAAkBA,CAChCL,EAAmC,GAAG,IAAI,EAC1CC,MAA6B,EAC7BzC,IAAsB,EACtB0C,SAAkB,GAAG,KAAK,EAC1BC,KAAc,GAAG,KAAK,EACA;EACtB,MAAMhE,IAA0B,GAAG;IACjCC,IAAI,EAAE,oBAAoB;IAC1B4D,EAAE;IACFC,MAAM;IACNzC,IAAI;IACJ0C,SAAS;IACTC;EACF,CAAC;EACD,MAAM9D,IAAI,GAAGN,WAAW,CAACuE,kBAAkB;EAC3CxE,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChDnE,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAAC6D,SAAS,EAAE/D,IAAI,EAAE,WAAW,EAAE+D,SAAS,CAAC;EACtDpE,QAAQ,CAACO,IAAI,CAAC8D,KAAK,EAAEhE,IAAI,EAAE,OAAO,EAAEgE,KAAK,CAAC;EAC1C,OAAOhE,IAAI;AACb;AACO,SAASoE,UAAUA,CAACC,IAAY,EAAgB;EACrD,MAAMrE,IAAkB,GAAG;IACzBC,IAAI,EAAE,YAAY;IAClBoE;EACF,CAAC;EACD,MAAMnE,IAAI,GAAGN,WAAW,CAAC0E,UAAU;EACnC3E,QAAQ,CAACO,IAAI,CAACmE,IAAI,EAAErE,IAAI,EAAE,MAAM,EAAEqE,IAAI,CAAC;EACvC,OAAOrE,IAAI;AACb;AACO,SAASuE,WAAWA,CACzBnC,IAAkB,EAClBC,UAAuB,EACvBC,SAA6B,GAAG,IAAI,EACrB;EACf,MAAMtC,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnBmC,IAAI;IACJC,UAAU;IACVC;EACF,CAAC;EACD,MAAMpC,IAAI,GAAGN,WAAW,CAAC4E,WAAW;EACpC7E,QAAQ,CAACO,IAAI,CAACkC,IAAI,EAAEpC,IAAI,EAAE,MAAM,EAAEoC,IAAI,EAAE,CAAC,CAAC;EAC1CzC,QAAQ,CAACO,IAAI,CAACmC,UAAU,EAAErC,IAAI,EAAE,YAAY,EAAEqC,UAAU,EAAE,CAAC,CAAC;EAC5D1C,QAAQ,CAACO,IAAI,CAACoC,SAAS,EAAEtC,IAAI,EAAE,WAAW,EAAEsC,SAAS,EAAE,CAAC,CAAC;EACzD,OAAOtC,IAAI;AACb;AACO,SAASyE,gBAAgBA,CAC9BhD,KAAmB,EACnBJ,IAAiB,EACG;EACpB,MAAMrB,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxBwB,KAAK;IACLJ;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAAC8E,gBAAgB;EACzC/E,QAAQ,CAACO,IAAI,CAACuB,KAAK,EAAEzB,IAAI,EAAE,OAAO,EAAEyB,KAAK,EAAE,CAAC,CAAC;EAC7C9B,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAAS2E,aAAaA,CAAC7E,KAAa,EAAmB;EAC5D,MAAME,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrBH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAACgF,aAAa;EACtCjF,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,CAAC;EAC1C,OAAOE,IAAI;AACb;AACO,SAAS6E,cAAcA,CAAC/E,KAAa,EAAoB;EAC9D,MAAME,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAACkF,cAAc;EACvCnF,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,CAAC;EAC1C,OAAOE,IAAI;AACb;AACO,SAAS+E,WAAWA,CAAA,EAAkB;EAC3C,OAAO;IACL9E,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAAS+E,cAAcA,CAAClF,KAAc,EAAoB;EAC/D,MAAME,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAACqF,cAAc;EACvCtF,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,CAAC;EAC1C,OAAOE,IAAI;AACb;AACO,SAASkF,aAAaA,CAC3BC,OAAe,EACfC,KAAa,GAAG,EAAE,EACD;EACjB,MAAMpF,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrBkF,OAAO;IACPC;EACF,CAAC;EACD,MAAMlF,IAAI,GAAGN,WAAW,CAACyF,aAAa;EACtC1F,QAAQ,CAACO,IAAI,CAACiF,OAAO,EAAEnF,IAAI,EAAE,SAAS,EAAEmF,OAAO,CAAC;EAChDxF,QAAQ,CAACO,IAAI,CAACkF,KAAK,EAAEpF,IAAI,EAAE,OAAO,EAAEoF,KAAK,CAAC;EAC1C,OAAOpF,IAAI;AACb;AACO,SAASsF,iBAAiBA,CAC/B9E,QAA4B,EAC5BC,IAAkB,EAClBC,KAAmB,EACE;EACrB,MAAMV,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzBO,QAAQ;IACRC,IAAI;IACJC;EACF,CAAC;EACD,MAAMR,IAAI,GAAGN,WAAW,CAAC2F,iBAAiB;EAC1C5F,QAAQ,CAACO,IAAI,CAACM,QAAQ,EAAER,IAAI,EAAE,UAAU,EAAEQ,QAAQ,CAAC;EACnDb,QAAQ,CAACO,IAAI,CAACO,IAAI,EAAET,IAAI,EAAE,MAAM,EAAES,IAAI,EAAE,CAAC,CAAC;EAC1Cd,QAAQ,CAACO,IAAI,CAACQ,KAAK,EAAEV,IAAI,EAAE,OAAO,EAAEU,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOV,IAAI;AACb;AACO,SAASwF,gBAAgBA,CAC9BC,MAA8B,EAC9BC,QAAqD,EACrDC,QAAiB,GAAG,KAAK,EACzBC,QAAwB,GAAG,IAAI,EACX;EACpB,MAAM5F,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxBwF,MAAM;IACNC,QAAQ;IACRC,QAAQ;IACRC;EACF,CAAC;EACD,MAAM1F,IAAI,GAAGN,WAAW,CAACiG,gBAAgB;EACzClG,QAAQ,CAACO,IAAI,CAACuF,MAAM,EAAEzF,IAAI,EAAE,QAAQ,EAAEyF,MAAM,EAAE,CAAC,CAAC;EAChD9F,QAAQ,CAACO,IAAI,CAACwF,QAAQ,EAAE1F,IAAI,EAAE,UAAU,EAAE0F,QAAQ,EAAE,CAAC,CAAC;EACtD/F,QAAQ,CAACO,IAAI,CAACyF,QAAQ,EAAE3F,IAAI,EAAE,UAAU,EAAE2F,QAAQ,CAAC;EACnDhG,QAAQ,CAACO,IAAI,CAAC0F,QAAQ,EAAE5F,IAAI,EAAE,UAAU,EAAE4F,QAAQ,CAAC;EACnD,OAAO5F,IAAI;AACb;AACO,SAAS8F,aAAaA,CAC3BlE,MAAwD,EACxDC,UAAsE,EACrD;EACjB,MAAM7B,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrB2B,MAAM;IACNE,SAAS,EAAED;EACb,CAAC;EACD,MAAM3B,IAAI,GAAGN,WAAW,CAACmG,aAAa;EACtCpG,QAAQ,CAACO,IAAI,CAAC0B,MAAM,EAAE5B,IAAI,EAAE,QAAQ,EAAE4B,MAAM,EAAE,CAAC,CAAC;EAChDjC,QAAQ,CAACO,IAAI,CAAC4B,SAAS,EAAE9B,IAAI,EAAE,WAAW,EAAE6B,UAAU,EAAE,CAAC,CAAC;EAC1D,OAAO7B,IAAI;AACb;AACO,SAASkD,OAAOA,CACrB7B,IAAmB,EACnBC,UAAyB,GAAG,EAAE,EAC9B0E,UAA+B,GAAG,QAAQ,EAC1CC,WAA0C,GAAG,IAAI,EACtC;EACX,MAAMjG,IAAe,GAAG;IACtBC,IAAI,EAAE,SAAS;IACfoB,IAAI;IACJC,UAAU;IACV0E,UAAU;IACVC;EACF,CAAC;EACD,MAAM/F,IAAI,GAAGN,WAAW,CAACsG,OAAO;EAChCvG,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAACoB,UAAU,EAAEtB,IAAI,EAAE,YAAY,EAAEsB,UAAU,EAAE,CAAC,CAAC;EAC5D3B,QAAQ,CAACO,IAAI,CAAC8F,UAAU,EAAEhG,IAAI,EAAE,YAAY,EAAEgG,UAAU,CAAC;EACzDrG,QAAQ,CAACO,IAAI,CAAC+F,WAAW,EAAEjG,IAAI,EAAE,aAAa,EAAEiG,WAAW,EAAE,CAAC,CAAC;EAC/D,OAAOjG,IAAI;AACb;AACO,SAASmG,gBAAgBA,CAC9BC,UAAmE,EAC/C;EACpB,MAAMpG,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxBmG;EACF,CAAC;EACD,MAAMlG,IAAI,GAAGN,WAAW,CAACyG,gBAAgB;EACzC1G,QAAQ,CAACO,IAAI,CAACkG,UAAU,EAAEpG,IAAI,EAAE,YAAY,EAAEoG,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOpG,IAAI;AACb;AACO,SAASsG,YAAYA,CAC1BC,IAA0C,GAAG,QAAQ,EACrDC,GAKmB,EACnB1C,MAA6B,EAC7BzC,IAAsB,EACtBsE,QAAiB,GAAG,KAAK,EACzB5B,SAAkB,GAAG,KAAK,EAC1BC,KAAc,GAAG,KAAK,EACN;EAChB,MAAMhE,IAAoB,GAAG;IAC3BC,IAAI,EAAE,cAAc;IACpBsG,IAAI;IACJC,GAAG;IACH1C,MAAM;IACNzC,IAAI;IACJsE,QAAQ;IACR5B,SAAS;IACTC;EACF,CAAC;EACD,MAAM9D,IAAI,GAAGN,WAAW,CAAC6G,YAAY;EACrC9G,QAAQ,CAACO,IAAI,CAACqG,IAAI,EAAEvG,IAAI,EAAE,MAAM,EAAEuG,IAAI,CAAC;EACvC5G,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChDnE,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAACyF,QAAQ,EAAE3F,IAAI,EAAE,UAAU,EAAE2F,QAAQ,CAAC;EACnDhG,QAAQ,CAACO,IAAI,CAAC6D,SAAS,EAAE/D,IAAI,EAAE,WAAW,EAAE+D,SAAS,CAAC;EACtDpE,QAAQ,CAACO,IAAI,CAAC8D,KAAK,EAAEhE,IAAI,EAAE,OAAO,EAAEgE,KAAK,CAAC;EAC1C,OAAOhE,IAAI;AACb;AACO,SAAS0G,cAAcA,CAC5BF,GAOiB,EACjB1G,KAAmC,EACnC6F,QAAiB,GAAG,KAAK,EACzBgB,SAAkB,GAAG,KAAK,EAC1BC,UAAgC,GAAG,IAAI,EACrB;EAClB,MAAM5G,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBuG,GAAG;IACH1G,KAAK;IACL6F,QAAQ;IACRgB,SAAS;IACTC;EACF,CAAC;EACD,MAAM1G,IAAI,GAAGN,WAAW,CAACiH,cAAc;EACvClH,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,EAAE,CAAC,CAAC;EAC7CH,QAAQ,CAACO,IAAI,CAACyF,QAAQ,EAAE3F,IAAI,EAAE,UAAU,EAAE2F,QAAQ,CAAC;EACnDhG,QAAQ,CAACO,IAAI,CAACyG,SAAS,EAAE3G,IAAI,EAAE,WAAW,EAAE2G,SAAS,CAAC;EACtDhH,QAAQ,CAACO,IAAI,CAAC0G,UAAU,EAAE5G,IAAI,EAAE,YAAY,EAAE4G,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO5G,IAAI;AACb;AACO,SAAS8G,WAAWA,CACzBC,QAUuB,EACR;EACf,MAAM/G,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnB8G;EACF,CAAC;EACD,MAAM7G,IAAI,GAAGN,WAAW,CAACoH,WAAW;EACpCrH,QAAQ,CAACO,IAAI,CAAC6G,QAAQ,EAAE/G,IAAI,EAAE,UAAU,EAAE+G,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO/G,IAAI;AACb;AACO,SAASiH,eAAeA,CAC7BF,QAA6B,GAAG,IAAI,EACjB;EACnB,MAAM/G,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvB8G;EACF,CAAC;EACD,MAAM7G,IAAI,GAAGN,WAAW,CAACsH,eAAe;EACxCvH,QAAQ,CAACO,IAAI,CAAC6G,QAAQ,EAAE/G,IAAI,EAAE,UAAU,EAAE+G,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO/G,IAAI;AACb;AACO,SAASmH,kBAAkBA,CAChCC,WAA2B,EACL;EACtB,MAAMpH,IAA0B,GAAG;IACjCC,IAAI,EAAE,oBAAoB;IAC1BmH;EACF,CAAC;EACD,MAAMlH,IAAI,GAAGN,WAAW,CAACyH,kBAAkB;EAC3C1H,QAAQ,CAACO,IAAI,CAACkH,WAAW,EAAEpH,IAAI,EAAE,aAAa,EAAEoH,WAAW,EAAE,CAAC,CAAC;EAC/D,OAAOpH,IAAI;AACb;AACO,SAASsH,uBAAuBA,CACrCvE,UAAwB,EACG;EAC3B,MAAM/C,IAA+B,GAAG;IACtCC,IAAI,EAAE,yBAAyB;IAC/B8C;EACF,CAAC;EACD,MAAM7C,IAAI,GAAGN,WAAW,CAAC2H,uBAAuB;EAChD5H,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO/C,IAAI;AACb;AACO,SAASwH,UAAUA,CACxBpF,IAAqC,GAAG,IAAI,EAC5CC,UAAyB,EACX;EACd,MAAMrC,IAAkB,GAAG;IACzBC,IAAI,EAAE,YAAY;IAClBmC,IAAI;IACJC;EACF,CAAC;EACD,MAAMnC,IAAI,GAAGN,WAAW,CAAC6H,UAAU;EACnC9H,QAAQ,CAACO,IAAI,CAACkC,IAAI,EAAEpC,IAAI,EAAE,MAAM,EAAEoC,IAAI,EAAE,CAAC,CAAC;EAC1CzC,QAAQ,CAACO,IAAI,CAACmC,UAAU,EAAErC,IAAI,EAAE,YAAY,EAAEqC,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOrC,IAAI;AACb;AACO,SAAS0H,eAAeA,CAC7BC,YAA0B,EAC1BC,KAAqB,EACF;EACnB,MAAM5H,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvB0H,YAAY;IACZC;EACF,CAAC;EACD,MAAM1H,IAAI,GAAGN,WAAW,CAACiI,eAAe;EACxClI,QAAQ,CAACO,IAAI,CAACyH,YAAY,EAAE3H,IAAI,EAAE,cAAc,EAAE2H,YAAY,EAAE,CAAC,CAAC;EAClEhI,QAAQ,CAACO,IAAI,CAAC0H,KAAK,EAAE5H,IAAI,EAAE,OAAO,EAAE4H,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAO5H,IAAI;AACb;AACO,SAAS8H,cAAcA,CAAA,EAAqB;EACjD,OAAO;IACL7H,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAAS8H,cAAcA,CAAChB,QAAsB,EAAoB;EACvE,MAAM/G,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtB8G;EACF,CAAC;EACD,MAAM7G,IAAI,GAAGN,WAAW,CAACoI,cAAc;EACvCrI,QAAQ,CAACO,IAAI,CAAC6G,QAAQ,EAAE/G,IAAI,EAAE,UAAU,EAAE+G,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO/G,IAAI;AACb;AACO,SAASiI,YAAYA,CAC1BC,KAAuB,EACvBC,OAA6B,GAAG,IAAI,EACpCC,SAAkC,GAAG,IAAI,EACzB;EAChB,MAAMpI,IAAoB,GAAG;IAC3BC,IAAI,EAAE,cAAc;IACpBiI,KAAK;IACLC,OAAO;IACPC;EACF,CAAC;EACD,MAAMlI,IAAI,GAAGN,WAAW,CAACyI,YAAY;EACrC1I,QAAQ,CAACO,IAAI,CAACgI,KAAK,EAAElI,IAAI,EAAE,OAAO,EAAEkI,KAAK,EAAE,CAAC,CAAC;EAC7CvI,QAAQ,CAACO,IAAI,CAACiI,OAAO,EAAEnI,IAAI,EAAE,SAAS,EAAEmI,OAAO,EAAE,CAAC,CAAC;EACnDxI,QAAQ,CAACO,IAAI,CAACkI,SAAS,EAAEpI,IAAI,EAAE,WAAW,EAAEoI,SAAS,EAAE,CAAC,CAAC;EACzD,OAAOpI,IAAI;AACb;AACO,SAASsI,eAAeA,CAC7B9H,QAAwE,EACxEuG,QAAsB,EACtBwB,MAAe,GAAG,IAAI,EACH;EACnB,MAAMvI,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBO,QAAQ;IACRuG,QAAQ;IACRwB;EACF,CAAC;EACD,MAAMrI,IAAI,GAAGN,WAAW,CAAC4I,eAAe;EACxC7I,QAAQ,CAACO,IAAI,CAACM,QAAQ,EAAER,IAAI,EAAE,UAAU,EAAEQ,QAAQ,CAAC;EACnDb,QAAQ,CAACO,IAAI,CAAC6G,QAAQ,EAAE/G,IAAI,EAAE,UAAU,EAAE+G,QAAQ,EAAE,CAAC,CAAC;EACtDpH,QAAQ,CAACO,IAAI,CAACqI,MAAM,EAAEvI,IAAI,EAAE,QAAQ,EAAEuI,MAAM,CAAC;EAC7C,OAAOvI,IAAI;AACb;AACO,SAASyI,gBAAgBA,CAC9BjI,QAAqB,EACrBuG,QAAsB,EACtBwB,MAAe,GAAG,KAAK,EACH;EACpB,MAAMvI,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxBO,QAAQ;IACRuG,QAAQ;IACRwB;EACF,CAAC;EACD,MAAMrI,IAAI,GAAGN,WAAW,CAAC8I,gBAAgB;EACzC/I,QAAQ,CAACO,IAAI,CAACM,QAAQ,EAAER,IAAI,EAAE,UAAU,EAAEQ,QAAQ,CAAC;EACnDb,QAAQ,CAACO,IAAI,CAAC6G,QAAQ,EAAE/G,IAAI,EAAE,UAAU,EAAE+G,QAAQ,EAAE,CAAC,CAAC;EACtDpH,QAAQ,CAACO,IAAI,CAACqI,MAAM,EAAEvI,IAAI,EAAE,QAAQ,EAAEuI,MAAM,CAAC;EAC7C,OAAOvI,IAAI;AACb;AACO,SAAS2I,mBAAmBA,CACjCpC,IAAuD,EACvDqC,YAAoC,EACb;EACvB,MAAM5I,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3BsG,IAAI;IACJqC;EACF,CAAC;EACD,MAAM1I,IAAI,GAAGN,WAAW,CAACiJ,mBAAmB;EAC5ClJ,QAAQ,CAACO,IAAI,CAACqG,IAAI,EAAEvG,IAAI,EAAE,MAAM,EAAEuG,IAAI,CAAC;EACvC5G,QAAQ,CAACO,IAAI,CAAC0I,YAAY,EAAE5I,IAAI,EAAE,cAAc,EAAE4I,YAAY,EAAE,CAAC,CAAC;EAClE,OAAO5I,IAAI;AACb;AACO,SAAS8I,kBAAkBA,CAChCjF,EAA0B,EAC1BJ,IAAyB,GAAG,IAAI,EACV;EACtB,MAAMzD,IAA0B,GAAG;IACjCC,IAAI,EAAE,oBAAoB;IAC1B4D,EAAE;IACFJ;EACF,CAAC;EACD,MAAMvD,IAAI,GAAGN,WAAW,CAACmJ,kBAAkB;EAC3CpJ,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuD,IAAI,EAAEzD,IAAI,EAAE,MAAM,EAAEyD,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOzD,IAAI;AACb;AACO,SAASgJ,cAAcA,CAC5B5G,IAAkB,EAClBf,IAAiB,EACC;EAClB,MAAMrB,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBmC,IAAI;IACJf;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAACqJ,cAAc;EACvCtJ,QAAQ,CAACO,IAAI,CAACkC,IAAI,EAAEpC,IAAI,EAAE,MAAM,EAAEoC,IAAI,EAAE,CAAC,CAAC;EAC1CzC,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAASkJ,aAAaA,CAC3BzD,MAAoB,EACpBpE,IAAiB,EACA;EACjB,MAAMrB,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrBwF,MAAM;IACNpE;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAACuJ,aAAa;EACtCxJ,QAAQ,CAACO,IAAI,CAACuF,MAAM,EAAEzF,IAAI,EAAE,QAAQ,EAAEyF,MAAM,EAAE,CAAC,CAAC;EAChD9F,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAASoJ,iBAAiBA,CAC/B3I,IAQyB,EACzBC,KAAmB,EACE;EACrB,MAAMV,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzBQ,IAAI;IACJC;EACF,CAAC;EACD,MAAMR,IAAI,GAAGN,WAAW,CAACyJ,iBAAiB;EAC1C1J,QAAQ,CAACO,IAAI,CAACO,IAAI,EAAET,IAAI,EAAE,MAAM,EAAES,IAAI,EAAE,CAAC,CAAC;EAC1Cd,QAAQ,CAACO,IAAI,CAACQ,KAAK,EAAEV,IAAI,EAAE,OAAO,EAAEU,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOV,IAAI;AACb;AACO,SAASsJ,YAAYA,CAC1BjJ,QAAkC,EAClB;EAChB,MAAML,IAAoB,GAAG;IAC3BC,IAAI,EAAE,cAAc;IACpBI;EACF,CAAC;EACD,MAAMH,IAAI,GAAGN,WAAW,CAAC2J,YAAY;EACrC5J,QAAQ,CAACO,IAAI,CAACG,QAAQ,EAAEL,IAAI,EAAE,UAAU,EAAEK,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAOL,IAAI;AACb;AACO,SAASwJ,uBAAuBA,CACrC1F,MAA6B,EAC7BzC,IAAqC,EACrC2C,KAAc,GAAG,KAAK,EACK;EAC3B,MAAMhE,IAA+B,GAAG;IACtCC,IAAI,EAAE,yBAAyB;IAC/B6D,MAAM;IACNzC,IAAI;IACJ2C,KAAK;IACLjB,UAAU,EAAE;EACd,CAAC;EACD,MAAM7C,IAAI,GAAGN,WAAW,CAAC6J,uBAAuB;EAChD9J,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChDnE,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAAC8D,KAAK,EAAEhE,IAAI,EAAE,OAAO,EAAEgE,KAAK,CAAC;EAC1C,OAAOhE,IAAI;AACb;AACO,SAAS0J,SAASA,CACvBrI,IASG,EACU;EACb,MAAMrB,IAAiB,GAAG;IACxBC,IAAI,EAAE,WAAW;IACjBoB;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAAC+J,SAAS;EAClChK,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAAS4J,eAAeA,CAC7B/F,EAAmC,GAAG,IAAI,EAC1CgG,UAA2C,GAAG,IAAI,EAClDxI,IAAiB,EACjBuF,UAAgC,GAAG,IAAI,EACpB;EACnB,MAAM5G,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvB4D,EAAE;IACFgG,UAAU;IACVxI,IAAI;IACJuF;EACF,CAAC;EACD,MAAM1G,IAAI,GAAGN,WAAW,CAACkK,eAAe;EACxCnK,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAAC2J,UAAU,EAAE7J,IAAI,EAAE,YAAY,EAAE6J,UAAU,EAAE,CAAC,CAAC;EAC5DlK,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAAC0G,UAAU,EAAE5G,IAAI,EAAE,YAAY,EAAE4G,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO5G,IAAI;AACb;AACO,SAAS+J,gBAAgBA,CAC9BlG,EAAmC,GAAG,IAAI,EAC1CgG,UAA2C,GAAG,IAAI,EAClDxI,IAAiB,EACjBuF,UAAgC,GAAG,IAAI,EACnB;EACpB,MAAM5G,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxB4D,EAAE;IACFgG,UAAU;IACVxI,IAAI;IACJuF;EACF,CAAC;EACD,MAAM1G,IAAI,GAAGN,WAAW,CAACoK,gBAAgB;EACzCrK,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAAC2J,UAAU,EAAE7J,IAAI,EAAE,YAAY,EAAE6J,UAAU,EAAE,CAAC,CAAC;EAC5DlK,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAAC0G,UAAU,EAAE5G,IAAI,EAAE,YAAY,EAAE4G,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO5G,IAAI;AACb;AACO,SAASiK,oBAAoBA,CAClCC,MAAuB,EACvBC,UAAsC,GAAG,IAAI,EACrB;EACxB,MAAMnK,IAA4B,GAAG;IACnCC,IAAI,EAAE,sBAAsB;IAC5BiK,MAAM;IACNC;EACF,CAAC;EACD,MAAMjK,IAAI,GAAGN,WAAW,CAACwK,oBAAoB;EAC7CzK,QAAQ,CAACO,IAAI,CAACgK,MAAM,EAAElK,IAAI,EAAE,QAAQ,EAAEkK,MAAM,EAAE,CAAC,CAAC;EAChDvK,QAAQ,CAACO,IAAI,CAACiK,UAAU,EAAEnK,IAAI,EAAE,YAAY,EAAEmK,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOnK,IAAI;AACb;AACO,SAASqK,wBAAwBA,CACtCC,WAIgB,EACY;EAC5B,MAAMtK,IAAgC,GAAG;IACvCC,IAAI,EAAE,0BAA0B;IAChCqK;EACF,CAAC;EACD,MAAMpK,IAAI,GAAGN,WAAW,CAAC2K,wBAAwB;EACjD5K,QAAQ,CAACO,IAAI,CAACoK,WAAW,EAAEtK,IAAI,EAAE,aAAa,EAAEsK,WAAW,EAAE,CAAC,CAAC;EAC/D,OAAOtK,IAAI;AACb;AACO,SAASwK,sBAAsBA,CACpCF,WAAiC,GAAG,IAAI,EACxCG,UAIG,GAAG,EAAE,EACRP,MAA8B,GAAG,IAAI,EACrCC,UAAsC,GAAG,IAAI,EACnB;EAC1B,MAAMnK,IAA8B,GAAG;IACrCC,IAAI,EAAE,wBAAwB;IAC9BqK,WAAW;IACXG,UAAU;IACVP,MAAM;IACNC;EACF,CAAC;EACD,MAAMjK,IAAI,GAAGN,WAAW,CAAC8K,sBAAsB;EAC/C/K,QAAQ,CAACO,IAAI,CAACoK,WAAW,EAAEtK,IAAI,EAAE,aAAa,EAAEsK,WAAW,EAAE,CAAC,CAAC;EAC/D3K,QAAQ,CAACO,IAAI,CAACuK,UAAU,EAAEzK,IAAI,EAAE,YAAY,EAAEyK,UAAU,EAAE,CAAC,CAAC;EAC5D9K,QAAQ,CAACO,IAAI,CAACgK,MAAM,EAAElK,IAAI,EAAE,QAAQ,EAAEkK,MAAM,EAAE,CAAC,CAAC;EAChDvK,QAAQ,CAACO,IAAI,CAACiK,UAAU,EAAEnK,IAAI,EAAE,YAAY,EAAEmK,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOnK,IAAI;AACb;AACO,SAAS2K,eAAeA,CAC7BC,KAAmB,EACnBC,QAAwC,EACrB;EACnB,MAAM7K,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvB2K,KAAK;IACLC;EACF,CAAC;EACD,MAAM3K,IAAI,GAAGN,WAAW,CAACkL,eAAe;EACxCnL,QAAQ,CAACO,IAAI,CAAC0K,KAAK,EAAE5K,IAAI,EAAE,OAAO,EAAE4K,KAAK,EAAE,CAAC,CAAC;EAC7CjL,QAAQ,CAACO,IAAI,CAAC2K,QAAQ,EAAE7K,IAAI,EAAE,UAAU,EAAE6K,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO7K,IAAI;AACb;AACO,SAAS+K,cAAcA,CAC5BtK,IAAoC,EACpCC,KAAmB,EACnBW,IAAiB,EACjB2J,MAAe,GAAG,KAAK,EACL;EAClB,MAAMhL,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBQ,IAAI;IACJC,KAAK;IACLW,IAAI;IACJ4J,KAAK,EAAED;EACT,CAAC;EACD,MAAM9K,IAAI,GAAGN,WAAW,CAACsL,cAAc;EACvCvL,QAAQ,CAACO,IAAI,CAACO,IAAI,EAAET,IAAI,EAAE,MAAM,EAAES,IAAI,EAAE,CAAC,CAAC;EAC1Cd,QAAQ,CAACO,IAAI,CAACQ,KAAK,EAAEV,IAAI,EAAE,OAAO,EAAEU,KAAK,EAAE,CAAC,CAAC;EAC7Cf,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAAC+K,KAAK,EAAEjL,IAAI,EAAE,OAAO,EAAEgL,MAAM,CAAC;EAC3C,OAAOhL,IAAI;AACb;AACO,SAASmL,iBAAiBA,CAC/BV,UAIG,EACHP,MAAuB,EACvBC,UAAsC,GAAG,IAAI,EACxB;EACrB,MAAMnK,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzBwK,UAAU;IACVP,MAAM;IACNC;EACF,CAAC;EACD,MAAMjK,IAAI,GAAGN,WAAW,CAACwL,iBAAiB;EAC1CzL,QAAQ,CAACO,IAAI,CAACuK,UAAU,EAAEzK,IAAI,EAAE,YAAY,EAAEyK,UAAU,EAAE,CAAC,CAAC;EAC5D9K,QAAQ,CAACO,IAAI,CAACgK,MAAM,EAAElK,IAAI,EAAE,QAAQ,EAAEkK,MAAM,EAAE,CAAC,CAAC;EAChDvK,QAAQ,CAACO,IAAI,CAACiK,UAAU,EAAEnK,IAAI,EAAE,YAAY,EAAEmK,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOnK,IAAI;AACb;AACO,SAASqL,sBAAsBA,CACpCT,KAAmB,EACO;EAC1B,MAAM5K,IAA8B,GAAG;IACrCC,IAAI,EAAE,wBAAwB;IAC9B2K;EACF,CAAC;EACD,MAAM1K,IAAI,GAAGN,WAAW,CAAC0L,sBAAsB;EAC/C3L,QAAQ,CAACO,IAAI,CAAC0K,KAAK,EAAE5K,IAAI,EAAE,OAAO,EAAE4K,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAO5K,IAAI;AACb;AACO,SAASuL,wBAAwBA,CACtCX,KAAmB,EACS;EAC5B,MAAM5K,IAAgC,GAAG;IACvCC,IAAI,EAAE,0BAA0B;IAChC2K;EACF,CAAC;EACD,MAAM1K,IAAI,GAAGN,WAAW,CAAC4L,wBAAwB;EACjD7L,QAAQ,CAACO,IAAI,CAAC0K,KAAK,EAAE5K,IAAI,EAAE,OAAO,EAAE4K,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAO5K,IAAI;AACb;AACO,SAASyL,eAAeA,CAC7Bb,KAAmB,EACnBc,QAAwC,EACrB;EACnB,MAAM1L,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvB2K,KAAK;IACLc;EACF,CAAC;EACD,MAAMxL,IAAI,GAAGN,WAAW,CAAC+L,eAAe;EACxChM,QAAQ,CAACO,IAAI,CAAC0K,KAAK,EAAE5K,IAAI,EAAE,OAAO,EAAE4K,KAAK,EAAE,CAAC,CAAC;EAC7CjL,QAAQ,CAACO,IAAI,CAACwL,QAAQ,EAAE1L,IAAI,EAAE,UAAU,EAAE0L,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO1L,IAAI;AACb;AACO,SAAS4L,gBAAgBA,CAC9B1B,MAAoB,EACpB2B,OAA4B,GAAG,IAAI,EACf;EACpB,MAAM7L,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxBiK,MAAM;IACN2B;EACF,CAAC;EACD,MAAM3L,IAAI,GAAGN,WAAW,CAACkM,gBAAgB;EACzCnM,QAAQ,CAACO,IAAI,CAACgK,MAAM,EAAElK,IAAI,EAAE,QAAQ,EAAEkK,MAAM,EAAE,CAAC,CAAC;EAChDvK,QAAQ,CAACO,IAAI,CAAC2L,OAAO,EAAE7L,IAAI,EAAE,SAAS,EAAE6L,OAAO,EAAE,CAAC,CAAC;EACnD,OAAO7L,IAAI;AACb;AACO,SAAS+L,YAAYA,CAC1BC,IAAkB,EAClBtG,QAAsB,EACN;EAChB,MAAM1F,IAAoB,GAAG;IAC3BC,IAAI,EAAE,cAAc;IACpB+L,IAAI;IACJtG;EACF,CAAC;EACD,MAAMxF,IAAI,GAAGN,WAAW,CAACqM,YAAY;EACrCtM,QAAQ,CAACO,IAAI,CAAC8L,IAAI,EAAEhM,IAAI,EAAE,MAAM,EAAEgM,IAAI,EAAE,CAAC,CAAC;EAC1CrM,QAAQ,CAACO,IAAI,CAACwF,QAAQ,EAAE1F,IAAI,EAAE,UAAU,EAAE0F,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO1F,IAAI;AACb;AACO,SAASkM,WAAWA,CACzB3F,IAA0D,GAAG,QAAQ,EACrEC,GAKgB,EAChB1C,MAAuD,EACvDzC,IAAsB,EACtBsE,QAAiB,GAAG,KAAK,EACzBwG,OAAgB,GAAG,KAAK,EACxBpI,SAAkB,GAAG,KAAK,EAC1BC,KAAc,GAAG,KAAK,EACP;EACf,MAAMhE,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnBsG,IAAI;IACJC,GAAG;IACH1C,MAAM;IACNzC,IAAI;IACJsE,QAAQ;IACRyG,MAAM,EAAED,OAAO;IACfpI,SAAS;IACTC;EACF,CAAC;EACD,MAAM9D,IAAI,GAAGN,WAAW,CAACyM,WAAW;EACpC1M,QAAQ,CAACO,IAAI,CAACqG,IAAI,EAAEvG,IAAI,EAAE,MAAM,EAAEuG,IAAI,CAAC;EACvC5G,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChDnE,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAACyF,QAAQ,EAAE3F,IAAI,EAAE,UAAU,EAAE2F,QAAQ,CAAC;EACnDhG,QAAQ,CAACO,IAAI,CAACkM,MAAM,EAAEpM,IAAI,EAAE,QAAQ,EAAEmM,OAAO,CAAC;EAC9CxM,QAAQ,CAACO,IAAI,CAAC6D,SAAS,EAAE/D,IAAI,EAAE,WAAW,EAAE+D,SAAS,CAAC;EACtDpE,QAAQ,CAACO,IAAI,CAAC8D,KAAK,EAAEhE,IAAI,EAAE,OAAO,EAAEgE,KAAK,CAAC;EAC1C,OAAOhE,IAAI;AACb;AACO,SAASsM,aAAaA,CAC3BlG,UAAgD,EAC/B;EACjB,MAAMpG,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrBmG;EACF,CAAC;EACD,MAAMlG,IAAI,GAAGN,WAAW,CAAC2M,aAAa;EACtC5M,QAAQ,CAACO,IAAI,CAACkG,UAAU,EAAEpG,IAAI,EAAE,YAAY,EAAEoG,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOpG,IAAI;AACb;AACO,SAASwM,aAAaA,CAACzF,QAAsB,EAAmB;EACrE,MAAM/G,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrB8G;EACF,CAAC;EACD,MAAM7G,IAAI,GAAGN,WAAW,CAAC6M,aAAa;EACtC9M,QAAQ,CAACO,IAAI,CAAC6G,QAAQ,EAAE/G,IAAI,EAAE,UAAU,EAAE+G,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO/G,IAAI;AACb;AACA,SAAS0M,MAAMA,CAAA,EAAY;EACzB,OAAO;IACLzM,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAAS0M,wBAAwBA,CACtCC,GAAiB,EACjBC,KAAwB,EACI;EAC5B,MAAM7M,IAAgC,GAAG;IACvCC,IAAI,EAAE,0BAA0B;IAChC2M,GAAG;IACHC;EACF,CAAC;EACD,MAAM3M,IAAI,GAAGN,WAAW,CAACkN,wBAAwB;EACjDnN,QAAQ,CAACO,IAAI,CAAC0M,GAAG,EAAE5M,IAAI,EAAE,KAAK,EAAE4M,GAAG,EAAE,CAAC,CAAC;EACvCjN,QAAQ,CAACO,IAAI,CAAC2M,KAAK,EAAE7M,IAAI,EAAE,OAAO,EAAE6M,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAO7M,IAAI;AACb;AACO,SAAS+M,eAAeA,CAC7BjN,KAAuC,EACvCkN,IAAa,GAAG,KAAK,EACF;EACnB,MAAMhN,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBH,KAAK;IACLkN;EACF,CAAC;EACD,MAAM9M,IAAI,GAAGN,WAAW,CAACqN,eAAe;EACxCtN,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,CAAC;EAC1CH,QAAQ,CAACO,IAAI,CAAC8M,IAAI,EAAEhN,IAAI,EAAE,MAAM,EAAEgN,IAAI,CAAC;EACvC,OAAOhN,IAAI;AACb;AACO,SAASkN,eAAeA,CAC7BC,MAA2B,EAC3B/F,WAAwC,EACrB;EACnB,MAAMpH,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBkN,MAAM;IACN/F;EACF,CAAC;EACD,MAAMlH,IAAI,GAAGN,WAAW,CAACwN,eAAe;EACxCzN,QAAQ,CAACO,IAAI,CAACiN,MAAM,EAAEnN,IAAI,EAAE,QAAQ,EAAEmN,MAAM,EAAE,CAAC,CAAC;EAChDxN,QAAQ,CAACO,IAAI,CAACkH,WAAW,EAAEpH,IAAI,EAAE,aAAa,EAAEoH,WAAW,EAAE,CAAC,CAAC;EAC/D,OAAOpH,IAAI;AACb;AACO,SAASqN,eAAeA,CAC7BtG,QAA6B,GAAG,IAAI,EACpCuG,QAAiB,GAAG,KAAK,EACN;EACnB,MAAMtN,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvB8G,QAAQ;IACRuG;EACF,CAAC;EACD,MAAMpN,IAAI,GAAGN,WAAW,CAAC2N,eAAe;EACxC5N,QAAQ,CAACO,IAAI,CAAC6G,QAAQ,EAAE/G,IAAI,EAAE,UAAU,EAAE+G,QAAQ,EAAE,CAAC,CAAC;EACtDpH,QAAQ,CAACO,IAAI,CAACoN,QAAQ,EAAEtN,IAAI,EAAE,UAAU,EAAEsN,QAAQ,CAAC;EACnD,OAAOtN,IAAI;AACb;AACO,SAASwN,eAAeA,CAACzG,QAAsB,EAAqB;EACzE,MAAM/G,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvB8G;EACF,CAAC;EACD,MAAM7G,IAAI,GAAGN,WAAW,CAAC6N,eAAe;EACxC9N,QAAQ,CAACO,IAAI,CAAC6G,QAAQ,EAAE/G,IAAI,EAAE,UAAU,EAAE+G,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO/G,IAAI;AACb;AACA,SAAS0N,OAAOA,CAAA,EAAa;EAC3B,OAAO;IACLzN,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAAS0N,wBAAwBA,CACtC9C,QAAsB,EACM;EAC5B,MAAM7K,IAAgC,GAAG;IACvCC,IAAI,EAAE,0BAA0B;IAChC4K;EACF,CAAC;EACD,MAAM3K,IAAI,GAAGN,WAAW,CAACgO,wBAAwB;EACjDjO,QAAQ,CAACO,IAAI,CAAC2K,QAAQ,EAAE7K,IAAI,EAAE,UAAU,EAAE6K,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO7K,IAAI;AACb;AACO,SAAS6N,wBAAwBA,CACtCpI,MAAoB,EACpBC,QAAqC,EACrCC,QAA6B,GAAG,KAAK,EACrCC,QAAiB,EACW;EAC5B,MAAM5F,IAAgC,GAAG;IACvCC,IAAI,EAAE,0BAA0B;IAChCwF,MAAM;IACNC,QAAQ;IACRC,QAAQ;IACRC;EACF,CAAC;EACD,MAAM1F,IAAI,GAAGN,WAAW,CAACkO,wBAAwB;EACjDnO,QAAQ,CAACO,IAAI,CAACuF,MAAM,EAAEzF,IAAI,EAAE,QAAQ,EAAEyF,MAAM,EAAE,CAAC,CAAC;EAChD9F,QAAQ,CAACO,IAAI,CAACwF,QAAQ,EAAE1F,IAAI,EAAE,UAAU,EAAE0F,QAAQ,EAAE,CAAC,CAAC;EACtD/F,QAAQ,CAACO,IAAI,CAACyF,QAAQ,EAAE3F,IAAI,EAAE,UAAU,EAAE2F,QAAQ,CAAC;EACnDhG,QAAQ,CAACO,IAAI,CAAC0F,QAAQ,EAAE5F,IAAI,EAAE,UAAU,EAAE4F,QAAQ,CAAC;EACnD,OAAO5F,IAAI;AACb;AACO,SAAS+N,sBAAsBA,CACpCnM,MAAoB,EACpBC,UAAsE,EACtE+D,QAAiB,EACS;EAC1B,MAAM5F,IAA8B,GAAG;IACrCC,IAAI,EAAE,wBAAwB;IAC9B2B,MAAM;IACNE,SAAS,EAAED,UAAU;IACrB+D;EACF,CAAC;EACD,MAAM1F,IAAI,GAAGN,WAAW,CAACoO,sBAAsB;EAC/CrO,QAAQ,CAACO,IAAI,CAAC0B,MAAM,EAAE5B,IAAI,EAAE,QAAQ,EAAE4B,MAAM,EAAE,CAAC,CAAC;EAChDjC,QAAQ,CAACO,IAAI,CAAC4B,SAAS,EAAE9B,IAAI,EAAE,WAAW,EAAE6B,UAAU,EAAE,CAAC,CAAC;EAC1DlC,QAAQ,CAACO,IAAI,CAAC0F,QAAQ,EAAE5F,IAAI,EAAE,UAAU,EAAE4F,QAAQ,CAAC;EACnD,OAAO5F,IAAI;AACb;AACO,SAASiO,aAAaA,CAC3BzH,GAKgB,EAChB1G,KAA0B,GAAG,IAAI,EACjCoO,cAAqE,GAAG,IAAI,EAC5EtH,UAAgC,GAAG,IAAI,EACvCjB,QAAiB,GAAG,KAAK,EACzBwG,OAAgB,GAAG,KAAK,EACP;EACjB,MAAMnM,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrBuG,GAAG;IACH1G,KAAK;IACLoO,cAAc;IACdtH,UAAU;IACVjB,QAAQ;IACRyG,MAAM,EAAED;EACV,CAAC;EACD,MAAMjM,IAAI,GAAGN,WAAW,CAACuO,aAAa;EACtCxO,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,EAAE,CAAC,CAAC;EAC7CH,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxEvO,QAAQ,CAACO,IAAI,CAAC0G,UAAU,EAAE5G,IAAI,EAAE,YAAY,EAAE4G,UAAU,EAAE,CAAC,CAAC;EAC5DjH,QAAQ,CAACO,IAAI,CAACyF,QAAQ,EAAE3F,IAAI,EAAE,UAAU,EAAE2F,QAAQ,CAAC;EACnDhG,QAAQ,CAACO,IAAI,CAACkM,MAAM,EAAEpM,IAAI,EAAE,QAAQ,EAAEmM,OAAO,CAAC;EAC9C,OAAOnM,IAAI;AACb;AACO,SAASoO,qBAAqBA,CACnC5H,GAMiB,EACjB1G,KAA0B,GAAG,IAAI,EACjCoO,cAAqE,GAAG,IAAI,EAC5EtH,UAAgC,GAAG,IAAI,EACvCjB,QAAiB,GAAG,KAAK,EACzBwG,OAAgB,GAAG,KAAK,EACC;EACzB,MAAMnM,IAA6B,GAAG;IACpCC,IAAI,EAAE,uBAAuB;IAC7BuG,GAAG;IACH1G,KAAK;IACLoO,cAAc;IACdtH,UAAU;IACVjB,QAAQ;IACRyG,MAAM,EAAED;EACV,CAAC;EACD,MAAMjM,IAAI,GAAGN,WAAW,CAACyO,qBAAqB;EAC9C1O,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,EAAE,CAAC,CAAC;EAC7CH,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxEvO,QAAQ,CAACO,IAAI,CAAC0G,UAAU,EAAE5G,IAAI,EAAE,YAAY,EAAE4G,UAAU,EAAE,CAAC,CAAC;EAC5DjH,QAAQ,CAACO,IAAI,CAACyF,QAAQ,EAAE3F,IAAI,EAAE,UAAU,EAAE2F,QAAQ,CAAC;EACnDhG,QAAQ,CAACO,IAAI,CAACkM,MAAM,EAAEpM,IAAI,EAAE,QAAQ,EAAEmM,OAAO,CAAC;EAC9C,OAAOnM,IAAI;AACb;AACO,SAASsO,oBAAoBA,CAClC9H,GAAkB,EAClB1G,KAA0B,GAAG,IAAI,EACjC8G,UAAgC,GAAG,IAAI,EACvCuF,OAAgB,GAAG,KAAK,EACA;EACxB,MAAMnM,IAA4B,GAAG;IACnCC,IAAI,EAAE,sBAAsB;IAC5BuG,GAAG;IACH1G,KAAK;IACL8G,UAAU;IACVwF,MAAM,EAAED;EACV,CAAC;EACD,MAAMjM,IAAI,GAAGN,WAAW,CAAC2O,oBAAoB;EAC7C5O,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,EAAE,CAAC,CAAC;EAC7CH,QAAQ,CAACO,IAAI,CAAC0G,UAAU,EAAE5G,IAAI,EAAE,YAAY,EAAE4G,UAAU,EAAE,CAAC,CAAC;EAC5DjH,QAAQ,CAACO,IAAI,CAACkM,MAAM,EAAEpM,IAAI,EAAE,QAAQ,EAAEmM,OAAO,CAAC;EAC9C,OAAOnM,IAAI;AACb;AACO,SAASwO,kBAAkBA,CAChCjI,IAA0C,GAAG,QAAQ,EACrDC,GAAkB,EAClB1C,MAAuD,EACvDzC,IAAsB,EACtB8K,OAAgB,GAAG,KAAK,EACF;EACtB,MAAMnM,IAA0B,GAAG;IACjCC,IAAI,EAAE,oBAAoB;IAC1BsG,IAAI;IACJC,GAAG;IACH1C,MAAM;IACNzC,IAAI;IACJ+K,MAAM,EAAED;EACV,CAAC;EACD,MAAMjM,IAAI,GAAGN,WAAW,CAAC6O,kBAAkB;EAC3C9O,QAAQ,CAACO,IAAI,CAACqG,IAAI,EAAEvG,IAAI,EAAE,MAAM,EAAEuG,IAAI,CAAC;EACvC5G,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChDnE,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAACkM,MAAM,EAAEpM,IAAI,EAAE,QAAQ,EAAEmM,OAAO,CAAC;EAC9C,OAAOnM,IAAI;AACb;AACO,SAAS0O,WAAWA,CAAC7K,EAAgB,EAAiB;EAC3D,MAAM7D,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnB4D;EACF,CAAC;EACD,MAAM3D,IAAI,GAAGN,WAAW,CAAC+O,WAAW;EACpChP,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpC,OAAO7D,IAAI;AACb;AACO,SAAS4O,WAAWA,CAACvN,IAAmB,EAAiB;EAC9D,MAAMrB,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnBoB;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAACiP,WAAW;EACpClP,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAAS8O,eAAeA,CAC7BtI,GAAmC,EACnC1G,KAAsB,EACH;EACnB,MAAME,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBuG,GAAG;IACH1G;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAACmP,eAAe;EACxCpP,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOE,IAAI;AACb;AACO,SAASgP,iBAAiBA,CAAA,EAAwB;EACvD,OAAO;IACL/O,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAASgP,mBAAmBA,CACjCC,WAAuB,EACA;EACvB,MAAMlP,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3BiP;EACF,CAAC;EACD,MAAMhP,IAAI,GAAGN,WAAW,CAACuP,mBAAmB;EAC5CxP,QAAQ,CAACO,IAAI,CAACgP,WAAW,EAAElP,IAAI,EAAE,aAAa,EAAEkP,WAAW,EAAE,CAAC,CAAC;EAC/D,OAAOlP,IAAI;AACb;AACO,SAASoP,qBAAqBA,CAAA,EAA4B;EAC/D,OAAO;IACLnP,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAASoP,4BAA4BA,CAC1CvP,KAAc,EACkB;EAChC,MAAME,IAAoC,GAAG;IAC3CC,IAAI,EAAE,8BAA8B;IACpCH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAAC0P,4BAA4B;EACrD3P,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,CAAC;EAC1C,OAAOE,IAAI;AACb;AACO,SAASuP,yBAAyBA,CAAA,EAAgC;EACvE,OAAO;IACLtP,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAASuP,eAAeA,CAC7B3L,EAAgB,EAChB4L,cAAmD,GAAG,IAAI,EACvC;EACnB,MAAMzP,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvB4D,EAAE;IACF4L;EACF,CAAC;EACD,MAAMvP,IAAI,GAAGN,WAAW,CAAC8P,eAAe;EACxC/P,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOzP,IAAI;AACb;AACO,SAAS2P,YAAYA,CAC1B9L,EAAgB,EAChB4L,cAA6D,GAAG,IAAI,EACpEG,QAAiD,GAAG,IAAI,EACxDvO,IAA4B,EACZ;EAChB,MAAMrB,IAAoB,GAAG;IAC3BC,IAAI,EAAE,cAAc;IACpB4D,EAAE;IACF4L,cAAc;IACdI,OAAO,EAAED,QAAQ;IACjBvO;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAACkQ,YAAY;EACrCnQ,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAAC2P,OAAO,EAAE7P,IAAI,EAAE,SAAS,EAAE4P,QAAQ,EAAE,CAAC,CAAC;EACpDjQ,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAAS+P,eAAeA,CAAClM,EAAgB,EAAqB;EACnE,MAAM7D,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvB4D;EACF,CAAC;EACD,MAAM3D,IAAI,GAAGN,WAAW,CAACoQ,eAAe;EACxCrQ,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpC,OAAO7D,IAAI;AACb;AACO,SAASiQ,gBAAgBA,CAC9BpM,EAAgB,EAChB4L,cAA6D,GAAG,IAAI,EACpEG,QAAiD,GAAG,IAAI,EACxDvO,IAA4B,EACR;EACpB,MAAMrB,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxB4D,EAAE;IACF4L,cAAc;IACdI,OAAO,EAAED,QAAQ;IACjBvO;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAACsQ,gBAAgB;EACzCvQ,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAAC2P,OAAO,EAAE7P,IAAI,EAAE,SAAS,EAAE4P,QAAQ,EAAE,CAAC,CAAC;EACpDjQ,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAASmQ,aAAaA,CAC3BtM,EAAkC,EAClCxC,IAAsB,EACtBkF,IAA8B,GAAG,IAAI,EACpB;EACjB,MAAMvG,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrB4D,EAAE;IACFxC,IAAI;IACJkF;EACF,CAAC;EACD,MAAMrG,IAAI,GAAGN,WAAW,CAACwQ,aAAa;EACtCzQ,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAACqG,IAAI,EAAEvG,IAAI,EAAE,MAAM,EAAEuG,IAAI,CAAC;EACvC,OAAOvG,IAAI;AACb;AACO,SAASqQ,oBAAoBA,CAClCnC,cAAgC,EACR;EACxB,MAAMlO,IAA4B,GAAG;IACnCC,IAAI,EAAE,sBAAsB;IAC5BiO;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAAC0Q,oBAAoB;EAC7C3Q,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AACO,SAASuQ,gBAAgBA,CAC9B1M,EAAgB,EAChB4L,cAA6D,GAAG,IAAI,EACpE/O,KAAiB,EACG;EACpB,MAAMV,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxB4D,EAAE;IACF4L,cAAc;IACd/O;EACF,CAAC;EACD,MAAMR,IAAI,GAAGN,WAAW,CAAC4Q,gBAAgB;EACzC7Q,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAACQ,KAAK,EAAEV,IAAI,EAAE,OAAO,EAAEU,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOV,IAAI;AACb;AACO,SAASyQ,iBAAiBA,CAC/B5M,EAAgB,EAChB4L,cAAiD,GAAG,IAAI,EACxDiB,SAA4B,GAAG,IAAI,EACd;EACrB,MAAM1Q,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzB4D,EAAE;IACF4L,cAAc;IACdiB;EACF,CAAC;EACD,MAAMxQ,IAAI,GAAGN,WAAW,CAAC+Q,iBAAiB;EAC1ChR,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAACwQ,SAAS,EAAE1Q,IAAI,EAAE,WAAW,EAAE0Q,SAAS,EAAE,CAAC,CAAC;EACzD,OAAO1Q,IAAI;AACb;AACO,SAAS4Q,eAAeA,CAAC/M,EAAgB,EAAqB;EACnE,MAAM7D,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvB4D;EACF,CAAC;EACD,MAAM3D,IAAI,GAAGN,WAAW,CAACiR,eAAe;EACxClR,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpC,OAAO7D,IAAI;AACb;AACO,SAAS8Q,wBAAwBA,CACtCxG,WAA0B,GAAG,IAAI,EACjCG,UAAqE,GAAG,IAAI,EAC5EP,MAA8B,GAAG,IAAI,EACrCC,UAAsC,GAAG,IAAI,EACjB;EAC5B,MAAMnK,IAAgC,GAAG;IACvCC,IAAI,EAAE,0BAA0B;IAChCqK,WAAW;IACXG,UAAU;IACVP,MAAM;IACNC;EACF,CAAC;EACD,MAAMjK,IAAI,GAAGN,WAAW,CAACmR,wBAAwB;EACjDpR,QAAQ,CAACO,IAAI,CAACoK,WAAW,EAAEtK,IAAI,EAAE,aAAa,EAAEsK,WAAW,EAAE,CAAC,CAAC;EAC/D3K,QAAQ,CAACO,IAAI,CAACuK,UAAU,EAAEzK,IAAI,EAAE,YAAY,EAAEyK,UAAU,EAAE,CAAC,CAAC;EAC5D9K,QAAQ,CAACO,IAAI,CAACgK,MAAM,EAAElK,IAAI,EAAE,QAAQ,EAAEkK,MAAM,EAAE,CAAC,CAAC;EAChDvK,QAAQ,CAACO,IAAI,CAACiK,UAAU,EAAEnK,IAAI,EAAE,YAAY,EAAEmK,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOnK,IAAI;AACb;AACO,SAASgR,2BAA2BA,CACzC9G,MAAuB,EACvBC,UAAsC,GAAG,IAAI,EACd;EAC/B,MAAMnK,IAAmC,GAAG;IAC1CC,IAAI,EAAE,6BAA6B;IACnCiK,MAAM;IACNC;EACF,CAAC;EACD,MAAMjK,IAAI,GAAGN,WAAW,CAACqR,2BAA2B;EACpDtR,QAAQ,CAACO,IAAI,CAACgK,MAAM,EAAElK,IAAI,EAAE,QAAQ,EAAEkK,MAAM,EAAE,CAAC,CAAC;EAChDvK,QAAQ,CAACO,IAAI,CAACiK,UAAU,EAAEnK,IAAI,EAAE,YAAY,EAAEmK,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOnK,IAAI;AACb;AACO,SAASkR,iBAAiBA,CAACpR,KAAa,EAAuB;EACpE,MAAME,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzBH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAACuR,iBAAiB;EAC1CxR,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOE,IAAI;AACb;AACO,SAASoR,oBAAoBA,CAAA,EAA2B;EAC7D,OAAO;IACLnR,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAASoR,sBAAsBA,CACpC5B,cAA6D,GAAG,IAAI,EACpE3L,MAA6B,EAC7BwN,IAA4C,GAAG,IAAI,EACnDC,UAAsB,EACI;EAC1B,MAAMvR,IAA8B,GAAG;IACrCC,IAAI,EAAE,wBAAwB;IAC9BwP,cAAc;IACd3L,MAAM;IACNwN,IAAI;IACJC;EACF,CAAC;EACD,MAAMrR,IAAI,GAAGN,WAAW,CAAC4R,sBAAsB;EAC/C7R,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChDnE,QAAQ,CAACO,IAAI,CAACoR,IAAI,EAAEtR,IAAI,EAAE,MAAM,EAAEsR,IAAI,EAAE,CAAC,CAAC;EAC1C3R,QAAQ,CAACO,IAAI,CAACqR,UAAU,EAAEvR,IAAI,EAAE,YAAY,EAAEuR,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOvR,IAAI;AACb;AACO,SAASyR,iBAAiBA,CAC/BpN,IAAqC,GAAG,IAAI,EAC5C6J,cAA0B,EACL;EACrB,MAAMlO,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzBoE,IAAI;IACJ6J;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAAC8R,iBAAiB;EAC1C/R,QAAQ,CAACO,IAAI,CAACmE,IAAI,EAAErE,IAAI,EAAE,MAAM,EAAEqE,IAAI,EAAE,CAAC,CAAC;EAC1C1E,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AACO,SAAS2R,qBAAqBA,CACnC9N,EAA4C,EAC5C4L,cAAmD,GAAG,IAAI,EACjC;EACzB,MAAMzP,IAA6B,GAAG;IACpCC,IAAI,EAAE,uBAAuB;IAC7B4D,EAAE;IACF4L;EACF,CAAC;EACD,MAAMvP,IAAI,GAAGN,WAAW,CAACgS,qBAAqB;EAC9CjS,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOzP,IAAI;AACb;AACO,SAAS6R,iBAAiBA,CAAA,EAAwB;EACvD,OAAO;IACL5R,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAAS6R,gBAAgBA,CAC9BjO,EAA4C,EAC5C4L,cAAmD,GAAG,IAAI,EACtC;EACpB,MAAMzP,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxB4D,EAAE;IACF4L;EACF,CAAC;EACD,MAAMvP,IAAI,GAAGN,WAAW,CAACmS,gBAAgB;EACzCpS,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOzP,IAAI;AACb;AACO,SAASgS,oBAAoBA,CAClCnO,EAAgB,EAChB4L,cAA6D,GAAG,IAAI,EACpEG,QAAiD,GAAG,IAAI,EACxDvO,IAA4B,EACJ;EACxB,MAAMrB,IAA4B,GAAG;IACnCC,IAAI,EAAE,sBAAsB;IAC5B4D,EAAE;IACF4L,cAAc;IACdI,OAAO,EAAED,QAAQ;IACjBvO;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAACqS,oBAAoB;EAC7CtS,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAAC2P,OAAO,EAAE7P,IAAI,EAAE,SAAS,EAAE4P,QAAQ,EAAE,CAAC,CAAC;EACpDjQ,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAASkS,uBAAuBA,CACrCtC,QAAiD,GAAG,IAAI,EACxDvO,IAA4B,EACD;EAC3B,MAAMrB,IAA+B,GAAG;IACtCC,IAAI,EAAE,yBAAyB;IAC/B4P,OAAO,EAAED,QAAQ;IACjBvO;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAACuS,uBAAuB;EAChDxS,QAAQ,CAACO,IAAI,CAAC2P,OAAO,EAAE7P,IAAI,EAAE,SAAS,EAAE4P,QAAQ,EAAE,CAAC,CAAC;EACpDjQ,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAASoS,0BAA0BA,CACxCC,KAAmB,EACW;EAC9B,MAAMrS,IAAkC,GAAG;IACzCC,IAAI,EAAE,4BAA4B;IAClCoS;EACF,CAAC;EACD,MAAMnS,IAAI,GAAGN,WAAW,CAAC0S,0BAA0B;EACnD3S,QAAQ,CAACO,IAAI,CAACmS,KAAK,EAAErS,IAAI,EAAE,OAAO,EAAEqS,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOrS,IAAI;AACb;AACO,SAASuS,mBAAmBA,CAAA,EAA0B;EAC3D,OAAO;IACLtS,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAASuS,mBAAmBA,CAAA,EAA0B;EAC3D,OAAO;IACLvS,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAASwS,sBAAsBA,CACpCvE,cAA0B,EACA;EAC1B,MAAMlO,IAA8B,GAAG;IACrCC,IAAI,EAAE,wBAAwB;IAC9BiO;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAAC8S,sBAAsB;EAC/C/S,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AACO,SAAS2S,2BAA2BA,CACzC7S,KAAa,EACkB;EAC/B,MAAME,IAAmC,GAAG;IAC1CC,IAAI,EAAE,6BAA6B;IACnCH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAACgT,2BAA2B;EACpDjT,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,CAAC;EAC1C,OAAOE,IAAI;AACb;AACO,SAAS6S,oBAAoBA,CAAA,EAA2B;EAC7D,OAAO;IACL5S,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAAS6S,oBAAoBA,CAClC1M,UAAiE,EACjE2M,QAA+B,GAAG,EAAE,EACpCC,cAA0C,GAAG,EAAE,EAC/CC,aAAyC,GAAG,EAAE,EAC9CC,KAAc,GAAG,KAAK,EACE;EACxB,MAAMlT,IAA4B,GAAG;IACnCC,IAAI,EAAE,sBAAsB;IAC5BmG,UAAU;IACV2M,QAAQ;IACRC,cAAc;IACdC,aAAa;IACbC;EACF,CAAC;EACD,MAAMhT,IAAI,GAAGN,WAAW,CAACuT,oBAAoB;EAC7CxT,QAAQ,CAACO,IAAI,CAACkG,UAAU,EAAEpG,IAAI,EAAE,YAAY,EAAEoG,UAAU,EAAE,CAAC,CAAC;EAC5DzG,QAAQ,CAACO,IAAI,CAAC6S,QAAQ,EAAE/S,IAAI,EAAE,UAAU,EAAE+S,QAAQ,EAAE,CAAC,CAAC;EACtDpT,QAAQ,CAACO,IAAI,CAAC8S,cAAc,EAAEhT,IAAI,EAAE,gBAAgB,EAAEgT,cAAc,EAAE,CAAC,CAAC;EACxErT,QAAQ,CAACO,IAAI,CAAC+S,aAAa,EAAEjT,IAAI,EAAE,eAAe,EAAEiT,aAAa,EAAE,CAAC,CAAC;EACrEtT,QAAQ,CAACO,IAAI,CAACgT,KAAK,EAAElT,IAAI,EAAE,OAAO,EAAEkT,KAAK,CAAC;EAC1C,OAAOlT,IAAI;AACb;AACO,SAASoT,sBAAsBA,CACpCvP,EAAgB,EAChB/D,KAAiB,EACjB8F,QAAiB,EACjBuG,OAAgB,EAChBkH,MAAe,EACW;EAC1B,MAAMrT,IAA8B,GAAG;IACrCC,IAAI,EAAE,wBAAwB;IAC9B4D,EAAE;IACF/D,KAAK;IACL8F,QAAQ;IACRwG,MAAM,EAAED,OAAO;IACfkH;EACF,CAAC;EACD,MAAMnT,IAAI,GAAGN,WAAW,CAAC0T,sBAAsB;EAC/C3T,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,EAAE,CAAC,CAAC;EAC7CH,QAAQ,CAACO,IAAI,CAAC0F,QAAQ,EAAE5F,IAAI,EAAE,UAAU,EAAE4F,QAAQ,CAAC;EACnDjG,QAAQ,CAACO,IAAI,CAACkM,MAAM,EAAEpM,IAAI,EAAE,QAAQ,EAAEmM,OAAO,CAAC;EAC9CxM,QAAQ,CAACO,IAAI,CAACmT,MAAM,EAAErT,IAAI,EAAE,QAAQ,EAAEqT,MAAM,CAAC;EAC7C,OAAOrT,IAAI;AACb;AACO,SAASuT,sBAAsBA,CACpCzT,KAAiB,EACS;EAC1B,MAAME,IAA8B,GAAG;IACrCC,IAAI,EAAE,wBAAwB;IAC9BH,KAAK;IACLsM,MAAM,EAAE;EACV,CAAC;EACD,MAAMlM,IAAI,GAAGN,WAAW,CAAC4T,sBAAsB;EAC/C7T,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOE,IAAI;AACb;AACO,SAASyT,iBAAiBA,CAC/B5P,EAAmC,GAAG,IAAI,EAC1C2C,GAAe,EACf1G,KAAiB,EACjB4T,QAA2B,GAAG,IAAI,EACb;EACrB,MAAM1T,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzB4D,EAAE;IACF2C,GAAG;IACH1G,KAAK;IACL4T,QAAQ;IACRtH,MAAM,EAAE;EACV,CAAC;EACD,MAAMlM,IAAI,GAAGN,WAAW,CAAC+T,iBAAiB;EAC1ChU,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,EAAE,CAAC,CAAC;EAC7CH,QAAQ,CAACO,IAAI,CAACwT,QAAQ,EAAE1T,IAAI,EAAE,UAAU,EAAE0T,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO1T,IAAI;AACb;AACO,SAAS4T,kBAAkBA,CAChCpN,GAAmC,EACnC1G,KAAiB,EACjB4T,QAA2B,GAAG,IAAI,EACZ;EACtB,MAAM1T,IAA0B,GAAG;IACjCC,IAAI,EAAE,oBAAoB;IAC1BuG,GAAG;IACH1G,KAAK;IACL4T,QAAQ;IACRnN,IAAI,EAAE,IAAI;IACV8M,MAAM,EAAE,IAAI;IACZzN,QAAQ,EAAE,IAAI;IACdiO,KAAK,EAAE,IAAI;IACXzH,MAAM,EAAE;EACV,CAAC;EACD,MAAMlM,IAAI,GAAGN,WAAW,CAACkU,kBAAkB;EAC3CnU,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,EAAE,CAAC,CAAC;EAC7CH,QAAQ,CAACO,IAAI,CAACwT,QAAQ,EAAE1T,IAAI,EAAE,UAAU,EAAE0T,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO1T,IAAI;AACb;AACO,SAAS+T,wBAAwBA,CACtChN,QAAoB,EACQ;EAC5B,MAAM/G,IAAgC,GAAG;IACvCC,IAAI,EAAE,0BAA0B;IAChC8G;EACF,CAAC;EACD,MAAM7G,IAAI,GAAGN,WAAW,CAACoU,wBAAwB;EACjDrU,QAAQ,CAACO,IAAI,CAAC6G,QAAQ,EAAE/G,IAAI,EAAE,UAAU,EAAE+G,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO/G,IAAI;AACb;AACO,SAASiU,UAAUA,CACxBpQ,EAAgB,EAChB4L,cAA6D,GAAG,IAAI,EACpEiB,SAAwC,GAAG,IAAI,EAC/CwD,QAAoB,EACN;EACd,MAAMlU,IAAkB,GAAG;IACzBC,IAAI,EAAE,YAAY;IAClB4D,EAAE;IACF4L,cAAc;IACdiB,SAAS;IACTwD;EACF,CAAC;EACD,MAAMhU,IAAI,GAAGN,WAAW,CAACuU,UAAU;EACnCxU,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAACwQ,SAAS,EAAE1Q,IAAI,EAAE,WAAW,EAAE0Q,SAAS,EAAE,CAAC,CAAC;EACzD/Q,QAAQ,CAACO,IAAI,CAACgU,QAAQ,EAAElU,IAAI,EAAE,UAAU,EAAEkU,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAOlU,IAAI;AACb;AACO,SAASoU,uBAAuBA,CACrCvQ,EAAgB,EAChBwQ,aAAuD,EAC5B;EAC3B,MAAMrU,IAA+B,GAAG;IACtCC,IAAI,EAAE,yBAAyB;IAC/B4D,EAAE;IACFwQ;EACF,CAAC;EACD,MAAMnU,IAAI,GAAGN,WAAW,CAAC0U,uBAAuB;EAChD3U,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACmU,aAAa,EAAErU,IAAI,EAAE,eAAe,EAAEqU,aAAa,EAAE,CAAC,CAAC;EACrE,OAAOrU,IAAI;AACb;AACO,SAASuU,2BAA2BA,CACzCzU,KAAa,EACkB;EAC/B,MAAME,IAAmC,GAAG;IAC1CC,IAAI,EAAE,6BAA6B;IACnCH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAAC4U,2BAA2B;EACpD7U,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,CAAC;EAC1C,OAAOE,IAAI;AACb;AACO,SAASyU,oBAAoBA,CAAA,EAA2B;EAC7D,OAAO;IACLxU,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAASyU,oBAAoBA,CAAA,EAA2B;EAC7D,OAAO;IACLzU,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAAS0U,kBAAkBA,CAAA,EAAyB;EACzD,OAAO;IACL1U,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAAS2U,mBAAmBA,CACjCvC,KAAmB,EACI;EACvB,MAAMrS,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3BoS;EACF,CAAC;EACD,MAAMnS,IAAI,GAAGN,WAAW,CAACiV,mBAAmB;EAC5ClV,QAAQ,CAACO,IAAI,CAACmS,KAAK,EAAErS,IAAI,EAAE,OAAO,EAAEqS,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOrS,IAAI;AACb;AACO,SAAS8U,oBAAoBA,CAClC/N,QAAoB,EACI;EACxB,MAAM/G,IAA4B,GAAG;IACnCC,IAAI,EAAE,sBAAsB;IAC5B8G;EACF,CAAC;EACD,MAAM7G,IAAI,GAAGN,WAAW,CAACmV,oBAAoB;EAC7CpV,QAAQ,CAACO,IAAI,CAAC6G,QAAQ,EAAE/G,IAAI,EAAE,UAAU,EAAE+G,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO/G,IAAI;AACb;AACO,SAASgV,SAASA,CACvBnR,EAAgB,EAChB4L,cAA6D,GAAG,IAAI,EACpE/O,KAAiB,EACJ;EACb,MAAMV,IAAiB,GAAG;IACxBC,IAAI,EAAE,WAAW;IACjB4D,EAAE;IACF4L,cAAc;IACd/O;EACF,CAAC;EACD,MAAMR,IAAI,GAAGN,WAAW,CAACqV,SAAS;EAClCtV,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAACQ,KAAK,EAAEV,IAAI,EAAE,OAAO,EAAEU,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOV,IAAI;AACb;AACO,SAASkO,cAAcA,CAACA,cAA0B,EAAoB;EAC3E,MAAMlO,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBiO;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAACsV,cAAc;EACvCvV,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AACO,SAASmV,kBAAkBA,CAChCpS,UAAwB,EACxBmL,cAAgC,EACV;EACtB,MAAMlO,IAA0B,GAAG;IACjCC,IAAI,EAAE,oBAAoB;IAC1B8C,UAAU;IACVmL;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAACwV,kBAAkB;EAC3CzV,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5DpD,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AACO,SAASqV,aAAaA,CAC3BC,KAA8B,GAAG,IAAI,EACrCC,QAA2B,GAAG,IAAI,EAClC7B,QAA2B,GAAG,IAAI,EACjB;EACjB,MAAM1T,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrBqV,KAAK;IACLE,OAAO,EAAED,QAAQ;IACjB7B,QAAQ;IACRrP,IAAI,EAAE;EACR,CAAC;EACD,MAAMnE,IAAI,GAAGN,WAAW,CAAC6V,aAAa;EACtC9V,QAAQ,CAACO,IAAI,CAACoV,KAAK,EAAEtV,IAAI,EAAE,OAAO,EAAEsV,KAAK,EAAE,CAAC,CAAC;EAC7C3V,QAAQ,CAACO,IAAI,CAACsV,OAAO,EAAExV,IAAI,EAAE,SAAS,EAAEuV,QAAQ,EAAE,CAAC,CAAC;EACpD5V,QAAQ,CAACO,IAAI,CAACwT,QAAQ,EAAE1T,IAAI,EAAE,UAAU,EAAE0T,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO1T,IAAI;AACb;AACO,SAAS0V,wBAAwBA,CACtC5R,MAAyB,EACG;EAC5B,MAAM9D,IAAgC,GAAG;IACvCC,IAAI,EAAE,0BAA0B;IAChC6D;EACF,CAAC;EACD,MAAM5D,IAAI,GAAGN,WAAW,CAAC+V,wBAAwB;EACjDhW,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChD,OAAO9D,IAAI;AACb;AACO,SAAS4V,0BAA0BA,CACxC9R,MAAoB,EACU;EAC9B,MAAM9D,IAAkC,GAAG;IACzCC,IAAI,EAAE,4BAA4B;IAClC6D;EACF,CAAC;EACD,MAAM5D,IAAI,GAAGN,WAAW,CAACiW,0BAA0B;EACnDlW,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChD,OAAO9D,IAAI;AACb;AACO,SAAS8V,mBAAmBA,CACjCzD,KAAmB,EACI;EACvB,MAAMrS,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3BoS;EACF,CAAC;EACD,MAAMnS,IAAI,GAAGN,WAAW,CAACmW,mBAAmB;EAC5CpW,QAAQ,CAACO,IAAI,CAACmS,KAAK,EAAErS,IAAI,EAAE,OAAO,EAAEqS,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOrS,IAAI;AACb;AACO,SAAS0T,QAAQA,CAACnN,IAAsB,EAAc;EAC3D,MAAMvG,IAAgB,GAAG;IACvBC,IAAI,EAAE,UAAU;IAChBsG;EACF,CAAC;EACD,MAAMrG,IAAI,GAAGN,WAAW,CAACoW,QAAQ;EACjCrW,QAAQ,CAACO,IAAI,CAACqG,IAAI,EAAEvG,IAAI,EAAE,MAAM,EAAEuG,IAAI,CAAC;EACvC,OAAOvG,IAAI;AACb;AACO,SAASiW,kBAAkBA,CAAA,EAAyB;EACzD,OAAO;IACLhW,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAASiW,eAAeA,CAC7BrS,EAAgB,EAChBxC,IAIoB,EACD;EACnB,MAAMrB,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvB4D,EAAE;IACFxC;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAACuW,eAAe;EACxCxW,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAASoW,eAAeA,CAC7BC,OAA8B,EACX;EACnB,MAAMrW,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBoW,OAAO;IACPC,YAAY,EAAE,IAAI;IAClBC,iBAAiB,EAAE;EACrB,CAAC;EACD,MAAMrW,IAAI,GAAGN,WAAW,CAAC4W,eAAe;EACxC7W,QAAQ,CAACO,IAAI,CAACmW,OAAO,EAAErW,IAAI,EAAE,SAAS,EAAEqW,OAAO,EAAE,CAAC,CAAC;EACnD,OAAOrW,IAAI;AACb;AACO,SAASyW,cAAcA,CAC5BJ,OAA6B,EACX;EAClB,MAAMrW,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBoW,OAAO;IACPC,YAAY,EAAE,IAAI;IAClBC,iBAAiB,EAAE;EACrB,CAAC;EACD,MAAMrW,IAAI,GAAGN,WAAW,CAAC8W,cAAc;EACvC/W,QAAQ,CAACO,IAAI,CAACmW,OAAO,EAAErW,IAAI,EAAE,SAAS,EAAEqW,OAAO,EAAE,CAAC,CAAC;EACnD,OAAOrW,IAAI;AACb;AACO,SAAS2W,cAAcA,CAC5BN,OAAuD,EACrC;EAClB,MAAMrW,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBoW,OAAO;IACPC,YAAY,EAAE,IAAI;IAClBC,iBAAiB,EAAE;EACrB,CAAC;EACD,MAAMrW,IAAI,GAAGN,WAAW,CAACgX,cAAc;EACvCjX,QAAQ,CAACO,IAAI,CAACmW,OAAO,EAAErW,IAAI,EAAE,SAAS,EAAEqW,OAAO,EAAE,CAAC,CAAC;EACnD,OAAOrW,IAAI;AACb;AACO,SAAS6W,cAAcA,CAC5BR,OAAgC,EACd;EAClB,MAAMrW,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBoW,OAAO;IACPE,iBAAiB,EAAE;EACrB,CAAC;EACD,MAAMrW,IAAI,GAAGN,WAAW,CAACkX,cAAc;EACvCnX,QAAQ,CAACO,IAAI,CAACmW,OAAO,EAAErW,IAAI,EAAE,SAAS,EAAEqW,OAAO,EAAE,CAAC,CAAC;EACnD,OAAOrW,IAAI;AACb;AACO,SAAS+W,iBAAiBA,CAAClT,EAAgB,EAAuB;EACvE,MAAM7D,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzB4D,EAAE;IACFJ,IAAI,EAAE;EACR,CAAC;EACD,MAAMvD,IAAI,GAAGN,WAAW,CAACoX,iBAAiB;EAC1CrX,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpC,OAAO7D,IAAI;AACb;AACO,SAASiX,gBAAgBA,CAC9BpT,EAAgB,EAChBJ,IAAsB,EACF;EACpB,MAAMzD,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxB4D,EAAE;IACFJ;EACF,CAAC;EACD,MAAMvD,IAAI,GAAGN,WAAW,CAACsX,gBAAgB;EACzCvX,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuD,IAAI,EAAEzD,IAAI,EAAE,MAAM,EAAEyD,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOzD,IAAI;AACb;AACO,SAASmX,gBAAgBA,CAC9BtT,EAAgB,EAChBJ,IAAqB,EACD;EACpB,MAAMzD,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxB4D,EAAE;IACFJ;EACF,CAAC;EACD,MAAMvD,IAAI,GAAGN,WAAW,CAACwX,gBAAgB;EACzCzX,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuD,IAAI,EAAEzD,IAAI,EAAE,MAAM,EAAEyD,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOzD,IAAI;AACb;AACO,SAASqX,mBAAmBA,CAACxT,EAAgB,EAAyB;EAC3E,MAAM7D,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3B4D;EACF,CAAC;EACD,MAAM3D,IAAI,GAAGN,WAAW,CAAC0X,mBAAmB;EAC5C3X,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpC,OAAO7D,IAAI;AACb;AACO,SAASuX,iBAAiBA,CAC/BC,UAAsB,EACtBC,SAAqB,EACA;EACrB,MAAMzX,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzBuX,UAAU;IACVC;EACF,CAAC;EACD,MAAMvX,IAAI,GAAGN,WAAW,CAAC8X,iBAAiB;EAC1C/X,QAAQ,CAACO,IAAI,CAACsX,UAAU,EAAExX,IAAI,EAAE,YAAY,EAAEwX,UAAU,EAAE,CAAC,CAAC;EAC5D7X,QAAQ,CAACO,IAAI,CAACuX,SAAS,EAAEzX,IAAI,EAAE,WAAW,EAAEyX,SAAS,EAAE,CAAC,CAAC;EACzD,OAAOzX,IAAI;AACb;AACO,SAAS2X,yBAAyBA,CACvCH,UAAsB,EACtBC,SAAqB,EACQ;EAC7B,MAAMzX,IAAiC,GAAG;IACxCC,IAAI,EAAE,2BAA2B;IACjCuX,UAAU;IACVC,SAAS;IACT7R,QAAQ,EAAE;EACZ,CAAC;EACD,MAAM1F,IAAI,GAAGN,WAAW,CAACgY,yBAAyB;EAClDjY,QAAQ,CAACO,IAAI,CAACsX,UAAU,EAAExX,IAAI,EAAE,YAAY,EAAEwX,UAAU,EAAE,CAAC,CAAC;EAC5D7X,QAAQ,CAACO,IAAI,CAACuX,SAAS,EAAEzX,IAAI,EAAE,WAAW,EAAEyX,SAAS,EAAE,CAAC,CAAC;EACzD,OAAOzX,IAAI;AACb;AACO,SAAS6X,YAAYA,CAC1BxT,IAA2C,EAC3CvE,KAKQ,GAAG,IAAI,EACC;EAChB,MAAME,IAAoB,GAAG;IAC3BC,IAAI,EAAE,cAAc;IACpBoE,IAAI;IACJvE;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAACkY,YAAY;EACrCnY,QAAQ,CAACO,IAAI,CAACmE,IAAI,EAAErE,IAAI,EAAE,MAAM,EAAEqE,IAAI,EAAE,CAAC,CAAC;EAC1C1E,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOE,IAAI;AACb;AAEO,SAAS+X,iBAAiBA,CAC/B1T,IAAmE,EAC9C;EACrB,MAAMrE,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzBoE;EACF,CAAC;EACD,MAAMnE,IAAI,GAAGN,WAAW,CAACoY,iBAAiB;EAC1CrY,QAAQ,CAACO,IAAI,CAACmE,IAAI,EAAErE,IAAI,EAAE,MAAM,EAAEqE,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrE,IAAI;AACb;AAEO,SAASiY,UAAUA,CACxBC,cAAmC,EACnCC,cAAsD,GAAG,IAAI,EAC7DC,QAMG,EACHC,WAA2B,GAAG,IAAI,EACpB;EACd,MAAMrY,IAAkB,GAAG;IACzBC,IAAI,EAAE,YAAY;IAClBiY,cAAc;IACdC,cAAc;IACdC,QAAQ;IACRC;EACF,CAAC;EACD,MAAMnY,IAAI,GAAGN,WAAW,CAAC0Y,UAAU;EACnC3Y,QAAQ,CAACO,IAAI,CAACgY,cAAc,EAAElY,IAAI,EAAE,gBAAgB,EAAEkY,cAAc,EAAE,CAAC,CAAC;EACxEvY,QAAQ,CAACO,IAAI,CAACiY,cAAc,EAAEnY,IAAI,EAAE,gBAAgB,EAAEmY,cAAc,EAAE,CAAC,CAAC;EACxExY,QAAQ,CAACO,IAAI,CAACkY,QAAQ,EAAEpY,IAAI,EAAE,UAAU,EAAEoY,QAAQ,EAAE,CAAC,CAAC;EACtDzY,QAAQ,CAACO,IAAI,CAACmY,WAAW,EAAErY,IAAI,EAAE,aAAa,EAAEqY,WAAW,CAAC;EAC5D,OAAOrY,IAAI;AACb;AAEO,SAASuY,kBAAkBA,CAAA,EAAyB;EACzD,OAAO;IACLtY,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAASuY,sBAAsBA,CACpCzV,UAA+C,EACrB;EAC1B,MAAM/C,IAA8B,GAAG;IACrCC,IAAI,EAAE,wBAAwB;IAC9B8C;EACF,CAAC;EACD,MAAM7C,IAAI,GAAGN,WAAW,CAAC6Y,sBAAsB;EAC/C9Y,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO/C,IAAI;AACb;AAEO,SAAS0Y,cAAcA,CAAC3V,UAAwB,EAAoB;EACzE,MAAM/C,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtB8C;EACF,CAAC;EACD,MAAM7C,IAAI,GAAGN,WAAW,CAAC+Y,cAAc;EACvChZ,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO/C,IAAI;AACb;AAEO,SAAS4Y,aAAaA,CAACvU,IAAY,EAAmB;EAC3D,MAAMrE,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrBoE;EACF,CAAC;EACD,MAAMnE,IAAI,GAAGN,WAAW,CAACiZ,aAAa;EACtClZ,QAAQ,CAACO,IAAI,CAACmE,IAAI,EAAErE,IAAI,EAAE,MAAM,EAAEqE,IAAI,CAAC;EACvC,OAAOrE,IAAI;AACb;AAEO,SAAS8Y,mBAAmBA,CACjCrT,MAA+C,EAC/CC,QAAyB,EACF;EACvB,MAAM1F,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3BwF,MAAM;IACNC;EACF,CAAC;EACD,MAAMxF,IAAI,GAAGN,WAAW,CAACmZ,mBAAmB;EAC5CpZ,QAAQ,CAACO,IAAI,CAACuF,MAAM,EAAEzF,IAAI,EAAE,QAAQ,EAAEyF,MAAM,EAAE,CAAC,CAAC;EAChD9F,QAAQ,CAACO,IAAI,CAACwF,QAAQ,EAAE1F,IAAI,EAAE,UAAU,EAAE0F,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO1F,IAAI;AACb;AAEO,SAASgZ,iBAAiBA,CAC/BC,SAA0B,EAC1B5U,IAAqB,EACA;EACrB,MAAMrE,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzBgZ,SAAS;IACT5U;EACF,CAAC;EACD,MAAMnE,IAAI,GAAGN,WAAW,CAACsZ,iBAAiB;EAC1CvZ,QAAQ,CAACO,IAAI,CAAC+Y,SAAS,EAAEjZ,IAAI,EAAE,WAAW,EAAEiZ,SAAS,EAAE,CAAC,CAAC;EACzDtZ,QAAQ,CAACO,IAAI,CAACmE,IAAI,EAAErE,IAAI,EAAE,MAAM,EAAEqE,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrE,IAAI;AACb;AAEO,SAASmZ,iBAAiBA,CAC/B9U,IAAmE,EACnE8F,UAAqD,EACrDkO,WAAoB,GAAG,KAAK,EACP;EACrB,MAAMrY,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzBoE,IAAI;IACJ8F,UAAU;IACVkO;EACF,CAAC;EACD,MAAMnY,IAAI,GAAGN,WAAW,CAACwZ,iBAAiB;EAC1CzZ,QAAQ,CAACO,IAAI,CAACmE,IAAI,EAAErE,IAAI,EAAE,MAAM,EAAEqE,IAAI,EAAE,CAAC,CAAC;EAC1C1E,QAAQ,CAACO,IAAI,CAACiK,UAAU,EAAEnK,IAAI,EAAE,YAAY,EAAEmK,UAAU,EAAE,CAAC,CAAC;EAC5DxK,QAAQ,CAACO,IAAI,CAACmY,WAAW,EAAErY,IAAI,EAAE,aAAa,EAAEqY,WAAW,CAAC;EAC5D,OAAOrY,IAAI;AACb;AAEO,SAASqZ,kBAAkBA,CAChCtS,QAAsB,EACA;EACtB,MAAM/G,IAA0B,GAAG;IACjCC,IAAI,EAAE,oBAAoB;IAC1B8G;EACF,CAAC;EACD,MAAM7G,IAAI,GAAGN,WAAW,CAAC0Z,kBAAkB;EAC3C3Z,QAAQ,CAACO,IAAI,CAAC6G,QAAQ,EAAE/G,IAAI,EAAE,UAAU,EAAE+G,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO/G,IAAI;AACb;AAEO,SAASuZ,OAAOA,CAACzZ,KAAa,EAAa;EAChD,MAAME,IAAe,GAAG;IACtBC,IAAI,EAAE,SAAS;IACfH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAAC4Z,OAAO;EAChC7Z,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,CAAC;EAC1C,OAAOE,IAAI;AACb;AAEO,SAASyZ,WAAWA,CACzBC,eAAqC,EACrCC,eAAqC,EACrCvB,QAMG,EACY;EACf,MAAMpY,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnByZ,eAAe;IACfC,eAAe;IACfvB;EACF,CAAC;EACD,MAAMlY,IAAI,GAAGN,WAAW,CAACga,WAAW;EACpCja,QAAQ,CAACO,IAAI,CAACwZ,eAAe,EAAE1Z,IAAI,EAAE,iBAAiB,EAAE0Z,eAAe,EAAE,CAAC,CAAC;EAC3E/Z,QAAQ,CAACO,IAAI,CAACyZ,eAAe,EAAE3Z,IAAI,EAAE,iBAAiB,EAAE2Z,eAAe,EAAE,CAAC,CAAC;EAC3Eha,QAAQ,CAACO,IAAI,CAACkY,QAAQ,EAAEpY,IAAI,EAAE,UAAU,EAAEoY,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAOpY,IAAI;AACb;AAEO,SAAS6Z,kBAAkBA,CAAA,EAAyB;EACzD,OAAO;IACL5Z,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAAS6Z,kBAAkBA,CAAA,EAAyB;EACzD,OAAO;IACL7Z,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAAS8Z,IAAIA,CAAA,EAAW;EAC7B,OAAO;IACL9Z,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAAS+Z,WAAWA,CACzBC,YAQa,EACb5V,IAAkB,EACH;EACf,MAAMrE,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnBga,YAAY;IACZ5V;EACF,CAAC;EACD,MAAMnE,IAAI,GAAGN,WAAW,CAACsa,WAAW;EACpCva,QAAQ,CAACO,IAAI,CAAC+Z,YAAY,EAAEja,IAAI,EAAE,cAAc,EAAEia,YAAY,CAAC;EAC/Dta,QAAQ,CAACO,IAAI,CAACmE,IAAI,EAAErE,IAAI,EAAE,MAAM,EAAEqE,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrE,IAAI;AACb;AACO,SAASma,qBAAqBA,CAAC9V,IAAY,EAA2B;EAC3E,MAAMrE,IAA6B,GAAG;IACpCC,IAAI,EAAE,uBAAuB;IAC7BoE;EACF,CAAC;EACD,MAAMnE,IAAI,GAAGN,WAAW,CAACwa,qBAAqB;EAC9Cza,QAAQ,CAACO,IAAI,CAACmE,IAAI,EAAErE,IAAI,EAAE,MAAM,EAAEqE,IAAI,CAAC;EACvC,OAAOrE,IAAI;AACb;AACO,SAASqa,mBAAmBA,CAAA,EAA0B;EAC3D,OAAO;IACLpa,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAASqa,cAAcA,CAC5B7U,MAAoB,EACpB7D,MAAoB,EACF;EAClB,MAAM5B,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBwF,MAAM;IACN7D;EACF,CAAC;EACD,MAAM1B,IAAI,GAAGN,WAAW,CAAC2a,cAAc;EACvC5a,QAAQ,CAACO,IAAI,CAACuF,MAAM,EAAEzF,IAAI,EAAE,QAAQ,EAAEyF,MAAM,EAAE,CAAC,CAAC;EAChD9F,QAAQ,CAACO,IAAI,CAAC0B,MAAM,EAAE5B,IAAI,EAAE,QAAQ,EAAE4B,MAAM,EAAE,CAAC,CAAC;EAChD,OAAO5B,IAAI;AACb;AACO,SAASwa,SAASA,CAACzX,UAAwB,EAAe;EAC/D,MAAM/C,IAAiB,GAAG;IACxBC,IAAI,EAAE,WAAW;IACjB8C;EACF,CAAC;EACD,MAAM7C,IAAI,GAAGN,WAAW,CAAC6a,SAAS;EAClC9a,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO/C,IAAI;AACb;AACO,SAAS0a,YAAYA,CAC1BrZ,IAAsB,EACtB2C,KAAc,GAAG,KAAK,EACN;EAChB,MAAMhE,IAAoB,GAAG;IAC3BC,IAAI,EAAE,cAAc;IACpBoB,IAAI;IACJ2C;EACF,CAAC;EACD,MAAM9D,IAAI,GAAGN,WAAW,CAAC+a,YAAY;EACrChb,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C1B,QAAQ,CAACO,IAAI,CAAC8D,KAAK,EAAEhE,IAAI,EAAE,OAAO,EAAEgE,KAAK,CAAC;EAC1C,OAAOhE,IAAI;AACb;AACO,SAAS4a,sBAAsBA,CACpC/P,QAAsB,EACI;EAC1B,MAAM7K,IAA8B,GAAG;IACrCC,IAAI,EAAE,wBAAwB;IAC9B4K;EACF,CAAC;EACD,MAAM3K,IAAI,GAAGN,WAAW,CAACib,sBAAsB;EAC/Clb,QAAQ,CAACO,IAAI,CAAC2K,QAAQ,EAAE7K,IAAI,EAAE,UAAU,EAAE6K,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO7K,IAAI;AACb;AACO,SAAS8a,gBAAgBA,CAC9B1U,UAAkD,EAC9B;EACpB,MAAMpG,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxBmG;EACF,CAAC;EACD,MAAMlG,IAAI,GAAGN,WAAW,CAACmb,gBAAgB;EACzCpb,QAAQ,CAACO,IAAI,CAACkG,UAAU,EAAEpG,IAAI,EAAE,YAAY,EAAEoG,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOpG,IAAI;AACb;AACO,SAASgb,eAAeA,CAC7B3a,QAA4C,GAAG,EAAE,EAC9B;EACnB,MAAML,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBI;EACF,CAAC;EACD,MAAMH,IAAI,GAAGN,WAAW,CAACqb,eAAe;EACxCtb,QAAQ,CAACO,IAAI,CAACG,QAAQ,EAAEL,IAAI,EAAE,UAAU,EAAEK,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAOL,IAAI;AACb;AACO,SAASkb,cAAcA,CAACpb,KAAa,EAAoB;EAC9D,MAAME,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBH;EACF,CAAC;EACD,MAAMI,IAAI,GAAGN,WAAW,CAACub,cAAc;EACvCxb,QAAQ,CAACO,IAAI,CAACJ,KAAK,EAAEE,IAAI,EAAE,OAAO,EAAEF,KAAK,CAAC;EAC1C,OAAOE,IAAI;AACb;AACO,SAASob,gBAAgBA,CAAC/Z,IAAe,EAAsB;EACpE,MAAMrB,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxBoB;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAACyb,gBAAgB;EACzC1b,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AACO,SAASsb,cAAcA,CAAA,EAAqB;EACjD,OAAO;IACLrb,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAASsb,uBAAuBA,CACrCxY,UAAwB,EACG;EAC3B,MAAM/C,IAA+B,GAAG;IACtCC,IAAI,EAAE,yBAAyB;IAC/B8C;EACF,CAAC;EACD,MAAM7C,IAAI,GAAGN,WAAW,CAAC4b,uBAAuB;EAChD7b,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO/C,IAAI;AACb;AACO,SAASyb,oBAAoBA,CAClC7Z,MAAoB,EACI;EACxB,MAAM5B,IAA4B,GAAG;IACnCC,IAAI,EAAE,sBAAsB;IAC5B2B;EACF,CAAC;EACD,MAAM1B,IAAI,GAAGN,WAAW,CAAC8b,oBAAoB;EAC7C/b,QAAQ,CAACO,IAAI,CAAC0B,MAAM,EAAE5B,IAAI,EAAE,QAAQ,EAAE4B,MAAM,EAAE,CAAC,CAAC;EAChD,OAAO5B,IAAI;AACb;AACO,SAAS2b,6BAA6BA,CAAA,EAAoC;EAC/E,OAAO;IACL1b,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAAS2b,WAAWA,CAAA,EAAkB;EAC3C,OAAO;IACL3b,IAAI,EAAE;EACR,CAAC;AACH;AACO,SAAS4b,mBAAmBA,CACjCC,SAA6C,EACtB;EACvB,MAAM9b,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3B6b;EACF,CAAC;EACD,MAAM5b,IAAI,GAAGN,WAAW,CAACmc,mBAAmB;EAC5Cpc,QAAQ,CAACO,IAAI,CAAC4b,SAAS,EAAE9b,IAAI,EAAE,WAAW,EAAE8b,SAAS,EAAE,CAAC,CAAC;EACzD,OAAO9b,IAAI;AACb;AAEO,SAASgc,iBAAiBA,CAC/BnY,EAAmC,GAAG,IAAI,EAC1C4L,cAIa,GAAG,IAAI,EACpB3L,MAA6B,EAC7ByN,UAA8C,GAAG,IAAI,EAChC;EACrB,MAAMvR,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzB4D,EAAE;IACF4L,cAAc;IACd3L,MAAM;IACNyN;EACF,CAAC;EACD,MAAMrR,IAAI,GAAGN,WAAW,CAACqc,iBAAiB;EAC1Ctc,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChDnE,QAAQ,CAACO,IAAI,CAACqR,UAAU,EAAEvR,IAAI,EAAE,YAAY,EAAEuR,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOvR,IAAI;AACb;AAEO,SAASkc,eAAeA,CAC7BtV,UAA4C,GAAG,IAAI,EACnDJ,GAKgB,EAChBiJ,cAIa,GAAG,IAAI,EACpB3L,MAAuD,EACvDyN,UAA8C,GAAG,IAAI,EAClC;EACnB,MAAMvR,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvB2G,UAAU;IACVJ,GAAG;IACHiJ,cAAc;IACd3L,MAAM;IACNyN;EACF,CAAC;EACD,MAAMrR,IAAI,GAAGN,WAAW,CAACuc,eAAe;EACxCxc,QAAQ,CAACO,IAAI,CAAC0G,UAAU,EAAE5G,IAAI,EAAE,YAAY,EAAE4G,UAAU,EAAE,CAAC,CAAC;EAC5DjH,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChDnE,QAAQ,CAACO,IAAI,CAACqR,UAAU,EAAEvR,IAAI,EAAE,YAAY,EAAEuR,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAOvR,IAAI;AACb;AAEO,SAASoc,eAAeA,CAC7B3b,IAAoB,EACpBC,KAAmB,EACA;EACnB,MAAMV,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBQ,IAAI;IACJC;EACF,CAAC;EACD,MAAMR,IAAI,GAAGN,WAAW,CAACyc,eAAe;EACxC1c,QAAQ,CAACO,IAAI,CAACO,IAAI,EAAET,IAAI,EAAE,MAAM,EAAES,IAAI,EAAE,CAAC,CAAC;EAC1Cd,QAAQ,CAACO,IAAI,CAACQ,KAAK,EAAEV,IAAI,EAAE,OAAO,EAAEU,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOV,IAAI;AACb;AAEO,SAASsc,0BAA0BA,CACxC7M,cAA+D,GAAG,IAAI,EACtE8M,UAKG,EACHrO,cAAyC,GAAG,IAAI,EAClB;EAC9B,MAAMlO,IAAkC,GAAG;IACzCC,IAAI,EAAE,4BAA4B;IAClCwP,cAAc;IACd8M,UAAU;IACVrO;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAAC4c,0BAA0B;EACnD7c,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAACqc,UAAU,EAAEvc,IAAI,EAAE,YAAY,EAAEuc,UAAU,EAAE,CAAC,CAAC;EAC5D5c,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAASyc,+BAA+BA,CAC7ChN,cAA+D,GAAG,IAAI,EACtE8M,UAKG,EACHrO,cAAyC,GAAG,IAAI,EACb;EACnC,MAAMlO,IAAuC,GAAG;IAC9CC,IAAI,EAAE,iCAAiC;IACvCwP,cAAc;IACd8M,UAAU;IACVrO;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAAC8c,+BAA+B;EACxD/c,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAACqc,UAAU,EAAEvc,IAAI,EAAE,YAAY,EAAEuc,UAAU,EAAE,CAAC,CAAC;EAC5D5c,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAAS2c,mBAAmBA,CACjCnW,GAAiB,EACjB0H,cAAyC,GAAG,IAAI,EACzB;EACvB,MAAMlO,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3BuG,GAAG;IACH0H;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAACgd,mBAAmB;EAC5Cjd,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAAS6c,iBAAiBA,CAC/BrW,GAAiB,EACjBiJ,cAA+D,GAAG,IAAI,EACtE8M,UAKG,EACHrO,cAAyC,GAAG,IAAI,EAC3B;EACrB,MAAMlO,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzBuG,GAAG;IACHiJ,cAAc;IACd8M,UAAU;IACVrO,cAAc;IACd3H,IAAI,EAAE;EACR,CAAC;EACD,MAAMrG,IAAI,GAAGN,WAAW,CAACkd,iBAAiB;EAC1Cnd,QAAQ,CAACO,IAAI,CAACsG,GAAG,EAAExG,IAAI,EAAE,KAAK,EAAEwG,GAAG,EAAE,CAAC,CAAC;EACvC7G,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAACqc,UAAU,EAAEvc,IAAI,EAAE,YAAY,EAAEuc,UAAU,EAAE,CAAC,CAAC;EAC5D5c,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAAS+c,gBAAgBA,CAC9BR,UAA0B,EAC1BrO,cAAyC,GAAG,IAAI,EAC5B;EACpB,MAAMlO,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxBsc,UAAU;IACVrO;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAACod,gBAAgB;EACzCrd,QAAQ,CAACO,IAAI,CAACqc,UAAU,EAAEvc,IAAI,EAAE,YAAY,EAAEuc,UAAU,EAAE,CAAC,CAAC;EAC5D5c,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAASid,YAAYA,CAAA,EAAmB;EAC7C,OAAO;IACLhd,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAASid,gBAAgBA,CAAA,EAAuB;EACrD,OAAO;IACLjd,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAASkd,eAAeA,CAAA,EAAsB;EACnD,OAAO;IACLld,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAASmd,kBAAkBA,CAAA,EAAyB;EACzD,OAAO;IACLnd,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAASod,cAAcA,CAAA,EAAqB;EACjD,OAAO;IACLpd,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAASqd,aAAaA,CAAA,EAAoB;EAC/C,OAAO;IACLrd,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAASsd,eAAeA,CAAA,EAAsB;EACnD,OAAO;IACLtd,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAASud,eAAeA,CAAA,EAAsB;EACnD,OAAO;IACLvd,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAASwd,eAAeA,CAAA,EAAsB;EACnD,OAAO;IACLxd,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAASyd,eAAeA,CAAA,EAAsB;EACnD,OAAO;IACLzd,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAAS0d,kBAAkBA,CAAA,EAAyB;EACzD,OAAO;IACL1d,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAAS2d,gBAAgBA,CAAA,EAAuB;EACrD,OAAO;IACL3d,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAAS4d,aAAaA,CAAA,EAAoB;EAC/C,OAAO;IACL5d,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAAS6d,UAAUA,CAAA,EAAiB;EACzC,OAAO;IACL7d,IAAI,EAAE;EACR,CAAC;AACH;AAEO,SAAS8d,cAAcA,CAC5BtO,cAA+D,GAAG,IAAI,EACtE8M,UAKG,EACHrO,cAAyC,GAAG,IAAI,EAC9B;EAClB,MAAMlO,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBwP,cAAc;IACd8M,UAAU;IACVrO;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAACoe,cAAc;EACvCre,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAACqc,UAAU,EAAEvc,IAAI,EAAE,YAAY,EAAEuc,UAAU,EAAE,CAAC,CAAC;EAC5D5c,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAASie,iBAAiBA,CAC/BxO,cAA+D,GAAG,IAAI,EACtE8M,UAKG,EACHrO,cAAyC,GAAG,IAAI,EAC3B;EACrB,MAAMlO,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzBwP,cAAc;IACd8M,UAAU;IACVrO;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAACse,iBAAiB;EAC1Cve,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAACqc,UAAU,EAAEvc,IAAI,EAAE,YAAY,EAAEuc,UAAU,EAAE,CAAC,CAAC;EAC5D5c,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAASme,eAAeA,CAC7BC,QAAwB,EACxB3O,cAAqD,GAAG,IAAI,EACzC;EACnB,MAAMzP,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBme,QAAQ;IACR3O;EACF,CAAC;EACD,MAAMvP,IAAI,GAAGN,WAAW,CAACye,eAAe;EACxC1e,QAAQ,CAACO,IAAI,CAACke,QAAQ,EAAEpe,IAAI,EAAE,UAAU,EAAEoe,QAAQ,EAAE,CAAC,CAAC;EACtDze,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOzP,IAAI;AACb;AAEO,SAASse,eAAeA,CAC7BC,aAA0C,EAC1CrQ,cAAyC,GAAG,IAAI,EAChDsQ,OAAuB,GAAG,IAAI,EACX;EACnB,MAAMxe,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBse,aAAa;IACbrQ,cAAc;IACdsQ;EACF,CAAC;EACD,MAAMte,IAAI,GAAGN,WAAW,CAAC6e,eAAe;EACxC9e,QAAQ,CAACO,IAAI,CAACqe,aAAa,EAAEve,IAAI,EAAE,eAAe,EAAEue,aAAa,EAAE,CAAC,CAAC;EACrE5e,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxEvO,QAAQ,CAACO,IAAI,CAACse,OAAO,EAAExe,IAAI,EAAE,SAAS,EAAEwe,OAAO,CAAC;EAChD,OAAOxe,IAAI;AACb;AAEO,SAAS0e,WAAWA,CACzBC,QAAyC,EACzClP,cAAqD,GAAG,IAAI,EAC7C;EACf,MAAMzP,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnB0e,QAAQ;IACRlP;EACF,CAAC;EACD,MAAMvP,IAAI,GAAGN,WAAW,CAACgf,WAAW;EACpCjf,QAAQ,CAACO,IAAI,CAACye,QAAQ,EAAE3e,IAAI,EAAE,UAAU,EAAE2e,QAAQ,EAAE,CAAC,CAAC;EACtDhf,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOzP,IAAI;AACb;AAEO,SAAS6e,aAAaA,CAACxI,OAA0B,EAAmB;EACzE,MAAMrW,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrBoW;EACF,CAAC;EACD,MAAMnW,IAAI,GAAGN,WAAW,CAACkf,aAAa;EACtCnf,QAAQ,CAACO,IAAI,CAACmW,OAAO,EAAErW,IAAI,EAAE,SAAS,EAAEqW,OAAO,EAAE,CAAC,CAAC;EACnD,OAAOrW,IAAI;AACb;AAEO,SAAS+e,WAAWA,CAAC7P,WAAqB,EAAiB;EAChE,MAAMlP,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnBiP;EACF,CAAC;EACD,MAAMhP,IAAI,GAAGN,WAAW,CAACof,WAAW;EACpCrf,QAAQ,CAACO,IAAI,CAACgP,WAAW,EAAElP,IAAI,EAAE,aAAa,EAAEkP,WAAW,EAAE,CAAC,CAAC;EAC/D,OAAOlP,IAAI;AACb;AAEO,SAASif,WAAWA,CACzBC,YAAiD,EAClC;EACf,MAAMlf,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnBif;EACF,CAAC;EACD,MAAMhf,IAAI,GAAGN,WAAW,CAACuf,WAAW;EACpCxf,QAAQ,CAACO,IAAI,CAACgf,YAAY,EAAElf,IAAI,EAAE,cAAc,EAAEkf,YAAY,EAAE,CAAC,CAAC;EAClE,OAAOlf,IAAI;AACb;AAEO,SAASof,cAAcA,CAAClR,cAAwB,EAAoB;EACzE,MAAMlO,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBiO;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAACyf,cAAc;EACvC1f,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAASsf,UAAUA,CAACpR,cAAwB,EAAgB;EACjE,MAAMlO,IAAkB,GAAG;IACzBC,IAAI,EAAE,YAAY;IAClBiO;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAAC2f,UAAU;EACnC5f,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAASwf,kBAAkBA,CAChC/d,KAAmB,EACnByN,WAAqB,EACrBtJ,QAAiB,GAAG,KAAK,EACH;EACtB,MAAM5F,IAA0B,GAAG;IACjCC,IAAI,EAAE,oBAAoB;IAC1BwB,KAAK;IACLyN,WAAW;IACXtJ;EACF,CAAC;EACD,MAAM1F,IAAI,GAAGN,WAAW,CAAC6f,kBAAkB;EAC3C9f,QAAQ,CAACO,IAAI,CAACuB,KAAK,EAAEzB,IAAI,EAAE,OAAO,EAAEyB,KAAK,EAAE,CAAC,CAAC;EAC7C9B,QAAQ,CAACO,IAAI,CAACgP,WAAW,EAAElP,IAAI,EAAE,aAAa,EAAEkP,WAAW,EAAE,CAAC,CAAC;EAC/DvP,QAAQ,CAACO,IAAI,CAAC0F,QAAQ,EAAE5F,IAAI,EAAE,UAAU,EAAE4F,QAAQ,CAAC;EACnD,OAAO5F,IAAI;AACb;AAEO,SAAS0f,WAAWA,CAACrN,KAAiB,EAAiB;EAC5D,MAAMrS,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnBoS;EACF,CAAC;EACD,MAAMnS,IAAI,GAAGN,WAAW,CAAC+f,WAAW;EACpChgB,QAAQ,CAACO,IAAI,CAACmS,KAAK,EAAErS,IAAI,EAAE,OAAO,EAAEqS,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOrS,IAAI;AACb;AAEO,SAAS4f,kBAAkBA,CAACvN,KAAiB,EAAwB;EAC1E,MAAMrS,IAA0B,GAAG;IACjCC,IAAI,EAAE,oBAAoB;IAC1BoS;EACF,CAAC;EACD,MAAMnS,IAAI,GAAGN,WAAW,CAACigB,kBAAkB;EAC3ClgB,QAAQ,CAACO,IAAI,CAACmS,KAAK,EAAErS,IAAI,EAAE,OAAO,EAAEqS,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOrS,IAAI;AACb;AAEO,SAAS8f,iBAAiBA,CAC/BC,SAAmB,EACnBC,WAAqB,EACrBC,QAAkB,EAClBC,SAAmB,EACE;EACrB,MAAMlgB,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzB8f,SAAS;IACTC,WAAW;IACXC,QAAQ;IACRC;EACF,CAAC;EACD,MAAMhgB,IAAI,GAAGN,WAAW,CAACugB,iBAAiB;EAC1CxgB,QAAQ,CAACO,IAAI,CAAC6f,SAAS,EAAE/f,IAAI,EAAE,WAAW,EAAE+f,SAAS,EAAE,CAAC,CAAC;EACzDpgB,QAAQ,CAACO,IAAI,CAAC8f,WAAW,EAAEhgB,IAAI,EAAE,aAAa,EAAEggB,WAAW,EAAE,CAAC,CAAC;EAC/DrgB,QAAQ,CAACO,IAAI,CAAC+f,QAAQ,EAAEjgB,IAAI,EAAE,UAAU,EAAEigB,QAAQ,EAAE,CAAC,CAAC;EACtDtgB,QAAQ,CAACO,IAAI,CAACggB,SAAS,EAAElgB,IAAI,EAAE,WAAW,EAAEkgB,SAAS,EAAE,CAAC,CAAC;EACzD,OAAOlgB,IAAI;AACb;AAEO,SAASogB,WAAWA,CAAC/K,aAAgC,EAAiB;EAC3E,MAAMrV,IAAmB,GAAG;IAC1BC,IAAI,EAAE,aAAa;IACnBoV;EACF,CAAC;EACD,MAAMnV,IAAI,GAAGN,WAAW,CAACygB,WAAW;EACpC1gB,QAAQ,CAACO,IAAI,CAACmV,aAAa,EAAErV,IAAI,EAAE,eAAe,EAAEqV,aAAa,EAAE,CAAC,CAAC;EACrE,OAAOrV,IAAI;AACb;AAEO,SAASsgB,mBAAmBA,CACjCpS,cAAwB,EACD;EACvB,MAAMlO,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3BiO;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAAC2gB,mBAAmB;EAC5C5gB,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAASwgB,cAAcA,CAC5BtS,cAAwB,EACxB1N,QAAgB,GAAG,OAAO,EACR;EAClB,MAAMR,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtBiO,cAAc;IACd1N;EACF,CAAC;EACD,MAAMN,IAAI,GAAGN,WAAW,CAAC6gB,cAAc;EACvC9gB,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxEvO,QAAQ,CAACO,IAAI,CAACM,QAAQ,EAAER,IAAI,EAAE,UAAU,EAAEQ,QAAQ,CAAC;EACnD,OAAOR,IAAI;AACb;AAEO,SAAS0gB,mBAAmBA,CACjClJ,UAAoB,EACpBC,SAAmB,EACI;EACvB,MAAMzX,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3BuX,UAAU;IACVC;EACF,CAAC;EACD,MAAMvX,IAAI,GAAGN,WAAW,CAAC+gB,mBAAmB;EAC5ChhB,QAAQ,CAACO,IAAI,CAACsX,UAAU,EAAExX,IAAI,EAAE,YAAY,EAAEwX,UAAU,EAAE,CAAC,CAAC;EAC5D7X,QAAQ,CAACO,IAAI,CAACuX,SAAS,EAAEzX,IAAI,EAAE,WAAW,EAAEyX,SAAS,EAAE,CAAC,CAAC;EACzD,OAAOzX,IAAI;AACb;AAEO,SAAS4gB,YAAYA,CAC1BvL,aAAgC,EAChCnH,cAA+B,GAAG,IAAI,EACtC2S,QAAyB,GAAG,IAAI,EAChB;EAChB,MAAM7gB,IAAoB,GAAG;IAC3BC,IAAI,EAAE,cAAc;IACpBoV,aAAa;IACbnH,cAAc;IACd2S;EACF,CAAC;EACD,MAAM3gB,IAAI,GAAGN,WAAW,CAACkhB,YAAY;EACrCnhB,QAAQ,CAACO,IAAI,CAACmV,aAAa,EAAErV,IAAI,EAAE,eAAe,EAAEqV,aAAa,EAAE,CAAC,CAAC;EACrE1V,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxEvO,QAAQ,CAACO,IAAI,CAAC2gB,QAAQ,EAAE7gB,IAAI,EAAE,UAAU,EAAE6gB,QAAQ,EAAE,CAAC,CAAC;EACtD,OAAO7gB,IAAI;AACb;AAEO,SAAS+gB,qBAAqBA,CACnC5T,MAA2B,EAC3BkF,KAAiB,EACQ;EACzB,MAAMrS,IAA6B,GAAG;IACpCC,IAAI,EAAE,uBAAuB;IAC7BkN,MAAM;IACNkF;EACF,CAAC;EACD,MAAMnS,IAAI,GAAGN,WAAW,CAACohB,qBAAqB;EAC9CrhB,QAAQ,CAACO,IAAI,CAACiN,MAAM,EAAEnN,IAAI,EAAE,QAAQ,EAAEmN,MAAM,EAAE,CAAC,CAAC;EAChDxN,QAAQ,CAACO,IAAI,CAACmS,KAAK,EAAErS,IAAI,EAAE,OAAO,EAAEqS,KAAK,EAAE,CAAC,CAAC;EAC7C,OAAOrS,IAAI;AACb;AAEO,SAASihB,aAAaA,CAC3BC,OAMqB,EACJ;EACjB,MAAMlhB,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrBihB;EACF,CAAC;EACD,MAAMhhB,IAAI,GAAGN,WAAW,CAACuhB,aAAa;EACtCxhB,QAAQ,CAACO,IAAI,CAACghB,OAAO,EAAElhB,IAAI,EAAE,SAAS,EAAEkhB,OAAO,EAAE,CAAC,CAAC;EACnD,OAAOlhB,IAAI;AACb;AAEO,SAASohB,6BAA6BA,CAC3Cre,UAA0B,EAC1B0M,cAAqD,GAAG,IAAI,EAC3B;EACjC,MAAMzP,IAAqC,GAAG;IAC5CC,IAAI,EAAE,+BAA+B;IACrC8C,UAAU;IACV0M;EACF,CAAC;EACD,MAAMvP,IAAI,GAAGN,WAAW,CAACyhB,6BAA6B;EACtD1hB,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5DpD,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOzP,IAAI;AACb;AAEO,SAASshB,sBAAsBA,CACpCzd,EAAgB,EAChB4L,cAA+D,GAAG,IAAI,EACtEG,QAA8D,GAAG,IAAI,EACrEvO,IAAuB,EACG;EAC1B,MAAMrB,IAA8B,GAAG;IACrCC,IAAI,EAAE,wBAAwB;IAC9B4D,EAAE;IACF4L,cAAc;IACdI,OAAO,EAAED,QAAQ;IACjBvO;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAAC2hB,sBAAsB;EAC/C5hB,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAAC2P,OAAO,EAAE7P,IAAI,EAAE,SAAS,EAAE4P,QAAQ,EAAE,CAAC,CAAC;EACpDjQ,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AAEO,SAASwhB,eAAeA,CAACngB,IAAuB,EAAqB;EAC1E,MAAMrB,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBoB;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAAC6hB,eAAe;EACxC9hB,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AAEO,SAAS0hB,sBAAsBA,CACpC7d,EAAgB,EAChB4L,cAA+D,GAAG,IAAI,EACtEvB,cAAwB,EACE;EAC1B,MAAMlO,IAA8B,GAAG;IACrCC,IAAI,EAAE,wBAAwB;IAC9B4D,EAAE;IACF4L,cAAc;IACdvB;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAAC+hB,sBAAsB;EAC/ChiB,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE9P,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAAS4hB,yBAAyBA,CACvC7e,UAAwB,EACxB0M,cAAqD,GAAG,IAAI,EAC/B;EAC7B,MAAMzP,IAAiC,GAAG;IACxCC,IAAI,EAAE,2BAA2B;IACjC8C,UAAU;IACV0M;EACF,CAAC;EACD,MAAMvP,IAAI,GAAGN,WAAW,CAACiiB,yBAAyB;EAClDliB,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5DpD,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOzP,IAAI;AACb;AAEO,SAAS8hB,cAAcA,CAC5B/e,UAAwB,EACxBmL,cAAwB,EACN;EAClB,MAAMlO,IAAsB,GAAG;IAC7BC,IAAI,EAAE,gBAAgB;IACtB8C,UAAU;IACVmL;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAACmiB,cAAc;EACvCpiB,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5DpD,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAASgiB,qBAAqBA,CACnCjf,UAAwB,EACxBmL,cAAwB,EACC;EACzB,MAAMlO,IAA6B,GAAG;IACpCC,IAAI,EAAE,uBAAuB;IAC7B8C,UAAU;IACVmL;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAACqiB,qBAAqB;EAC9CtiB,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5DpD,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAASkiB,eAAeA,CAC7BhU,cAAwB,EACxBnL,UAAwB,EACL;EACnB,MAAM/C,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBiO,cAAc;IACdnL;EACF,CAAC;EACD,MAAM7C,IAAI,GAAGN,WAAW,CAACuiB,eAAe;EACxCxiB,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxEvO,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO/C,IAAI;AACb;AAEO,SAASoiB,UAAUA,CAAC/L,OAAyB,EAAgB;EAClE,MAAMrW,IAAkB,GAAG;IACzBC,IAAI,EAAE,YAAY;IAClBoW;EACF,CAAC;EACD,MAAMnW,IAAI,GAAGN,WAAW,CAACyiB,UAAU;EACnC1iB,QAAQ,CAACO,IAAI,CAACmW,OAAO,EAAErW,IAAI,EAAE,SAAS,EAAEqW,OAAO,EAAE,CAAC,CAAC;EACnD,OAAOrW,IAAI;AACb;AAEO,SAASsiB,iBAAiBA,CAC/Bze,EAAgB,EAChBwS,OAAyB,EACJ;EACrB,MAAMrW,IAAyB,GAAG;IAChCC,IAAI,EAAE,mBAAmB;IACzB4D,EAAE;IACFwS;EACF,CAAC;EACD,MAAMnW,IAAI,GAAGN,WAAW,CAAC2iB,iBAAiB;EAC1C5iB,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACmW,OAAO,EAAErW,IAAI,EAAE,SAAS,EAAEqW,OAAO,EAAE,CAAC,CAAC;EACnD,OAAOrW,IAAI;AACb;AAEO,SAASwiB,YAAYA,CAC1B3e,EAAkC,EAClC4e,WAAgC,GAAG,IAAI,EACvB;EAChB,MAAMziB,IAAoB,GAAG;IAC3BC,IAAI,EAAE,cAAc;IACpB4D,EAAE;IACF4e;EACF,CAAC;EACD,MAAMviB,IAAI,GAAGN,WAAW,CAAC8iB,YAAY;EACrC/iB,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACuiB,WAAW,EAAEziB,IAAI,EAAE,aAAa,EAAEyiB,WAAW,EAAE,CAAC,CAAC;EAC/D,OAAOziB,IAAI;AACb;AAEO,SAAS2iB,mBAAmBA,CACjC9e,EAAkC,EAClCxC,IAA6C,EACtB;EACvB,MAAMrB,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3B4D,EAAE;IACFxC,IAAI;IACJkF,IAAI,EAAE;EACR,CAAC;EACD,MAAMrG,IAAI,GAAGN,WAAW,CAACgjB,mBAAmB;EAC5CjjB,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AAEO,SAAS6iB,aAAaA,CAACxhB,IAAmB,EAAmB;EAClE,MAAMrB,IAAqB,GAAG;IAC5BC,IAAI,EAAE,eAAe;IACrBoB;EACF,CAAC;EACD,MAAMnB,IAAI,GAAGN,WAAW,CAACkjB,aAAa;EACtCnjB,QAAQ,CAACO,IAAI,CAACmB,IAAI,EAAErB,IAAI,EAAE,MAAM,EAAEqB,IAAI,EAAE,CAAC,CAAC;EAC1C,OAAOrB,IAAI;AACb;AAEO,SAAS+iB,YAAYA,CAC1Bhc,QAAyB,EACzBic,SAAgC,GAAG,IAAI,EACvCvT,cAAqD,GAAG,IAAI,EAC5C;EAChB,MAAMzP,IAAoB,GAAG;IAC3BC,IAAI,EAAE,cAAc;IACpB8G,QAAQ;IACRic,SAAS;IACTvT;EACF,CAAC;EACD,MAAMvP,IAAI,GAAGN,WAAW,CAACqjB,YAAY;EACrCtjB,QAAQ,CAACO,IAAI,CAAC6G,QAAQ,EAAE/G,IAAI,EAAE,UAAU,EAAE+G,QAAQ,EAAE,CAAC,CAAC;EACtDpH,QAAQ,CAACO,IAAI,CAAC8iB,SAAS,EAAEhjB,IAAI,EAAE,WAAW,EAAEgjB,SAAS,EAAE,CAAC,CAAC;EACzDrjB,QAAQ,CAACO,IAAI,CAACuP,cAAc,EAAEzP,IAAI,EAAE,gBAAgB,EAAEyP,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOzP,IAAI;AACb;AAEO,SAASkjB,yBAAyBA,CACvCrf,EAAgB,EAChBsf,eAA6D,EAChC;EAC7B,MAAMnjB,IAAiC,GAAG;IACxCC,IAAI,EAAE,2BAA2B;IACjC4D,EAAE;IACFsf,eAAe;IACfC,QAAQ,EAAE;EACZ,CAAC;EACD,MAAMljB,IAAI,GAAGN,WAAW,CAACyjB,yBAAyB;EAClD1jB,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpClE,QAAQ,CAACO,IAAI,CAACijB,eAAe,EAAEnjB,IAAI,EAAE,iBAAiB,EAAEmjB,eAAe,EAAE,CAAC,CAAC;EAC3E,OAAOnjB,IAAI;AACb;AAEO,SAASsjB,yBAAyBA,CACvCvgB,UAA2B,EACE;EAC7B,MAAM/C,IAAiC,GAAG;IACxCC,IAAI,EAAE,2BAA2B;IACjC8C;EACF,CAAC;EACD,MAAM7C,IAAI,GAAGN,WAAW,CAAC2jB,yBAAyB;EAClD5jB,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO/C,IAAI;AACb;AAEO,SAASwjB,mBAAmBA,CACjCzgB,UAAwB,EACD;EACvB,MAAM/C,IAA2B,GAAG;IAClCC,IAAI,EAAE,qBAAqB;IAC3B8C;EACF,CAAC;EACD,MAAM7C,IAAI,GAAGN,WAAW,CAAC6jB,mBAAmB;EAC5C9jB,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO/C,IAAI;AACb;AAEO,SAAS0jB,kBAAkBA,CAChC3gB,UAAwB,EACF;EACtB,MAAM/C,IAA0B,GAAG;IACjCC,IAAI,EAAE,oBAAoB;IAC1B8C;EACF,CAAC;EACD,MAAM7C,IAAI,GAAGN,WAAW,CAAC+jB,kBAAkB;EAC3ChkB,QAAQ,CAACO,IAAI,CAAC6C,UAAU,EAAE/C,IAAI,EAAE,YAAY,EAAE+C,UAAU,EAAE,CAAC,CAAC;EAC5D,OAAO/C,IAAI;AACb;AAEO,SAAS4jB,4BAA4BA,CAC1C/f,EAAgB,EACgB;EAChC,MAAM7D,IAAoC,GAAG;IAC3CC,IAAI,EAAE,8BAA8B;IACpC4D;EACF,CAAC;EACD,MAAM3D,IAAI,GAAGN,WAAW,CAACikB,4BAA4B;EACrDlkB,QAAQ,CAACO,IAAI,CAAC2D,EAAE,EAAE7D,IAAI,EAAE,IAAI,EAAE6D,EAAE,EAAE,CAAC,CAAC;EACpC,OAAO7D,IAAI;AACb;AAEO,SAAS8jB,gBAAgBA,CAAC5V,cAAwB,EAAsB;EAC7E,MAAMlO,IAAwB,GAAG;IAC/BC,IAAI,EAAE,kBAAkB;IACxBiO;EACF,CAAC;EACD,MAAMhO,IAAI,GAAGN,WAAW,CAACmkB,gBAAgB;EACzCpkB,QAAQ,CAACO,IAAI,CAACgO,cAAc,EAAElO,IAAI,EAAE,gBAAgB,EAAEkO,cAAc,EAAE,CAAC,CAAC;EACxE,OAAOlO,IAAI;AACb;AAEO,SAASgkB,4BAA4BA,CAC1ClgB,MAAkB,EACc;EAChC,MAAM9D,IAAoC,GAAG;IAC3CC,IAAI,EAAE,8BAA8B;IACpC6D;EACF,CAAC;EACD,MAAM5D,IAAI,GAAGN,WAAW,CAACqkB,4BAA4B;EACrDtkB,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChD,OAAO9D,IAAI;AACb;AAEO,SAASkkB,0BAA0BA,CACxCpgB,MAA2B,EACG;EAC9B,MAAM9D,IAAkC,GAAG;IACzCC,IAAI,EAAE,4BAA4B;IAClC6D;EACF,CAAC;EACD,MAAM5D,IAAI,GAAGN,WAAW,CAACukB,0BAA0B;EACnDxkB,QAAQ,CAACO,IAAI,CAAC4D,MAAM,EAAE9D,IAAI,EAAE,QAAQ,EAAE8D,MAAM,EAAE,CAAC,CAAC;EAChD,OAAO9D,IAAI;AACb;AAEO,SAASokB,eAAeA,CAC7BC,UAAuC,GAAG,IAAI,EAC9C9O,QAAqC,GAAG,IAAI,EAC5ClR,IAAY,EACO;EACnB,MAAMrE,IAAuB,GAAG;IAC9BC,IAAI,EAAE,iBAAiB;IACvBokB,UAAU;IACV7O,OAAO,EAAED,QAAQ;IACjBlR;EACF,CAAC;EACD,MAAMnE,IAAI,GAAGN,WAAW,CAAC0kB,eAAe;EACxC3kB,QAAQ,CAACO,IAAI,CAACmkB,UAAU,EAAErkB,IAAI,EAAE,YAAY,EAAEqkB,UAAU,EAAE,CAAC,CAAC;EAC5D1kB,QAAQ,CAACO,IAAI,CAACsV,OAAO,EAAExV,IAAI,EAAE,SAAS,EAAEuV,QAAQ,EAAE,CAAC,CAAC;EACpD5V,QAAQ,CAACO,IAAI,CAACmE,IAAI,EAAErE,IAAI,EAAE,MAAM,EAAEqE,IAAI,CAAC;EACvC,OAAOrE,IAAI;AACb;AAGA,SAASukB,aAAaA,CAACzkB,KAAa,EAAE;EACpC,IAAA0kB,2BAAkB,EAAC,eAAe,EAAE,gBAAgB,EAAE,gBAAgB,CAAC;EACvE,OAAO3f,cAAc,CAAC/E,KAAK,CAAC;AAC9B;AAGA,SAAS2kB,YAAYA,CAACtf,OAAe,EAAEC,KAAa,GAAG,EAAE,EAAE;EACzD,IAAAof,2BAAkB,EAAC,cAAc,EAAE,eAAe,EAAE,gBAAgB,CAAC;EACrE,OAAOtf,aAAa,CAACC,OAAO,EAAEC,KAAK,CAAC;AACtC;AAGA,SAASsf,YAAYA,CACnB3d,QAUuB,EACvB;EACA,IAAAyd,2BAAkB,EAAC,cAAc,EAAE,aAAa,EAAE,gBAAgB,CAAC;EACnE,OAAO1d,WAAW,CAACC,QAAQ,CAAC;AAC9B;AAGA,SAAS4d,cAAcA,CAAC5d,QAAsB,EAAE;EAC9C,IAAAyd,2BAAkB,EAAC,gBAAgB,EAAE,eAAe,EAAE,gBAAgB,CAAC;EACvE,OAAOhY,aAAa,CAACzF,QAAQ,CAAC;AAChC","ignoreList":[]}