testeranto 0.173.0 → 0.189.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (819) hide show
  1. package/CNAME +1 -0
  2. package/README.html +302 -0
  3. package/README.md +24 -4
  4. package/dist/common/src/App.js +43 -0
  5. package/dist/common/src/Node.js +4 -8
  6. package/dist/common/src/PM/PM_WithEslintAndTsc.js +2 -33
  7. package/dist/common/src/PM/base.js +4 -5
  8. package/dist/common/src/PM/layers/base/PM_Base.js +1 -0
  9. package/dist/common/src/PM/layers/base/components/PageOperations.js +1 -0
  10. package/dist/common/src/PM/layers/base/components/PageOperations.testeranto.js +1 -0
  11. package/dist/common/src/PM/layers/linting/components/Linter.js +1 -0
  12. package/dist/common/src/PM/layers/linting/components/TypeChecker.js +1 -0
  13. package/dist/common/src/PM/layers/main/components/SidecarManager.js +1 -0
  14. package/dist/common/src/PM/layers/main/components/TestRunner.js +1 -0
  15. package/dist/common/src/PM/main.js +248 -150
  16. package/dist/common/src/PM/node.js +4 -1
  17. package/dist/common/src/PM/nodeSidecar.js +1 -0
  18. package/dist/common/src/PM/pure.js +15 -7
  19. package/dist/common/src/PM/pureSidecar.js +1 -1
  20. package/dist/common/src/PM/types.js +1 -0
  21. package/dist/common/src/PM/web.js +6 -2
  22. package/dist/common/src/Pure.js +1 -5
  23. package/dist/common/src/Pure.test.js +22 -20
  24. package/dist/common/src/ReportServerLib.js +11 -5
  25. package/dist/common/src/build.js +30 -39
  26. package/dist/common/src/components/SunriseAnimation.js +291 -0
  27. package/dist/common/src/components/SunriseAnimation.test/interface.js +67 -0
  28. package/dist/common/src/components/SunriseAnimation.test/types.js +2 -0
  29. package/dist/common/src/components/TestStatusBadge.js +1 -21
  30. package/dist/common/src/components/pure/AppFrame.js +20 -0
  31. package/dist/common/src/components/pure/AppFrame.test/implementation.js +63 -0
  32. package/dist/common/src/components/pure/AppFrame.test/index.js +14 -0
  33. package/dist/common/src/components/pure/AppFrame.test/specification.js +25 -0
  34. package/dist/common/src/components/pure/AppFrame.test/types.js +3 -0
  35. package/dist/common/src/components/pure/FeaturesReporterView.js +23 -0
  36. package/dist/common/src/components/pure/FeaturesReporterView.test/implementation.js +84 -0
  37. package/dist/common/src/components/pure/FeaturesReporterView.test/index.js +14 -0
  38. package/dist/common/src/components/pure/FeaturesReporterView.test/specification.js +27 -0
  39. package/dist/common/src/components/pure/FeaturesReporterView.test/types.js +2 -0
  40. package/dist/common/src/components/pure/ModalContent.js +86 -0
  41. package/dist/common/src/components/pure/ModalContent.test/implementation.js +33 -0
  42. package/dist/common/src/components/pure/ModalContent.test/index.js +12 -0
  43. package/dist/common/src/components/pure/ModalContent.test/specification.js +19 -0
  44. package/dist/common/src/components/pure/ModalContent.test/types.js +4 -0
  45. package/dist/common/src/components/pure/ProjectPageView.js +53 -76
  46. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +118 -33
  47. package/dist/common/src/components/pure/ProjectPageView.test/index.js +5 -1
  48. package/dist/common/src/components/pure/ProjectPageView.test/specification.js +15 -2
  49. package/dist/common/src/components/pure/ProjectPageView.test/types.js +2 -0
  50. package/dist/common/src/components/pure/ProjectsPageView.js +66 -0
  51. package/dist/common/src/components/pure/SettingsButton.js +83 -0
  52. package/dist/common/src/components/pure/TestPageView.js +134 -0
  53. package/dist/common/src/components/pure/TestPageView.test/implementation.js +202 -0
  54. package/dist/common/src/components/pure/TestPageView.test/index.js +15 -0
  55. package/dist/common/src/components/pure/TestPageView.test/specification.js +26 -0
  56. package/dist/common/src/components/pure/TestPageView.test/types.js +4 -0
  57. package/dist/common/src/components/pure/ThemeCard.js +15 -0
  58. package/dist/common/src/components/stateful/FeaturesReporter.js +59 -0
  59. package/dist/common/src/components/stateful/ProjectPage.js +100 -0
  60. package/dist/common/src/components/stateful/ProjectsPage.js +92 -0
  61. package/dist/common/src/components/stateful/TestPage.js +133 -0
  62. package/dist/common/src/defaultConfig.js +1 -0
  63. package/dist/common/src/esbuildConfigs/node.js +1 -3
  64. package/dist/common/src/esbuildConfigs/web.js +1 -1
  65. package/dist/common/src/lib/BaseSuite.js +14 -11
  66. package/dist/common/src/lib/BaseSuite.test/mock.js +0 -11
  67. package/dist/common/src/lib/BaseSuite.test/test.js +11 -22
  68. package/dist/common/src/lib/Sidecar.js +1 -0
  69. package/dist/common/src/lib/abstractBase.js +52 -48
  70. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -6
  71. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +3 -1
  72. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.mock.js +28 -17
  73. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.pure.js +2 -2
  74. package/dist/common/src/lib/basebuilder.js +32 -25
  75. package/dist/common/src/lib/classBuilder.js +2 -0
  76. package/dist/common/src/lib/core.test/MockCore.js +0 -14
  77. package/dist/common/src/lib/core.test/core.test.adapter.js +2 -9
  78. package/dist/common/src/lib/core.test/core.test.implementation.js +3 -7
  79. package/dist/common/src/lib/index.js +2 -0
  80. package/dist/common/src/lib/pmProxy.js +208 -100
  81. package/dist/common/src/lib/pmProxy.test/adapter.js +8 -2
  82. package/dist/common/src/lib/pmProxy.test/implementation.js +34 -5
  83. package/dist/common/src/lib/pmProxy.test/mockPMBase.js +9 -0
  84. package/dist/common/src/mothership/index.js +5 -0
  85. package/dist/common/src/mothership/test.js +44 -25
  86. package/dist/common/src/types/features.js +34 -0
  87. package/dist/common/src/utils/api.js +42 -23
  88. package/dist/common/src/utils/featureUtils.js +29 -0
  89. package/dist/common/src/utils/logFiles.js +25 -0
  90. package/dist/common/src/utils/makePrompt.js +115 -0
  91. package/dist/common/src/web.html.js +2 -6
  92. package/dist/common/testeranto.config.js +64 -36
  93. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  94. package/dist/module/src/App.js +9 -17
  95. package/dist/module/src/Node.js +4 -8
  96. package/dist/module/src/PM/PM_WithEslintAndTsc.js +3 -34
  97. package/dist/module/src/PM/base.js +4 -5
  98. package/dist/module/src/PM/layers/base/PM_Base.js +1 -0
  99. package/dist/module/src/PM/layers/base/components/PageOperations.js +1 -0
  100. package/dist/module/src/PM/layers/base/components/PageOperations.testeranto.js +1 -0
  101. package/dist/module/src/PM/layers/linting/components/Linter.js +1 -0
  102. package/dist/module/src/PM/layers/linting/components/TypeChecker.js +1 -0
  103. package/dist/module/src/PM/layers/main/components/SidecarManager.js +1 -0
  104. package/dist/module/src/PM/layers/main/components/TestRunner.js +1 -0
  105. package/dist/module/src/PM/main.js +220 -122
  106. package/dist/module/src/PM/node.js +4 -1
  107. package/dist/module/src/PM/nodeSidecar.js +1 -0
  108. package/dist/module/src/PM/pure.js +15 -7
  109. package/dist/module/src/PM/pureSidecar.js +1 -1
  110. package/dist/module/src/PM/types.js +1 -0
  111. package/dist/module/src/PM/web.js +6 -2
  112. package/dist/module/src/Pure.js +1 -5
  113. package/dist/module/src/Pure.test.js +22 -20
  114. package/dist/module/src/ReportServerLib.js +11 -5
  115. package/dist/module/src/build.js +25 -37
  116. package/dist/module/src/components/SunriseAnimation.test/interface.js +32 -1
  117. package/dist/module/src/components/TestStatusBadge.js +1 -21
  118. package/dist/module/src/components/pure/AppFrame.js +13 -0
  119. package/dist/module/src/components/pure/AppFrame.test/implementation.js +57 -0
  120. package/dist/module/src/components/pure/AppFrame.test/index.js +9 -0
  121. package/dist/module/src/components/pure/AppFrame.test/specification.js +21 -0
  122. package/dist/module/src/components/pure/AppFrame.test/types.js +2 -0
  123. package/dist/module/src/components/pure/FeaturesReporterView.js +16 -0
  124. package/dist/module/src/components/pure/FeaturesReporterView.test/implementation.js +81 -0
  125. package/dist/module/src/components/pure/FeaturesReporterView.test/index.js +9 -0
  126. package/dist/module/src/components/pure/FeaturesReporterView.test/specification.js +23 -0
  127. package/dist/module/src/components/pure/ModalContent.js +79 -0
  128. package/dist/module/src/components/pure/ModalContent.test/implementation.js +30 -0
  129. package/dist/module/src/components/pure/ModalContent.test/index.js +7 -0
  130. package/dist/module/src/components/pure/ModalContent.test/specification.js +15 -0
  131. package/dist/module/src/components/pure/ModalContent.test/types.js +3 -0
  132. package/dist/module/src/components/pure/ProjectPageView.js +54 -77
  133. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +118 -33
  134. package/dist/module/src/components/pure/ProjectPageView.test/index.js +5 -1
  135. package/dist/module/src/components/pure/ProjectPageView.test/specification.js +15 -2
  136. package/dist/module/src/components/pure/ProjectPageView.test/types.js +2 -0
  137. package/dist/module/src/components/pure/ProjectsPageView.js +5 -4
  138. package/dist/module/src/components/pure/SettingsButton.js +43 -0
  139. package/dist/module/src/components/pure/TestPageView.js +100 -121
  140. package/dist/module/src/components/pure/TestPageView.test/implementation.js +166 -0
  141. package/dist/module/src/components/pure/TestPageView.test/index.js +10 -0
  142. package/dist/module/src/components/pure/TestPageView.test/specification.js +22 -0
  143. package/dist/module/src/components/pure/TestPageView.test/types.js +3 -0
  144. package/dist/module/src/components/pure/ThemeCard.js +8 -0
  145. package/dist/module/src/components/stateful/FeaturesReporter.js +22 -0
  146. package/dist/module/src/components/stateful/ProjectPage.js +1 -1
  147. package/dist/module/src/components/stateful/TestPage.js +25 -11
  148. package/dist/module/src/defaultConfig.js +1 -0
  149. package/dist/module/src/esbuildConfigs/node.js +1 -3
  150. package/dist/module/src/esbuildConfigs/web.js +1 -1
  151. package/dist/module/src/lib/BaseSuite.js +14 -11
  152. package/dist/module/src/lib/BaseSuite.test/mock.js +0 -11
  153. package/dist/module/src/lib/BaseSuite.test/test.js +11 -22
  154. package/dist/module/src/lib/Sidecar.js +1 -0
  155. package/dist/module/src/lib/abstractBase.js +52 -48
  156. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -6
  157. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +3 -1
  158. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.mock.js +28 -17
  159. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.pure.js +1 -1
  160. package/dist/module/src/lib/basebuilder.js +32 -25
  161. package/dist/module/src/lib/classBuilder.js +2 -0
  162. package/dist/module/src/lib/core.test/MockCore.js +0 -14
  163. package/dist/module/src/lib/core.test/core.test.adapter.js +2 -9
  164. package/dist/module/src/lib/core.test/core.test.implementation.js +3 -7
  165. package/dist/module/src/lib/index.js +2 -0
  166. package/dist/module/src/lib/pmProxy.js +208 -100
  167. package/dist/module/src/lib/pmProxy.test/adapter.js +8 -2
  168. package/dist/module/src/lib/pmProxy.test/implementation.js +34 -5
  169. package/dist/module/src/lib/pmProxy.test/mockPMBase.js +9 -0
  170. package/dist/module/src/mothership/index.js +5 -0
  171. package/dist/module/src/mothership/test.js +44 -25
  172. package/dist/module/src/types/features.js +31 -0
  173. package/dist/module/src/utils/api.js +41 -21
  174. package/dist/module/src/utils/featureUtils.js +24 -0
  175. package/dist/module/src/utils/logFiles.js +21 -0
  176. package/dist/module/src/utils/makePrompt.js +108 -0
  177. package/dist/module/src/web.html.js +2 -6
  178. package/dist/module/testeranto.config.js +64 -36
  179. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  180. package/dist/prebuild/App.css +444 -12
  181. package/dist/prebuild/App.js +1318 -1053
  182. package/dist/prebuild/ReportServer.mjs +10 -4
  183. package/dist/prebuild/build.mjs +88 -104
  184. package/dist/prebuild/mothership/index.mjs +5 -0
  185. package/dist/prebuild/run.mjs +360 -232
  186. package/dist/tsconfig.tsbuildinfo +1 -0
  187. package/dist/types/App.d.ts +1 -0
  188. package/dist/types/{src/PM → PM}/base.d.ts +1 -1
  189. package/dist/types/PM/layers/main/components/SidecarManager.d.ts +0 -0
  190. package/dist/types/PM/layers/main/components/TestRunner.d.ts +0 -0
  191. package/dist/types/{src/PM → PM}/main.d.ts +18 -3
  192. package/dist/types/{src/PM → PM}/node.d.ts +1 -1
  193. package/dist/types/{src/PM → PM}/pure.d.ts +7 -4
  194. package/dist/types/PM/types.d.ts +0 -0
  195. package/dist/types/{src/PM → PM}/web.d.ts +2 -2
  196. package/dist/types/ReportServerLib.d.ts +1 -0
  197. package/dist/types/{src/Types.d.ts → Types.d.ts} +1 -0
  198. package/dist/types/components/SunriseAnimation.d.ts +5 -0
  199. package/dist/types/components/SunriseAnimation.test/implementation.d.ts +0 -0
  200. package/dist/types/components/SunriseAnimation.test/index.d.ts +0 -0
  201. package/dist/types/components/SunriseAnimation.test/interface.d.ts +11 -0
  202. package/dist/types/components/SunriseAnimation.test/specification.d.ts +0 -0
  203. package/dist/types/components/SunriseAnimation.test/types.d.ts +39 -0
  204. package/dist/types/components/pure/AppFrame.d.ts +9 -0
  205. package/dist/types/components/pure/AppFrame.test/implementation.d.ts +3 -0
  206. package/dist/types/components/pure/AppFrame.test/index.d.ts +5 -0
  207. package/dist/types/components/pure/AppFrame.test/types.d.ts +33 -0
  208. package/dist/types/components/pure/FeaturesReporterView.d.ts +7 -0
  209. package/dist/types/{src/components/pure/ProjectPageView.test → components/pure/FeaturesReporterView.test}/index.d.ts +1 -2
  210. package/dist/types/components/pure/FeaturesReporterView.test/specification.d.ts +3 -0
  211. package/dist/types/components/pure/FeaturesReporterView.test/types.d.ts +54 -0
  212. package/dist/types/components/pure/ModalContent.d.ts +7 -0
  213. package/dist/types/components/pure/ModalContent.test/implementation.d.ts +3 -0
  214. package/dist/types/components/pure/ModalContent.test/index.d.ts +2 -0
  215. package/dist/types/components/pure/ModalContent.test/specification.d.ts +3 -0
  216. package/dist/types/components/pure/ModalContent.test/types.d.ts +45 -0
  217. package/dist/types/components/pure/ProjectPageView.d.ts +14 -0
  218. package/dist/types/components/pure/ProjectPageView.test/implementation.d.ts +3 -0
  219. package/dist/types/components/pure/ProjectPageView.test/index.d.ts +2 -0
  220. package/dist/types/components/pure/ProjectPageView.test/specification.d.ts +3 -0
  221. package/dist/types/components/pure/ProjectPageView.test/types.d.ts +57 -0
  222. package/dist/types/components/pure/ProjectsPageView.d.ts +29 -0
  223. package/dist/types/components/pure/SettingsButton.d.ts +3 -0
  224. package/dist/types/components/pure/TestPageView.d.ts +15 -0
  225. package/dist/types/components/pure/TestPageView.test/implementation.d.ts +11 -0
  226. package/dist/types/components/pure/TestPageView.test/index.d.ts +32 -0
  227. package/dist/types/components/pure/TestPageView.test/specification.d.ts +11 -0
  228. package/dist/types/components/pure/TestPageView.test/types.d.ts +65 -0
  229. package/dist/types/components/pure/ThemeCard.d.ts +9 -0
  230. package/dist/types/components/stateful/FeaturesReporter.d.ts +2 -0
  231. package/dist/types/components/stateful/ProjectPage.d.ts +1 -0
  232. package/dist/types/components/stateful/ProjectsPage.d.ts +1 -0
  233. package/dist/types/components/stateful/TestPage.d.ts +1 -0
  234. package/dist/types/init-docs.d.ts +1 -0
  235. package/dist/types/{src/lib → lib}/BaseSuite.d.ts +2 -0
  236. package/dist/types/{src/lib → lib}/abstractBase.d.ts +5 -7
  237. package/dist/types/{src/lib → lib}/abstractBase.test/MockGiven.d.ts +1 -1
  238. package/dist/types/lib/baseBuilder.test/baseBuilder.test.pure.d.ts +3 -0
  239. package/dist/types/{src/lib → lib}/index.d.ts +7 -7
  240. package/dist/types/{src/lib → lib}/pmProxy.d.ts +3 -3
  241. package/dist/types/run.d.ts +1 -0
  242. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  243. package/dist/types/types/features.d.ts +7 -0
  244. package/dist/types/{src/utils → utils}/api.d.ts +1 -5
  245. package/dist/types/utils/featureUtils.d.ts +6 -0
  246. package/dist/types/utils/logFiles.d.ts +7 -0
  247. package/dist/types/utils/makePrompt.d.ts +2 -0
  248. package/dist/types/{src/web.html.d.ts → web.html.d.ts} +1 -1
  249. package/docs/index.md +17 -0
  250. package/docs/testing.prompt.txt +1 -3
  251. package/docs.html +28 -10
  252. package/index.d.ts +38 -13
  253. package/index.html +59 -205
  254. package/marketing.md +166 -0
  255. package/package.json +16 -8
  256. package/scripts/compile-docs.js +24 -14
  257. package/smil30/SMIL-anim.mod.xsd +163 -0
  258. package/smil30/SMIL-control.mod.xsd +73 -0
  259. package/smil30/SMIL-layout.mod.xsd +149 -0
  260. package/smil30/SMIL-link.mod.xsd +145 -0
  261. package/smil30/SMIL-media.mod.xsd +1646 -0
  262. package/smil30/SMIL-metainformation.mod.xsd +45 -0
  263. package/smil30/SMIL-smiltext.mod.xsd +353 -0
  264. package/smil30/SMIL-state.mod.xsd +133 -0
  265. package/smil30/SMIL-struct.mod.xsd +70 -0
  266. package/smil30/SMIL-timing.mod.xsd +105 -0
  267. package/smil30/SMIL-transition.mod.xsd +229 -0
  268. package/smil30/SMIL.xsd +63 -0
  269. package/smil30/its.xsd +42 -0
  270. package/smil30/smil-attribs-1.mod.xsd +610 -0
  271. package/smil30/smil-datatypes-1.mod.xsd +72 -0
  272. package/smil30/smil-framework-1.mod.xsd +45 -0
  273. package/smil30/xml.xsd +16 -0
  274. package/src/App.scss +4 -13
  275. package/src/App.tsx +11 -25
  276. package/src/Node.ts +6 -9
  277. package/src/PM/PM_WithEslintAndTsc.ts +7 -93
  278. package/src/PM/__tests__/nodeSidecar.testeranto.ts +2 -0
  279. package/src/PM/base.ts +4 -10
  280. package/src/PM/layers/base/PM_Base.ts +0 -0
  281. package/src/PM/layers/base/components/PageOperations.testeranto.ts +0 -0
  282. package/src/PM/layers/base/components/PageOperations.ts +0 -0
  283. package/src/PM/layers/linting/components/Linter.ts +0 -0
  284. package/src/PM/layers/linting/components/TypeChecker.ts +0 -0
  285. package/src/PM/layers/main/components/SidecarManager.ts +0 -0
  286. package/src/PM/layers/main/components/TestRunner.ts +0 -0
  287. package/src/PM/main.ts +266 -140
  288. package/src/PM/node.ts +6 -1
  289. package/src/PM/nodeSidecar.ts +1 -0
  290. package/src/PM/pure.ts +15 -16
  291. package/src/PM/pureSidecar.ts +1 -1
  292. package/src/PM/types.ts +0 -0
  293. package/src/PM/web.ts +7 -2
  294. package/src/Pure.test.ts +27 -26
  295. package/src/Pure.ts +1 -9
  296. package/src/README.md +66 -0
  297. package/src/ReportServerLib.ts +10 -7
  298. package/src/Types.ts +1 -0
  299. package/src/build.ts +28 -54
  300. package/src/components/{pure/ProjectPageView.test/index.ts → SunriseAnimation.test/index.tsx} +7 -4
  301. package/src/components/SunriseAnimation.test/interface.ts +49 -0
  302. package/src/components/SunriseAnimation.test/types.ts +53 -0
  303. package/src/components/TestStatusBadge.tsx +2 -23
  304. package/src/components/pure/AppFrame.test/implementation.tsx +72 -0
  305. package/src/components/pure/AppFrame.test/index.tsx +22 -0
  306. package/src/components/pure/AppFrame.test/specification.ts +35 -0
  307. package/src/components/pure/AppFrame.test/types.ts +65 -0
  308. package/src/components/pure/AppFrame.tsx +29 -0
  309. package/src/components/pure/FeaturesReporterView.test/implementation.tsx +106 -0
  310. package/src/components/pure/FeaturesReporterView.test/index.tsx +18 -0
  311. package/src/components/pure/FeaturesReporterView.test/specification.ts +39 -0
  312. package/src/components/pure/FeaturesReporterView.test/types.ts +77 -0
  313. package/src/components/pure/FeaturesReporterView.tsx +37 -0
  314. package/src/components/pure/ModalContent.test/implementation.tsx +43 -0
  315. package/src/components/pure/ModalContent.test/index.tsx +15 -0
  316. package/src/components/pure/ModalContent.test/specification.ts +27 -0
  317. package/src/components/pure/ModalContent.test/types.ts +72 -0
  318. package/src/components/pure/ModalContent.tsx +182 -0
  319. package/src/components/pure/ProjectPageView.test/implementation.tsx +135 -36
  320. package/src/components/pure/ProjectPageView.test/index.tsx +20 -0
  321. package/src/components/pure/ProjectPageView.test/specification.ts +15 -2
  322. package/src/components/pure/ProjectPageView.test/types.ts +57 -13
  323. package/src/components/pure/ProjectPageView.tsx +155 -121
  324. package/src/components/pure/ProjectsPageView.tsx +36 -5
  325. package/src/components/pure/SettingsButton.md +1 -0
  326. package/src/components/pure/SettingsButton.tsx +66 -0
  327. package/src/components/pure/TestPageView.test/implementation.ts +194 -0
  328. package/src/components/pure/TestPageView.test/index.tsx +20 -0
  329. package/src/components/pure/TestPageView.test/specification.ts +59 -0
  330. package/src/components/pure/TestPageView.test/types.ts +92 -0
  331. package/src/components/pure/TestPageView.tsx +272 -283
  332. package/src/components/pure/ThemeCard.tsx +34 -0
  333. package/src/components/stateful/FeaturesReporter.tsx +24 -0
  334. package/src/components/stateful/ProjectPage.tsx +4 -3
  335. package/src/components/stateful/TestPage.tsx +27 -18
  336. package/src/defaultConfig.ts +1 -0
  337. package/src/esbuildConfigs/node.ts +1 -1
  338. package/src/esbuildConfigs/web.ts +2 -1
  339. package/src/lib/BaseSuite.test/mock.ts +1 -27
  340. package/src/lib/BaseSuite.test/test.ts +15 -37
  341. package/src/lib/BaseSuite.ts +19 -21
  342. package/src/lib/Sidecar.ts +2 -0
  343. package/src/lib/abstractBase.test/MockGiven.ts +1 -1
  344. package/src/lib/abstractBase.ts +72 -56
  345. package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +0 -6
  346. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +3 -1
  347. package/src/lib/baseBuilder.test/baseBuilder.test.mock.ts +27 -17
  348. package/src/lib/baseBuilder.test/baseBuilder.test.pure.ts +1 -1
  349. package/src/lib/basebuilder.ts +46 -41
  350. package/src/lib/classBuilder.ts +3 -0
  351. package/src/lib/core.test/MockCore.ts +0 -23
  352. package/src/lib/core.test/core.test.adapter.ts +6 -12
  353. package/src/lib/core.test/core.test.implementation.ts +7 -10
  354. package/src/lib/core.ts +2 -0
  355. package/src/lib/index.ts +9 -8
  356. package/src/lib/pmProxy.test/adapter.ts +8 -2
  357. package/src/lib/pmProxy.test/implementation.ts +43 -10
  358. package/src/lib/pmProxy.test/mockPMBase.ts +11 -0
  359. package/src/lib/pmProxy.test/types.ts +0 -2
  360. package/src/lib/pmProxy.ts +224 -92
  361. package/src/lib/types.ts +2 -0
  362. package/src/mothership/index.ts +6 -0
  363. package/src/mothership/test.ts +53 -26
  364. package/src/style.md +2 -0
  365. package/src/style.scss +16 -0
  366. package/src/templates/frontpage.html +54 -0
  367. package/src/themes.scss +9 -9
  368. package/src/types/features.ts +38 -0
  369. package/src/utils/api.ts +59 -29
  370. package/src/utils/featureUtils.tsx +42 -0
  371. package/src/utils/logFiles.ts +26 -0
  372. package/src/utils/makePrompt.ts +148 -0
  373. package/src/web.html.ts +6 -6
  374. package/style.css +28 -9
  375. package/testeranto/App.css +444 -12
  376. package/testeranto/App.js +1318 -1053
  377. package/testeranto/bundles/node/core/chunk-JBB5E3XJ.mjs +258 -0
  378. package/testeranto/bundles/node/core/chunk-L67RWZ4W.mjs +899 -0
  379. package/testeranto/bundles/node/core/chunk-ZQRRQYS4.mjs +92 -0
  380. package/testeranto/bundles/node/core/metafile.json +5348 -99
  381. package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +307 -0
  382. package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +44 -979
  383. package/testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs +423 -0
  384. package/testeranto/bundles/node/core/src/lib/core.test/core.test.mjs +505 -0
  385. package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +4804 -0
  386. package/testeranto/bundles/node/core/src/mothership/test.mjs +24588 -0
  387. package/testeranto/bundles/pure/core/chunk-KHJ35R7C.mjs +997 -0
  388. package/testeranto/bundles/pure/core/metafile.json +401 -152
  389. package/testeranto/bundles/pure/core/src/Pure.test.mjs +428 -0
  390. package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +379 -0
  391. package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +34 -893
  392. package/testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf +0 -0
  393. package/testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf +0 -0
  394. package/testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf +0 -0
  395. package/testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf +0 -0
  396. package/testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf +0 -0
  397. package/testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf +0 -0
  398. package/testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf +0 -0
  399. package/testeranto/bundles/web/core/chunk-BADF3AZF.mjs +108 -0
  400. package/testeranto/bundles/web/core/chunk-BXV27S2S.mjs +6252 -0
  401. package/testeranto/bundles/web/core/chunk-EIYZKF2C.mjs +223 -0
  402. package/testeranto/bundles/web/core/chunk-FNXFUNA7.mjs +28528 -0
  403. package/testeranto/bundles/web/core/chunk-LU364HVS.mjs +3311 -0
  404. package/testeranto/bundles/web/core/chunk-QWII7WIM.mjs +2281 -0
  405. package/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs +21775 -0
  406. package/testeranto/bundles/web/core/metafile.json +17547 -100
  407. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.css +12105 -0
  408. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.html +15 -0
  409. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.mjs +517 -0
  410. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.html +15 -0
  411. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +166 -0
  412. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css +12105 -0
  413. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.html +15 -0
  414. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs +93 -0
  415. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +12105 -0
  416. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.html +15 -0
  417. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +343 -0
  418. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css +12105 -0
  419. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.html +15 -0
  420. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs +483 -0
  421. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.html +15 -0
  422. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +394 -0
  423. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.html +1 -5
  424. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +54 -890
  425. package/testeranto/projects.json +0 -1
  426. package/testeranto/reports/core/config.json +130 -5
  427. package/testeranto/reports/core/src/Pure.test/pure/exit.log +0 -0
  428. package/testeranto/reports/core/src/Pure.test/pure/lint_errors.txt +0 -0
  429. package/testeranto/reports/core/src/Pure.test/pure/message.txt +17 -0
  430. package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +14 -0
  431. package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +106 -0
  432. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/debug.log +0 -0
  433. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/error.log +22 -0
  434. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/exit.log +1 -0
  435. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/info.log +4 -0
  436. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/lint_errors.txt +2 -0
  437. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/message.txt +17 -0
  438. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/prompt.txt +18 -0
  439. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/tests.json +57 -0
  440. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/type_errors.txt +55 -0
  441. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/warn.log +0 -0
  442. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/debug.log +0 -0
  443. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +56 -0
  444. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/exit.log +1 -0
  445. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +2 -0
  446. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt +0 -0
  447. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt +17 -0
  448. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +16 -0
  449. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/suite-0/given-basicRender/then-4/butThen/features-reporter.png +0 -0
  450. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +76 -0
  451. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +80 -0
  452. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/warn.log +0 -0
  453. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log +0 -0
  454. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log +0 -0
  455. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log +0 -0
  456. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log +4 -0
  457. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/lint_errors.txt +0 -0
  458. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt +17 -0
  459. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt +15 -0
  460. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/suite-0/given-basicRender/then-2/butThen/modal-content.png +0 -0
  461. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/tests.json +42 -0
  462. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt +65 -0
  463. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/warn.log +0 -0
  464. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/debug.log +0 -0
  465. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +33 -0
  466. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/exit.log +1 -0
  467. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +4 -0
  468. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +2 -0
  469. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +17 -0
  470. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +16 -0
  471. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-6/butThen/happy-state.png +0 -0
  472. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-errorHandling/then-1/butThen/error-state.png +0 -0
  473. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +99 -0
  474. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +91 -0
  475. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/warn.log +0 -0
  476. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/debug.log +0 -0
  477. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log +0 -0
  478. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/exit.log +1 -0
  479. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log +2 -0
  480. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +0 -0
  481. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/message.txt +17 -0
  482. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +18 -0
  483. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +69 -0
  484. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +111 -0
  485. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/warn.log +0 -0
  486. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/exit.log +1 -0
  487. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +0 -0
  488. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/message.txt +17 -0
  489. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +14 -0
  490. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stderr.log +0 -0
  491. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stdout.log +0 -0
  492. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +31 -0
  493. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +113 -0
  494. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/exit.log +0 -0
  495. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -0
  496. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/message.txt +17 -0
  497. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +15 -0
  498. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +113 -0
  499. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/debug.log +0 -0
  500. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log +1 -0
  501. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/exit.log +1 -0
  502. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/info.log +0 -0
  503. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
  504. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/message.txt +17 -0
  505. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +15 -0
  506. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +31 -0
  507. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +113 -0
  508. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/warn.log +0 -0
  509. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/exit.log +1 -0
  510. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -2
  511. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +16 -1
  512. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +4 -13
  513. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stderr.log +0 -0
  514. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stdout.log +2 -0
  515. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +1 -0
  516. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +3 -1
  517. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +19 -28
  518. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/exit.log +0 -0
  519. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -2
  520. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +16 -1
  521. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +2 -11
  522. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +19 -28
  523. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/debug.log +0 -0
  524. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/error.log +1 -0
  525. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/exit.log +1 -0
  526. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/info.log +0 -0
  527. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -2
  528. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +16 -1
  529. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +4 -13
  530. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +1 -0
  531. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +3 -1
  532. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +18 -27
  533. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/warn.log +0 -0
  534. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/exit.log +1 -0
  535. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
  536. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/message.txt +17 -0
  537. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +17 -0
  538. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stderr.log +0 -0
  539. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stdout.log +619 -0
  540. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/tests.json +165 -0
  541. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +140 -0
  542. package/testeranto/reports/core/src/lib/core.test/core.test/node/exit.log +1 -0
  543. package/testeranto/reports/core/src/lib/core.test/core.test/node/lint_errors.txt +21 -0
  544. package/testeranto/reports/core/src/lib/core.test/core.test/node/message.txt +17 -0
  545. package/testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt +19 -0
  546. package/testeranto/reports/core/src/lib/core.test/core.test/node/stderr.log +0 -0
  547. package/testeranto/reports/core/src/lib/core.test/core.test/node/stdout.log +0 -0
  548. package/testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt +64 -0
  549. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +1 -0
  550. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +23 -0
  551. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/message.txt +17 -0
  552. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +17 -0
  553. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +0 -0
  554. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +0 -0
  555. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +162 -0
  556. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +78 -0
  557. package/testeranto/reports/core/src/mothership/test/node/exit.log +1 -0
  558. package/testeranto/reports/core/src/mothership/test/node/lint_errors.txt +0 -0
  559. package/testeranto/reports/core/src/mothership/test/node/message.txt +17 -0
  560. package/testeranto/reports/core/src/mothership/test/node/prompt.txt +14 -0
  561. package/testeranto/reports/core/src/mothership/test/node/stderr.log +27 -0
  562. package/testeranto/reports/core/src/mothership/test/node/stdout.log +8 -0
  563. package/testeranto/reports/core/src/mothership/test/node/tests.json +36 -0
  564. package/testeranto/reports/{staticSite/src/ReportServer.test.ts/index → core/src/mothership/test}/node/type_errors.txt +17 -31
  565. package/testeranto/reports/core/summary.json +98 -7
  566. package/testeranto.config.ts +66 -36
  567. package/tsc.log +392 -260
  568. package/tsconfig.common.json +4 -2
  569. package/tsconfig.json +9 -7
  570. package/tsconfig.module.json +3 -2
  571. package/tsconfig.types.json +3 -1
  572. package/videos/download-smil-xsd.sh +29 -0
  573. package/videos/project0/index.md +72 -0
  574. package/videos/project0/narration.json +7 -0
  575. package/videos/project0/narration.ssml +58 -0
  576. package/videos/project0/package.json +21 -0
  577. package/videos/project0/presentation.smil +25 -0
  578. package/videos/project0/smil30/SMIL-anim.mod.xsd +163 -0
  579. package/videos/project0/smil30/SMIL-anim.mod.xsd.1 +163 -0
  580. package/videos/project0/smil30/SMIL-anim.mod.xsd.2 +163 -0
  581. package/videos/project0/smil30/SMIL-control.mod.xsd +73 -0
  582. package/videos/project0/smil30/SMIL-control.mod.xsd.1 +73 -0
  583. package/videos/project0/smil30/SMIL-control.mod.xsd.2 +73 -0
  584. package/videos/project0/smil30/SMIL-layout.mod.xsd +149 -0
  585. package/videos/project0/smil30/SMIL-layout.mod.xsd.1 +149 -0
  586. package/videos/project0/smil30/SMIL-layout.mod.xsd.2 +149 -0
  587. package/videos/project0/smil30/SMIL-link.mod.xsd +145 -0
  588. package/videos/project0/smil30/SMIL-link.mod.xsd.1 +145 -0
  589. package/videos/project0/smil30/SMIL-link.mod.xsd.2 +145 -0
  590. package/videos/project0/smil30/SMIL-media.mod.xsd +1646 -0
  591. package/videos/project0/smil30/SMIL-media.mod.xsd.1 +1646 -0
  592. package/videos/project0/smil30/SMIL-media.mod.xsd.2 +1646 -0
  593. package/videos/project0/smil30/SMIL-metainformation.mod.xsd +45 -0
  594. package/videos/project0/smil30/SMIL-metainformation.mod.xsd.1 +45 -0
  595. package/videos/project0/smil30/SMIL-metainformation.mod.xsd.2 +45 -0
  596. package/videos/project0/smil30/SMIL-smiltext.mod.xsd +353 -0
  597. package/videos/project0/smil30/SMIL-smiltext.mod.xsd.1 +353 -0
  598. package/videos/project0/smil30/SMIL-smiltext.mod.xsd.2 +353 -0
  599. package/videos/project0/smil30/SMIL-state.mod.xsd +133 -0
  600. package/videos/project0/smil30/SMIL-state.mod.xsd.1 +133 -0
  601. package/videos/project0/smil30/SMIL-state.mod.xsd.2 +133 -0
  602. package/videos/project0/smil30/SMIL-struct.mod.xsd +70 -0
  603. package/videos/project0/smil30/SMIL-struct.mod.xsd.1 +70 -0
  604. package/videos/project0/smil30/SMIL-struct.mod.xsd.2 +70 -0
  605. package/videos/project0/smil30/SMIL-timing.mod.xsd +105 -0
  606. package/videos/project0/smil30/SMIL-timing.mod.xsd.1 +105 -0
  607. package/videos/project0/smil30/SMIL-timing.mod.xsd.2 +105 -0
  608. package/videos/project0/smil30/SMIL-transition.mod.xsd +229 -0
  609. package/videos/project0/smil30/SMIL-transition.mod.xsd.1 +229 -0
  610. package/videos/project0/smil30/SMIL-transition.mod.xsd.2 +229 -0
  611. package/videos/project0/smil30/SMIL.xsd +63 -0
  612. package/videos/project0/smil30/SMIL.xsd.1 +63 -0
  613. package/videos/project0/smil30/SMIL.xsd.2 +63 -0
  614. package/videos/project0/smil30/its.xsd +42 -0
  615. package/videos/project0/smil30/its.xsd.1 +42 -0
  616. package/videos/project0/smil30/its.xsd.2 +42 -0
  617. package/videos/project0/smil30/smil-attribs-1.mod.xsd +610 -0
  618. package/videos/project0/smil30/smil-attribs-1.mod.xsd.1 +610 -0
  619. package/videos/project0/smil30/smil-attribs-1.mod.xsd.2 +610 -0
  620. package/videos/project0/smil30/smil-datatypes-1.mod.xsd +72 -0
  621. package/videos/project0/smil30/smil-datatypes-1.mod.xsd.1 +72 -0
  622. package/videos/project0/smil30/smil-datatypes-1.mod.xsd.2 +72 -0
  623. package/videos/project0/smil30/smil-framework-1.mod.xsd +45 -0
  624. package/videos/project0/smil30/smil-framework-1.mod.xsd.1 +45 -0
  625. package/videos/project0/smil30/smil-framework-1.mod.xsd.2 +45 -0
  626. package/videos/project0/smil30/smil-profile-model-1.mod.xsd +1331 -0
  627. package/videos/project0/smil30/smil-profile-model-1.mod.xsd.1 +1331 -0
  628. package/videos/project0/smil30/smil-qname-1.mod.xsd +121 -0
  629. package/videos/project0/smil30/smil-qname-1.mod.xsd.1 +121 -0
  630. package/videos/project0/smil30/xml.xsd +16 -0
  631. package/videos/project0/smil30/xml.xsd.1 +16 -0
  632. package/videos/project0/smil30/xml.xsd.2 +16 -0
  633. package/videos/project0/smil30.xsd +137 -0
  634. package/videos/project0/src/audio/metadata.json +5 -0
  635. package/videos/project0/src/audio/narration.mp3 +0 -0
  636. package/videos/project0/src/motion-canvas.d.ts +1 -0
  637. package/videos/project0/src/project.meta +31 -0
  638. package/videos/project0/src/project.ts +13 -0
  639. package/videos/project0/src/scenes/example.meta +5 -0
  640. package/videos/project0/src/scenes/scene1.meta +3 -0
  641. package/videos/project0/src/scenes/scene1.tsx +129 -0
  642. package/videos/project0/src/scenes/scene2.tsx +132 -0
  643. package/videos/project0/src/scenes/scene3.meta +26 -0
  644. package/videos/project0/src/scenes/scene3.tsx +188 -0
  645. package/videos/project0/tsconfig.json +4 -0
  646. package/videos/project0/vite.config.ts +10 -0
  647. package/videos/trash/output/project.mp4 +0 -0
  648. package/videos/trash/text.mp4 +0 -0
  649. package/videos/trash/video/project.tsx +549 -0
  650. package/videos/trash/video/render.ts +15 -0
  651. package/videos/trash/vite.config.ts +10 -0
  652. package/videos/tts.js +109 -0
  653. package/dist/common/src/components/pure/ProjectPageView.test/adapter.js +0 -20
  654. package/dist/common/src/lib/dailyAnimation.js +0 -130
  655. package/dist/module/src/Footer.js +0 -5
  656. package/dist/module/src/ProjectPage.js +0 -319
  657. package/dist/module/src/ProjectsPage.js +0 -1
  658. package/dist/module/src/SettingsButton.js +0 -157
  659. package/dist/module/src/TestPage.js +0 -271
  660. package/dist/module/src/TestReport.js +0 -368
  661. package/dist/module/src/components/pure/ProjectPageView.test/adapter.js +0 -17
  662. package/dist/module/src/lib/dailyAnimation.js +0 -130
  663. package/dist/types/src/ReportServerLib.d.ts +0 -2
  664. package/dist/types/src/components/pure/ProjectPageView.d.ts +0 -14
  665. package/dist/types/src/components/pure/ProjectPageView.test/adapter.d.ts +0 -3
  666. package/dist/types/src/components/pure/ProjectPageView.test/types.d.ts +0 -39
  667. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.pure.d.ts +0 -3
  668. package/dist/types/testeranto.config.d.ts +0 -3
  669. package/docs/testing.ai.txt +0 -106
  670. package/src/Footer.tsx +0 -8
  671. package/src/Project.scss +0 -1
  672. package/src/ProjectPage.tsx +0 -459
  673. package/src/ProjectsPage.tsx +0 -1
  674. package/src/ReportApp.scss +0 -1
  675. package/src/SettingsButton.tsx +0 -268
  676. package/src/TestPage.tsx +0 -476
  677. package/src/TestReport.scss +0 -24
  678. package/src/TestReport.tsx +0 -411
  679. package/src/components/pure/ProjectPageView.test/adapter.ts +0 -21
  680. package/src/lib/dailyAnimation.ts +0 -147
  681. package/testeranto/bundles/node/allTests/metafile.json +0 -486
  682. package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -1182
  683. package/testeranto/bundles/node/staticSite/metafile.json +0 -593
  684. package/testeranto/bundles/node/staticSite/src/ReportServer.test.ts/index.mjs +0 -1594
  685. package/testeranto/bundles/pure/allTests/metafile.json +0 -626
  686. package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -1094
  687. package/testeranto/bundles/pure/staticSite/metafile.json +0 -8
  688. package/testeranto/bundles/web/allTests/metafile.json +0 -780
  689. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -19
  690. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -1092
  691. package/testeranto/bundles/web/staticSite/metafile.json +0 -8
  692. package/testeranto/reports/allTests/config.json +0 -40
  693. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/bdd_errors.txt +0 -1
  694. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -2
  695. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -33
  696. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +0 -2
  697. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -26
  698. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  699. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -69
  700. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -74
  701. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -2
  702. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +0 -2
  703. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -26
  704. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -74
  705. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/bdd_errors.txt +0 -1
  706. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -2
  707. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -63
  708. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -2
  709. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -26
  710. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  711. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -69
  712. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -74
  713. package/testeranto/reports/allTests/summary.json +0 -23
  714. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/bdd_errors.txt +0 -1
  715. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -32
  716. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/bdd_errors.txt +0 -1
  717. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -61
  718. package/testeranto/reports/staticSite/config.json +0 -24
  719. package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/lint_errors.txt +0 -5
  720. package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/logs.txt +0 -44
  721. package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/message.txt +0 -2
  722. package/testeranto/reports/staticSite/src/ReportServer.test.ts/index/node/prompt.txt +0 -23
  723. package/testeranto/reports/staticSite/summary.json +0 -9
  724. package/testeranto/reportsnode_build_errors +0 -17
  725. /package/dist/common/src/{NavBar.js → components/pure/NavBar.js} +0 -0
  726. /package/dist/{types/src/ReportServer.d.ts → module/src/components/SunriseAnimation.test/types.js} +0 -0
  727. /package/dist/{types/src/build.d.ts → module/src/components/pure/FeaturesReporterView.test/types.js} +0 -0
  728. /package/dist/module/src/{NavBar.js → components/pure/NavBar.js} +0 -0
  729. /package/dist/types/{src/CoreTypes.d.ts → CoreTypes.d.ts} +0 -0
  730. /package/dist/types/{src/Init.d.ts → Init.d.ts} +0 -0
  731. /package/dist/types/{src/Node.d.ts → Node.d.ts} +0 -0
  732. /package/dist/types/{src/NodeSidecar.d.ts → NodeSidecar.d.ts} +0 -0
  733. /package/dist/types/{src/PM → PM}/PM_WithEslintAndTsc.d.ts +0 -0
  734. /package/dist/types/{src/PM → PM}/__tests__/nodeSidecar.testeranto.d.ts +0 -0
  735. /package/dist/types/{src/PM → PM}/__tests__/pureSidecar.testeranto.d.ts +0 -0
  736. /package/dist/types/{src/PM → PM}/__tests__/webSidecar.testeranto.d.ts +0 -0
  737. /package/dist/types/{src/PM → PM}/index.d.ts +0 -0
  738. /package/dist/types/{src/components/SunriseAnimation.test/implementation.d.ts → PM/layers/base/PM_Base.d.ts} +0 -0
  739. /package/dist/types/{src/components/SunriseAnimation.test/index.d.ts → PM/layers/base/components/PageOperations.d.ts} +0 -0
  740. /package/dist/types/{src/components/SunriseAnimation.test/interface.d.ts → PM/layers/base/components/PageOperations.testeranto.d.ts} +0 -0
  741. /package/dist/types/{src/components/SunriseAnimation.test/specification.d.ts → PM/layers/linting/components/Linter.d.ts} +0 -0
  742. /package/dist/types/{src/lib/dailyAnimation.d.ts → PM/layers/linting/components/TypeChecker.d.ts} +0 -0
  743. /package/dist/types/{src/PM → PM}/nodeSidecar.d.ts +0 -0
  744. /package/dist/types/{src/PM → PM}/pureSidecar.d.ts +0 -0
  745. /package/dist/types/{src/PM → PM}/sidecar.d.ts +0 -0
  746. /package/dist/types/{src/PM → PM}/webSidecar.d.ts +0 -0
  747. /package/dist/types/{src/Pure.d.ts → Pure.d.ts} +0 -0
  748. /package/dist/types/{src/Pure.test.d.ts → Pure.test.d.ts} +0 -0
  749. /package/dist/types/{src/PureSidecar.d.ts → PureSidecar.d.ts} +0 -0
  750. /package/dist/types/{src/init-docs.d.ts → ReportServer.d.ts} +0 -0
  751. /package/dist/types/{src/ReportServer.test.ts → ReportServer.test.ts}/index.d.ts +0 -0
  752. /package/dist/types/{src/Web.d.ts → Web.d.ts} +0 -0
  753. /package/dist/types/{src/WebSidecar.d.ts → WebSidecar.d.ts} +0 -0
  754. /package/dist/types/{src/run.d.ts → build.d.ts} +0 -0
  755. /package/dist/types/{src/components → components}/TestStatusBadge.d.ts +0 -0
  756. /package/dist/types/{src/components/pure/ProjectPageView.test → components/pure/AppFrame.test}/specification.d.ts +0 -0
  757. /package/dist/types/{src/components/pure/ProjectPageView.test → components/pure/FeaturesReporterView.test}/implementation.d.ts +0 -0
  758. /package/dist/types/{src → components/pure}/NavBar.d.ts +0 -0
  759. /package/dist/types/{src/defaultConfig.d.ts → defaultConfig.d.ts} +0 -0
  760. /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/consoleDetectorPlugin.d.ts +0 -0
  761. /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/eslint-formatter-testeranto.d.ts +0 -0
  762. /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/featuresPlugin.d.ts +0 -0
  763. /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/index.d.ts +0 -0
  764. /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/inputFilesPlugin.d.ts +0 -0
  765. /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/nativeImportDetectorPlugin.d.ts +0 -0
  766. /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/node.d.ts +0 -0
  767. /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/pure.d.ts +0 -0
  768. /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/rebuildPlugin.d.ts +0 -0
  769. /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/web.d.ts +0 -0
  770. /package/dist/types/{src/lib → lib}/BaseSuite.test/mock.d.ts +0 -0
  771. /package/dist/types/{src/lib → lib}/BaseSuite.test/node.test.d.ts +0 -0
  772. /package/dist/types/{src/lib → lib}/BaseSuite.test/pure.test.d.ts +0 -0
  773. /package/dist/types/{src/lib → lib}/BaseSuite.test/test.d.ts +0 -0
  774. /package/dist/types/{src/lib → lib}/BaseSuite.test/web.test.d.ts +0 -0
  775. /package/dist/types/{src/lib → lib}/Sidecar.d.ts +0 -0
  776. /package/dist/types/{src/lib → lib}/abstractBase.test/MockThen.d.ts +0 -0
  777. /package/dist/types/{src/lib → lib}/abstractBase.test/MockWhen.d.ts +0 -0
  778. /package/dist/types/{src/lib → lib}/abstractBase.test/adapter.d.ts +0 -0
  779. /package/dist/types/{src/lib → lib}/abstractBase.test/implementation.d.ts +0 -0
  780. /package/dist/types/{src/lib → lib}/abstractBase.test/index.d.ts +0 -0
  781. /package/dist/types/{src/lib → lib}/abstractBase.test/specification.d.ts +0 -0
  782. /package/dist/types/{src/lib → lib}/abstractBase.test/types.d.ts +0 -0
  783. /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.adapter.d.ts +0 -0
  784. /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.implementation.d.ts +0 -0
  785. /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.mock.d.ts +0 -0
  786. /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.node.d.ts +0 -0
  787. /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.specification.d.ts +0 -0
  788. /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.types.d.ts +0 -0
  789. /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.web.d.ts +0 -0
  790. /package/dist/types/{src/lib → lib}/basebuilder.d.ts +0 -0
  791. /package/dist/types/{src/lib → lib}/classBuilder.d.ts +0 -0
  792. /package/dist/types/{src/lib → lib}/classBuilder.test/classBuilder.test.adapter.d.ts +0 -0
  793. /package/dist/types/{src/lib → lib}/classBuilder.test/classBuilder.test.d.ts +0 -0
  794. /package/dist/types/{src/lib → lib}/classBuilder.test/classBuilder.test.implementation.d.ts +0 -0
  795. /package/dist/types/{src/lib → lib}/classBuilder.test/classBuilder.test.specification.d.ts +0 -0
  796. /package/dist/types/{src/lib → lib}/classBuilder.test/classBuilder.test.types.d.ts +0 -0
  797. /package/dist/types/{src/lib → lib}/classBuilder.test/mock.d.ts +0 -0
  798. /package/dist/types/{src/lib → lib}/core.d.ts +0 -0
  799. /package/dist/types/{src/lib → lib}/core.test/MockCore.d.ts +0 -0
  800. /package/dist/types/{src/lib → lib}/core.test/core.test.adapter.d.ts +0 -0
  801. /package/dist/types/{src/lib → lib}/core.test/core.test.d.ts +0 -0
  802. /package/dist/types/{src/lib → lib}/core.test/core.test.implementation.d.ts +0 -0
  803. /package/dist/types/{src/lib → lib}/core.test/core.test.specification.d.ts +0 -0
  804. /package/dist/types/{src/lib → lib}/core.test/core.test.types.d.ts +0 -0
  805. /package/dist/types/{src/lib → lib}/mocks.test.d.ts +0 -0
  806. /package/dist/types/{src/lib → lib}/pmProxy.test/adapter.d.ts +0 -0
  807. /package/dist/types/{src/lib → lib}/pmProxy.test/implementation.d.ts +0 -0
  808. /package/dist/types/{src/lib → lib}/pmProxy.test/index.d.ts +0 -0
  809. /package/dist/types/{src/lib → lib}/pmProxy.test/mockPM.d.ts +0 -0
  810. /package/dist/types/{src/lib → lib}/pmProxy.test/mockPMBase.d.ts +0 -0
  811. /package/dist/types/{src/lib → lib}/pmProxy.test/specification.d.ts +0 -0
  812. /package/dist/types/{src/lib → lib}/pmProxy.test/types.d.ts +0 -0
  813. /package/dist/types/{src/lib → lib}/types.d.ts +0 -0
  814. /package/dist/types/{src/mothership → mothership}/index.d.ts +0 -0
  815. /package/dist/types/{src/mothership → mothership}/test.d.ts +0 -0
  816. /package/dist/types/{src/utils → utils}/buildTemplates.d.ts +0 -0
  817. /package/dist/types/{src/utils → utils}/queue.d.ts +0 -0
  818. /package/dist/types/{src/utils.d.ts → utils.d.ts} +0 -0
  819. /package/src/{NavBar.tsx → components/pure/NavBar.tsx} +0 -0
@@ -0,0 +1 @@
1
+ {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.esnext.error.d.ts","../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@revideo/core/lib/events/eventdispatcherbase.d.ts","../node_modules/@revideo/core/lib/events/asynceventdispatcher.d.ts","../node_modules/@revideo/core/lib/events/eventdispatcher.d.ts","../node_modules/@revideo/core/lib/events/flagdispatcher.d.ts","../node_modules/@revideo/core/lib/events/valuedispatcher.d.ts","../node_modules/@revideo/core/lib/events/index.d.ts","../node_modules/@revideo/core/lib/app/logger.d.ts","../node_modules/@revideo/core/lib/tweening/helpers.d.ts","../node_modules/@revideo/core/lib/tweening/interpolationfunctions.d.ts","../node_modules/@revideo/core/lib/threading/thread.d.ts","../node_modules/@revideo/core/lib/threading/threadgenerator.d.ts","../node_modules/@revideo/core/lib/threading/cancel.d.ts","../node_modules/@revideo/core/lib/threading/spawn.d.ts","../node_modules/@revideo/core/lib/threading/threads.d.ts","../node_modules/@revideo/core/lib/threading/index.d.ts","../node_modules/@revideo/core/lib/tweening/spring.d.ts","../node_modules/@revideo/core/lib/tweening/timingfunctions.d.ts","../node_modules/@revideo/core/lib/tweening/tween.d.ts","../node_modules/@revideo/core/lib/tweening/index.d.ts","../node_modules/@revideo/core/lib/signals/dependencycontext.d.ts","../node_modules/@revideo/core/lib/signals/symbols.d.ts","../node_modules/@revideo/core/lib/signals/types.d.ts","../node_modules/@revideo/core/lib/signals/signalcontext.d.ts","../node_modules/@revideo/core/lib/signals/compoundsignalcontext.d.ts","../node_modules/@revideo/core/lib/signals/computedcontext.d.ts","../node_modules/@revideo/core/lib/signals/createcomputed.d.ts","../node_modules/@revideo/core/lib/signals/createcomputedasync.d.ts","../node_modules/@revideo/core/lib/signals/createsignal.d.ts","../node_modules/@revideo/core/lib/signals/utils.d.ts","../node_modules/@revideo/core/lib/signals/index.d.ts","../node_modules/@revideo/core/lib/types/alignment-enums.d.ts","../node_modules/@revideo/core/lib/types/type.d.ts","../node_modules/@revideo/core/lib/types/vector.d.ts","../node_modules/@revideo/core/lib/types/matrix2d.d.ts","../node_modules/@revideo/core/lib/types/spacing.d.ts","../node_modules/@revideo/core/lib/types/bbox.d.ts","../node_modules/@revideo/core/lib/types/canvas.d.ts","../node_modules/@types/chroma-js/index.d.ts","../node_modules/@revideo/core/lib/types/color.d.ts","../node_modules/@revideo/core/lib/types/matrix.d.ts","../node_modules/@revideo/core/lib/types/origin.d.ts","../node_modules/@revideo/core/lib/types/vector-transformations.d.ts","../node_modules/@revideo/core/lib/types/index.d.ts","../node_modules/@revideo/core/lib/plugin/plugin.d.ts","../node_modules/@revideo/core/lib/plugin/makeplugin.d.ts","../node_modules/@revideo/core/lib/plugin/index.d.ts","../node_modules/@revideo/core/lib/app/sharedwebglcontext.d.ts","../node_modules/@revideo/core/lib/scenes/shaders.d.ts","../node_modules/@revideo/core/lib/scenes/slides.d.ts","../node_modules/@revideo/core/lib/scenes/variables.d.ts","../node_modules/@revideo/core/lib/scenes/scene.d.ts","../node_modules/@revideo/core/lib/scenes/lifecycleevents.d.ts","../node_modules/@revideo/core/lib/scenes/threadable.d.ts","../node_modules/@revideo/core/lib/scenes/generatorscene.d.ts","../node_modules/@revideo/core/lib/scenes/inspectable.d.ts","../node_modules/@revideo/core/lib/scenes/random.d.ts","../node_modules/@revideo/core/lib/scenes/scenestate.d.ts","../node_modules/@revideo/core/lib/scenes/index.d.ts","../node_modules/@revideo/core/lib/app/stage.d.ts","../node_modules/@revideo/core/lib/app/timeestimator.d.ts","../node_modules/@revideo/core/lib/app/renderer.d.ts","../node_modules/@revideo/core/lib/exporter/exporter.d.ts","../node_modules/@revideo/core/lib/exporter/ffmpegexporter.d.ts","../node_modules/@revideo/core/lib/exporter/imageexporter.d.ts","../node_modules/@revideo/core/lib/exporter/wasmexporter.d.ts","../node_modules/@revideo/core/lib/exporter/index.d.ts","../node_modules/@revideo/core/lib/app/project.d.ts","../node_modules/@revideo/core/lib/app/makeproject.d.ts","../node_modules/@revideo/core/lib/app/playbackmanager.d.ts","../node_modules/@revideo/core/lib/app/playbackstatus.d.ts","../node_modules/@revideo/core/lib/app/player.d.ts","../node_modules/@revideo/core/lib/app/project-settings.d.ts","../node_modules/@revideo/core/lib/app/index.d.ts","../node_modules/@revideo/core/lib/decorators/decorate.d.ts","../node_modules/@revideo/core/lib/decorators/lazy.d.ts","../node_modules/@revideo/core/lib/decorators/threadable.d.ts","../node_modules/@revideo/core/lib/decorators/index.d.ts","../node_modules/@revideo/core/lib/flow/all.d.ts","../node_modules/@revideo/core/lib/flow/any.d.ts","../node_modules/@revideo/core/lib/flow/chain.d.ts","../node_modules/@revideo/core/lib/flow/delay.d.ts","../node_modules/@revideo/core/lib/flow/every.d.ts","../node_modules/@revideo/core/lib/flow/join.d.ts","../node_modules/@revideo/core/lib/flow/loop.d.ts","../node_modules/@revideo/core/lib/flow/loopfor.d.ts","../node_modules/@revideo/core/lib/flow/names.d.ts","../node_modules/@revideo/core/lib/flow/run.d.ts","../node_modules/@revideo/core/lib/flow/scheduling.d.ts","../node_modules/@revideo/core/lib/flow/sequence.d.ts","../node_modules/@revideo/core/lib/flow/index.d.ts","../node_modules/@revideo/core/lib/media/loadimage.d.ts","../node_modules/@revideo/core/lib/media/index.d.ts","../node_modules/@revideo/core/lib/plugin/defaultplugin.d.ts","../node_modules/@revideo/core/lib/transitions/fadetransition.d.ts","../node_modules/@revideo/core/lib/transitions/slidetransition.d.ts","../node_modules/@revideo/core/lib/transitions/usetransition.d.ts","../node_modules/@revideo/core/lib/transitions/zoomintransition.d.ts","../node_modules/@revideo/core/lib/transitions/zoomouttransition.d.ts","../node_modules/@revideo/core/lib/transitions/index.d.ts","../node_modules/@revideo/core/lib/utils/beginslide.d.ts","../node_modules/@revideo/core/lib/utils/capitalize.d.ts","../node_modules/@revideo/core/lib/utils/createref.d.ts","../node_modules/@revideo/core/lib/utils/createrefarray.d.ts","../node_modules/@revideo/core/lib/utils/createrefmap.d.ts","../node_modules/@revideo/core/lib/utils/debug.d.ts","../node_modules/@revideo/core/lib/utils/deprecate.d.ts","../node_modules/@revideo/core/lib/utils/detailederror.d.ts","../node_modules/@revideo/core/lib/utils/errortolog.d.ts","../node_modules/@revideo/core/lib/utils/experimentalerror.d.ts","../node_modules/@revideo/core/lib/utils/experimentallog.d.ts","../node_modules/@revideo/core/lib/utils/getcontext.d.ts","../node_modules/@revideo/core/lib/utils/math.d.ts","../node_modules/@revideo/core/lib/utils/range.d.ts","../node_modules/@revideo/core/lib/utils/semaphore.d.ts","../node_modules/@revideo/core/lib/utils/usecontext.d.ts","../node_modules/@revideo/core/lib/utils/useplayback.d.ts","../node_modules/@revideo/core/lib/utils/usescene.d.ts","../node_modules/@revideo/core/lib/utils/usethread.d.ts","../node_modules/@revideo/core/lib/utils/usetime.d.ts","../node_modules/@revideo/core/lib/utils/index.d.ts","../node_modules/@revideo/core/lib/index.d.ts","../index.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/utility.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client-stats.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/h2c-client.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-call-history.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cache-interceptor.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/typed-query-selector/parser.d.ts","../node_modules/puppeteer-core/node_modules/devtools-protocol/types/protocol.d.ts","../node_modules/puppeteer-core/node_modules/devtools-protocol/types/protocol-mapping.d.ts","../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi.d.ts","../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/cdp.d.ts","../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-bluetooth.d.ts","../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-permissions.d.ts","../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/chromium-bidi.d.ts","../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/errorresponse.d.ts","../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/protocol.d.ts","../node_modules/puppeteer-core/lib/types.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/connectiontransport.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/downloadbehavior.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/viewport.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/connectoptions.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/cookie.d.ts","../node_modules/mitt/index.d.ts","../node_modules/puppeteer-core/lib/esm/third_party/mitt/mitt.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/util/disposable.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/eventemitter.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/util/mutex.d.ts","../node_modules/puppeteer-core/lib/esm/third_party/rxjs/rxjs.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/errors.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/callbackregistry.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/timeoutsettings.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/securitydetails.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/httpresponse.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/waittask.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/environment.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/jshandle.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/realm.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/accessibility.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/devicerequestprompt.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/util/deferred.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/queryhandler.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/customqueryhandler.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/injected/customqueryselector.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/injected/poller.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/injected/pqueryselector.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/injected/textcontent.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/injected/injected.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/isolatedworlds.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/elementhandle.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/jshandle.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/webworker.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/isolatedworld.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/executioncontext.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/binding.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/cdppreloadscript.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/framemanagerevents.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/frametree.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/networkmanagerevents.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/networkmanager.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/filechooser.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/pdfoptions.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/coverage.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/uskeyboardlayout.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/util/incremental-id-generator.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/input.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/input.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/tracing.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/page.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/framemanager.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/frame.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/lifecyclewatcher.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/locators/locators.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/frame.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/elementhandlesymbol.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/elementhandle.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/lazyarg.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/types.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/webworker.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/target.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/targetmanageevents.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/targetmanager.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/target.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/cdpsession.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/connection.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/cdpsession.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/httprequest.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/consolemessage.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/device.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/node/screenrecorder.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/dialog.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/page.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/browsercontext.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/browser.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/api/api.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ariaqueryhandler.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/browsercontext.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/browser.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/browserconnector.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/dialog.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/emulationmanager.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/extensiontransport.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/httpresponse.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/httprequest.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/networkeventmanager.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/predefinednetworkconditions.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/utils.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/cdp.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/browserwebsockettransport.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/supportedbrowser.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/configuration.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/debug.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/getqueryhandler.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/handleiterator.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/piercequeryhandler.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/pqueryhandler.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/pselectorparser.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/puppeteer.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/scriptinjector.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/taskqueue.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/textqueryhandler.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/util.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/xpathqueryhandler.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/common/common.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/revisions.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/util/assert.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/util/errorlike.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/util/asynciterableutil.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/util/util.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/index-browser.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/types.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome-headless-shell.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromedriver.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromium.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/firefox.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/browser-data.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/launch.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/cache.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/install.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/detectplatform.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/cli.d.ts","../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/main.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/node/launchoptions.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/node/puppeteernode.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/node/browserlauncher.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/node/chromelauncher.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/node/firefoxlauncher.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/node/pipetransport.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/node/node.d.ts","../node_modules/puppeteer-core/lib/esm/puppeteer/index.d.ts","../src/pm/index.ts","../src/pm/node.ts","../src/pm/pure.ts","../src/pm/web.ts","../node_modules/esbuild/lib/main.d.ts","../src/lib/pmproxy.ts","../src/lib/basesuite.ts","../src/lib/types.ts","../src/lib/abstractbase.ts","../src/types.ts","../src/lib/index.ts","../src/coretypes.ts","../src/init.ts","../node_modules/type-fest/source/primitive.d.ts","../node_modules/type-fest/source/typed-array.d.ts","../node_modules/type-fest/source/basic.d.ts","../node_modules/type-fest/source/observable-like.d.ts","../node_modules/type-fest/source/union-to-intersection.d.ts","../node_modules/type-fest/source/keys-of-union.d.ts","../node_modules/type-fest/source/distributed-omit.d.ts","../node_modules/type-fest/source/distributed-pick.d.ts","../node_modules/type-fest/source/empty-object.d.ts","../node_modules/type-fest/source/if-empty-object.d.ts","../node_modules/type-fest/source/optional-keys-of.d.ts","../node_modules/type-fest/source/required-keys-of.d.ts","../node_modules/type-fest/source/has-required-keys.d.ts","../node_modules/type-fest/source/is-never.d.ts","../node_modules/type-fest/source/if-never.d.ts","../node_modules/type-fest/source/unknown-array.d.ts","../node_modules/type-fest/source/internal/array.d.ts","../node_modules/type-fest/source/internal/characters.d.ts","../node_modules/type-fest/source/is-any.d.ts","../node_modules/type-fest/source/is-float.d.ts","../node_modules/type-fest/source/is-integer.d.ts","../node_modules/type-fest/source/numeric.d.ts","../node_modules/type-fest/source/is-literal.d.ts","../node_modules/type-fest/source/trim.d.ts","../node_modules/type-fest/source/is-equal.d.ts","../node_modules/type-fest/source/and.d.ts","../node_modules/type-fest/source/or.d.ts","../node_modules/type-fest/source/greater-than.d.ts","../node_modules/type-fest/source/greater-than-or-equal.d.ts","../node_modules/type-fest/source/less-than.d.ts","../node_modules/type-fest/source/internal/tuple.d.ts","../node_modules/type-fest/source/internal/string.d.ts","../node_modules/type-fest/source/internal/keys.d.ts","../node_modules/type-fest/source/internal/numeric.d.ts","../node_modules/type-fest/source/simplify.d.ts","../node_modules/type-fest/source/omit-index-signature.d.ts","../node_modules/type-fest/source/pick-index-signature.d.ts","../node_modules/type-fest/source/merge.d.ts","../node_modules/type-fest/source/if-any.d.ts","../node_modules/type-fest/source/internal/type.d.ts","../node_modules/type-fest/source/internal/object.d.ts","../node_modules/type-fest/source/internal/index.d.ts","../node_modules/type-fest/source/except.d.ts","../node_modules/type-fest/source/require-at-least-one.d.ts","../node_modules/type-fest/source/non-empty-object.d.ts","../node_modules/type-fest/source/non-empty-string.d.ts","../node_modules/type-fest/source/unknown-record.d.ts","../node_modules/type-fest/source/unknown-set.d.ts","../node_modules/type-fest/source/unknown-map.d.ts","../node_modules/type-fest/source/tagged-union.d.ts","../node_modules/type-fest/source/writable.d.ts","../node_modules/type-fest/source/writable-deep.d.ts","../node_modules/type-fest/source/conditional-simplify.d.ts","../node_modules/type-fest/source/non-empty-tuple.d.ts","../node_modules/type-fest/source/array-tail.d.ts","../node_modules/type-fest/source/enforce-optional.d.ts","../node_modules/type-fest/source/simplify-deep.d.ts","../node_modules/type-fest/source/merge-deep.d.ts","../node_modules/type-fest/source/merge-exclusive.d.ts","../node_modules/type-fest/source/require-exactly-one.d.ts","../node_modules/type-fest/source/require-all-or-none.d.ts","../node_modules/type-fest/source/require-one-or-none.d.ts","../node_modules/type-fest/source/single-key-object.d.ts","../node_modules/type-fest/source/partial-deep.d.ts","../node_modules/type-fest/source/required-deep.d.ts","../node_modules/type-fest/source/subtract.d.ts","../node_modules/type-fest/source/paths.d.ts","../node_modules/type-fest/source/pick-deep.d.ts","../node_modules/type-fest/source/array-splice.d.ts","../node_modules/type-fest/source/literal-union.d.ts","../node_modules/type-fest/source/union-to-tuple.d.ts","../node_modules/type-fest/source/omit-deep.d.ts","../node_modules/type-fest/source/is-null.d.ts","../node_modules/type-fest/source/is-unknown.d.ts","../node_modules/type-fest/source/if-unknown.d.ts","../node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../node_modules/type-fest/source/undefined-on-partial-deep.d.ts","../node_modules/type-fest/source/readonly-deep.d.ts","../node_modules/type-fest/source/promisable.d.ts","../node_modules/type-fest/source/arrayable.d.ts","../node_modules/type-fest/source/tagged.d.ts","../node_modules/type-fest/source/invariant-of.d.ts","../node_modules/type-fest/source/set-optional.d.ts","../node_modules/type-fest/source/set-readonly.d.ts","../node_modules/type-fest/source/set-required.d.ts","../node_modules/type-fest/source/set-required-deep.d.ts","../node_modules/type-fest/source/set-non-nullable.d.ts","../node_modules/type-fest/source/set-non-nullable-deep.d.ts","../node_modules/type-fest/source/value-of.d.ts","../node_modules/type-fest/source/async-return-type.d.ts","../node_modules/type-fest/source/conditional-keys.d.ts","../node_modules/type-fest/source/conditional-except.d.ts","../node_modules/type-fest/source/conditional-pick.d.ts","../node_modules/type-fest/source/conditional-pick-deep.d.ts","../node_modules/type-fest/source/stringified.d.ts","../node_modules/type-fest/source/join.d.ts","../node_modules/type-fest/source/sum.d.ts","../node_modules/type-fest/source/less-than-or-equal.d.ts","../node_modules/type-fest/source/array-slice.d.ts","../node_modules/type-fest/source/string-slice.d.ts","../node_modules/type-fest/source/fixed-length-array.d.ts","../node_modules/type-fest/source/multidimensional-array.d.ts","../node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../node_modules/type-fest/source/iterable-element.d.ts","../node_modules/type-fest/source/entry.d.ts","../node_modules/type-fest/source/entries.d.ts","../node_modules/type-fest/source/set-return-type.d.ts","../node_modules/type-fest/source/set-parameter-type.d.ts","../node_modules/type-fest/source/asyncify.d.ts","../node_modules/type-fest/source/jsonify.d.ts","../node_modules/type-fest/source/jsonifiable.d.ts","../node_modules/type-fest/source/find-global-type.d.ts","../node_modules/type-fest/source/structured-cloneable.d.ts","../node_modules/type-fest/source/schema.d.ts","../node_modules/type-fest/source/literal-to-primitive.d.ts","../node_modules/type-fest/source/literal-to-primitive-deep.d.ts","../node_modules/type-fest/source/string-key-of.d.ts","../node_modules/type-fest/source/exact.d.ts","../node_modules/type-fest/source/readonly-tuple.d.ts","../node_modules/type-fest/source/override-properties.d.ts","../node_modules/type-fest/source/has-optional-keys.d.ts","../node_modules/type-fest/source/writable-keys-of.d.ts","../node_modules/type-fest/source/readonly-keys-of.d.ts","../node_modules/type-fest/source/has-readonly-keys.d.ts","../node_modules/type-fest/source/has-writable-keys.d.ts","../node_modules/type-fest/source/spread.d.ts","../node_modules/type-fest/source/is-tuple.d.ts","../node_modules/type-fest/source/tuple-to-object.d.ts","../node_modules/type-fest/source/tuple-to-union.d.ts","../node_modules/type-fest/source/int-range.d.ts","../node_modules/type-fest/source/int-closed-range.d.ts","../node_modules/type-fest/source/array-indices.d.ts","../node_modules/type-fest/source/array-values.d.ts","../node_modules/type-fest/source/set-field-type.d.ts","../node_modules/type-fest/source/shared-union-fields.d.ts","../node_modules/type-fest/source/all-union-fields.d.ts","../node_modules/type-fest/source/shared-union-fields-deep.d.ts","../node_modules/type-fest/source/if-null.d.ts","../node_modules/type-fest/source/words.d.ts","../node_modules/type-fest/source/camel-case.d.ts","../node_modules/type-fest/source/camel-cased-properties.d.ts","../node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../node_modules/type-fest/source/delimiter-case.d.ts","../node_modules/type-fest/source/kebab-case.d.ts","../node_modules/type-fest/source/delimiter-cased-properties.d.ts","../node_modules/type-fest/source/kebab-cased-properties.d.ts","../node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../node_modules/type-fest/source/pascal-case.d.ts","../node_modules/type-fest/source/pascal-cased-properties.d.ts","../node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../node_modules/type-fest/source/snake-case.d.ts","../node_modules/type-fest/source/snake-cased-properties.d.ts","../node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../node_modules/type-fest/source/screaming-snake-case.d.ts","../node_modules/type-fest/source/split.d.ts","../node_modules/type-fest/source/replace.d.ts","../node_modules/type-fest/source/string-repeat.d.ts","../node_modules/type-fest/source/includes.d.ts","../node_modules/type-fest/source/get.d.ts","../node_modules/type-fest/source/last-array-element.d.ts","../node_modules/type-fest/source/global-this.d.ts","../node_modules/type-fest/source/package-json.d.ts","../node_modules/type-fest/source/tsconfig-json.d.ts","../node_modules/type-fest/index.d.ts","../src/lib/basebuilder.ts","../src/lib/classbuilder.ts","../src/lib/core.ts","../src/node.ts","../src/lib/sidecar.ts","../src/pm/sidecar.ts","../src/pm/nodesidecar.ts","../src/nodesidecar.ts","../src/pure.ts","../src/pm/base.ts","../src/lib/pmproxy.test/mockpmbase.ts","../src/pure.test.ts","../src/pm/puresidecar.ts","../src/puresidecar.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/node-static/index.d.ts","../src/reportserverlib.ts","../src/reportserver.ts","../src/web.ts","../src/pm/websidecar.ts","../src/websidecar.ts","../node_modules/ansi-colors/types/index.d.ts","../src/utils.ts","../src/utils/buildtemplates.ts","../src/esbuildconfigs/index.ts","../src/esbuildconfigs/inputfilesplugin.ts","../src/esbuildconfigs/featuresplugin.ts","../src/esbuildconfigs/rebuildplugin.ts","../src/esbuildconfigs/node.ts","../node_modules/esbuild-plugin-polyfill-node/dist/index.d.ts","../src/esbuildconfigs/web.ts","../src/esbuildconfigs/consoledetectorplugin.ts","../src/esbuildconfigs/nativeimportdetectorplugin.ts","../src/esbuildconfigs/pure.ts","../src/web.html.ts","../src/build.ts","../src/defaultconfig.ts","../src/init-docs.ts","../src/utils/queue.ts","../node_modules/typescript/lib/typescript.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@eslint/core/dist/esm/types.d.ts","../node_modules/eslint/lib/types/use-at-your-own-risk.d.ts","../node_modules/eslint/lib/types/index.d.ts","../node_modules/tsc-prog/dist/index.d.ts","../src/utils/logfiles.ts","../src/utils/makeprompt.ts","../src/pm/pm_witheslintandtsc.ts","../src/pm/main.ts","../src/run.ts","../src/pm/types.ts","../src/pm/__tests__/nodesidecar.testeranto.ts","../src/pm/__tests__/puresidecar.testeranto.ts","../src/pm/__tests__/websidecar.testeranto.ts","../src/pm/layers/base/pm_base.ts","../src/pm/layers/base/components/pageoperations.testeranto.ts","../src/pm/layers/base/components/pageoperations.ts","../src/pm/layers/linting/components/linter.ts","../src/pm/layers/linting/components/typechecker.ts","../src/pm/layers/main/components/sidecarmanager.ts","../src/pm/layers/main/components/testrunner.ts","../node_modules/@types/deep-eql/index.d.ts","../node_modules/@types/chai/index.d.ts","../src/reportserver.test.ts/index.ts","../src/components/sunriseanimation.test/implementation.ts","../src/components/sunriseanimation.test/index.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/prop-types/index.d.ts","../node_modules/@types/react/index.d.ts","../node_modules/@types/react-dom/client.d.ts","../src/components/sunriseanimation.test/types.ts","../src/components/sunriseanimation.test/interface.ts","../src/components/sunriseanimation.test/specification.ts","../src/components/pure/appframe.test/types.ts","../src/components/pure/appframe.test/specification.ts","../src/types/features.ts","../src/components/pure/featuresreporterview.test/types.ts","../src/components/pure/featuresreporterview.test/specification.ts","../node_modules/react-bootstrap/esm/accordioncontext.d.ts","../node_modules/@restart/ui/esm/types.d.ts","../node_modules/react-bootstrap/esm/helpers.d.ts","../node_modules/react-bootstrap/esm/accordionbutton.d.ts","../node_modules/@types/react-transition-group/transition.d.ts","../node_modules/react-bootstrap/esm/collapse.d.ts","../node_modules/react-bootstrap/esm/accordioncollapse.d.ts","../node_modules/react-bootstrap/esm/accordionitem.d.ts","../node_modules/react-bootstrap/esm/accordionheader.d.ts","../node_modules/react-bootstrap/esm/accordionbody.d.ts","../node_modules/react-bootstrap/esm/accordion.d.ts","../node_modules/react-bootstrap/esm/closebutton.d.ts","../node_modules/@popperjs/core/lib/enums.d.ts","../node_modules/@popperjs/core/lib/modifiers/popperoffsets.d.ts","../node_modules/@popperjs/core/lib/modifiers/flip.d.ts","../node_modules/@popperjs/core/lib/modifiers/hide.d.ts","../node_modules/@popperjs/core/lib/modifiers/offset.d.ts","../node_modules/@popperjs/core/lib/modifiers/eventlisteners.d.ts","../node_modules/@popperjs/core/lib/modifiers/computestyles.d.ts","../node_modules/@popperjs/core/lib/modifiers/arrow.d.ts","../node_modules/@popperjs/core/lib/modifiers/preventoverflow.d.ts","../node_modules/@popperjs/core/lib/modifiers/applystyles.d.ts","../node_modules/@popperjs/core/lib/types.d.ts","../node_modules/@popperjs/core/lib/modifiers/index.d.ts","../node_modules/@popperjs/core/lib/utils/detectoverflow.d.ts","../node_modules/@popperjs/core/lib/createpopper.d.ts","../node_modules/@popperjs/core/lib/popper-lite.d.ts","../node_modules/@popperjs/core/lib/popper.d.ts","../node_modules/@popperjs/core/lib/index.d.ts","../node_modules/@popperjs/core/index.d.ts","../node_modules/@restart/ui/esm/usepopper.d.ts","../node_modules/react-bootstrap/esm/types.d.ts","../node_modules/react-bootstrap/esm/alertlink.d.ts","../node_modules/react-bootstrap/esm/alertheading.d.ts","../node_modules/react-bootstrap/esm/alert.d.ts","../node_modules/@restart/ui/esm/anchor.d.ts","../node_modules/react-bootstrap/esm/anchor.d.ts","../node_modules/react-bootstrap/esm/badge.d.ts","../node_modules/react-bootstrap/esm/breadcrumbitem.d.ts","../node_modules/react-bootstrap/esm/breadcrumb.d.ts","../node_modules/@restart/ui/esm/button.d.ts","../node_modules/react-bootstrap/esm/button.d.ts","../node_modules/react-bootstrap/esm/buttongroup.d.ts","../node_modules/react-bootstrap/esm/buttontoolbar.d.ts","../node_modules/react-bootstrap/esm/cardimg.d.ts","../node_modules/react-bootstrap/esm/cardtitle.d.ts","../node_modules/react-bootstrap/esm/cardsubtitle.d.ts","../node_modules/react-bootstrap/esm/cardbody.d.ts","../node_modules/react-bootstrap/esm/cardlink.d.ts","../node_modules/react-bootstrap/esm/cardtext.d.ts","../node_modules/react-bootstrap/esm/cardheader.d.ts","../node_modules/react-bootstrap/esm/cardfooter.d.ts","../node_modules/react-bootstrap/esm/cardimgoverlay.d.ts","../node_modules/react-bootstrap/esm/card.d.ts","../node_modules/react-bootstrap/esm/cardgroup.d.ts","../node_modules/react-bootstrap/esm/carouselcaption.d.ts","../node_modules/react-bootstrap/esm/carouselitem.d.ts","../node_modules/react-bootstrap/esm/carousel.d.ts","../node_modules/react-bootstrap/esm/col.d.ts","../node_modules/react-bootstrap/esm/container.d.ts","../node_modules/@restart/ui/esm/dropdowncontext.d.ts","../node_modules/@restart/ui/esm/useclickoutside.d.ts","../node_modules/@restart/ui/esm/dropdownmenu.d.ts","../node_modules/@restart/ui/esm/dropdowntoggle.d.ts","../node_modules/@restart/ui/esm/dropdownitem.d.ts","../node_modules/@restart/ui/esm/dropdown.d.ts","../node_modules/react-bootstrap/esm/dropdowncontext.d.ts","../node_modules/react-bootstrap/esm/dropdowntoggle.d.ts","../node_modules/react-bootstrap/esm/dropdownmenu.d.ts","../node_modules/react-bootstrap/esm/dropdownitem.d.ts","../node_modules/react-bootstrap/esm/dropdownitemtext.d.ts","../node_modules/react-bootstrap/esm/dropdowndivider.d.ts","../node_modules/react-bootstrap/esm/dropdownheader.d.ts","../node_modules/react-bootstrap/esm/dropdown.d.ts","../node_modules/react-bootstrap/esm/dropdownbutton.d.ts","../node_modules/react-bootstrap/esm/fade.d.ts","../node_modules/react-bootstrap/esm/image.d.ts","../node_modules/react-bootstrap/esm/figurecaption.d.ts","../node_modules/react-bootstrap/esm/figure.d.ts","../node_modules/react-bootstrap/esm/figureimage.d.ts","../node_modules/react-bootstrap/esm/formgroup.d.ts","../node_modules/react-bootstrap/esm/feedback.d.ts","../node_modules/react-bootstrap/esm/formcontrol.d.ts","../node_modules/react-bootstrap/esm/formfloating.d.ts","../node_modules/react-bootstrap/esm/formcheckinput.d.ts","../node_modules/react-bootstrap/esm/formchecklabel.d.ts","../node_modules/react-bootstrap/esm/formcheck.d.ts","../node_modules/react-bootstrap/esm/formlabel.d.ts","../node_modules/react-bootstrap/esm/formtext.d.ts","../node_modules/react-bootstrap/esm/formrange.d.ts","../node_modules/react-bootstrap/esm/formselect.d.ts","../node_modules/react-bootstrap/esm/floatinglabel.d.ts","../node_modules/react-bootstrap/esm/form.d.ts","../node_modules/react-bootstrap/esm/inputgrouptext.d.ts","../node_modules/@types/react/jsx-runtime.d.ts","../node_modules/react-bootstrap/esm/inputgroup.d.ts","../node_modules/@restart/ui/esm/navitem.d.ts","../node_modules/@restart/ui/esm/nav.d.ts","../node_modules/react-bootstrap/esm/listgroupitem.d.ts","../node_modules/react-bootstrap/esm/listgroup.d.ts","../node_modules/@restart/ui/esm/modalmanager.d.ts","../node_modules/@restart/ui/esm/usewaitfordomref.d.ts","../node_modules/@restart/ui/esm/imperativetransition.d.ts","../node_modules/@restart/ui/esm/modal.d.ts","../node_modules/react-bootstrap/esm/modalbody.d.ts","../node_modules/react-bootstrap/esm/abstractmodalheader.d.ts","../node_modules/react-bootstrap/esm/modalheader.d.ts","../node_modules/react-bootstrap/esm/modaltitle.d.ts","../node_modules/react-bootstrap/esm/modalfooter.d.ts","../node_modules/react-bootstrap/esm/modaldialog.d.ts","../node_modules/react-bootstrap/esm/modal.d.ts","../node_modules/react-bootstrap/esm/navitem.d.ts","../node_modules/react-bootstrap/esm/navlink.d.ts","../node_modules/react-bootstrap/esm/nav.d.ts","../node_modules/react-bootstrap/esm/navbarbrand.d.ts","../node_modules/react-bootstrap/esm/navbarcollapse.d.ts","../node_modules/react-bootstrap/esm/offcanvasbody.d.ts","../node_modules/react-bootstrap/esm/offcanvasheader.d.ts","../node_modules/react-bootstrap/esm/offcanvastitle.d.ts","../node_modules/react-bootstrap/esm/offcanvas.d.ts","../node_modules/react-bootstrap/esm/navbaroffcanvas.d.ts","../node_modules/react-bootstrap/esm/navbartext.d.ts","../node_modules/react-bootstrap/esm/navbartoggle.d.ts","../node_modules/react-bootstrap/esm/navbar.d.ts","../node_modules/react-bootstrap/esm/navdropdown.d.ts","../node_modules/react-bootstrap/esm/offcanvastoggling.d.ts","../node_modules/@restart/ui/esm/userootclose.d.ts","../node_modules/@restart/ui/esm/overlay.d.ts","../node_modules/react-bootstrap/esm/overlay.d.ts","../node_modules/react-bootstrap/esm/overlaytrigger.d.ts","../node_modules/react-bootstrap/esm/pageitem.d.ts","../node_modules/react-bootstrap/esm/pagination.d.ts","../node_modules/react-bootstrap/esm/useplaceholder.d.ts","../node_modules/react-bootstrap/esm/placeholderbutton.d.ts","../node_modules/react-bootstrap/esm/placeholder.d.ts","../node_modules/react-bootstrap/esm/popoverheader.d.ts","../node_modules/react-bootstrap/esm/popoverbody.d.ts","../node_modules/react-bootstrap/esm/popover.d.ts","../node_modules/react-bootstrap/esm/progressbar.d.ts","../node_modules/react-bootstrap/esm/ratio.d.ts","../node_modules/react-bootstrap/esm/row.d.ts","../node_modules/react-bootstrap/esm/spinner.d.ts","../node_modules/react-bootstrap/esm/splitbutton.d.ts","../node_modules/@react-aria/ssr/dist/types.d.ts","../node_modules/@restart/ui/esm/ssr.d.ts","../node_modules/react-bootstrap/esm/ssrprovider.d.ts","../node_modules/react-bootstrap/esm/createutilityclasses.d.ts","../node_modules/react-bootstrap/esm/stack.d.ts","../node_modules/react-bootstrap/esm/tabpane.d.ts","../node_modules/@restart/ui/esm/tabpanel.d.ts","../node_modules/@restart/ui/esm/tabs.d.ts","../node_modules/react-bootstrap/esm/tabcontainer.d.ts","../node_modules/react-bootstrap/esm/tabcontent.d.ts","../node_modules/react-bootstrap/esm/tab.d.ts","../node_modules/react-bootstrap/esm/table.d.ts","../node_modules/react-bootstrap/esm/tabs.d.ts","../node_modules/react-bootstrap/esm/themeprovider.d.ts","../node_modules/react-bootstrap/esm/toastbody.d.ts","../node_modules/react-bootstrap/esm/toastheader.d.ts","../node_modules/react-bootstrap/esm/toast.d.ts","../node_modules/react-bootstrap/esm/toastcontainer.d.ts","../node_modules/react-bootstrap/esm/togglebutton.d.ts","../node_modules/react-bootstrap/esm/togglebuttongroup.d.ts","../node_modules/react-bootstrap/esm/tooltip.d.ts","../node_modules/react-bootstrap/esm/index.d.ts","../src/components/pure/themecard.tsx","../src/components/pure/modalcontent.tsx","../src/components/pure/modalcontent.test/types.ts","../src/components/pure/modalcontent.test/specification.ts","../src/components/teststatusbadge.tsx","../node_modules/react-router/dist/development/routemodules-qbivmbjd.d.ts","../node_modules/react-router/dist/development/index-react-server-client-cmphysrb.d.ts","../node_modules/react-router/node_modules/cookie/dist/index.d.ts","../node_modules/react-router/dist/development/register-dioileq5.d.ts","../node_modules/react-router/dist/development/index.d.ts","../node_modules/react-router-dom/dist/index.d.ts","../src/components/pure/navbar.tsx","../src/components/pure/projectpageview.tsx","../src/components/pure/projectpageview.test/types.ts","../src/components/pure/projectpageview.test/specification.ts","../src/components/pure/testpageview.test/types.ts","../src/components/pure/testpageview.test/implementation.ts","../src/components/pure/testpageview.test/specification.ts","../src/esbuildconfigs/eslint-formatter-testeranto.ts","../src/lib/mocks.test.ts","../src/lib/basesuite.test/test.ts","../src/lib/basesuite.test/mock.ts","../src/lib/basesuite.test/node.test.ts","../src/lib/basesuite.test/pure.test.ts","../src/lib/basesuite.test/web.test.ts","../src/lib/abstractbase.test/mockgiven.ts","../src/lib/abstractbase.test/mockthen.ts","../src/lib/abstractbase.test/mockwhen.ts","../src/lib/abstractbase.test/types.ts","../src/lib/abstractbase.test/adapter.ts","../src/lib/abstractbase.test/implementation.ts","../src/lib/abstractbase.test/specification.ts","../src/lib/abstractbase.test/index.ts","../src/lib/basebuilder.test/basebuilder.test.types.ts","../src/lib/basebuilder.test/basebuilder.test.adapter.ts","../src/lib/basebuilder.test/basebuilder.test.mock.ts","../src/lib/basebuilder.test/basebuilder.test.implementation.ts","../src/lib/basebuilder.test/basebuilder.test.specification.ts","../src/lib/basebuilder.test/basebuilder.test.node.ts","../src/lib/basebuilder.test/basebuilder.test.pure.ts","../src/lib/basebuilder.test/basebuilder.test.web.ts","../src/lib/classbuilder.test/classbuilder.test.adapter.ts","../src/lib/classbuilder.test/mock.ts","../src/lib/classbuilder.test/classbuilder.test.types.ts","../src/lib/classbuilder.test/classbuilder.test.specification.ts","../src/lib/classbuilder.test/classbuilder.test.implementation.ts","../src/lib/classbuilder.test/classbuilder.test.ts","../src/lib/core.test/mockcore.ts","../src/lib/core.test/core.test.types.ts","../src/lib/core.test/core.test.adapter.ts","../src/lib/core.test/core.test.implementation.ts","../src/lib/core.test/core.test.specification.ts","../src/lib/core.test/core.test.ts","../src/lib/pmproxy.test/implementation.ts","../src/lib/pmproxy.test/specification.ts","../src/lib/pmproxy.test/index.ts","../src/lib/pmproxy.test/types.ts","../src/lib/pmproxy.test/adapter.ts","../src/lib/pmproxy.test/mockpm.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../src/mothership/index.ts","../src/mothership/test.ts","../src/utils/api.ts","../src/components/pure/testpageview.tsx","../src/components/stateful/testpage.tsx","../src/components/stateful/projectpage.tsx","../src/components/pure/projectspageview.tsx","../src/components/stateful/projectspage.tsx","../src/components/sunriseanimation.tsx","../src/components/pure/settingsbutton.tsx","../src/components/pure/appframe.tsx","../src/components/pure/featuresreporterview.tsx","../src/components/stateful/featuresreporter.tsx","../src/app.tsx","../src/components/pure/appframe.test/implementation.tsx","../../testeranto-react/node_modules/@types/react-dom/client.d.ts","../../testeranto-react/src/react-dom/component/dynamic.ts","../../testeranto-react/src/react/component/index.ts","../../testeranto-react/src/mocks/mockreactcomponent.tsx","../../testeranto-react/node_modules/@types/chai/index.d.ts","../../testeranto-react/src/react-dom/component/web.ts","../src/components/pure/appframe.test/index.tsx","../src/components/pure/featuresreporterview.test/implementation.tsx","../src/components/pure/featuresreporterview.test/index.tsx","../src/components/pure/modalcontent.test/implementation.tsx","../src/components/pure/modalcontent.test/index.tsx","../src/components/pure/projectpageview.test/implementation.tsx","../src/components/pure/projectpageview.test/index.tsx","../../testeranto-react/src/react-dom/jsx/index.ts","../../testeranto-react/src/react-dom/jsx/dynamic.ts","../../testeranto-react/src/react-dom/jsx/web.ts","../src/components/pure/testpageview.test/index.tsx","../src/utils/featureutils.tsx","../node_modules/source-map-js/source-map.d.ts","../node_modules/sass/types/deprecations.d.ts","../node_modules/sass/types/util/promise_or.d.ts","../node_modules/sass/types/importer.d.ts","../node_modules/sass/types/logger/source_location.d.ts","../node_modules/sass/types/logger/source_span.d.ts","../node_modules/sass/types/logger/index.d.ts","../node_modules/immutable/dist/immutable.d.ts","../node_modules/sass/types/value/boolean.d.ts","../node_modules/sass/types/value/calculation.d.ts","../node_modules/sass/types/value/color.d.ts","../node_modules/sass/types/value/function.d.ts","../node_modules/sass/types/value/list.d.ts","../node_modules/sass/types/value/map.d.ts","../node_modules/sass/types/value/mixin.d.ts","../node_modules/sass/types/value/number.d.ts","../node_modules/sass/types/value/string.d.ts","../node_modules/sass/types/value/argument_list.d.ts","../node_modules/sass/types/value/index.d.ts","../node_modules/sass/types/options.d.ts","../node_modules/sass/types/compile.d.ts","../node_modules/sass/types/exception.d.ts","../node_modules/sass/types/legacy/exception.d.ts","../node_modules/sass/types/legacy/plugin_this.d.ts","../node_modules/sass/types/legacy/function.d.ts","../node_modules/sass/types/legacy/importer.d.ts","../node_modules/sass/types/legacy/options.d.ts","../node_modules/sass/types/legacy/render.d.ts","../node_modules/sass/types/index.d.ts","../node_modules/esbuild-sass-plugin/lib/plugin.d.ts","../node_modules/postcss/lib/previous-map.d.ts","../node_modules/postcss/lib/input.d.ts","../node_modules/postcss/lib/css-syntax-error.d.ts","../node_modules/postcss/lib/declaration.d.ts","../node_modules/postcss/lib/root.d.ts","../node_modules/postcss/lib/warning.d.ts","../node_modules/postcss/lib/lazy-result.d.ts","../node_modules/postcss/lib/no-work-result.d.ts","../node_modules/postcss/lib/processor.d.ts","../node_modules/postcss/lib/result.d.ts","../node_modules/postcss/lib/document.d.ts","../node_modules/postcss/lib/rule.d.ts","../node_modules/postcss/lib/node.d.ts","../node_modules/postcss/lib/comment.d.ts","../node_modules/postcss/lib/container.d.ts","../node_modules/postcss/lib/at-rule.d.ts","../node_modules/postcss/lib/list.d.ts","../node_modules/postcss/lib/postcss.d.ts","../node_modules/esbuild-sass-plugin/lib/utils.d.ts","../node_modules/esbuild-sass-plugin/lib/index.d.ts","../testeranto.config.ts","../node_modules/keyv/src/index.d.ts","../node_modules/@types/http-cache-semantics/index.d.ts","../node_modules/@types/responselike/index.d.ts","../node_modules/@types/cacheable-request/index.d.ts","../node_modules/@types/d3-array/index.d.ts","../node_modules/@types/d3-selection/index.d.ts","../node_modules/@types/d3-axis/index.d.ts","../node_modules/@types/d3-brush/index.d.ts","../node_modules/@types/d3-chord/index.d.ts","../node_modules/@types/d3-color/index.d.ts","../node_modules/@types/geojson/index.d.ts","../node_modules/@types/d3-contour/index.d.ts","../node_modules/@types/d3-delaunay/index.d.ts","../node_modules/@types/d3-dispatch/index.d.ts","../node_modules/@types/d3-drag/index.d.ts","../node_modules/@types/d3-dsv/index.d.ts","../node_modules/@types/d3-ease/index.d.ts","../node_modules/@types/d3-fetch/index.d.ts","../node_modules/@types/d3-force/index.d.ts","../node_modules/@types/d3-format/index.d.ts","../node_modules/@types/d3-geo/index.d.ts","../node_modules/@types/d3-hierarchy/index.d.ts","../node_modules/@types/d3-interpolate/index.d.ts","../node_modules/@types/d3-path/index.d.ts","../node_modules/@types/d3-polygon/index.d.ts","../node_modules/@types/d3-quadtree/index.d.ts","../node_modules/@types/d3-random/index.d.ts","../node_modules/@types/d3-time/index.d.ts","../node_modules/@types/d3-scale/index.d.ts","../node_modules/@types/d3-scale-chromatic/index.d.ts","../node_modules/@types/d3-shape/index.d.ts","../node_modules/@types/d3-time-format/index.d.ts","../node_modules/@types/d3-timer/index.d.ts","../node_modules/@types/d3-transition/index.d.ts","../node_modules/@types/d3-zoom/index.d.ts","../node_modules/@types/d3/index.d.ts","../node_modules/@types/eslint/use-at-your-own-risk.d.ts","../node_modules/@types/eslint/index.d.ts","../node_modules/@types/express-session/index.d.ts","../node_modules/@types/unist/index.d.ts","../node_modules/@types/hast/index.d.ts","../node_modules/@types/history/domutils.d.ts","../node_modules/@types/history/createbrowserhistory.d.ts","../node_modules/@types/history/createhashhistory.d.ts","../node_modules/@types/history/creatememoryhistory.d.ts","../node_modules/@types/history/locationutils.d.ts","../node_modules/@types/history/pathutils.d.ts","../node_modules/@types/history/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@types/json5/index.d.ts","../node_modules/@types/keyv/index.d.ts","../node_modules/@types/mz/child_process.d.ts","../node_modules/@types/mz/crypto.d.ts","../node_modules/@types/mz/dns.d.ts","../node_modules/@types/mz/fs.d.ts","../node_modules/@types/mz/readline.d.ts","../node_modules/@types/mz/zlib.d.ts","../node_modules/@types/mz/index.d.ts","../node_modules/@types/react-dom/index.d.ts","../node_modules/@types/react-router/index.d.ts","../node_modules/@types/react-router-dom/index.d.ts","../node_modules/@types/react-test-renderer/index.d.ts","../node_modules/@types/react-transition-group/config.d.ts","../node_modules/@types/react-transition-group/csstransition.d.ts","../node_modules/@types/react-transition-group/switchtransition.d.ts","../node_modules/@types/react-transition-group/transitiongroup.d.ts","../node_modules/@types/react-transition-group/index.d.ts","../node_modules/@types/scheduler/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/trusted-types/lib/index.d.ts","../node_modules/@types/trusted-types/index.d.ts","../node_modules/@types/uuid/index.d.ts","../node_modules/@types/warning/index.d.ts","../node_modules/@types/ws/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts","../node_modules/@types/yauzl/index.d.ts"],"fileIdsList":[[207,253,688],[207,253,696],[207,253,459,696,956],[207,253,459,696,954],[207,253,459,644,689,954,955,957],[207,253,459,696,967],[207,253],[207,253,459,644,967,968],[203,207,253],[207,253,667],[207,253,734],[207,253,728,730],[207,253,718,728,729,731,732,733],[207,253,728],[207,253,718,728],[207,253,719,720,721,722,723,724,725,726,727],[207,253,719,723,724,727,728,731],[207,253,719,720,721,722,723,724,725,726,727,728,729,731,732],[207,253,718,719,720,721,722,723,724,725,726,727],[207,253,696,707,736,746,768,769,770],[207,253,696,736],[207,253,696,707,746],[207,253,696,736,766,767],[207,253,696,766],[207,253,696,707],[207,253,696,707,806,807,808],[207,253,696,707,746,802],[207,253,696,707,736,807,808,832],[207,253,849],[207,253,696,707,855],[207,253,735],[207,253,696,767],[207,253,696,735,736],[89,129,141,143,149,150,151,152,153,154,207,253],[88,207,253],[89,149,203,207,253],[88,140,207,253],[151,207,253],[88,89,125,149,151,152,207,253],[149,207,253],[89,125,128,140,148,207,253],[88,141,142,149,207,253],[89,207,253],[125,140,207,253],[156,157,158,207,253],[83,207,253],[83,84,85,86,87,207,253],[143,149,207,253],[143,144,149,207,253],[89,125,143,144,149,207,253],[144,145,146,147,207,253],[97,207,253],[160,161,162,163,164,165,166,167,168,169,170,171,207,253],[93,207,253],[97,166,207,253],[88,97,101,112,125,128,140,148,155,159,172,174,175,181,202,207,253],[173,207,253],[126,207,253],[126,127,207,253],[148,155,207,253],[88,97,112,125,130,131,132,133,134,135,155,207,253],[130,131,132,133,134,135,136,137,138,139,207,253],[115,207,253],[88,133,207,253],[88,112,125,128,130,131,132,134,155,207,253],[129,133,207,253],[88,97,207,253],[133,207,253],[101,104,105,207,253],[102,207,253],[107,207,253],[112,207,253],[102,103,104,105,106,107,108,109,110,111,207,253],[97,101,102,103,104,207,253],[97,101,103,207,253],[104,207,253],[92,93,94,95,96,207,253],[93,112,207,253],[92,207,253],[92,93,207,253],[176,177,178,179,180,207,253],[97,125,207,253],[90,91,98,99,100,207,253],[101,112,114,115,116,117,207,253],[101,112,114,120,207,253],[113,114,115,116,117,118,119,121,122,123,124,207,253],[114,115,207,253],[113,115,207,253],[101,112,114,207,253],[115,116,207,253],[101,112,113,114,207,253],[184,207,253],[155,207,253],[155,189,207,253],[182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,207,253],[140,203,207,253],[207,253,268,303,936],[207,253,265,268,296,303,1023,1024,1025],[207,253,268,303],[207,253,1028,1056],[207,253,1027,1033],[207,253,1038],[207,253,1033],[207,253,1032],[207,253,1050],[207,253,1046],[207,253,1028,1045,1056],[207,253,1027,1028,1029,1030,1031,1032,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057],[207,253,666,667,1059],[207,253,1060],[207,253,265,268,303,930,931,932],[207,253,258,265,938],[207,253,933,935,937],[207,253,1062],[207,253,1064,1070],[207,253,1065,1066,1067,1068,1069],[207,253,1070],[207,253,1071],[207,253,1072],[207,253,265,303],[207,253,254,303],[207,253,258,303],[207,253,261,303],[207,253,266,303],[207,253,303,1076,1077,1078,1079,1080,1081],[207,253,280,303],[207,253,302,303],[207,253,265,266,268,303,640],[207,250,253],[207,252,253],[253],[207,253,258,288],[207,253,254,259,265,266,273,285,296],[207,253,254,255,265,273],[207,253,256,297],[207,253,257,258,266,274],[207,253,258,285,293],[207,253,259,261,265,273],[207,252,253,260],[207,253,261,262],[207,253,263,265],[207,252,253,265],[207,253,265,266,267,285,296],[207,253,265,266,267,280,285,288],[207,248,253],[207,248,253,261,265,268,273,285,296],[207,253,265,266,268,269,273,285,293,296],[207,253,268,270,285,293,296],[205,206,207,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302],[207,253,265,271],[207,253,272,296],[207,253,261,265,273,285],[207,253,274],[207,253,275],[207,252,253,276],[207,250,251,252,253,254,255,256,257,258,259,260,261,262,263,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302],[207,253,278],[207,253,279],[207,253,265,280,281],[207,253,280,282,297,299],[207,253,265,285,286,288],[207,253,287,288],[207,253,285,286],[207,253,288],[207,253,289],[207,250,253,285,290],[207,253,265,291,292],[207,253,291,292],[207,253,258,273,285,293],[207,253,294],[207,253,273,295],[207,253,268,279,296],[207,253,258,297],[207,253,285,298],[207,253,272,299],[207,253,300],[207,253,265,267,276,285,288,296,298,299,301],[207,253,285,302],[207,253,696,880,1070],[207,253,696,1070],[207,253,696,710],[207,253,710,1087,1088,1089,1090],[207,253,693,694,695],[207,253,268,285,303],[207,253,1093,1132],[207,253,1093,1117,1132],[207,253,1132],[207,253,1093],[207,253,1093,1118,1132],[207,253,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131],[207,253,1118,1132],[207,253,266,285,303,640],[207,253,268,303,930,934],[207,253,1134],[207,253,265,268,270,273,285,293,296,302,303],[207,253,1139],[207,253,265,285,303],[207,253,452],[207,253,452,1000,1001,1020],[207,253,452,1021],[207,253,452,1000,1019,1021],[207,253,666,667,668,669],[207,253,670],[207,253,265],[207,253,1016],[207,253,1014,1016],[207,253,1005,1013,1014,1015,1017,1019],[207,253,1003],[207,253,1006,1011,1016,1019],[207,253,1002,1019],[207,253,1006,1007,1010,1011,1012,1019],[207,253,1006,1007,1008,1010,1011,1019],[207,253,1003,1004,1005,1006,1007,1011,1012,1013,1015,1016,1017,1019],[207,253,972,1003,1004,1005,1006,1007,1008,1010,1011,1012,1013,1014,1015,1016,1017,1018],[207,253,972,1019],[207,253,1006,1008,1009,1011,1012,1019],[207,253,1010,1019],[207,253,1011,1012,1016,1019],[207,253,1004,1014],[207,253,330,332,333,334,362,369,370,372,375,376,382,383,387,388,389,390],[207,253,254,303,305,316,318,319,322,323,376,388,389],[207,253,319,322,323,324,376,388,390],[207,253,306,323,381],[207,253,305],[207,253,305,333,360,362,370,371,374,388],[207,253,334,382],[207,253,305,323,330,334,335,336,362,368,369,372,374,382,388],[207,253,305,326,330,370,382],[207,253,305,329,370,383],[207,253,305,360,361,372],[207,253,305,322,334,372,374],[207,253,323,325,370,372,374,388],[207,253,305,317,319,322,323,325,328,330,333,335,336,356,357,358,359,362,364,369,370,372,374,375,376,382,383,384,385,386,387,389,390],[207,253,322,328,331,332,333,372,374],[207,253,375,382,388,389,390],[207,253,323,328,334,374,382],[207,253,334,372],[207,253,338,372,374],[207,253,350],[207,253,254,316,317,378,379,381,388,390,393],[207,253,315,318,394],[207,253,316,319,379,381,388,389,390,394],[207,253,335,336,345,346,347,348,349,350,351,352,353,354,356,359,363,364,365,366,367,368,378,379,380,381,392,393,394,395,396,397,398,399,400,401,402,403],[207,253,367],[207,253,306,379,381,382],[207,253,305,306,315,323,327,380,382],[207,253,305,382],[207,253,305,328,382,388],[207,253,305,382,387],[207,253,305,347,349,367,372,374,382],[207,253,305,317,382,388],[207,253,305,322,323,333,344,349,374,382],[207,253,315],[207,253,305,322,330,335,336,349,351,352,365,366,368,370,372,382,388],[207,253,323,328,336,351,353,354,356,365,367,379,380,382,388],[207,253,305,323,349,367],[207,253,370],[207,253,305,370,382,383,399],[207,253,305,329,330,370,400],[207,253,305,360,362,372,382],[207,253,305,322,323,328,333,334,345,348,350,367,372,374,382],[207,253,305,333,346,349,382],[207,253,326,330,356,367],[207,253,305,400],[207,253,305,323,355,370,382,388],[207,253,305,317,319,330,333,336,348,356,357,358,359,363,364,367,370,379,380,382,388,389,390],[207,253,356],[207,253,305,317,337,348,376,378,380,388,389,390],[207,253,305,323,379],[207,253,305,323,377,379,380,381,390],[207,253,382],[207,253,305,334,347,375,376,382],[207,253,326],[207,253,315,316,317,318,319,323,326,327,328,329,331,338,339,355,357,358,360,373,374,384,385,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419],[207,253,406],[207,253,313,315,316,317,390],[207,253,333,370],[207,253,338],[207,253,317],[207,253,321,322],[207,253,305,372],[207,253,333,374],[207,253,333,344],[207,253,323,330,383],[207,253,338,344],[207,253,342],[207,253,318,339,390],[207,253,344,370,372,374,388],[207,253,304,333,372,373],[207,253,323,325,358,382],[207,253,334,372,374],[207,253,305,313,391,404,420,421,425],[207,253,426,446],[207,253,339,374],[207,253,337,340,341,342,343,447],[207,253,374],[207,253,317,381,390,406,439,440,441],[207,253,390,440,441,442],[207,253,440,441,442],[207,253,318,406],[207,253,386,440,441,442,443,444,445],[207,253,318,390,406,407,414,440],[207,253,285,322,372,388],[207,253,322],[207,253,322,324,337,422,423,424],[207,253,320],[207,253,254,285,303,304,305,306,313],[207,253,427,428,429,430,431,432],[207,253,427,428],[207,253,427],[207,253,433],[207,253,280,433],[207,253,433,435],[207,253,254,433],[207,253,433,434,435,436,437,438],[207,253,305,306,307],[207,253,307,308,309,310],[207,253,307],[207,253,307,308,309,310,311,312],[207,253,696,717],[207,253,696,706,708,709,712,713,714,715],[207,253,696,707,708],[207,253,696,708],[207,253,708,711],[207,253,696,708,717,737,738,739],[207,253,741],[207,253,696,708,737],[207,253,696,708,744],[207,253,708,737,746],[207,253,696,708,737,750,751,752,753,754,755,756,757,758],[207,253,696,708,761,762],[207,253,696,707,710],[207,253,695],[207,253,696,708,737,771,772,773,774,775,776,777,778],[207,253,696,708,773,774,779],[207,253,696,737],[207,253,708,770],[207,253,696,708,737,768,772],[207,253,696,708,747],[207,253,696,708,782,783],[207,253,696,782],[207,253,696,708,786],[207,253,696,708,786,787,788,789,790,791,792,793,794,795,796,797],[207,253,696,708,787,790,791],[207,253,696,708,787],[207,253,696,708,764],[207,253,695,696,708],[207,253,706,709,711,712,713,714,715,716,717,738,739,740,742,743,744,745,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,773,774,775,776,777,778,779,780,781,782,783,784,785,786,788,789,792,793,794,796,797,798,801,804,805,810,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,834,835,836,837,839,840,841,842,843,844,845,846,847,848,851,853,854,857,858,859,860,861,862,863,864,865,866,867,868,869],[207,253,696,708,790,799,800],[207,253,707,708,803,804],[207,253,696,708,737,802],[207,253,696,708,809,810,812,813,814,815],[207,253,696,708,811],[207,253,707,708,803,817,818],[207,253,696,707,708,820,821,826,827,828],[207,253,696,708,711],[207,253,696,825],[207,253,696,708,774,775,776,777,778,779],[207,253,708,802],[207,253,696,708,809,822,823,824],[207,253,696,707,708,710],[207,253,696,708,737,833],[207,253,696,737,834],[207,253,696,708,836],[207,253,708,838,839],[207,253,708,737,838],[207,253,696,708,737,833,841,842],[207,253,696,708,746,773,779],[207,253,850],[207,253,696,708,737,852],[207,253,695,696,708,800,854,857,858],[207,253,695,708,800,856],[207,253,696,708,819,856],[207,253,696,800],[207,253,696,707,708,737,863,864],[207,253,696,708,717],[207,253,696,747],[207,253,696,708,748,867],[207,253,695,736],[207,253,737,764],[207,253,880],[207,253,696,876],[207,253,696,876,877,878,879],[207,253,972,991],[207,253,978],[207,253,974,991],[207,253,973,974,975,978,990,991,992,993,994,995,996,997,998,999],[207,253,995],[207,253,973,975,978,996,997],[207,253,994,998],[207,253,973,976,977],[207,253,976],[207,253,973,974,975,978,990],[207,253,979,984,990],[207,253,990],[207,253,979,990],[207,253,979,980,981,982,983,984,985,986,987,988,989],[207,253,665],[207,253,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,479,480,481,482,483,484,485,486,487,488,489,490,495,496,497,498,499,503,504,505,506,507,508,509,510,511,512,514,515,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624],[207,253,466,476,495,502,595],[207,253,485],[207,253,482,485,486,488,489,502,529,557,558],[207,253,476,489,502,526],[207,253,476,502],[207,253,567],[207,253,502,599],[207,253,476,502,600],[207,253,502,600],[207,253,503,551],[207,253,475],[207,253,469,485,502,507,513,552],[207,253,551],[207,253,483,498,502,599],[207,253,476,502,599,603],[207,253,502,599,603],[207,253,466],[207,253,495],[207,253,565],[207,253,461,466,485,502,534],[207,253,485,502],[207,253,502,527,530,577,616],[207,253,488],[207,253,482,485,486,487,502],[207,253,471],[207,253,583],[207,253,472],[207,253,582],[207,253,479],[207,253,469],[207,253,474],[207,253,533],[207,253,534],[207,253,557,590],[207,253,502,526],[207,253,475,476],[207,253,477,478,491,492,493,494,500,501],[207,253,479,483,492],[207,253,474,476,482,492],[207,253,466,471,472,475,476,485,492,493,495,498,499,500],[207,253,478,482,484,491],[207,253,476,482,488,490],[207,253,461,474,479],[207,253,480,482,502],[207,253,461,474,475,482,502],[207,253,475,476,499,502],[207,253,463],[207,253,462,463,469,474,476,479,482,502,534],[207,253,502,599,603,607],[207,253,502,599,603,605],[207,253,465],[207,253,489],[207,253,496,575],[207,253,461],[207,253,476,496,497,498,502,507,513,514,515,516,517],[207,253,495,496,497],[207,253,485,526],[207,253,473,504],[207,253,480,481],[207,253,474,476,485,502,517,527,529,530,531],[207,253,498],[207,253,463,530],[207,253,474,502],[207,253,498,502,535],[207,253,502,600,609],[207,253,469,476,479,488,502,526],[207,253,465,474,476,495,502,527],[207,253,502],[207,253,475,499,502],[207,253,475,499,502,503],[207,253,475,499,502,520],[207,253,502,599,603,612],[207,253,495,502],[207,253,476,495,502,527,531,547],[207,253,495,502,503],[207,253,476,502,534],[207,253,476,479,502,517,525,527,531,545],[207,253,471,476,495,502,503],[207,253,474,476,502],[207,253,474,476,495,502],[207,253,502,513],[207,253,470,502],[207,253,483,486,487,502],[207,253,472,495],[207,253,482,483],[207,253,502,556,559],[207,253,462,572],[207,253,482,490,502],[207,253,482,502,526],[207,253,476,499,587],[207,253,465,474],[207,253,495,503],[207,215,218,221,222,253,296],[207,218,253,285,296],[207,218,222,253,296],[207,253,285],[207,212,253],[207,216,253],[207,214,215,218,253,296],[207,253,273,293],[207,253,303],[207,212,253,303],[207,214,218,253,273,296],[207,209,210,211,213,217,253,265,285,296],[207,218,226,253],[207,210,216,253],[207,218,242,243,253],[207,210,213,218,253,288,296,303],[207,218,253],[207,214,218,253,296],[207,209,253],[207,212,213,214,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,243,244,245,246,247,253],[207,218,235,238,253,261],[207,218,226,227,228,253],[207,216,218,227,229,253],[207,217,253],[207,210,212,218,253],[207,218,222,227,229,253],[207,222,253],[207,216,218,221,253,296],[207,210,214,218,226,253],[207,218,235,253],[207,212,218,242,253,288,301,303],[207,253,696,697,881,943,944,946,949,951],[207,253,266,275,280,452,457,458,647,648,649,654,656,659,660],[207,253,459,689,696,701],[207,253,696,702,949,953,959],[207,253,459,701],[207,253,459,696,697],[207,253,696,870,948],[207,253,459,689,703,704],[207,253,696,705,881,950,959,961],[207,253,459,704],[207,253,459,697,703],[207,253,696,703],[207,253,459,689,873],[207,253,696,872,874,959,963],[207,253,459,873],[207,253,459,697,872],[207,253,696,870,871],[207,253,696,870,881],[207,253,459,689,884],[207,253,696,881,883,885,959,965],[207,253,459,884],[207,253,459,697,883],[207,253,696,870,875,882],[207,253,696,870,882],[207,253,696,870,872,947],[207,253,459,689,696,697,886],[207,253,696,881,887,888,942,969],[207,253,459,886],[207,253,696,703,950],[207,253,457,696,881,883],[207,253,457,696,881,945],[207,253,696,881,941,942],[207,253,459,696,697,698],[207,253,696,870],[207,253,454,455,457,458],[207,253,458],[207,253,266,452],[207,253,452,458],[207,253,266,452,458],[207,253,272,452],[207,253,452,458,650,651,652,653],[207,253,272,452,458,650,651,652,653,657,658],[207,253,266,458],[207,253,275,452,458,650,651,652,653,655],[207,253,460],[207,253,266],[207,253,459,899],[207,253,629,896,897,898,899,900,901,902],[207,253,456,459],[207,253,459],[207,253,453,455,458,459],[207,253,459,904],[207,253,458,459,626,904,906],[207,253,455,458,459,626],[207,253,629,904,905,906,907,908],[207,253,634,904,905,906,907,908],[207,253,459,626],[207,253,644,904,905,906,907,908],[207,253,285,454,455,456,458,459],[207,253,454,455,456,891],[207,253,454,629,891],[207,253,454,634,891],[207,253,454,455,458,459,892],[207,253,454,644,891],[207,253,453,455,456,458,459],[207,253,285,458,459,627,892,913,914,915],[207,253,459,914,916],[207,253,627,629,912,914,915,916],[207,253,458,459,627],[207,253,455,458,459,627],[207,253,455,458,459,625,626],[207,253,459,918,919],[207,253,458,459,918,919],[207,253,459,919],[207,253,634,918,919,920,921,922],[207,253,458,459,918],[207,253,458,459,628],[207,253,454,455,456,458,459,627],[207,253,449,450,451,454,455,456,457,459],[207,253,453,455,459,636,689,927],[207,253,453,455,459,636,927],[207,253,453,629,924,925,927,928],[207,253,636],[207,253,314,451,458,635],[207,253,459,927],[207,253,453,455,459,926],[207,253,455],[207,253,449,450,451,454,456,459],[207,253,938],[207,253,448,455,458,459,629,938,939],[207,253,449,458,459,628],[207,253,630,632],[207,253,273,458,459,629,632],[207,253,273,458,459,629,638],[207,253,273,458,459,629,645],[207,253,266,275,285,314,451,457,458],[207,253,314,447,451,458],[207,253,254,258,266,273,275,314,447,451,457,458,630,647,648,664,674],[207,253,266,273,275,285,314,448,451,458],[207,253,273,285,458,631],[207,253,266,457,635,647,648,665,670,671,673],[207,253,314,447,448,451,458],[207,253,273,458,631],[207,253,285,314,448,451,458],[207,253,455,459,634,636],[207,253,450,458,459,628],[207,253,458,630,638],[207,253,268,448,449,455,458,459,629,642,689],[207,253,642],[207,253,266,268,275,641],[207,253,280,457,647,675],[207,253,448,452,454,456,458,459],[207,253,275,457,458],[207,253,457,672],[207,253,266,275,457,648,672],[207,253,451,458,459,628],[207,253,458,630,645],[207,253,457,1021]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f349e43a7884421ca5ea9214e02f22a351b8a4fdd8b31a040626efead932521","impliedFormat":1},{"version":"1c2ba8d0d2ed60a418d8193b4624774119efc01a220e85bf4bfb89119c65edb9","impliedFormat":1},{"version":"9bf2c1252fd6b4aad91ec88c5f8c8e4d029b47ad8ecbfc35541ab13fe1b29ae9","impliedFormat":1},{"version":"b0fb5068bdeaf38e5b3decf8abee0198d3fd0b6702abe4ae081e62065bd8f39b","impliedFormat":1},{"version":"6d284ea81285ed6e0c9170bb4f4a8702c790252a7a1068a4f4b960e99fc7b662","impliedFormat":1},{"version":"a0256a66bae75a77a38a7b7975116f2d028a29290fb7a3756d3d00f785c5d397","impliedFormat":1},{"version":"2f1924232de0c31e37650242680c828c92bfe05c35fff8eae3da29741f7354e8","impliedFormat":1},{"version":"891bdf0fe2a2b2bd3a6d5ea2866c240f08627a0e46c56399ee36cf63c103a00e","impliedFormat":1},{"version":"f529a8a4861b5e1343b6be126503be122303ac6fc0b8b6124a04cb49089cfd45","impliedFormat":1},{"version":"583cd03175ac6d13c230d8f2a5646327b10b7666d33bda4ec387d05b837010f1","impliedFormat":1},{"version":"895c3a14a10e8f9ac487f0c0cca1d7bb29eb7900c20a839b432e3c5ffc48e28e","impliedFormat":1},{"version":"6c3d28b3fa3d10d6f5d23fc7b5943baeda5139a758f09a2cf1045c62d9f21b28","impliedFormat":1},{"version":"d3c83ac3b6e1037823bdf2fa401cf4bbf0617f4aa934f42d5886c21bf81ac4d3","impliedFormat":1},{"version":"291315bc124f82721bc362aaec421aad43c9a1df97c124f031703ad194e9a87a","impliedFormat":1},{"version":"049b3f81360bad1a3b0fc1cb8ba0e25b9ce29006feadd70d8210d89740c76886","impliedFormat":1},{"version":"fe0fe77d9d10b57239b78d66578f5726e0938d9d6ed70f21a71e2b3aa6091b7f","impliedFormat":1},{"version":"ac0072ca991f8373fbd420ae4ee2ce5d64464305840c620f19d11eb232f119cc","impliedFormat":1},{"version":"4f8299da3be5c9d5e1ebc4aba48f787111ab3f4369bb1743a67fa61cc5c715b7","impliedFormat":1},{"version":"ab08df9386ada133aa1f4276653064cf934ae475b0313945a7f7a6731f6b1c05","impliedFormat":1},{"version":"de696bc527fba66b712b0ec8dc38ff80251a17483691240cc363bd6953f28fc3","impliedFormat":1},{"version":"4993f7fe71e85da0d76da4c10ffa475e23f5a2786cf08fa526d7a250d831de49","impliedFormat":1},{"version":"f8856f865dcd7439d01daa090ca4a57775b80e03d19eb289211c6b1ae68e807f","impliedFormat":1},{"version":"c12c79c2d61130e321bc1f140f47f74b606b80bf346fc5d40a11c8525abb1d90","impliedFormat":1},{"version":"d9fc844db381adf4742894b2726622932aebd8d2cd472a5fa5c4efb89122fe3a","impliedFormat":1},{"version":"e28061274902bdc8c9e652bdd2d40d9a3c2a5dd359afa49862d36675323bad20","impliedFormat":1},{"version":"42518d82c17934486995cb09efe00d50851840714d6501c3a593e32f7d651e6e","impliedFormat":1},{"version":"36139cb747aa9d8be7f607f2d41a94292970c870f1fcfc51fb6b13bcdcf3bdf1","impliedFormat":1},{"version":"610a12af77a9a593f308e7edf6c70132519dd4482cdc6b3e590a18b8b656a0dd","impliedFormat":1},{"version":"cb19ff12fd44583e04b936adf550d5e0e407cd8b2e4fb8482522a4fa360b65f6","impliedFormat":1},{"version":"3d534b774484af606def45970f7e625441e86d59db08445cd86cf635d539eab3","impliedFormat":1},{"version":"fbf980f659bb4c119b14822eb232de576dd45e3f10dd29bb68713aaa0ce2e543","impliedFormat":1},{"version":"060408017b125a1746a5666a70b555a25901a1e2e1517a3801cf7959e937b38f","impliedFormat":1},{"version":"3f654bf19ee02a70fa521943058174172b0831d3618dc0eab0d05d1d914a7a72","impliedFormat":1},{"version":"c28ef785e3648b8afdd34e07dade28f9ce077d4d81f4d616d86fd2436883740e","impliedFormat":1},{"version":"d4375918c47e8a9e7364d79abd576dfa0e18bcf63e66bfc23187b7961a00976d","impliedFormat":1},{"version":"0cc6689ffb37d9cbfec4edb1be111424f71162bbdf9a2f6919142a3cf1d7fc63","impliedFormat":1},{"version":"b9c0ccd334098a2d264457f4a667c0642dc098e33cdace7ec357ee7d2ffcfb02","impliedFormat":1},{"version":"73a4400d051fc0d781dd5310bc1b6833c95b0f0e7b6b998a29cbcda84deec90b","impliedFormat":1},{"version":"949ac77f4d5e06803b7955e80b17356ec691b688f049dd7ab5569694887111e8","impliedFormat":1},{"version":"514099e9ff0c7705a386205fdcaa86e864176bebe268c0fddf9fab639868c2b8","impliedFormat":1},{"version":"9e4f603ac1db40f54c08ec2f8e38f057219a3f68850ae7aeead89dffcf323d77","impliedFormat":1},{"version":"84a7f1e7b32fd9626f132ec6ba99f38ce9d1713bb4e0e8cf95116a84b8a3880c","impliedFormat":1},{"version":"90a95bb944d8772e3f6128347e5348df6bc339c159054195973ce2ef24ced3d8","impliedFormat":1},{"version":"885eaea8a3747ac862a51dabff15e1b241d953ba3713882659598a439d99bb2c","impliedFormat":1},{"version":"1800f3c2d02797e29cfde6702a13f4f15931a0ce4887ac4c28ec45d014737eb4","impliedFormat":1},{"version":"c2652c0e0b299e553e96413547945afbf4d98c670c70d8d9c767bc97594aa266","impliedFormat":1},{"version":"31b4a56895c4762d0bd72ccf82562fa506cff53989ea5aa4da435d9c627fcb41","impliedFormat":1},{"version":"38916e0a1d8e8c8c43dbd5c72efb24fa360e57b67be462b9bba478559a4b9d63","impliedFormat":1},{"version":"089f28cb06ddfad5752b1a5681124c444b5735af4e5452032034b5706dcb4c53","impliedFormat":1},{"version":"5454ca5b16abe2af2e76b8ebeffc1f12a724386e929c39a68d021012ae879e2c","impliedFormat":1},{"version":"3b81707866b20ac92bfc948db105ad1f9b70095181908bf1e121a13ad6c84ec4","impliedFormat":1},{"version":"f8c1b8f82a14ee8458777a1057a05a92a5f6286b68504abe98016983caaa88c8","impliedFormat":1},{"version":"aa50d7a984c1c40fbda075ac29bcd2ac409f0e7b360c3cd86249cb115b86c32d","impliedFormat":1},{"version":"df2469890287cd3f361b3705af6c8b3eeb1a6baa21e85d880f5f1335a450e1d7","impliedFormat":1},{"version":"c042da07467b18f8a873f55af1c7cf36c777fda28e38ec992e3cf30f220cbd07","impliedFormat":1},{"version":"9e71cfb80016539c39240977837cc3743d3940c8cbf4f3f4930c60b8825cc04f","impliedFormat":1},{"version":"d5e628a360caae221167bedc6e5ce25dbab684f6f2a4004de92c1aeb3acfd630","impliedFormat":1},{"version":"b3a45d7855997fdc4af5ab43da9ea22199550ab0874f4ee74b6e07fa9419368a","impliedFormat":1},{"version":"eca69e6ea89e07d3b3f5de3cddd1169a6f3316feab189e3460ee6cb8679a1d24","impliedFormat":1},{"version":"d31735704ccfd0728e98278d256cc2ea5504705441012cbb90de54b5eb8d7e9e","impliedFormat":1},{"version":"2b8d4a8936922e57292439679389839d5be42d353df7c1a480e270969ba742e1","impliedFormat":1},{"version":"f8efa2fc0758a930e6576e55b1e2e34d3a18c695e46875eed27476e3ca66637a","impliedFormat":1},{"version":"ee363405a2607244ce23cc790b9abd4876d65e3f68a610c1ba7383faecfdd5ea","impliedFormat":1},{"version":"2935b4a3c7fdd310727d2e1bc41f4c3f36cbab6a3c2d2e6f7940660a09476863","impliedFormat":1},{"version":"fcfee9369cfd693a822467c2b29299e2499ba07cbd863382d7fea2265133880f","impliedFormat":1},{"version":"1dd65e4300cccec8048555f67e9fb9fa060daeab97db67d72864a2d4cd320c62","impliedFormat":1},{"version":"5e808cedafa5ffb71ef88565417d1f4eedbc7a65270c3fc918d2a48aeca0006d","impliedFormat":1},{"version":"9c8e4542199cecc9a3e1acb8e2a0a3d78023d58718c15b6e2f3e7f05155f50d1","impliedFormat":1},{"version":"9b2d2a8207d6b8479ebad21dbdd9899819540cf8f29c9aea0588484dff04c863","impliedFormat":1},{"version":"df3627017277f3480daf2a93e2dff8007995e735a773b391ad2d2c3e9f58db26","impliedFormat":1},{"version":"26b30835a0c598a091bddbaa13be4f32fa89747246c1d2bfb1c719d2c5f0c431","impliedFormat":1},{"version":"5942846b4ca92a7cd6fd40790cadb1bf0eb83cb88a030651e88ca731ee708d53","impliedFormat":1},{"version":"54c5cbf8d600fdbb84c62fc95faef3be11d21e0cb3e0ac6c2b7f6ca0161ca854","impliedFormat":1},{"version":"74d3260b63171451a22870217315b7b340f8d38f4dc5095b181c7ce7c42b7d20","impliedFormat":1},{"version":"2dfcc5fbaeab1b4f121df808a7571448634af6bb3c8eef11602fc15e1d587ef2","impliedFormat":1},{"version":"d5f635b704170b5baa44ac2c583087fcb3a1bd3ff072e4028a9a338946867872","impliedFormat":1},{"version":"e963db78e31527ee8d57aa1552db0733bddf041ac6c7b1c90c2ae70188c7a420","impliedFormat":1},{"version":"bc1d76395eeefa3b9ee38d630068e4147b4b6c6d788f5ea8632041cdcd7b2e4d","impliedFormat":1},{"version":"77307a782fd625eb3314d127fba80f44a1ba7e2f2c2c387b437362244a68275f","impliedFormat":1},{"version":"bf9003d0f7a9458d2e913404c9265e80375a6c484f640dd87880c91f7727152b","impliedFormat":1},{"version":"0e16a250cd57300c35e2f5840914c8722af19828ee69c3a1853637abdfbfff61","impliedFormat":1},{"version":"acb59a75f2a538f3429f61c8a75ff17a618744a5548603e68c9981698bf2c991","impliedFormat":1},{"version":"da316b1a67ec62dc6f1941254ec9961bd6f3580a50610c8a9c3f664bc4986ebe","impliedFormat":1},{"version":"df94244717a3072d4568973406ce727b041c4dc90c0229785972744441f1f7d8","impliedFormat":1},{"version":"a24026951e98e658ae000c4d21518394ea573091e59cad431cd1d3693246bdab","impliedFormat":1},{"version":"113eb1f34c34a9888d6b96e7304b237d857885d778a990075871e593c2fd78a1","impliedFormat":1},{"version":"0a841589c404d449c0b853cda099cb05a0d2f0479f9f294c89d621af9f350f8b","impliedFormat":1},{"version":"5a3064b35e3e8ef993fe4a0d2f1b97f7bd2c0a9a0f0a9cc70761f9539652334e","impliedFormat":1},{"version":"b769d05589ed9f3af7a4b271debede238623abdcb99649fed559b4590204dfe9","impliedFormat":1},{"version":"db0cb2e68ec35830301750b4a83f61418d8e856f56434524b95d6993467b8834","impliedFormat":1},{"version":"08e650b6ecf49c924a597566eea6afdfd1cae7f16c1aeb21f5334be673a4f781","impliedFormat":1},{"version":"3dbf447ea2e4697cdaa8422de070470d5979704503c1a187ee98280e5f1f341a","impliedFormat":1},{"version":"c65b11f141a1dc269a3a7276693f1ca790786874878352caf0ee01c09fe15bdc","impliedFormat":1},{"version":"91a8f3d781e2e132bd336818fa9b87e3e967a55f1acc1721d37119a9bef34b25","impliedFormat":1},{"version":"b44f12d83a54c7388f654c32bf6f230433816fbf2580821a74bad85c4d7f9ded","impliedFormat":1},{"version":"6971aab51399ecc5f3bba5a98fb9847bea62ed259cb33c69fb15c4f4cfa086ea","impliedFormat":1},{"version":"28ebb5550755810f05c83399e25f2958029af001a0a4e52d955939b599b06a89","impliedFormat":1},{"version":"87383631b232cd887b55a3d12ad3335b5a2bf7ea03ccd647cb04902affb42644","impliedFormat":1},{"version":"3a5fb2a9e9c0a830b0dfc1dba37e8a0e0a0b671d219ef6627cc6b1df1d9fbaf4","impliedFormat":1},{"version":"a5b185e5a86e8b13b0c77aa5c5723047afceb67176d02f3a1e193c6a34f6c1b9","impliedFormat":1},{"version":"2c638e2e5f385b8376362570930c860409f1ff5abd9db3ca61a5cb4101aaeb6a","impliedFormat":1},{"version":"16664af3ea4b68caf6c142b7e8edaf8831b8b2d05554d0144886311a4e0a84e0","impliedFormat":1},{"version":"ec94f90befedbc1b12a78feb100665619c05dafad3a8916feb4470817b24c5e1","impliedFormat":1},{"version":"4ed1fe8e3229dfe607f932b3da9ef8e76227a73daa0c62f5883192ac08bf5a51","impliedFormat":1},{"version":"2869577a010cb998860b8568ca45a8c6c6e616826e99768c4c2c5e194d0f3f7e","impliedFormat":1},{"version":"cf0b0e034128e8b88986198ca8c0457ae3f68d88c397dd7d3818c138dd942bc5","impliedFormat":1},{"version":"2bbd7affc221dfb21f084d6086b975132c34c32ee23bc7e531d5d30583d022e7","impliedFormat":1},{"version":"1e6ae0ca26732323995ad3d9405d1d9b94f97bde3cd1287cec8007a4e3338720","impliedFormat":1},{"version":"d4875732fc94924437d578396035b705890f598c19c67a93d73e7a3b27af6e12","impliedFormat":1},{"version":"01ff517c77d84f0038e5b357245673978b94cb910635a6dbbf136d835d116d37","impliedFormat":1},{"version":"0276183fa38af140097aeaeb74fdf9bcca9f8e603ca5b1b223b529b20974afab","impliedFormat":1},{"version":"3893fd5283b40c7ef77987e555123e4406afe3c2518f44b3f5032ec944099c22","impliedFormat":1},{"version":"c90dff077593c2211f2f54c90bf4916f79c01965adce59d3f23a448b3ea341b2","impliedFormat":1},{"version":"79e7818895be49dddb17df0bab720aa336803bbb93a8f9b5d83275c11ae5f988","impliedFormat":1},{"version":"15acd1b633dd108e85845cf9ba35bcdc638cd67d23538c322020e2753c17b26f","impliedFormat":1},{"version":"f68050c9914678cf1ef1c1b6c75729846cf56609a2758b883e94478f7ecfa272","impliedFormat":1},{"version":"5430c669b15b51ecbb4eda578a5f14443cff36a5d2513bd781921d8082db5049","impliedFormat":1},{"version":"0a11591ca3ea3cd124f764b7f39bbaa68dcb58f66f6dc534069bd073b0f8c082","impliedFormat":1},{"version":"3f96c54b500bd4ea34b805bb335d76e65be59f682ea32dcac99c5abf7d02b4fd","impliedFormat":1},{"version":"f821c43da42102306cf0519f6116357c6eb2533ae2177c6fb08a51a05a6a061e","impliedFormat":1},{"version":"c2227d5b4828961ae1f5e8e1470250ae8a2ef5d2bebb4fceab65d58d4b020fbb","impliedFormat":1},{"version":"559a0a6ef5f18ac88eee8562eccc5a4b1431ff7ec600f209c31262355042f839","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4bc0794175abedf989547e628949888c1085b1efcd93fc482bccd77ee27f8b7c","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","impliedFormat":1},{"version":"af13e99445f37022c730bfcafcdc1761e9382ce1ea02afb678e3130b01ce5676","impliedFormat":1},{"version":"3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","impliedFormat":1},{"version":"e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","impliedFormat":1},{"version":"84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e","impliedFormat":1},{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true,"impliedFormat":1},{"version":"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"003ec918ec442c3a4db2c36dc0c9c766977ea1c8bcc1ca7c2085868727c3d3f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"938f94db8400d0b479626b9006245a833d50ce8337f391085fad4af540279567","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"db39d9a16e4ddcd8a8f2b7b3292b362cc5392f92ad7ccd76f00bccf6838ac7de","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"5078cd62dbdf91ae8b1dc90b1384dec71a9c0932d62bdafb1a811d2a8e26bef2","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"067bdd82d9768baddbdc8df51d85f7b96387c47176bf7f895d2e21e2b6b2f1f4","impliedFormat":1},{"version":"42d30e7d04915facc3ded22b4127c9f517973b4c2b1326e56c10ff70daf6800a","impliedFormat":1},{"version":"bd8b644c5861b94926687618ec2c9e60ad054d334d6b7eb4517f23f53cb11f91","impliedFormat":1},{"version":"bcbabfaca3f6b8a76cb2739e57710daf70ab5c9479ab70f5351c9b4932abf6bd","impliedFormat":1},{"version":"77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","impliedFormat":1},{"version":"55f370475031b3d36af8dd47fb3934dff02e0f1330d13f1977c9e676af5c2e70","impliedFormat":1},{"version":"c54f0b30a787b3df16280f4675bd3d9d17bf983ae3cd40087409476bc50b922d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"5e9f8c1e042b0f598a9be018fc8c3cb670fe579e9f2e18e3388b63327544fe16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"e07c573ac1971ea89e2c56ff5fd096f6f7bba2e6dbcd5681d39257c8d954d4a8","impliedFormat":1},{"version":"363eedb495912790e867da6ff96e81bf792c8cfe386321e8163b71823a35719a","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"12aad38de6f0594dc21efa78a2c1f67bf6a7ef5a389e05417fe9945284450908","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"1e080418e53f9b7a05db81ab517c4e1d71b7194ee26ddd54016bcef3ac474bd4","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"3b63610eaabadf26aadf51a563e4b2a8bf56eeaab1094f2a2b21509008eaef0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d5d50cd0667d9710d4d2f6e077cc4e0f9dc75e106cccaea59999b36873c5a0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","impliedFormat":1},{"version":"4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446","impliedFormat":1},{"version":"f8529fe0645fd9af7441191a4961497cc7638f75a777a56248eac6a079bb275d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4445f6ce6289c5b2220398138da23752fd84152c5c95bb8b58dedefc1758c036","impliedFormat":1},{"version":"a51f786b9f3c297668f8f322a6c58f85d84948ef69ade32069d5d63ec917221c","impliedFormat":1},{"version":"f21ce049835dad382b22691fb6b34076d0717307d46d92320893765be010cd56","impliedFormat":1},{"version":"ab189eb5d2f2bd7434f174b6d0e955ba75e7d1758d343a74932a96f19e04b510","impliedFormat":1},{"version":"ceb14714d9447ad60d32aaabd14ab532cf925d39ba1630795dfe3e9f74bc88a6","impliedFormat":1},{"version":"282bde3263fe03c8cd5ac013ae0b447a8a15a7d3f0b2488f3a212d14384e480f","impliedFormat":1},{"version":"213805012624f870635688113e692773d20b167717662e5b6e481945d4add36d","impliedFormat":1},{"version":"ab86380ba77855c05b584c881ad115c4b8886f7173e68480e0de4ef11d854cf3","impliedFormat":1},{"version":"665f83fc3e9992c7a5e15a470e4b9e10e8b588c35593b0058c8d1a9eca487c56","impliedFormat":1},{"version":"158b9645b5b124b8993dab9815a06df7b6e31d874e989603a26a76608ab764cf","impliedFormat":1},{"version":"dd36b144e0e70b4e38f588913af663ed959b10b5cf80952a4beb22a10255bf08","impliedFormat":1},{"version":"d064b43717b5b5dfca0d6cd738022ab377c90e45f05edbcd5a0c8753e6627d88","impliedFormat":1},{"version":"5c443fbbfcd5c0085974c10c9f4dd454b92f183b1b00a5ef447ac2ebc90f9704","impliedFormat":1},{"version":"66e24869ef897fb27f3ec23ea3cf11f14aaaf91fb8c3659629df10e398dd7e29","impliedFormat":99},{"version":"2ce2ca1f7c7a9f015db841d47c6f21c972cea76e99831f11a61a6ce1b0f5f16f","impliedFormat":99},{"version":"4c9f30805ce0df33a43c9c808bb944e6e7465eff2b12702f5927a82c884cc2c1","impliedFormat":99},{"version":"3364ad5f99ec377a531ba9b3b0d593421ee667a7b6c230bfd5ccd39a4fd86502","impliedFormat":99},{"version":"d9e68cab5f4764ebee80c813b3250d601b8da57930bf3942424569ace3e94d31","impliedFormat":99},{"version":"980d84ab65a61d1979a22e5cd3322672e75fb148392b6903d08ccef59bbf530c","impliedFormat":1},{"version":"c5912556b159da556c53c353183ffddadaeaab1c9d63aef12e525ae6c5bf270b","impliedFormat":99},{"version":"8f17661a6876cfb9db909c7df9b373e31070f6ee8b30294855a951aadf0345a0","affectsGlobalScope":true,"impliedFormat":99},{"version":"5d96d95bfd651462604fe8e134911618aaa252c77baf50f852aacd00f925cd72","impliedFormat":99},{"version":"4fb848207d794f656b267f0dd6273a65e664cbfc752059d3f32c3ce73f005b52","impliedFormat":99},{"version":"543f3fad9ebec896d424f0871ea0a268d2658fda5ad75d9cbccd7ca8bb51bc5e","impliedFormat":99},{"version":"e835c2e3462358e42ce5900346178da16ce2f727f48af88f1264717c17c9c1c4","impliedFormat":99},{"version":"2755f3a9529301df202c11d2408065375c6e7686610195cfad94346c8cff51c7","impliedFormat":99},{"version":"67a84b3270bd6325c3cec69af36364ecf0b57d758bfce8b88038ca106438fe50","impliedFormat":99},{"version":"03df83f3c54307ca0659a5c21165348ed2c1f52fdc7207914dc0a05caee525b4","impliedFormat":99},{"version":"01db68e7f740ac65ec3a24c4581618e0f8203ee3c1acd6346a551f8055812f21","impliedFormat":99},{"version":"80a9ad99b09328b9e875138faf66486086392f03fb6a9ce07b704a4d53153c0a","impliedFormat":99},{"version":"41632e181c0b5e8fbfb122777ec30e45cf1177f84879aa2bdbfc7cd66d5e6356","impliedFormat":99},{"version":"4cec0506af265ac8176523b6a75a9c06d5d69618855781d0191dc52b60c018a8","impliedFormat":99},{"version":"48d3a8f9239ed151cc200cf7985ea92b28249513c41dbdfeadf78357c5f18ec1","impliedFormat":99},{"version":"6aaa8267f4ece7dd4d836296de15b9529f93fd4e5c4f3c4d065c03a3122580dc","impliedFormat":99},{"version":"abbaf1d2815b4b99d8bc0d3029adf39d2d1588d5539865ce5fc63455b168d959","impliedFormat":99},{"version":"ab7c6ca3f1371e8ce477377bd9cdadff7f84b1317ebc66726c64d1af26b681e1","impliedFormat":99},{"version":"c796a2795dc3d049893220db1e12a25bfaf06a44e230d4d2c4bf72fa3e460896","impliedFormat":99},{"version":"39e00ffa6bf29d992db5c3efff1cf96d0c20904b9524462971739593d5b8dbec","impliedFormat":99},{"version":"42b652e8c90509675c18f90a860d3f158cc70ee6a7f2ae6c2eda114c2c9ca952","impliedFormat":99},{"version":"bc055e255b285142f6d0f0c7cb3b8125e2d9e7373433bee4c5060e8a73c7b3ff","impliedFormat":99},{"version":"aafb22df14bead42801f624d917c944bf60cc47ff3fd644b8decce0dd8d49e8b","impliedFormat":99},{"version":"b2a618b9134f6be213a67b79a8bd3513d2ca0e9c4719480657e6adaed9f61867","impliedFormat":99},{"version":"ca437f09f6649a7ee5b13267251b4303e51bb0aea5d0ae7a8fa5021943ecb7c7","impliedFormat":99},{"version":"c4fb6dcd777546f5970fa4353417a6d5c9039d32d3fb0f8de224fb3092a9c41c","impliedFormat":99},{"version":"b8eea8cb0e3b23f078b0be89b9592c58ba0c737fbc174c41f4830691475cf339","impliedFormat":99},{"version":"790d7a4f424f2029d1234e832938d9c0ba1137cf8b7a4b127f3536f8062a1765","impliedFormat":99},{"version":"8a2d033e62ab4486a0016092c4b667525a4bbd6b7b68159e45ecaadaf4a71099","impliedFormat":99},{"version":"eff91c86be0270d5544352eaafae38768c59222d84a1e440b0a96ef0b36facaa","impliedFormat":99},{"version":"c84277a02c432a56a79f5257153a8261e30236dc7082e6c054808e5bd4d81a33","impliedFormat":99},{"version":"4ab0c0d9285b30fdccdcd8a4d79f38981722da5c4997377c3b7e9360b0e9a887","impliedFormat":99},{"version":"4b5b4edd9cf9d826871a13b0c1d9cc43865e64eec8696f8fce5baf7a9c3fabbc","impliedFormat":99},{"version":"cc3612d56cd439a886cd08f8de12b4443b7bdf24e6d2a29fae32f904b311b9f9","impliedFormat":99},{"version":"b9f115277f53061e076f6c6a89303f713867e7bf2d32f8b5967d505ae13932bb","impliedFormat":99},{"version":"f46ce75eb31246017422e2c9a001836eae839cd62c1060daf0611c6dca85ca64","impliedFormat":99},{"version":"76d8a8bccc71072c5169786f40d4c278bfb34388ccdf9de9587865d188fd7a6e","impliedFormat":99},{"version":"bd300890069151b61740ea3dbf88ddf8ab1303af5154b12cbcc06147d6aa7c17","impliedFormat":99},{"version":"b24fc3dfbdc15f7daa6cf8b6ffe457fd872c2564a60264901340ebb830aa8826","impliedFormat":99},{"version":"4d25694ae20937f2f6e90eff01160afb884cdae11daa672174fd7d325700843b","impliedFormat":99},{"version":"b15dae63d349652d8019f015719225a0a584497dfa31146c347c0cf3cf1a93b0","impliedFormat":99},{"version":"6ec873465202bc7831876711fdb8826b597e2d8c91c7d3e3c8ed0b6518998c52","impliedFormat":99},{"version":"d8352a30103a7cc55eb6c3415e9b59ea3db731fcf82ecb68a57efb8dc6899700","impliedFormat":99},{"version":"cb1c9ca3571a0f74b54ecb468d54a438726b0bc330c418289e35fae569e43276","impliedFormat":99},{"version":"cd91681e132149b4c662f653bb31e67a4df87d9d799fe0a42a6736e7130e4597","impliedFormat":99},{"version":"e476a8fe1533a00bcc1619fd5921645ccc978c5be63e3d2230da0c3546b84608","impliedFormat":99},{"version":"c8cff3d3d801ddc09830695e29661fcef3ac89c85997da2b10ae9bbe0732622a","impliedFormat":99},{"version":"f3762af9bbe8f13f7074a64ed712111a111b1668354459e4908071abb1c60456","impliedFormat":99},{"version":"a5e005bd18ef0c5bd74d74eaacc6e41151d24805a7656b8b639e970ef20f398f","impliedFormat":99},{"version":"d5c719f2e1561dc51cd8921a9d68490a06512e05df5da91032bb8bef71c4714b","impliedFormat":99},{"version":"979613d0d260f469f989aa03fe318cb68ba9261b3b5c893ec934c939c64034e3","impliedFormat":99},{"version":"3b32a93b2b78c966dfdf4af6d1c061855afaaff41904b0386b61ef832160dd4a","impliedFormat":99},{"version":"ffde16611e80cdec293fbab87f112728b996baa6149f9ba73144e523f7b60aba","impliedFormat":99},{"version":"c12b5db6235e766b112a9f7f7486c82a1b760552459aa70ef6340aabf1f40990","impliedFormat":99},{"version":"609445891450fd10ea82b6355c82c6c4710b209d84f8921f4e7a87b8c7017c1d","impliedFormat":99},{"version":"d5e3bce3a3e1abef3c3340347569a458e17c9a9283da52877b0a087adbbdba94","impliedFormat":99},{"version":"70a9d7a02d83dc1ebd55f9ff1476bb55d54e03c320526106055c41bf925e7437","impliedFormat":99},{"version":"dfdf7d2c615a0f6b18eebce57bcab7f03db0ea06d7595b2a4d66c981a3fe0629","impliedFormat":99},{"version":"375715b05f6f36e5fb1f620bdf0baa16265aa12ccfedd40b56e60eec2dc391c4","impliedFormat":99},{"version":"92bc808ad1f6952b2b6bd534c84b6af5357ca9f1f545fb99475db8b7c4c41007","impliedFormat":99},{"version":"e273c75ddf2d5c345606c33c3532588d33904b17eb46ca9931fb1e827f5bcaa2","impliedFormat":99},{"version":"1b2ad38b5fcca22c21c7fac461520f0cd3eb9403a2379d63547f9dc3317640f7","impliedFormat":99},{"version":"86aaa6b8d841a1413afeeef5ccee745ef0223e5cc16d03569f327415f7a2e95e","impliedFormat":99},{"version":"a80189bd551b8e5c7486a87a14ea438eb1882c80fae4419da5b94a9a7b8e1f09","impliedFormat":99},{"version":"a6324d9b09d0c8bcb468d62f142a0a95c17ff2f47dd032d865d22064cbb27d0e","impliedFormat":99},{"version":"b4cab94ecea75824f576e27228597db1d79e9f50dbb0f1ae217e9b153e0f8906","impliedFormat":99},{"version":"6ee5a153cc635a7deb917662819e5a896acc4578ee5f4da5b16276f9509a2c48","impliedFormat":99},{"version":"2072403b5b423c48b50a3c7f8b29bd410c60f96ca7f3de9ac13e1e90820959e4","impliedFormat":99},{"version":"83357c1d786d68887cae5e5ca80a8d97e2b2f21d45014dfdf5ad0a9cdf198848","impliedFormat":99},{"version":"ebf90678b741111bf86fea0a44c375c4d1336de637a3870c0e457a96b9b92c34","impliedFormat":99},{"version":"0544cdc281df534d935b610eb0a5d6e7397f1a848659ef7ba0a4f8cf9c8b073d","impliedFormat":99},{"version":"eee704ee98537ccb50f7d25dda0e994c07c162420df40b62f31c6e8d0128fc6d","impliedFormat":99},{"version":"a7c1d8ad5907766aac16ac47df232321e17b2e6413a07bd012d2c5106ced317b","impliedFormat":99},{"version":"577eeb11be17aff5b821b6ed7fe33c3b4b4502362b020bfc4a953f6b16bb155f","impliedFormat":99},{"version":"601ea57354ba67f4bc9220705127facb65ae174e5e75c17deb772f6cf4f1dff0","impliedFormat":99},{"version":"7ace44b3150c4b19a8ce98eb1d140e2bca6aa4d5b8d9e0eeaa3946088f9253b9","impliedFormat":99},{"version":"0fde30fe0d6b596420c23a1b91dec4e4566a64d73d08c138d5b934ef02c56b8e","impliedFormat":99},{"version":"b2beca8c167fe40671e8344d138f9e4b2d062efe450f406785e83d55a18a2b8a","impliedFormat":99},{"version":"81f645dfc0dc460374c3403cb54833494444553141aee0bf8ab2fab2c77ba70b","impliedFormat":99},{"version":"5a9e48eb3e8b5ff8548c80fef1c810b61736aef336b6115ecbba2457063e9ea6","impliedFormat":99},{"version":"53b648c4bbb7c4a2c3c1748194e9d0040b549cbf856be3b4a2b076fc24900a74","impliedFormat":99},{"version":"990ea60933da554badc81b722051f2377178977651cdd59d7f202cfaabe54cc6","impliedFormat":99},{"version":"8462c6bff909082dedda26d6248be5032e35f30b275f914166da91e3a88d4d7b","impliedFormat":99},{"version":"c0b2de0d467c4edb02f0f1c00b7e05534344a431d70b118f97aaa67967cc3bfa","impliedFormat":99},{"version":"7728e17087415d870614b695f8a62319a63f56e325f00b81de0f4c54ea8408c9","impliedFormat":99},{"version":"28816ff4b2e67e516e9d9e2ea1593e3583f991d9ad7ff804f906058c6b557267","impliedFormat":99},{"version":"6ab79b1a124c55e6e687c5bf7095503e764ea1f17d5c0d908647fb0560483f4a","impliedFormat":99},{"version":"82370a2f3cbc9099b243bc47b47069a82d1e9f942b3c7c9e7a7ae22242c9b549","impliedFormat":99},{"version":"4b94de93372389a3dcc1fc060ed9717a5a11efe9a28947aa923d8b10d7ae0946","affectsGlobalScope":true,"impliedFormat":99},{"version":"bb297de74be1722d326f523b61fd4247f1bb1e24a415b42e02552e54c01089f7","impliedFormat":99},{"version":"65d518c2571e520a3bf1ea2385d6e9cb62e5d22876b6b5a26cde1776be005df9","impliedFormat":99},{"version":"f32781757f9183d38acea75f488944af7d96042b657fb2f6d763fbfda4a586ad","impliedFormat":99},{"version":"d94ad86c8ec63a3062fb8ffdc288bc41c6d5d508fce08ec850f40def04bee4f0","impliedFormat":99},{"version":"0a9e4cabb0c96c58f8728b2b372eba812ee6f1265385534efbc5da6945580810","impliedFormat":99},{"version":"534dabcb6a41c85a2c22ac71d6c0ade74b8abd4d9c64675e4aaa64b6df9b4af2","impliedFormat":99},{"version":"22df486c37dc0f82387b17d3c354423dbc33f53660dcff3dd797a50f38e11808","impliedFormat":99},{"version":"66316257d8770fa2cfc3ceeaf154eecdb1d0b92674088437218a1c9d6dcbf179","impliedFormat":99},{"version":"54c878d17b12130136b3ca88092719e909ed7f9d9dad568f333da07821f30a93","impliedFormat":99},{"version":"c3c81ec172911af3225e67af92b80d54aa18081b097f32cad76f21f5ca2e3111","impliedFormat":99},{"version":"a7160c4eee8103fa34e486d469892cb341295659290303cdc84f5f362b94dde2","impliedFormat":99},{"version":"fdccda7abcf75ff0d40c0598ba964ff0c36c86b4d345f06ced4aab7f2aef17fc","impliedFormat":99},{"version":"88d0cee37ed173e56f639077be8e659583d80b4af302b21caa2a60c943f0d0f2","impliedFormat":99},{"version":"ab175a6055a330ae85db197c62a729dc7852b8cef528307089d18346a053a31c","impliedFormat":99},{"version":"f4f75bf9d3b0c40438731d5d8a8f2d5743403101f11618a574d1f882d23fe416","impliedFormat":99},{"version":"9c6d0beddf34c99d2726a96fa020bb19bf46711083c7659df22e57e88497ba77","impliedFormat":99},{"version":"87de3b1f06af37d4a9fdcafdf576a1b5d511e6f80007cbcbae6fad63d1496b81","impliedFormat":99},{"version":"5f59db6bfea99e031aa57bf46a411e44f10cd6c9f3f89b2ea7e34d500ad88da6","impliedFormat":99},{"version":"dec3eea620eb3b6a92f34a3b0eacd2ce380b3ee1534dfeb3fdf87292d60a7662","impliedFormat":1},{"version":"43d0b9e548423d5b3e18da5a730a4b88bf79de0da9ee86074ae7407d2d0a3a30","impliedFormat":1},{"version":"926436925f92ab0dc9fa79b2b017ac8021c67bc9e67733b0dccf40f7d4641444","impliedFormat":1},{"version":"926436925f92ab0dc9fa79b2b017ac8021c67bc9e67733b0dccf40f7d4641444","impliedFormat":1},{"version":"8a1aadc9be97a4585462c8f47da805ac76b0d097e735ea7e96cda052ea5d0aa4","impliedFormat":1},{"version":"c7b4e4a9b6385ba6da1c96424422aeed5173dbb4b04d412d5ec7f2364293d906","impliedFormat":1},{"version":"d6affb3b1bb702998a2c688746777657cd67ef8d414a0d1febc0a69c46610219","impliedFormat":1},{"version":"3311f573c7a2c973cb121f9b5936d883791a6c2a8c71edffb423138d387637d4","impliedFormat":1},{"version":"da433bdc883124501021e0a7214d73927aeffbd97e99b10288f491a5c51ba142","impliedFormat":1},{"version":"369b016417b3c87952cb5e74d7d49a28c9478c63e3edacebef0d8ecfff276665","impliedFormat":1},{"version":"c13bd0c085ca142129f97a360a93e9ed3df8ec2800669fecfd89bb9c0f49ce08","impliedFormat":1},{"version":"6804de6b44b809ffb0344ccb983582ef32f7eba5b31bcd5e196260678e5fb9ce","impliedFormat":1},{"version":"c1f982bf2fa1fc66145a71e1e99b6f86e1659ddb83515f19ea0c8c3964460221","impliedFormat":1},{"version":"b15370690bd0acbd4c34f427402709e493bf59bb89d165f4ae26fc11d60f53e0","impliedFormat":99},{"version":"623f1f64df738f2c1d7b1531873615fe59e024da589d4879f128e2127b3c7070","impliedFormat":99},{"version":"16288962b259ee75ca703d7541a86df925bd4b5bcbd2e45028364b378887591f","impliedFormat":99},{"version":"c523702f6ad123ce1173ff021975cdd2ad4d879c3ee85be996c7901daa07b523","impliedFormat":99},{"version":"1133c05460176f978a30053012ceff309789521c11d63b244d1a4b0b088ce5dc","impliedFormat":99},{"version":"09ea5fea1ce56b3b04d6ba0e0cfb0aef4bb57fce267aac10f7ce2bf56de6ead1","impliedFormat":99},{"version":"b981bc12fbea03bc9e6ad625e106ac62747fe85f7b0aafe59af3854d61fc51a5","impliedFormat":99},{"version":"429a3a553dbee1644ceb2536d6f4fac7b9365d943ffd1bb31a9d4cd67f2c6ad4","impliedFormat":99},"36491e33cb486db2edc3b2591b2fe092dfa649eea05fd50407b134e4ebb58144","92b3c148dd263289c7727fa1f5c5081a273c2dfe314002ada07b381e5af07194","461c5d1bf0a4746c4f12e59c6ae8ec3158a5dd88cf5c9eb0f42f366d913d30ec","5e550a1afebdfbd6f805472e2f9838481778d97c321d533afd86b112b8ea7d81",{"version":"99d951629f7096dcd79adbaa83a85e3be57613005533bd23029b3aba4ce9383e","impliedFormat":1},"462347977b464c1b62f1fd94ad1d5366e8a86a2849943cb0e9b9bde3d71f28ee","b5207ada06c3cdb8363e24a6def70c937566f6ae5f06bd86ea01df9c1974e338","5ceb756f4f46ada59bbf77fdf0feabb9c1bd2ed819225c9ca9530dba22ef4a89","6950d2aa382325933b677148cba21dc9972cb11741bbc3dcc943795fd1c4df09","005bf2550cb9835d324efaa921162912ce1de1195edfffe077b3d7d67943abb1","b29c385f6b592adb372086ede829a2a7d3bfc41d6328322dbb2b206d7cac933f","27b82680ee1a76420d43c78e804f8e3c30837557b81e0c4009ff0008379d42a2","30003732e8fa05e370a59646ab0af6728dcc0fd8f6b08a1a23e3198617f055d3",{"version":"cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","impliedFormat":1},{"version":"1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","impliedFormat":1},{"version":"130ec22c8432ade59047e0225e552c62a47683d870d44785bee95594c8d65408","impliedFormat":1},{"version":"4f24c2781b21b6cd65eede543669327d68a8cf0c6d9cf106a1146b164a7c8ef9","affectsGlobalScope":true,"impliedFormat":1},{"version":"928f96b9948742cbaec33e1c34c406c127c2dad5906edb7df08e92b963500a41","impliedFormat":1},{"version":"56613f2ebdd34d4527ca1ee969ab7e82333c3183fc715e5667c999396359e478","impliedFormat":1},{"version":"d9720d542df1d7feba0aa80ed11b4584854951f9064232e8d7a76e65dc676136","impliedFormat":1},{"version":"d0fb3d0c64beba3b9ab25916cc018150d78ccb4952fac755c53721d9d624ba0d","impliedFormat":1},{"version":"86b484bcf6344a27a9ee19dd5cef1a5afbbd96aeb07708cc6d8b43d7dfa8466c","impliedFormat":1},{"version":"ba93f0192c9c30d895bee1141dd0c307b75df16245deef7134ac0152294788cc","impliedFormat":1},{"version":"fca7cd7512b19d38254171fb5e35d2b16ac56710b7915b7801994612953da16c","impliedFormat":1},{"version":"7e43693f6ea74c3866659265e0ce415b4da6ed7fabd2920ad7ea8a5e746c6a94","impliedFormat":1},{"version":"eb31477c87de3309cbe4e9984fa74a052f31581edb89103f8590f01874b4e271","impliedFormat":1},{"version":"4e251317bb109337e4918e5d7bcda7ef2d88f106cac531dcea03f7eee1dd2240","impliedFormat":1},{"version":"0f2c77683296ca2d0e0bee84f8aa944a05df23bc4c5b5fef31dda757e75f660f","impliedFormat":1},{"version":"1a67ba5891772a62706335b59a50720d89905196c90719dad7cec9c81c2990e6","impliedFormat":1},{"version":"cf41091fcbf45daff9aba653406b83d11a3ec163ff9d7a71890035117e733d98","impliedFormat":1},{"version":"aa514fadda13ad6ddadc2342e835307b962254d994f45a0cb495cc76eca13eff","impliedFormat":1},{"version":"ce92e662f86a36fc38c5aaa2ec6e6d6eed0bc6cf231bd06a9cb64cc652487550","impliedFormat":1},{"version":"3821c8180abb683dcf4ba833760764a79e25bc284dc9b17d32e138c34ada1939","impliedFormat":1},{"version":"0ef2a86ec84da6b2b06f830b441889c5bb8330a313691d4edbe85660afa97c44","impliedFormat":1},{"version":"b2a793bde18962a2e1e0f9fa5dce43dd3e801331d36d3e96a7451727185fb16f","impliedFormat":1},{"version":"9d8fc1d9b6b4b94127eec180183683a6ef4735b0e0a770ba9f7e2d98dd571e0c","impliedFormat":1},{"version":"8504003e88870caa5474ab8bd270f318d0985ba7ede4ee30fe37646768b5362a","impliedFormat":1},{"version":"892abbe1081799073183bab5dc771db813938e888cf49eb166f0e0102c0c1473","impliedFormat":1},{"version":"65465a64d5ee2f989ad4cf8db05f875204a9178f36b07a1e4d3a09a39f762e2e","impliedFormat":1},{"version":"2878f694f7d3a13a88a5e511da7ac084491ca0ddde9539e5dad76737ead9a5a9","impliedFormat":1},{"version":"d21c5f692d23afa03113393088bcb1ef90a69272a774950a9f69c58131ac5b7e","impliedFormat":1},{"version":"0915ce92bb54e905387b7907e98982620cb7143f7b44291974fb2e592602fe00","impliedFormat":1},{"version":"9dfb317a36a813f4356dc1488e26a36d95e3ac7f38a05fbf9dda97cfd13ef6ea","impliedFormat":1},{"version":"7c0a4d3819fb911cdb5a6759c0195c72b0c54094451949ebaa89ffceadd129ca","impliedFormat":1},{"version":"4733c832fb758f546a4246bc62f2e9d68880eb8abf0f08c6bec484decb774dc9","impliedFormat":1},{"version":"58d91c410f31f4dd6fa8d50ad10b4ae9a8d1789306e73a5fbe8abea6a593099b","impliedFormat":1},{"version":"3aea7345c25f1060791fc83a6466b889924db87389e5c344fa0c27b75257ebe4","impliedFormat":1},{"version":"a8289d1d525cf4a3a2d5a8db6b8e14e19f43d122cc47f8fb6b894b0aa2e2bde6","impliedFormat":1},{"version":"e6804515ba7c8f647e145ecc126138dd9d27d3e6283291d0f50050700066a0ea","impliedFormat":1},{"version":"9420a04edbe321959de3d1aab9fa88b45951a14c22d8a817f75eb4c0a80dba02","impliedFormat":1},{"version":"6927ceeb41bb451f47593de0180c8ff1be7403965d10dc9147ee8d5c91372fff","impliedFormat":1},{"version":"d9c6f10eebf03d123396d4fee1efbe88bc967a47655ec040ffe7e94271a34fc7","impliedFormat":1},{"version":"f2a392b336e55ccbeb8f8a07865c86857f1a5fc55587c1c7d79e4851b0c75c9a","impliedFormat":1},{"version":"fd53e2a54dae7bb3a9c3b061715fff55a0bb3878472d4a93b2da6f0f62262c9f","impliedFormat":1},{"version":"1f129869a0ee2dcb7ea9a92d6bc8ddf2c2cdaf2d244eec18c3a78efeb5e05c83","impliedFormat":1},{"version":"554962080d3195cae300341a8b472fb0553f354f658344ae181b9aa02d351dbd","impliedFormat":1},{"version":"89cd9ab3944b306e790b148dd0a13ca120daf7379a98729964ea6288a54a1beb","impliedFormat":1},{"version":"28fa41063a242eafcf51e1a62013fccdd9fd5d6760ded6e3ff5ce10a13c2ab31","impliedFormat":1},{"version":"e53a8b6e43f20fa792479f8069c41b1a788a15ffdfd56be1ab8ef46ea01bd43e","impliedFormat":1},{"version":"ada60ff3698e7fd0c7ed0e4d93286ee28aed87f648f6748e668a57308fde5a67","impliedFormat":1},{"version":"f65e0341f11f30b47686efab11e1877b1a42cf9b1a232a61077da2bdeee6d83e","impliedFormat":1},{"version":"e6918b864e3c2f3a7d323f1bb31580412f12ab323f6c3a55fb5dc532c827e26d","impliedFormat":1},{"version":"5d6f919e1966d45ea297c2478c1985d213e41e2f9a6789964cdb53669e3f7a6f","impliedFormat":1},{"version":"d7735a9ccd17767352ab6e799d76735016209aadd5c038a2fc07a29e7b235f02","impliedFormat":1},{"version":"843e98d09268e2b5b9e6ff60487cf68f4643a72c2e55f7c29b35d1091a4ee4e9","impliedFormat":1},{"version":"ef4c9ef3ec432ccbf6508f8aa12fbb8b7f4d535c8b484258a3888476de2c6c36","impliedFormat":1},{"version":"77ff2aeb024d9e1679c00705067159c1b98ccac8310987a0bdaf0e38a6ca7333","impliedFormat":1},{"version":"8f9effea32088f37d15858a890e1a7ccf9af8d352d47fea174f6b95448072956","impliedFormat":1},{"version":"952c4a8d2338e19ef26c1c0758815b1de6c082a485f88368f5bece1e555f39d4","impliedFormat":1},{"version":"1d953cb875c69aeb1ec8c58298a5226241c6139123b1ff885cedf48ac57b435c","impliedFormat":1},{"version":"1a80e164acd9ee4f3e2a919f9a92bfcdb3412d1fe680b15d60e85eadbaa460f8","impliedFormat":1},{"version":"f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","impliedFormat":1},{"version":"019c29de7d44d84684e65bdabb53ee8cc08f28b150ac0083d00e31a8fe2727d8","impliedFormat":1},{"version":"e35738485bf670f13eab658ea34d27ef2b875f3aae8fc00fb783d29e5737786d","impliedFormat":1},{"version":"bcd951d1a489d00e432c73760ce7f39adb0ef4e6a9c8ffef5dd7f093325a8377","impliedFormat":1},{"version":"672c1ebc4fa15a1c9b4911f1c68de2bc889f4d166a68c5be8f1e61f94014e9d8","impliedFormat":1},{"version":"b0378c1bc3995a1e7b40528dcd81670b2429d8c1dcc1f8d1dc8f76f33d3fc1b8","impliedFormat":1},{"version":"5a0d920468aa4e792285943cadad77bcb312ba2acf1c665e364ada1b1ee56264","impliedFormat":1},{"version":"c27c5144d294ba5e38f0cd483196f911047500a735490f85f318b4d5eb8ac2cc","impliedFormat":1},{"version":"900d1889110107cea3e40b30217c6e66f19db8683964a57afd9a72ecc821fe21","impliedFormat":1},{"version":"a2e4333bf0c330ae26b90c68e395ad0a8af06121f1c977979c75c4a5f9f6bc29","impliedFormat":1},{"version":"08c027d3d6e294b5607341125d1c4689b4fece03bdb9843bd048515fe496a73e","impliedFormat":1},{"version":"2cbf557a03f80df74106cb7cfb38386db82725b720b859e511bdead881171c32","impliedFormat":1},{"version":"918956b37f3870f02f0659d14bba32f7b0e374fd9c06a241db9da7f5214dcd79","impliedFormat":1},{"version":"260e6d25185809efc852e9c002600ad8a85f8062fa24801f30bead41de98c609","impliedFormat":1},{"version":"dd9694eecd70a405490ad23940ccd8979a628f1d26928090a4b05a943ac61714","impliedFormat":1},{"version":"42ca885a3c8ffdffcd9df252582aef9433438cf545a148e3a5e7568ca8575a56","impliedFormat":1},{"version":"309586820e31406ed70bb03ea8bca88b7ec15215e82d0aa85392da25d0b68630","impliedFormat":1},{"version":"db436ca96e762259f14cb74d62089c7ca513f2fc725e7dcfbac0716602547898","impliedFormat":1},{"version":"1410d60fe495685e97ed7ca6ff8ac6552b8c609ebe63bd97e51b7afe3c75b563","impliedFormat":1},{"version":"c6843fd4514c67ab4caf76efab7772ceb990fbb1a09085fbcf72b4437a307cf7","impliedFormat":1},{"version":"03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","impliedFormat":1},{"version":"956618754d139c7beb3c97df423347433473163d424ff8248af18851dd7d772a","impliedFormat":1},{"version":"7d8f40a7c4cc81db66ac8eaf88f192996c8a5542c192fdebb7a7f2498c18427d","impliedFormat":1},{"version":"c69ecf92a8a9fb3e4019e6c520260e4074dc6cb0044a71909807b8e7cc05bb65","impliedFormat":1},{"version":"07d0370c85ac112aa6f1715dc88bafcee4bcea1483bc6b372be5191d6c1a15c7","impliedFormat":1},{"version":"7fb0164ebb34ead4b1231eca7b691f072acf357773b6044b26ee5d2874c5f296","impliedFormat":1},{"version":"9e4fc88d0f62afc19fa5e8f8c132883378005c278fdb611a34b0d03f5eb6c20c","impliedFormat":1},{"version":"cc9bf8080004ee3d8d9ef117c8df0077d6a76b13cb3f55fd3eefbb3e8fcd1e63","impliedFormat":1},{"version":"1f0ee5ddb64540632c6f9a5b63e242b06e49dd6472f3f5bd7dfeb96d12543e15","impliedFormat":1},{"version":"b6aa8c6f2f5ebfb17126492623691e045468533ec2cc7bd47303ce48de7ab8aa","impliedFormat":1},{"version":"18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","impliedFormat":1},{"version":"68434152ef6e484df25a9bd0f4c9abdfb0d743f5a39bff2b2dc2a0f94ed5f391","impliedFormat":1},{"version":"b848b40bfeb73dfe2e782c5b7588ef521010a3d595297e69386670cbde6b4d82","impliedFormat":1},{"version":"aa79b64f5b3690c66892f292e63dfe3e84eb678a886df86521f67c109d57a0c5","impliedFormat":1},{"version":"a692e092c3b9860c9554698d84baf308ba51fc8f32ddd6646e01a287810b16c6","impliedFormat":1},{"version":"18076e7597cd9baa305cd85406551f28e3450683a699b7152ce7373b6b4a1db7","impliedFormat":1},{"version":"1848ebe5252ccb5ca1ca4ff52114516bdbbc7512589d6d0839beeea768bfb400","impliedFormat":1},{"version":"d2e3a1de4fde9291f9fb3b43672a8975a83e79896466f1af0f50066f78dbf39e","impliedFormat":1},{"version":"d0d03f7d2ba2cf425890e0f35391f1904d0d152c77179ddfc28dfad9d4a09c03","impliedFormat":1},{"version":"e37650b39727a6cf036c45a2b6df055e9c69a0afdd6dbab833ab957eb7f1a389","impliedFormat":1},{"version":"c58d6d730e95e67a62ebd7ba324e04bcde907ef6ba0f41922f403097fe54dd78","impliedFormat":1},{"version":"0f5773d0dd61aff22d2e3223be3b4b9c4a8068568918fb29b3f1ba3885cf701f","impliedFormat":1},{"version":"31073e7d0e51f33b1456ff2ab7f06546c95e24e11c29d5b39a634bc51f86d914","impliedFormat":1},{"version":"9ce0473b0fbaf7287afb01b6a91bd38f73a31093e59ee86de1fd3f352f3fc817","impliedFormat":1},{"version":"6f0d708924c3c4ee64b0fef8f10ad2b4cb87aa70b015eb758848c1ea02db0ed7","impliedFormat":1},{"version":"6addbb18f70100a2de900bace1c800b8d760421cdd33c1d69ee290b71e28003d","impliedFormat":1},{"version":"37569cc8f21262ca62ec9d3aa8eb5740f96e1f325fad3d6aa00a19403bd27b96","impliedFormat":1},{"version":"e0ef70ca30cdc08f55a9511c51a91415e814f53fcc355b14fc8947d32ce9e1aa","impliedFormat":1},{"version":"14be139e0f6d380a3d24aaf9b67972add107bea35cf7f2b1b1febac6553c3ede","impliedFormat":1},{"version":"23195b09849686462875673042a12b7f4cd34b4e27d38e40ca9c408dae8e6656","impliedFormat":1},{"version":"ff1731974600a4dad7ec87770e95fc86ca3d329b1ce200032766340f83585e47","impliedFormat":1},{"version":"91bc53a57079cf32e1a10ccf1a1e4a068e9820aa2fc6abc9af6bd6a52f590ffb","impliedFormat":1},{"version":"8dd284442b56814717e70f11ca22f4ea5b35feeca680f475bfcf8f65ba4ba296","impliedFormat":1},{"version":"a304e0af52f81bd7e6491e890fd480f3dc2cb0541dec3c7bd440dba9fea5c34e","impliedFormat":1},{"version":"c60fd0d7a1ba07631dfae8b757be0bffd5ef329e563f9a213e4a5402351c679f","impliedFormat":1},{"version":"02687b095a01969e6e300d246c9566a62fa87029ce2c7634439af940f3b09334","impliedFormat":1},{"version":"e79e530a8216ee171b4aca8fc7b99bd37f5e84555cba57dc3de4cd57580ff21a","impliedFormat":1},{"version":"ceb2c0bc630cca2d0fdd48b0f48915d1e768785efaabf50e31c8399926fee5b1","impliedFormat":1},{"version":"f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","impliedFormat":1},{"version":"12aeda564ee3f1d96ac759553d6749534fafeb2e5142ea2867f22ed39f9d3260","impliedFormat":1},{"version":"4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","impliedFormat":1},{"version":"85d63aaff358e8390b666a6bc68d3f56985f18764ab05f750cb67910f7bccb1a","impliedFormat":1},{"version":"0a0bf0cb43af5e0ac1703b48325ebc18ad86f6bf796bdbe96a429c0e95ca4486","impliedFormat":1},{"version":"563573a23a61b147358ddee42f88f887817f0de1fc5dbc4be7603d53cbd467ad","impliedFormat":1},{"version":"dd0cad0db617f71019108686cf5caabcad13888b2ae22f889a4c83210e4ba008","impliedFormat":1},{"version":"f08d2151bd91cdaa152532d51af04e29201cfc5d1ea40f8f7cfca0eb4f0b7cf3","impliedFormat":1},{"version":"b9c889d8a4595d02ebb3d3a72a335900b2fe9e5b5c54965da404379002b4ac44","impliedFormat":1},{"version":"a3cd30ebae3d0217b6b3204245719fc2c2f29d03b626905cac7127e1fb70e79c","impliedFormat":1},{"version":"bd56c2399a7eadccfca7398ca2244830911bdbb95b8ab7076e5a9210e9754696","impliedFormat":1},{"version":"f52fb387ac45e7b8cdc98209714c4aedc78d59a70f92e9b5041309b6b53fc880","impliedFormat":1},{"version":"1502a23e43fd7e9976a83195dc4eaf54acaff044687e0988a3bd4f19fc26b02b","impliedFormat":1},{"version":"5faa3d4b828440882a089a3f8514f13067957f6e5e06ec21ddd0bc2395df1c33","impliedFormat":1},{"version":"f0f95d40b0b5a485b3b97bd99931230e7bf3cbbe1c692bd4d65c69d0cdd6fa9d","impliedFormat":1},{"version":"380b4fe5dac74984ac6a58a116f7726bede1bdca7cec5362034c0b12971ac9c1","impliedFormat":1},{"version":"00de72aa7abede86b016f0b3bfbf767a08b5cff060991b0722d78b594a4c2105","impliedFormat":1},{"version":"965759788855797f61506f53e05c613afb95b16002c60a6f8653650317870bc3","impliedFormat":1},{"version":"f70a315e029dacf595f025d13fa7599e8585d5ccfc44dd386db2aa6596aaf553","impliedFormat":1},{"version":"f385a078ad649cc24f8c31e4f2e56a5c91445a07f25fbdc4a0a339c964b55679","impliedFormat":1},{"version":"08599363ef46d2c59043a8aeec3d5e0d87e32e606c7b1acf397e43f8acadc96a","impliedFormat":1},{"version":"4f5bbef956920cfd90f2cbffccb3c34f8dfc64faaba368d9d41a46925511b6b0","impliedFormat":1},{"version":"0ae9d5bbf4239616d06c50e49fc21512278171c1257a1503028fc4a95ada3ed0","impliedFormat":1},{"version":"cba49e77f6c1737f7a3ce9a50b484d21980665fff93c1c64e0ee0b5086ea460a","impliedFormat":1},{"version":"9c686df0769cca468ebf018749df4330d5ff9414e0d226c1956ebaf45c85ff61","impliedFormat":1},{"version":"89d5970d28f207d30938563e567e67395aa8c1789c43029fe03fe1d07893c74c","impliedFormat":1},{"version":"869e789f7a8abcc769f08ba70b96df561e813a4001b184d3feb8c3d13b095261","impliedFormat":1},{"version":"392f3eb64f9c0f761eb7a391d9fbef26ffa270351d451d11bd70255664170acc","impliedFormat":1},{"version":"f829212a0e8e4fd1b079645d4e97e6ec73734dd21aae4dfc921d2958774721d0","impliedFormat":1},{"version":"5e20af039b2e87736fd7c9e4b47bf143c46918856e78ce21da02a91c25d817e8","impliedFormat":1},{"version":"f321514602994ba6e0ab622ef52debd4e9f64a7b4494c03ee017083dc1965753","impliedFormat":1},{"version":"cc8734156129aa6230a71987d94bdfac723045459da707b1804ecec321e60937","impliedFormat":1},{"version":"bb89466514349b86260efdee9850e497d874e4098334e9b06a146f1e305fca3f","impliedFormat":1},{"version":"fc0ee9d0476dec3d1b37a0f968e371a3d23aac41742bc6706886e1c6ac486749","impliedFormat":1},{"version":"f7da03d84ce7121bc17adca0af1055021b834e861326462a90dbf6154cf1e106","impliedFormat":1},{"version":"fed8c2c205f973bfb03ef3588750f60c1f20e2362591c30cd2c850213115163b","impliedFormat":1},{"version":"32a2b99a3aacda16747447cc9589e33c363a925d221298273912ecf93155e184","impliedFormat":1},{"version":"07bfa278367913dd253117ec68c31205825b2626e1cb4c158f2112e995923ee8","impliedFormat":1},{"version":"6a76e6141ff2fe28e88e63e0d06de686f31184ab68b04ae16f0f92103295cc2a","impliedFormat":1},{"version":"f05d5d16d85abe57eb713bc12efefc00675c09016e3292360e2de0790f51fa48","impliedFormat":1},{"version":"2e3ceed776a470729c084f3a941101d681dd1867babbaf6e1ca055d738dd3878","impliedFormat":1},{"version":"3d9fb85cc7089ca54873c9924ff47fcf05d570f3f8a3a2349906d6d953fa2ccf","impliedFormat":1},{"version":"d82c245bfb76da44dd573948eca299ff75759b9714f8410468d2d055145a4b64","impliedFormat":1},{"version":"6b5b31af3f5cfcf5635310328f0a3a94f612902024e75dc484eb79123f5b8ebe","impliedFormat":1},{"version":"db08c1807e3ae065930d88a3449d926273816d019e6c2a534e82da14e796686d","impliedFormat":1},{"version":"9e5c7463fc0259a38938c9afbdeda92e802cff87560277fd3e385ad24663f214","impliedFormat":1},{"version":"ef83477cca76be1c2d0539408c32b0a2118abcd25c9004f197421155a4649c37","impliedFormat":1},{"version":"2c3936b0f811f38ab1a4f0311993bf599c27c2da5750e76aa5dfbed8193c9922","impliedFormat":1},{"version":"c253c7ea2877126b1c3311dc70b7664fe4d696cb09215857b9d7ea8b7fdce1f0","impliedFormat":1},"b1600c1deb6ed032dfc2c6288b6d780fc2eae3af37208fba537fcdac009a7981","1e9571e5f65fb1fd46c8debb04c388ed51c08f5ef07053904744b7bb5c5e2372","fea88ad241ce17b84715e22e58f5d2901d01c9479e8c28f7f6b502b20ec8c6d7","6ddef3de7f7a6f0a7a9c9334930123711d1cd34a9bb5abb1eab62841add72dd0","a4a28da045178db6765d8db0c037a0a092cea994029a4b85b548a979cd0ec5ad","caa86a423586839e03bd358acf1afdbf61a3bdd3d19de9ac40fb773b4f4aa945","4e4c1f346434f385abbb762e48434930889edd661bda602f6693867dafe25240","ef914f5968b91a1dd8e40ec57a6ee35253e6358129a754bb78c5dc01f54fae9a","bae05b31e0448ffc2a9d3a5528432410781493cfa29253f2d230421564d4bb43","83985a6e80b5fb3f4b3d4414294ee396e732014279cc78b435ac2aebfeccf449","da7017326b77ecd3da8d127aa6f3f96ab78ad2eae3bc31cc1bf1cfa724d1e084","4648f92f680be1d23240667dfb027c23148f4bc6c9ec50b47092cf06f9984390","911b5cc6d381721238763df07666ae64c0e02f722c8a00117f1c2d222f616312","451ff3f6d191b63c6a5cc63201a34579ec3a3433fe4ffd30fa19c2502078a75a",{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"9a8467579929d729fe377a449d68ccb3b1795414716e4b3d31adeca3c2dbc915","impliedFormat":1},"e2929f4f3c0dcd2aa89636f59ff304b89998d63cc3be3d6eb9c638e8a27566e1","140ccc0e9903f8c4219aa91de06dcd505586f451a4b48f3622a2c97afe1cf3ad","2c075fcf629713a7092582a33e7345a8a1282336b175dc687a9ba5bcbbf2c1d9","4f1f2067a1649d72c0c265e0ba0996a199fcff281baeb1b4fc89bdfcd1d7d978","8704edae14745b05be645cdb4d4a387ec47c2500b9ca506b2921509a7fea5a86",{"version":"a3a48fbe8782048f74752a1ef300ade63777f62bca44aadd9bd99a4ebdf9b9eb","impliedFormat":1},"88e6ddbf1bb445b1d072414f1768f121c4094c56b6ce9c92db99fda74bb763ba","4fa8f53004747bc2051f43424e4ec38bc54ce4229d4f0fd78bfc52ec884fd7c6","506c8aac5efecd12a7992cce4ab0cbbb3465b2f2a1a4e97c2046990670e5f524","5a7a1c32fa3bdcf0d3c6d01a5030d707aec75fb769e183a9946ab9ee4013290f","99754e0aecbc2259ec46128ec6f789f4ba156b30b10e3dc77ad9bb2ffa3816cb","c67182e85143e829114970108944bce4b7a191f1276e14871fc0c84d94816ee3","4c2678347e27421f685df1b746dc765e0cac8e22161724503e39a0f69ba9e7f3",{"version":"05d39d0921be6d0d6bba3e27b7d8e87b0cdc1a32bc18f58c709730affafc3df0","impliedFormat":99},"743dc2ad038c6334eb345e678558dee6a82276657b8097baa53f3a21dd183250","fb6bb86654fb9b526391996b6ff76f4ffdb7bdea6be5845ac0bc08475e014013","23b5d416bc4d5abf5d869c72eaf1ad1dcec0d97d05a29ac7baac0ea93fdec6a8","f74c17ddf087e66c92a1603b742faf9cc78480e7ad472f18afab5b7a547fed02","23bbca29d9036a994f0b362654ecfd41e6959d5f12394d9baa33211e6bb2c3c6","6e82b406bd3edacd252f216accc169a45eb16d6e6ef3f6ca61bc243485e68319","2b0b153fd4059da8d8f964c8bc9bbc3b989f92742854be59524f72ac0036e74e","5e475f93321a19ab58d2c98054d50e88ab81fabcacd6532162ba9086027caba6","1fcee44be848a6a354db60c3b4d766ced8b8874393d3e6e1ec19f2e7a554942b",{"version":"bddc8143c3b0fe2a6462f9811d3b28ea422ffee80d75d3d97d65d6b69f583fad","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"54b3fa7c2b67a9c654170e125d61ef2b8534838ee8e8abf3ff54ce77885c3805","impliedFormat":99},{"version":"8a190298d0ff502ad1c7294ba6b0abb3a290fc905b3a00603016a97c363a4c7a","impliedFormat":1},{"version":"ed1441df2b8bbbd907f603490cb207f44141fe191b20be2f270e8de69bfa194a","impliedFormat":1},{"version":"aa5e0d12e17c49e183e908cf0e106e9d0d9f667a18f507822aeac4f664fa5825","impliedFormat":1},"469c34a02022a564cbd361e5a63f9c468bc35653ea7276b1367f113fa0d31ecd","4b83583173e72827730f114c4c9804c2bf316b251a0967a354d32adc2fb541fe","90272ee6682204d94a401b83b744bf9a3f6eb96f3ffcd9b8033bfd68cb9ae23c","178be2a50b72689ecd3c0c34fc8bf3a2732e0db4f0a19c72f0042af4e5d86778","b7665b932ddbd9e6528c65f6d52eb16fce2c169cf5a2b810c5b80a8a64a668a1","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","dccc2fba20d0aa23bbd6d7e99b10d4250987a150555f0f4baaacfc41b497ef23","2da43e6bf5fec3037497607ce3a0db0abe1067035e951d24dd1763c1eb031765","3dddab8cb67a9e578de64b0a5ba241eee32f09c5b42be9780cda05eedf6d1626","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"c8905dbea83f3220676a669366cd8c1acef56af4d9d72a8b2241b1d044bb4302","affectsGlobalScope":true,"impliedFormat":99},"5250ac9de18846ed8fa771d2f0fd710c6e2e3f2f8a507781d8e0f2ab007ef4b1","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"549df62b64a71004aee17685b445a8289013daf96246ce4d9b087d13d7a27a61","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","impliedFormat":1},{"version":"f6c80864402c15ee5477383b4503cabf80976913c5a789995a529fdb45264950","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0255fc627076156b2d8daf73e118fb8ba22290e78d1217933ae228d92a9784d","impliedFormat":1},"bb04fc85a6130c5b624494e5dee1c2047f0ecfbc1e94d224a7e9f1947332a26f","246fcebda9af5f5100e6e935f1a0a083be9c3472139b431a102340f128b89a0a","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","d78fd6f24b8bed81accb9c8b0ddb854530a127e9ec85f6f67eda8ba11071f9a1","1076e89a22d37fe1d6aa81c7c81e65c662cefc22058bc0ccc2afc0ad82e3b7a0","3853ce82c0dad022d13e160035f56e152978bf1ec713cb2be1dc71dab7e9a584","594eacf1a670bda94a3aa695ec97e3ad5d9437f643179c57a87282cc9eb3cc77","8167ca674594819d2e3aba4f1e794f0165dcfa5a589ae3bc5a7cf1c358d9dac1",{"version":"905e543f34d5b01a7683c21b7174e86553add789e8e73322574e8986a01320bd","impliedFormat":1},{"version":"68ef0b6784a7d4508e8099a8fbaa1836a023676589b76eb1463973dff39645f6","impliedFormat":1},{"version":"95c78cf183c5e9111e91d895a481dbf13ee29a0a95ef1c1d37513e1cfe913735","impliedFormat":1},{"version":"23e847832c900bd2360edc9a42a056137344f79aa1b43d72fa8ea3ee107aae73","impliedFormat":1},{"version":"7c52a6d05a6e68269e63bc63fad6e869368a141ad23a20e2350c831dc499c5f2","impliedFormat":1},{"version":"4fb9e98536b7318332003b303f87c18f82767ee03a5ea45a24d4d5a52c0aa4ce","impliedFormat":1},{"version":"4f04aea27052a12a002f0fbd11232480d96271061535402a41ab07ccc653c24e","impliedFormat":1},{"version":"e5b63a24ca97f2f112ad6ee4907c69da2da1bb17d88bc78d661caab7ec752137","impliedFormat":1},{"version":"d4066357a89663d4c2f3ad413215114fc0913127c92e1f53b18b8fa834f868c6","impliedFormat":1},{"version":"6b83014e919aa4065dcd1f3979e4a36615515809344e9091e6fac7f8a49806b0","impliedFormat":1},{"version":"dbc06330145e5a66bf5e581cf5756d8fcc4f1759ceb54a2dc5bac0b5ebfa8d68","impliedFormat":1},{"version":"b32e93ba638ba1264c051966d9722733dbfedff365d38fdb982ea5bf7c5ed56c","impliedFormat":1},{"version":"70a29119482d358ab4f28d28ee2dcd05d6cbf8e678068855d016e10a9256ec12","impliedFormat":1},{"version":"869ac759ae8f304536d609082732cb025a08dcc38237fe619caf3fcdd41dde6f","impliedFormat":1},{"version":"0ea900fe6565f9133e06bce92e3e9a4b5a69234e83d40b7df2e1752b8d2b5002","impliedFormat":1},{"version":"e5408f95ca9ac5997c0fea772d68b1bf390e16c2a8cad62858553409f2b12412","impliedFormat":1},{"version":"3c1332a48695617fc5c8a1aead8f09758c2e73018bd139882283fb5a5b8536a6","impliedFormat":1},{"version":"9260b03453970e98ce9b1ad851275acd9c7d213c26c7d86bae096e8e9db4e62b","impliedFormat":1},{"version":"083838d2f5fea0c28f02ce67087101f43bd6e8697c51fd48029261653095080c","impliedFormat":1},{"version":"969132719f0f5822e669f6da7bd58ea0eb47f7899c1db854f8f06379f753b365","impliedFormat":1},{"version":"94ca5d43ff6f9dc8b1812b0770b761392e6eac1948d99d2da443dc63c32b2ec1","impliedFormat":1},{"version":"2cbc88cf54c50e74ee5642c12217e6fd5415e1b35232d5666d53418bae210b3b","impliedFormat":1},{"version":"ccb226557417c606f8b1bba85d178f4bcea3f8ae67b0e86292709a634a1d389d","impliedFormat":1},{"version":"5ea98f44cc9de1fe05d037afe4813f3dcd3a8c5de43bdd7db24624a364fad8e6","impliedFormat":1},{"version":"5260a62a7d326565c7b42293ed427e4186b9d43d6f160f50e134a18385970d02","impliedFormat":1},{"version":"0b3fc2d2d41ad187962c43cb38117d0aee0d3d515c8a6750aaea467da76b42aa","impliedFormat":1},{"version":"ed219f328224100dad91505388453a8c24a97367d1bc13dcec82c72ab13012b7","impliedFormat":1},{"version":"6847b17c96eb44634daa112849db0c9ade344fe23e6ced190b7eeb862beca9f4","impliedFormat":1},{"version":"d479a5128f27f63b58d57a61e062bd68fa43b684271449a73a4d3e3666a599a7","impliedFormat":1},{"version":"6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0","impliedFormat":1},{"version":"f16aba91e2c61a7212ad4168386e272a871a351887e39115a36d25f770eb4c52","impliedFormat":1},{"version":"2d3f369fb236a9f726e00a3c5ca3e72f7b32ef56b2f542bed834d43a8ee300af","impliedFormat":1},{"version":"819cef4173bb37e7e8d523e88154af2329a4a258ccc036720cfcb217791b3868","impliedFormat":1},{"version":"e7cbe066de1dee3ea5fe58926aea6f1a07b1e71778fd8ff7144d4285574c7ed2","impliedFormat":1},{"version":"0d04b6c350398090d56a4e5bda575a560c95fdea6106f9744b5cc0905aab2553","impliedFormat":1},{"version":"e90f8bf88ed262c122d7f30c06e7f67c446e6e5236baed71ebafec7998b3f645","impliedFormat":1},{"version":"1ee226af7851d92c2fdc09c7ba8f84036d991edbda398a217e173821d62ad379","impliedFormat":1},{"version":"dd277157cf6aa8e937ad497026495adac453a064d7f9637c63a81b74d70d84e0","impliedFormat":1},{"version":"b84d5aeda18459510f6da1b821bce917622c51e184d1d58415ee3dc48d6180ef","impliedFormat":1},{"version":"bbe2b0d328e116df2e8cf8c2de9a078758fd422e6f0e117a3c73ac2e02855a2f","impliedFormat":1},{"version":"64eb63ecf54f8771bbadf72043ed4e6e47eed4b11bd24e3ef9937663b9911e43","impliedFormat":1},{"version":"7837dda0e930b2849976141cd7ad0637703f4cca76ff8539e4c76ac07dd678ca","impliedFormat":1},{"version":"04008a524815b9509d7d64dda18bf4594311a415dbbb271521d1078cb1c7850b","impliedFormat":1},{"version":"86c3a40fa2deabd9d08b8d835f12d2e6fb8bc2e572006c4f3302a2b4589ad9db","impliedFormat":1},{"version":"8f306dabdc2e130f1926f6abd04d233fd84ccf071e3d745a971112dcc87e591b","impliedFormat":1},{"version":"f41b3bea6012d76f83097c1079d99406054a22d04156afc9eb3955f9b288f8eb","impliedFormat":1},{"version":"f37d987a6b846dd948d310bf165ab4ac2327bc0d06182323920ef17a1852bec3","impliedFormat":1},{"version":"16a0a00c9b190a519950aadf21f16a7df1baf2346d64c4c054ad5f7fb71ea8ee","impliedFormat":1},{"version":"a228c6353575a3d21c2f579a4e860e6542950577f451062fdc578b02c95c22e3","impliedFormat":1},{"version":"90ed0b14083410a072cbf480a863e7f8ed7202ffb9ba625420a1b2455add33bb","impliedFormat":1},{"version":"1a75cca03c3c8f71f1a37618b2d3be5649630476761b59137245ec21110bfedf","impliedFormat":1},{"version":"9751ea85dad9ad6ceeae8fe142daf4d83ea78bede9d5424a326ad0869900ccf7","impliedFormat":1},{"version":"59cbc2704d281fce3f397e90e823117835deb20535ca8212f153f3bc74d811c6","impliedFormat":1},{"version":"74c20308aeb6da88368e0418a437d9718d10256ea50b6f428f56e0b982ec3229","impliedFormat":1},{"version":"21d78bad604829fe443eb962b7f00a17343fe621c2ac57114c7175bec879e17b","impliedFormat":1},{"version":"a0b27ac9a3c290c7281f922c1dd62afa02f76be63d1fff952f6348ffb019dce3","impliedFormat":1},{"version":"0b2cf5124c5f89d443dfdd7cae61a6a0b528a8e951ce6a00f3c7ab1ba0d2d534","impliedFormat":1},{"version":"e012ff0c33485d340ab68fa820d3372296b17efdb6e5cdc29ec99b82a8b159b0","impliedFormat":1},{"version":"3f563bff747def979af181255d09daf1566829c5817266ad4c289118e3cb39ae","impliedFormat":1},{"version":"51057e067bc5db4f55572329981b9ecd0e3d3b96c2b62fdb1dd0ccead1088e43","impliedFormat":1},{"version":"82f64bdecc73474993d9a44dec8ef0d3c02121580aa02072045bedab11ec882e","impliedFormat":1},{"version":"b7db045ad68ab5695ea97e40865a5981f146a62aa86f1261ad1aab59dd76e3c0","impliedFormat":1},{"version":"e90591e0e9e1b3ed53963b26c307bfe74f09131581f5ce6ed76a87f748d99991","impliedFormat":1},{"version":"52af945810b09a08235b252421270e767303cdf9b932bc5f957b2538f38a02d1","impliedFormat":1},{"version":"53029155e358b3b324dd5e38332f1809848e601057823892a9e77b6b3a9d140e","impliedFormat":1},{"version":"313f55101d2baeb5f01dc30f100d136190debad5ffa4453581843efa3219689a","impliedFormat":1},{"version":"05e638a171f5969fca61933d6d89f30f5acbbc70b74d2539957a688a5292b55c","impliedFormat":1},{"version":"43dd0f8de489f3111652b6c425cd01bb9259234bef62761440d2a982cb9d958e","impliedFormat":1},{"version":"0a36bd27b6af811f763d5f1254637ce9300574f02e875f5e1b23110829357e38","impliedFormat":1},{"version":"3ea0e65a45f7006261c963f7abcac37a91513eadf72aeef909cb2ad7676cc4f1","impliedFormat":1},{"version":"5637b24d008a13b63ac8e76579e3c0e595db5c4052bc052414a5fc4f57545bf5","impliedFormat":1},{"version":"909d0a3ae5c7e3aa435f53cbbeaec617a489283076c61f0cc0f73452e0c6232f","impliedFormat":1},{"version":"e75c93d9068a6664e2e2827a720def5d5bf6532af5952a6b8fe3eee440ca6b5c","impliedFormat":1},{"version":"62f95fcace684999ebca0823e7751a39c8738c4fc01dfa4d1334c1b32b026466","impliedFormat":1},{"version":"f5f29a11cc28ee80696a7210b16e263fd5136ff04a79bf5df55ede3a4e68b3e9","impliedFormat":1},{"version":"cf3e2bee2220a6805904d14bf54d2c9e0ad3bf6d76add9244535f8ac34b919e4","impliedFormat":1},{"version":"98d88c8fd633d0054e791714742e9537b74a68d38a7ff81374e6a61242cea221","impliedFormat":1},{"version":"fcc19e67c9aa935dfd3e3d38d2b3d2b8215ccb28bc6106d159ed1ae65d667f73","impliedFormat":1},{"version":"e6f249463d9c5f898b1d0511c58dee7c3e3fe521fd6758749bf12be49e4e937f","impliedFormat":1},{"version":"3cf11201c92c4e7caf2696e144fa3fb524c6cb25157bb253a2beded585f410cf","impliedFormat":1},{"version":"d3c220e75847aa7bc24784572947bd48b843d094b22ae4899a45788f2ba70a43","impliedFormat":1},{"version":"818ea1645d3b08a7c3c4b84c32b4a18eb9f217e46dc8860fc751795ed14bdee0","impliedFormat":1},{"version":"943a5d4c85180884f41e96002f86848bb8c3dab9eb03c57c97aec80569e75957","impliedFormat":1},{"version":"d85d01cb4e957275b938d81e3cba52cefdda8b9c8bf84bbc5c70723b11aae30c","impliedFormat":1},{"version":"283b61717cf35dd0e5cea0726939556d12cd2b42317df2c58bebea511af0b2d5","impliedFormat":1},{"version":"3e612b62fb8e14ddff1770c41973c96eed5b6f9e5f01993f466f59af57f58f61","impliedFormat":1},{"version":"3923de820ed7c8998bd8170c8adb87721cbbe21637ba02c9c2dcb5e7d95b789b","impliedFormat":1},{"version":"aa25eafdac0666baec3e57ec29c08f06b9e21a584cff8d02455afb6e87be152d","impliedFormat":1},{"version":"e01827704d246accce473fe8e52cae498035950d9fa1673969502d65cd009295","impliedFormat":1},{"version":"a558a5b0db5e2a479a788d428012fd9172b20f51b4002523ca2ed40380ed7f24","impliedFormat":1},{"version":"5cd0a91bb8dccc1987e7cf77e5329de6388b5b14eb63d128607cc0465047ffe8","impliedFormat":1},{"version":"ba779307aa6dcbf7212d09d38e9776e923dcb367ed64f829e5b281b60bc658db","impliedFormat":1},{"version":"ce90309f156c74316186ddaa1384db82cc6d4ef0f0211ee8d07513aaaa3bd1e3","impliedFormat":1},{"version":"c58f4a7ebfa3c20f5892b2c363072bc78667f6b7ffa218c8e3898f98a0990064","impliedFormat":1},{"version":"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","impliedFormat":1},{"version":"0166ee5d09e966ff268ccc6ee9a40a025409a18d2114a73fc7612d8fd730927a","impliedFormat":1},{"version":"264f4b5c51f7d901df3ee079949634e339b5fe157ae309ceed45192c63f9af8b","impliedFormat":1},{"version":"9869582ad4db8288b337d2aa1d0f6a44ac1f6d37e72f19f53188c520b652055a","impliedFormat":1},{"version":"04ef38fa44488af63b6927e529ccd1092532d5d8a17c8edf96d1d288d1897616","impliedFormat":1},{"version":"b2d00031dbf4cae85311aaac009fbba3d1b0b4f2e72ab690a86526e740427623","impliedFormat":1},{"version":"1122f8ac0822eeeb7cf7de02886c71109237d940be5234bc878e9f74a314cb47","impliedFormat":1},{"version":"0cf348cf10db213803bc6f041183db473759ab1e8676d826bc6139ddcad84665","impliedFormat":1},{"version":"047719aed544e716b2243212264bc2e14a1da0d1c710fe6209e228981dc82ae4","impliedFormat":1},{"version":"47a03bf1241779ad40a0cd2982526cf7547557d720d4db2df410ee166c60aa89","impliedFormat":1},{"version":"922248fee358d198745ea609ed4c2b2d87a49299fb6be7a1d229a184bbf66fd5","impliedFormat":1},{"version":"4b4cd67fd08f4a39397ad27ea21468efe758b6e58606984db94e49e6c9186b96","impliedFormat":1},{"version":"223aff866672813df1b2caafd82b5dbbbbbff07e6994bbd5747df7549c75c427","impliedFormat":1},{"version":"a37a6e239d0aae9d850b48e4cb55b548162fabadb92beb6d7d0579abc61f5bf0","impliedFormat":1},{"version":"a06aded6e43b0e09545f26957e5c0a5b4514d327f4b962d97828539a1dd5552a","impliedFormat":1},{"version":"349250884d48cb12c72dbe59a2843affb6904f8429e3f7556d138db40ec8bcd0","impliedFormat":1},{"version":"65b6cc74c86bf2d5385fb9e10bc4ad5ad09fff05a6d6e872ca4db044bb46fb3a","impliedFormat":1},{"version":"e2efe68376a25ad9bc5af48ba3888cfb9355d004c561b0b2465c4e661bdee46b","impliedFormat":1},{"version":"5399098207d4cc8d407f49c932da771ed6ceb4434d7f20e56135bd7015f331ed","impliedFormat":1},{"version":"ab8287edb8dfcccefd318ad76a5849b3c80c6bf0caed154be12dfe1112cf936c","impliedFormat":1},{"version":"cd2200fbb1d1271782654fb7fdb6d8dca7db15f7b8db2a38e7143662d491d586","impliedFormat":1},{"version":"674d7208c85a0d903f7d3f1d2fda966d00bf0886ab3e5cefb96a8f1643540a1a","impliedFormat":1},{"version":"41ab5f4e8bcaddc43ce23a691011e897b1e50355fdcbafc8cba04b286e6f1c49","impliedFormat":1},{"version":"38fe031b36c5de94bb3b1b3ad390041f74aefb61df99746de85381c7ecda75f3","impliedFormat":1},{"version":"47277bb3b4bbda8c0326fe702b9f676e8f51f883b2a90a442f5dbcdabe252ad6","impliedFormat":1},{"version":"65b02d4c494f394f8988d4a6faa4aaab5347bf963b8792f7a2b2552b78120bab","impliedFormat":1},{"version":"025a67cb489d57f4363fbeff45ce51ba807884988d0d0aba65c892376be38bfe","impliedFormat":1},{"version":"897a6a62d6b6a5c0c806a4d5f1c223a9bf41f8c97fe86e648c5b20efa3a3c25c","impliedFormat":1},{"version":"8d8d909792777b0df3d5c6846e6cac0b300dd4e99ca0cc9e0047f14fd09a8704","impliedFormat":1},{"version":"532894363916c4b9d8f8d8647f2d9b98723ab959f6cfe5209ab92ad1d128e658","impliedFormat":1},{"version":"d492ab701db274e6005df9202d2a9370df12fa0bd6191885156894407e721f58","impliedFormat":1},{"version":"a71ecc5545c1ac3fff470887c1a20bb06e3cb0e36676dedffd20d14588578e6a","impliedFormat":1},{"version":"1e5c3d857b594638715e557a713925d82a462edf7adf912cace8c384ee88688a","impliedFormat":1},{"version":"b487c070d4da4c0210fc1069f3a7663b504ca85ba8a071568939c2237eab2988","impliedFormat":1},{"version":"89bc7b5b169ed78edf3e732f70558bbb0b309bdeddfe293dd99fc8a3857fe588","impliedFormat":1},{"version":"39dd82696ddb6a0a3b64b6dd737cab9ffef6e130ddb96a571daf504e868b7dd4","impliedFormat":1},{"version":"0cd6916333ffdc9899ba3d87c0b71c341d66c21fde10091188278e8e2dbefecc","impliedFormat":1},{"version":"927a6bd9f0344c2d3e897b182a685adeab1bbb48c2cc5a134c0ecf2596752282","impliedFormat":1},{"version":"3930c95340f3e3d08276b14659bafdc9e1d93afa1d4c649a9d353f377e4c83b4","impliedFormat":1},{"version":"23211a9818220e2fbffbb3c4f53ab2bb2dac9cc3ca998607e56e90c961c134f2","impliedFormat":1},{"version":"4372899ea8be93b7d1b0a21b487c5b726f91a6c1c0785f9ae7b851738bde88b0","impliedFormat":1},{"version":"59c1a9f97666d459ebaba5f5dacdb453ae0c671b317467697764c2e0e44bf196","impliedFormat":1},{"version":"ee72eb60620acd1c765a3c5a6919fdd6786fa1e04193f33c248118d17ad01378","impliedFormat":1},{"version":"f07d5eb6281efe08966d422297f256990f79ca31aa8bbce41510a8c67e4d9b26","impliedFormat":1},{"version":"8f33a2e973c015d4fb8ac6d0682adf9412770687912351d6f467b57716d86862","impliedFormat":1},{"version":"7048fec24c26de6df7c70332b201ee3752cc1077c300de2bf015ff4e17d8b3c2","impliedFormat":1},{"version":"92f2155186acb48c1c08fb8a9076e12b24111d660461b077b28b2d43472ee519","impliedFormat":1},{"version":"3fe4a676fc45b2369d84e7cec5516bfeaeb219e65f074f3dec5c33620cb53ca6","impliedFormat":1},{"version":"890e772f577db50212f462fb39c10eacc4cd169996d2955adc1676bcbf54520d","impliedFormat":1},{"version":"fc921b38250c2ffd339af991bb6541781cc4531238ddf70806bc56f467a8a7b9","impliedFormat":1},{"version":"8c1d7fe8d40405e39e8f7d3817b4ae399433bf08adcfb3582ae97618a7138375","impliedFormat":1},{"version":"3d6ca77f1d7bbf66fc0f967c3186eee8cb30acd4e2f41385193bdfab1d429ca9","impliedFormat":1},{"version":"fc9f3067d0496769c3426f19e8d901e954033dacc1f988af8196640470e56d7b","impliedFormat":1},{"version":"30df6f853d3f6f2ebc5b2c7e2bd173f002ae66f51b7fca3949832320b4eae141","impliedFormat":1},{"version":"203b67e6d33c81b74a8858fdee4f4d0a99e557121db927c96cbb2f305b17111e","impliedFormat":1},{"version":"29c9c6cb20d54a225e9de60cb924d4d40d29d1edb98c4859d1a2b2e8e8e95950","impliedFormat":1},{"version":"e20f5d1774ccd75f556033ae1400f0bf228c384f0f4c2c0264fa093e33dc2484","impliedFormat":1},{"version":"686cc00a3582645bc207c03c8dd62b14fa3e2647574d50a9166edae25b7953e4","impliedFormat":1},{"version":"a663713aa6a9cc2295d94b0c137e8a80070c96c541fbc9987dd87e7a6dc5e0b2","impliedFormat":1},{"version":"0e306b441cefc4fbfcd84f168cfc19919c998a5c5a75271d5ee0ac2546c749e0","impliedFormat":1},{"version":"74bdd55516600d729e13503865eb67e94efea6af92851f250bf4586e805e562c","impliedFormat":1},{"version":"6fc661fc602ab817015df974f6c1258aef4010de01c76a550286609b9cb721ec","impliedFormat":1},{"version":"4093918e4ea19a0faf71146b00d2c72b6207eecb26b69c89de6fc6894f8248a2","impliedFormat":1},{"version":"96642332c1c2c450579775f18df0cc08c373b0f1df69f678cdc95a1ad8813bb4","impliedFormat":1},{"version":"cd344619cb6fad71c80c120d38cd2ac51ba72975326b1b46e3e88d4c5adc3eb0","impliedFormat":1},{"version":"3f3823dc063ce069c9bbdc198d981a1e2ea8784c053b297ed3ca9bbbc3a80af5","impliedFormat":1},{"version":"c9abf080bfa07e56f7da30fbd043cabe4ea4758ae529f8c70c232bbcb17a3aee","impliedFormat":1},{"version":"6df354f6d3210b77d03ce7c5ab27ad0914fee60568996c570d20c9ad9f324845","impliedFormat":1},{"version":"35ecf5e5d1d0038c37a259a6bac12687887977afdea7fd5d60982013e4360755","impliedFormat":1},{"version":"9f7f86921e90060af47419bcafb12f3de4f2251c01de2f152510fa1d4feb972b","impliedFormat":1},{"version":"7106bf0f55dadff8c02b3ab28e5ff6e007baa02fc26cf58d1994eb6482114588","impliedFormat":1},"667213d5ddeb5db6f2405f612903b8438a6809b3e0410cee7efb2374f2210643","580e6e94d79a078af1ae1659dbe11509f1f639c66abc56a81865444af631e342","b3a63c26729fdc3d287fbad171f11209225f599e280c9d1d494a19974d06a48d","18c10665b4084243b1ac2c957aa45849c988a1dd415492c5a464bb2555736d8c","d4d2e445bfb51c5272fd49fa07aa5e9548c1ffc173040772008d8d7e23172887",{"version":"4a9a9aa91296ef9e7edbf6f12ccaa25e066bc46320068fe754eb005a529936ea","impliedFormat":1},{"version":"e1c11673ba62aeabb72bc20436ad6e1edec8cc71183d4f152cda2654088b4487","impliedFormat":1},{"version":"5a7ebcf5fe8ac590dd03af1bbe426dfed639a3490fb1e5d6b934e45643b8ea1b","impliedFormat":1},{"version":"b7e1119637195dffe2cf05b0807d5afff3d89d20e05c8aff85a003386013e9bd","impliedFormat":1},{"version":"62201cf5fbd663e05f06bd2b8c57f3cf7dbbe94586ff35f6460190bd75e1703e","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f49b8064f63b7b3275a8247692967da2458734ea9afcf5ffd86b5c177674740","impliedFormat":1},"0ebaacc7ad803346553589d0f2442633a4e4c685077f8ef5977b7e65221c12fa","685a12c301f22a9d6304cc11f9c1c09619a68aca7171b11259d4335c6d77a22a","22ccd5838b49541e7f6bedb3802626ff06d4f1bde72fa2b6585202d4e86d3a9a","029572deeb55036a36838cfc0f02ad2eae8c2fe3774dfbc8af84fba4335e8e9f","9d95513e603028d784bfd8632fe82c0090d56bb9465669fede6df41061821114","5b2235bd2947e9f887e2b1e9e18c8f52ff3982996c68c6a3c18554ed1ec2a168","332d48dd3dbfa679ea094c49b8b10a290b75d56cfec17e44769d9b768fe2e935","d0766281e5cf0632a2fd45ec71b0bfe328c815d33446f7001c07ef00d0f42eda","aa22c1cc20c9d9d2bf060553957378a7285dd37df547bcf6116a53887b98c4b4","d144cca3fb1467a74af2b09c938fbf307e4dd3dbb6e69e7661a9acbc3d6c239b","bd9f30fdbebbc4be758367106578fcfd0c5b3598a3a039a92a14f46338504d38","b995780d3bdebc6309c1ebd175b87b3b3ee0ed59359992d9b164507af0f38504","945c03b45ad56b33d2ce612497467011f195b59b5303af03f27f2d4d0b0933b1","40e65b7f4e4d1470c0f39b9b4fcdf735c0f794b8be1a0a602a999e158a529c47","31b4291404d901de66e57b768f431560d3c831e65bd25ad4253d79237a373f72","bc8e357f34add2a1b1c4938a7d0447ecc791411f4741af8b8f40f3bf1fdeca79","2aae249e71b20db3f340a7cb4d198d8cf9f193ba5c275e75ec47c5c72a56d466","503eebe32c001dc6c0b9d0f18031ca8c21335b023eb725366ae2f0b6e5c282b3","3d392e50b132e2bc296d689dc4b8b63d8003a9ca5bc3ecca2432bb26dc8d0ad6","92bb8b3fae0782500371974279efa8898466df594d4f90471ea8403faf6c4893","4331bda54161842efc86731b055527cc7852491c0ba2fe8cd3674abb2e69bd79","68f429be47f4763235a23de2ac6f3e14609c05abe669504d008726c85e5a2d10","19cdf31f2bcecd027efacb79b2c579f096a0a0813e22ab72e2bbc35e5fb91fe6","f418c74331b39a4db95f978218dbe68b72fd2660ccfe2f270f7dd3f297151beb","2eb9691659e22c5fb39bc4ec0aa81a817a12243f784c27d1833ad8816b3cb5f6","87f7148f330c05e49fe62ce10af36fabbf7334d0bd364db9cee62f75a79e9c0f","91c66355fd1fa92491be7c73d77a050da379d36d653d6903e2d4fb0b5e44afca","10d2a2a435a2aa548f1556d35120d2701c7fe33b20ddae858504b4806a23475f","5d8116261e796f5392f3c1b54b83cb25de4683ea29b0c5c904e261b810d21c85","c4ded561c6f595bbe084361ebeb531c2430bdc2961f3e18369d846af9998ab0a","fcb367f21fa130bedd1b30d5b446d06b959964ee2a0237b413e7bd988d494fdd","ade406a413a8e8e854a5948bf404cda4bfffc0212308457b7687e57c7b73ac4d","ba98d09f5c0bf1c0fb8876dc9fdc5f43ef34fa831cfb84f91939d551bd2d78d9","efe5b05c155ef627c06cce269f88de6577e9f8aa32e9be19507ed1fd886a77b4","a7ef1d6444793d9bf807a9f656f8ad44015c3cf3f7743e44d724912dce6b9729","7abc7c3915b16eb960e47e0d3ec40f4bb7cd398c7b3326b7953722ec61c336c3","f6980bf706d272bd57ed0c0fc5a41beeb9aa11b4bfac4bfb92d21fbcd2f02a8e","1fc2700ab1ff1975735a4326f5bc90cba69be6dc48a4536bb2ab2df55cf65116","d3fe89bf5084628c57e6e764cbbff57045500a18f23fcb89bf4f5bca47d965f2","0a9ac399cdec5e5d213cf8af630f3ec99646eedcc9c8c7d07eca8c95d72472c0","8bbebbbec4209ee21cbcb00f3e9ad1d1e0d62f26c5b70caf373b2d476e2b2d96","47771e884435c5e747839caec5bc0d5e3cfe733573124869eef931304cdd9362","79ae81f21a6e3eac2076da2abbda2f35959b9a86501f8d12560a57a9076d96d6","46e459252ead058ff05ad8f2562f54312a74c4265eac3d0b10a13b531ae8d030","b1670b31a31bd4f4219ec31174479445fe2460b69b8e1e22bdae75d454cbf27d","fcba2080e1cc5bbf4804d2a3c1f041f46169695656a1d8664760c38f4ab3d8e7","5d4af61e576234df6ec4e53e246516523612e08fd6cf187c9c462083a09c2923","575b831733c547e51d5a0ad07bfa33217a8900246cb294e90458a73d42bb4bb8",{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"baac9896d29bcc55391d769e408ff400d61273d832dd500f21de766205255acb","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"a8932b7a5ef936687cc5b2492b525e2ad5e7ed321becfea4a17d5a6c80f49e92","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"d26a79f97f25eb1c5fc36a8552e4decc7ad11104a016d31b1307c3afaf48feb1","impliedFormat":1},"24fee6aca4978801bc840cf77e4b9fd1f5b60791b6f242b1c73dcb9fd541e5ec","2daf752990526dd6436955951884e56c4e600ee12ea3692c1dd3cf32157397e8","a52f2b79f3b01f3833ac0217f3af8290cb1f01dacffffb3899f6c3e9cde3345f","36990e5b77da46725e1c88102cc6457bd69ed0ebc08a208029ff39f6fb26a504","cbc08f439e8b979d6f3d6df91078dc0b0c22e7d6a3f1ceaab7a46440be4e4a8b","459dcc6fbc25d62716493f20ff4935a801926ed7cd9fd58ea5e90ad99dc115e9","35d0f98f8931d9b10ac8d1355b9a94bbe7ff657a77fda830cbb4b8f610dec218","c195d868cccfd4df53361317de0f040397327ca2d2c06788d9977a28a427ca1b","8bf3b1b3f2e6cde636de6956efaafc87c2d93a84c77f93ca281f070512c0c458","24ecc775c7fd5d5702bd7c6fd1444970cbecbf23bb19fc67c4098e5f051a9b83","45cf402815151ebcc80e4eb96de7c4db825c15ca01cbc5a278ec309f6584fe5c","abdf527fc37fa47435427e351c248cba3c7bd56d7acf7e578efb6be4f547e5ff","c65e15b8c36d3eca5a73b056f19c96af32b1dda33d35761aab668287718021c4","cb7adea2c20dda456523d13134782323a1e2ed4fc6ebbb3bb81073de0b22cf98","5698b99be1a0c353f24d2451bb3e260fc04b616ab560fee5f5bc7ecb26608d64",{"version":"05321b823dd3781d0b6aac8700bfdc0c9181d56479fe52ba6a40c9196fd661a8","impliedFormat":1},"2c8fad9a3368fe07bc76a34869b530e53e003278b7acfd03976076e0bfeb2db6","b6bce30a00fdd1343964562046da2f854b1dd4f3b4c60cc25dca63c60bb27e93","b2ec3d4c0334c43ac706a1a6a9fd8db28a948a9c2c26d5dd3d63c820005278d7",{"version":"c8905dbea83f3220676a669366cd8c1acef56af4d9d72a8b2241b1d044bb4302","affectsGlobalScope":true,"impliedFormat":99},"291ea50d7c1849242c5705da2d4f57d618f0d3e8e160ddf6e1cabe6c83687a84","daf14648a043435e1da90cb4ba7ef005081d16de6c94e64f5dae10a86a986770","46e60fb553b35552186d4c82a72dc7d842a95d9c9a763cd45dccfc43699337c4","8318a3e945e03969383dbee7eec6e800f4117c97712bee1a6692f4ad827eff52","10b61eeebbf5ddd0842ef4e4581c35280fee5304008690a8d53e154c7604d98a","28d1917b17c2c3da2335360ac9d2a6d8af86b288096bd20d3c7ea7299152687e","3c9f17d5ea93b3ad0faeafb5f16e65317942db9b978c1fbc63c50acc71ff2ce2","0ebb9e8b3359cae32bd84913c2e83ed7c96a2ce0167093d068beb374601036cf","9612e2d47aea7b077356ee1718bf9590ac844a339a4f85b8a039fa59ae00b6b2","ce95d0ff998e2ca52852c19e6190479f024f581061ac55426fd356e87057be40","6bbf308a45414d9c466016669728b6da7086750d28430ddeba265984358d1bc5","59c9e7b26836a5d0805f9875a7afa85980249f7cf818f7a8a68a72a8b2fa21c5","dc02c9ed3e87c58176ed9a16431b8e9d696a93b1ab6eb9176c30dcee5ed3a984",{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"c12fd3cca1287b6cbab2aaa0b7fae922bcb25a74546b4e0156db622cffa046b8","impliedFormat":1},{"version":"71b110829b8f5e7653352a132544ece2b9a10e93ba1c77453187673bd46f13ee","impliedFormat":1},{"version":"7b0537621a997a853ead2b46a4d85e654beeb96b9d034ea09bf3387348521d40","impliedFormat":1},{"version":"1223780c318ef42fd33ac772996335ed92d57cf7c0fc73178acab5e154971aab","impliedFormat":1},{"version":"0d04cbe88c8a25c2debd2eef03ec5674563e23ca9323fa82ede3577822653bd2","impliedFormat":1},{"version":"aaa70439f135c3fa0a34313de49e94cae3db954c8b8d6af0d56a46c998c2923f","impliedFormat":1},{"version":"2cee3ea4c39a53326148e6e78109affd48fa69eae386871c1f440315a6120f40","impliedFormat":1},{"version":"daf07c1ca8ccfb21ad958833546a4f414c418fe096dcebdbb90b02e12aa5c3a2","impliedFormat":1},{"version":"89ac5224feeb2de76fc52fc2a91c5f6448a98dbe4e8d726ecb1730fa64cd2d30","impliedFormat":1},{"version":"7feb39ba69b3fc6d55faca4f91f06d77d15ffedd3931b0ef7740e8b6fd488b15","impliedFormat":1},{"version":"acf00cfabe8c4de18bea655754ea39c4d04140257556bbf283255b695d00e36f","impliedFormat":1},{"version":"39b70d5f131fcfdeba404ee63aba25f26d8376a73bacd8275fb5a9f06219ac77","impliedFormat":1},{"version":"cdae26c737cf4534eeec210e42eab2d5f0c3855240d8dde3be4aee9194e4e781","impliedFormat":1},{"version":"5aa0c50083d0d9a423a46afaef78c7f42420759cfa038ad40e8b9e6cafc38831","impliedFormat":1},{"version":"10d6a49a99a593678ba4ea6073d53d005adfc383df24a9e93f86bf47de6ed857","impliedFormat":1},{"version":"1b7ea32849a7982047c2e5d372300a4c92338683864c9ab0f5bbd1acadae83a3","impliedFormat":1},{"version":"224083e6fcec1d300229da3d1dafc678c642863996cbfed7290df20954435a55","impliedFormat":1},{"version":"4248ac3167b1a1ce199fda9307abc314b3132527aeb94ec30dbcfe4c6a417b1b","impliedFormat":1},{"version":"c1606128c2ac5c6a3cc2cc24c4582a437141a8ed6542d7f5cbb7623835939831","impliedFormat":1},{"version":"ca055d26105248f745ea6259b4c498ebeed18c9b772e7f2b3a16f50226ff9078","impliedFormat":1},{"version":"ea6b2badb951d6dfa24bb7d7eb733327e5f9a15fc994d6dc1c54b2c7a83b6a0b","impliedFormat":1},{"version":"03fdf8dba650d830388b9985750d770dd435f95634717f41cea814863a9ac98b","impliedFormat":1},{"version":"6fd08e3ef1568cd0dc735c9015f6765e25143a4a0331d004a29c51b50eec402a","impliedFormat":1},{"version":"2e988cd4d24edac4936449630581c79686c8adac10357eb0cdb410c24f47c7f0","impliedFormat":1},{"version":"b813f62a37886ed986b0f6f8c5bf323b3fcae32c1952b71d75741e74ea9353cf","impliedFormat":1},{"version":"44a1a722038365972b1b52841e1132785bf5d75839dbc6cc1339f2d36f8507a1","impliedFormat":1},{"version":"83fe1053701101ac6d25364696fea50d2ceb2f81d1456bc11e682a20aaeac52e","impliedFormat":1},{"version":"4f228cb2089a5a135a1a8cefe612d5aebcef8258f7dbe3b7c4dad4e26a81ec08","impliedFormat":1},{"version":"252509245bb011c137ac9b95cd3f27415e2c02dd12ec44e87a00772c8c0cdcc2","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"333caa2bfff7f06017f114de738050dd99a765c7eb16571c6d25a38c0d5365dc","impliedFormat":1},{"version":"e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","impliedFormat":1},{"version":"459920181700cec8cbdf2a5faca127f3f17fd8dd9d9e577ed3f5f3af5d12a2e4","impliedFormat":1},{"version":"4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","impliedFormat":1},{"version":"7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","impliedFormat":1},{"version":"70790a7f0040993ca66ab8a07a059a0f8256e7bb57d968ae945f696cbff4ac7a","impliedFormat":1},{"version":"d1b9a81e99a0050ca7f2d98d7eedc6cda768f0eb9fa90b602e7107433e64c04c","impliedFormat":1},{"version":"a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","impliedFormat":1},{"version":"b215c4f0096f108020f666ffcc1f072c81e9f2f95464e894a5d5f34c5ea2a8b1","impliedFormat":1},{"version":"644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","impliedFormat":1},{"version":"dfe54dab1fa4961a6bcfba68c4ca955f8b5bbeb5f2ab3c915aa7adaa2eabc03a","impliedFormat":1},{"version":"1251d53755b03cde02466064260bb88fd83c30006a46395b7d9167340bc59b73","impliedFormat":1},{"version":"47865c5e695a382a916b1eedda1b6523145426e48a2eae4647e96b3b5e52024f","impliedFormat":1},{"version":"4cdf27e29feae6c7826cdd5c91751cc35559125e8304f9e7aed8faef97dcf572","impliedFormat":1},{"version":"331b8f71bfae1df25d564f5ea9ee65a0d847c4a94baa45925b6f38c55c7039bf","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"dd65523ed33f8091757da994642f26f02f3d8571ee1759ba849132bad5ff7673","impliedFormat":1},{"version":"bf94e0f8808fd4e9a1f0f96583c3f9c9d004930f6a6394d172f9db2bcd46dd40","impliedFormat":1},"8c9354b92d1a60bfc160b586286d1c4c8ea31d38d33f573d5dcaa2bd80f8aa89",{"version":"42baf4ca38c38deaf411ea73f37bc39ff56c6e5c761a968b64ac1b25c92b5cd8","impliedFormat":1},{"version":"d7dbe0ad36bdca8a6ecf143422a48e72cc8927bab7b23a1a2485c2f78a7022c6","impliedFormat":1},{"version":"8718fa41d7cf4aa91de4e8f164c90f88e0bf343aa92a1b9b725a9c675c64e16b","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"e0c868a08451c879984ccf4d4e3c1240b3be15af8988d230214977a3a3dad4ce","impliedFormat":1},{"version":"469532350a366536390c6eb3bde6839ec5c81fe1227a6b7b6a70202954d70c40","impliedFormat":1},{"version":"17c9f569be89b4c3c17dc17a9fb7909b6bab34f73da5a9a02d160f502624e2e8","impliedFormat":1},{"version":"003df7b9a77eaeb7a524b795caeeb0576e624e78dea5e362b053cb96ae89132a","impliedFormat":1},{"version":"7ba17571f91993b87c12b5e4ecafe66b1a1e2467ac26fcb5b8cee900f6cf8ff4","impliedFormat":1},{"version":"6fc1a4f64372593767a9b7b774e9b3b92bf04e8785c3f9ea98973aa9f4bbe490","impliedFormat":1},{"version":"d30e67059f5c545c5f8f0cc328a36d2e03b8c4a091b4301bc1d6afb2b1491a3a","impliedFormat":1},{"version":"8b219399c6a743b7c526d4267800bd7c84cf8e27f51884c86ad032d662218a9d","impliedFormat":1},{"version":"bad6d83a581dbd97677b96ee3270a5e7d91b692d220b87aab53d63649e47b9ad","impliedFormat":1},{"version":"324726a1827e34c0c45c43c32ecf73d235b01e76ef6d0f44c2c0270628df746a","impliedFormat":1},{"version":"54e79224429e911b5d6aeb3cf9097ec9fd0f140d5a1461bbdece3066b17c232c","impliedFormat":1},{"version":"e1b666b145865bc8d0d843134b21cf589c13beba05d333c7568e7c30309d933a","impliedFormat":1},{"version":"ff09b6fbdcf74d8af4e131b8866925c5e18d225540b9b19ce9485ca93e574d84","impliedFormat":1},{"version":"c836b5d8d84d990419548574fc037c923284df05803b098fe5ddaa49f88b898a","impliedFormat":1},{"version":"3a2b8ed9d6b687ab3e1eac3350c40b1624632f9e837afe8a4b5da295acf491cb","impliedFormat":1},{"version":"189266dd5f90a981910c70d7dfa05e2bca901a4f8a2680d7030c3abbfb5b1e23","impliedFormat":1},{"version":"5ec8dcf94c99d8f1ed7bb042cdfa4ef6a9810ca2f61d959be33bcaf3f309debe","impliedFormat":1},{"version":"a80e02af710bdac31f2d8308890ac4de4b6a221aafcbce808123bfc2903c5dc2","impliedFormat":1},{"version":"d5895252efa27a50f134a9b580aa61f7def5ab73d0a8071f9b5bf9a317c01c2d","impliedFormat":1},{"version":"2c378d9368abcd2eba8c29b294d40909845f68557bc0b38117e4f04fc56e5f9c","impliedFormat":1},{"version":"0f345151cece7be8d10df068b58983ea8bcbfead1b216f0734037a6c63d8af87","impliedFormat":1},{"version":"37fd7bde9c88aa142756d15aeba872498f45ad149e0d1e56f3bccc1af405c520","impliedFormat":1},{"version":"2a920fd01157f819cf0213edfb801c3fb970549228c316ce0a4b1885020bad35","impliedFormat":1},{"version":"56208c500dcb5f42be7e18e8cb578f257a1a89b94b3280c506818fed06391805","impliedFormat":1},{"version":"0c94c2e497e1b9bcfda66aea239d5d36cd980d12a6d9d59e66f4be1fa3da5d5a","impliedFormat":1},{"version":"a67774ceb500c681e1129b50a631fa210872bd4438fae55e5e8698bac7036b19","impliedFormat":1},{"version":"bb220eaac1677e2ad82ac4e7fd3e609a0c7b6f2d6d9c673a35068c97f9fcd5cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"dd8936160e41420264a9d5fade0ff95cc92cab56032a84c74a46b4c38e43121e","impliedFormat":1},{"version":"1f366bde16e0513fa7b64f87f86689c4d36efd85afce7eb24753e9c99b91c319","impliedFormat":1},{"version":"421c3f008f6ef4a5db2194d58a7b960ef6f33e94b033415649cd557be09ef619","impliedFormat":1},{"version":"57568ff84b8ba1a4f8c817141644b49252cc39ec7b899e4bfba0ec0557c910a0","impliedFormat":1},{"version":"e6f10f9a770dedf552ca0946eef3a3386b9bfb41509233a30fc8ca47c49db71c","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"cc137d7ea6ad91ac1579463f2d25c0df4853c4e068e7fd9be5b6c27088760797","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d09838b65c3c780513878793fc394ae29b8595d9e4729246d14ce69abc71140","impliedFormat":1},{"version":"fefa1d4c62ddb09c78d9f46e498a186e72b5e7aeb37093aa6b2c321b9d6ecd14","impliedFormat":1},{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true,"impliedFormat":1},{"version":"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","impliedFormat":1},{"version":"a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","impliedFormat":1},{"version":"9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","impliedFormat":1},{"version":"25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","impliedFormat":1},{"version":"4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","impliedFormat":1},{"version":"8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","impliedFormat":1},{"version":"c4494ef0db9a14d77401bf1703c28b72c8423354b33749729be1cab9ce710ebc","impliedFormat":1},{"version":"1ef1ce00d53ea0e647b86c38980e774cf39d9893fab23d0c1efcf440c9988ed2","impliedFormat":1},{"version":"2d4e59ab3a1fcdec40ad09ef2e5c6a40f67856b6c06919d3e1b4981fe61d9d01","impliedFormat":1},{"version":"08b5422b6fcc160d099df9d710cff2a1142175d4a4bf5dcc9808ddcea577043f","impliedFormat":1},{"version":"4f80ee53bba81c3742f1dc5e6cb053d54a877aac74f7a620af4da73a4ba86828","impliedFormat":1},{"version":"817c03c1b48aef1e718f84549e6dfd285ad10ee0bb6b8109f6920f6082db3d1d","impliedFormat":1},{"version":"ad1f3ffcde31019536358bab477c4dd6146e8a5ff10952b5b87051c22d10a839","impliedFormat":1},{"version":"a95b76aef31395752eb5cb7b386be2e287fdc32dfdf7bdbbb666e333133b1ef7","impliedFormat":1},{"version":"1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","impliedFormat":1},{"version":"8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","impliedFormat":1},{"version":"df508df6a1aadae4499d327c2360816978e28839560c044099e4acffcde5489d","impliedFormat":1},{"version":"960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","impliedFormat":1},{"version":"2e7ebdc7d8af978c263890bbde991e88d6aa31cc29d46735c9c5f45f0a41243b","impliedFormat":1},{"version":"b57fd1c0a680d220e714b76d83eff51a08670f56efcc5d68abc82f5a2684f0c0","impliedFormat":1},{"version":"8cf121e98669f724256d06bebafec912b92bb042a06d4944f7fb27a56c545109","impliedFormat":1},{"version":"1084565c68b2aed5d6d5cea394799bd688afdf4dc99f4e3615957857c15bb231","impliedFormat":1},{"version":"4ef960df4f672e93b479f88211ed8b5cfa8a598b97aafa3396cacdc3341e3504","impliedFormat":1},{"version":"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"f874ea4d0091b0a44362a5f74d26caab2e66dec306c2bf7e8965f5106e784c3b","impliedFormat":1},{"version":"f05afa17cfc95a95923f48614bf3eb5ab2598850ee27a7c29f1b116a71090c5d","impliedFormat":1},{"version":"1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1},{"version":"74d5a87c3616cd5d8691059d531504403aa857e09cbaecb1c64dfb9ace0db185","impliedFormat":1}],"root":[204,[448,451],[453,460],[626,639],[642,646],[648,654],[656,664],[672,687],[690,692],[698,705],[871,875],[882,929],[939,953],[960,966],970,971,1022],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":99,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"strict":false,"strictNullChecks":true,"target":9,"useDefineForClassFields":false},"referencedMap":[[958,1],[954,2],[957,3],[955,4],[959,5],[968,6],[967,7],[969,8],[956,2],[204,9],[668,10],[735,11],[731,12],[718,7],[734,13],[727,14],[725,15],[724,15],[723,14],[720,15],[721,14],[729,16],[722,15],[719,14],[726,15],[732,17],[733,18],[728,19],[730,15],[849,2],[741,2],[746,2],[771,20],[766,21],[770,22],[768,23],[769,24],[808,25],[809,26],[806,7],[803,27],[802,22],[833,28],[850,29],[855,25],[856,30],[707,2],[767,2],[736,31],[832,32],[807,33],[155,34],[89,35],[150,36],[151,37],[152,38],[153,39],[154,40],[149,41],[143,42],[129,43],[141,44],[142,35],[156,7],[159,45],[157,7],[158,7],[84,46],[85,46],[83,7],[86,46],[88,47],[87,46],[144,48],[145,49],[146,50],[148,51],[147,49],[160,52],[161,52],[162,52],[163,52],[164,52],[172,53],[165,54],[166,52],[167,55],[168,7],[169,52],[170,52],[171,52],[203,56],[174,57],[173,7],[175,58],[128,59],[127,58],[126,60],[136,61],[140,62],[137,63],[134,64],[138,7],[133,65],[139,7],[130,66],[131,64],[135,67],[132,68],[106,69],[107,70],[108,71],[109,72],[110,69],[102,67],[112,73],[105,74],[103,7],[104,75],[111,76],[94,54],[97,77],[95,54],[92,78],[93,79],[96,80],[176,52],[181,81],[177,82],[178,76],[179,82],[180,82],[90,7],[101,83],[91,7],[98,52],[99,7],[100,52],[113,7],[118,84],[119,7],[121,85],[125,86],[122,7],[116,87],[123,88],[117,89],[114,7],[124,90],[115,91],[182,52],[183,7],[184,7],[185,92],[186,92],[187,7],[188,7],[189,93],[190,93],[191,94],[192,43],[193,7],[202,95],[194,7],[195,7],[196,7],[197,7],[198,93],[199,96],[200,52],[201,7],[937,97],[1026,98],[689,1],[120,7],[936,99],[1027,7],[1029,100],[1030,100],[1031,7],[1032,7],[1034,101],[1035,7],[1036,7],[1037,100],[1038,7],[1039,7],[1040,102],[1041,7],[1042,7],[1043,103],[1044,7],[1045,104],[1046,7],[1047,7],[1048,7],[1049,7],[1052,7],[1051,105],[1028,7],[1053,106],[1054,7],[1050,7],[1055,7],[1056,100],[1057,107],[1058,108],[688,7],[1060,109],[1059,110],[666,7],[933,111],[1061,112],[938,113],[1033,7],[1063,114],[1065,115],[1066,115],[1067,115],[1064,7],[1070,116],[1068,117],[1069,117],[1024,7],[934,7],[1071,7],[1072,118],[1073,119],[667,7],[1074,7],[1075,120],[640,7],[1076,121],[1077,122],[1078,123],[1079,124],[1082,125],[1080,126],[1081,127],[641,128],[250,129],[251,129],[252,130],[207,131],[253,132],[254,133],[255,134],[205,7],[256,135],[257,136],[258,137],[259,138],[260,139],[261,140],[262,140],[264,7],[263,141],[265,142],[266,143],[267,144],[249,145],[206,7],[268,146],[269,147],[270,148],[303,149],[271,150],[272,151],[273,152],[274,153],[275,154],[276,155],[277,156],[278,157],[279,158],[280,159],[281,159],[282,160],[283,7],[284,7],[285,161],[287,162],[286,163],[288,164],[289,165],[290,166],[291,167],[292,168],[293,169],[294,170],[295,171],[296,172],[297,173],[298,174],[299,175],[300,176],[301,177],[302,178],[695,7],[931,7],[932,7],[697,2],[1083,2],[1085,179],[1084,180],[1086,2],[1087,7],[1088,181],[1091,182],[1089,2],[710,2],[1090,181],[693,7],[696,183],[800,2],[1025,184],[1092,7],[1117,185],[1118,186],[1093,187],[1096,187],[1115,185],[1116,185],[1106,185],[1105,188],[1103,185],[1098,185],[1111,185],[1109,185],[1113,185],[1097,185],[1110,185],[1114,185],[1099,185],[1100,185],[1112,185],[1094,185],[1101,185],[1102,185],[1104,185],[1108,185],[1119,189],[1107,185],[1095,185],[1132,190],[1131,7],[1126,189],[1128,191],[1127,189],[1120,189],[1121,189],[1123,189],[1125,189],[1129,191],[1130,191],[1122,191],[1124,191],[930,192],[935,193],[1133,7],[1135,194],[1134,7],[1062,7],[1136,7],[1137,7],[1138,195],[1139,7],[1140,196],[1141,197],[647,7],[208,7],[694,7],[655,198],[1021,199],[1001,200],[1020,201],[452,7],[670,202],[669,203],[979,7],[1023,204],[320,7],[1017,205],[1015,206],[1016,207],[1004,208],[1005,206],[1012,209],[1003,210],[1008,211],[1018,7],[1009,212],[1014,213],[1019,214],[1002,215],[1010,216],[1011,217],[1006,218],[1013,205],[1007,219],[391,220],[390,221],[389,222],[382,223],[387,224],[372,225],[371,7],[332,226],[370,227],[383,228],[330,229],[362,230],[333,231],[369,232],[388,233],[334,234],[376,235],[375,236],[335,237],[392,238],[351,239],[394,240],[395,241],[393,242],[404,243],[352,244],[380,245],[381,246],[359,247],[336,248],[396,249],[346,250],[397,251],[350,252],[398,253],[367,254],[366,255],[353,256],[354,257],[400,258],[399,259],[363,260],[349,261],[345,7],[347,262],[368,263],[401,264],[356,265],[365,266],[402,267],[379,268],[377,269],[378,270],[364,271],[403,224],[348,272],[405,253],[327,273],[420,274],[407,275],[315,7],[318,276],[384,277],[319,7],[339,278],[408,7],[385,279],[316,7],[326,7],[323,280],[357,281],[409,278],[410,282],[373,283],[355,284],[358,7],[411,285],[412,278],[413,286],[414,287],[338,288],[415,7],[329,224],[406,7],[416,7],[417,278],[328,7],[374,289],[360,7],[418,290],[317,7],[331,291],[419,278],[426,292],[447,293],[340,294],[344,295],[341,7],[342,296],[343,7],[442,297],[443,298],[444,299],[440,300],[446,301],[445,253],[441,302],[386,303],[421,7],[422,7],[424,296],[337,273],[322,7],[423,273],[361,7],[324,304],[425,305],[321,306],[325,7],[314,307],[433,308],[429,309],[428,310],[430,309],[431,310],[432,310],[427,7],[435,311],[438,312],[437,311],[436,313],[434,314],[439,315],[308,316],[311,317],[312,318],[309,7],[310,7],[307,7],[313,319],[306,224],[305,7],[811,320],[716,321],[715,322],[709,323],[712,324],[706,2],[714,323],[713,323],[740,325],[739,323],[738,323],[742,326],[743,327],[745,328],[744,323],[747,329],[748,323],[749,323],[759,330],[753,323],[757,323],[760,323],[756,323],[750,323],[758,323],[754,323],[752,323],[755,323],[751,323],[763,331],[761,323],[762,323],[717,2],[764,323],[711,332],[765,323],[852,333],[779,334],[780,335],[772,336],[777,323],[778,323],[775,337],[776,323],[774,338],[773,339],[781,332],[787,323],[784,340],[783,323],[785,341],[797,342],[798,343],[792,344],[790,323],[791,323],[788,345],[789,323],[786,323],[793,346],[795,323],[796,323],[794,323],[708,25],[782,347],[870,348],[801,349],[799,323],[805,350],[804,351],[816,352],[810,323],[815,323],[814,323],[812,353],[813,323],[819,354],[829,355],[820,323],[821,356],[826,357],[827,323],[828,323],[830,358],[817,323],[818,359],[825,360],[822,323],[823,353],[824,323],[831,361],[834,362],[835,363],[836,323],[837,364],[840,365],[839,366],[843,367],[842,323],[841,323],[844,323],[845,323],[846,323],[847,327],[848,368],[851,369],[853,370],[859,371],[857,372],[858,323],[860,323],[854,322],[861,373],[862,374],[865,375],[863,323],[866,323],[864,376],[867,377],[868,378],[869,362],[737,379],[838,380],[881,381],[877,382],[880,383],[879,7],[876,2],[878,7],[992,384],[973,7],[993,385],[975,386],[1000,387],[994,7],[996,388],[997,388],[998,389],[995,7],[999,390],[978,391],[976,7],[977,392],[991,393],[974,7],[989,394],[980,395],[981,396],[982,396],[983,395],[990,397],[984,396],[985,394],[986,395],[987,396],[988,395],[972,7],[671,398],[625,399],[596,400],[486,401],[592,7],[559,402],[529,403],[515,404],[593,7],[540,7],[550,7],[569,405],[463,7],[600,406],[602,407],[601,408],[552,409],[551,410],[554,411],[553,412],[513,7],[603,413],[607,414],[605,415],[467,416],[468,416],[469,7],[516,417],[566,418],[565,7],[578,419],[503,420],[572,7],[561,7],[620,421],[622,7],[489,422],[488,423],[581,424],[584,425],[473,426],[585,427],[499,428],[470,429],[475,430],[598,431],[535,432],[619,401],[591,433],[590,434],[477,435],[478,7],[502,436],[493,437],[494,438],[501,439],[492,440],[491,441],[500,442],[542,7],[479,7],[485,7],[480,7],[481,443],[483,444],[474,7],[533,7],[587,445],[534,431],[564,7],[556,7],[571,446],[570,447],[604,415],[608,448],[606,449],[466,450],[621,7],[558,422],[490,451],[576,452],[575,7],[530,453],[518,454],[519,7],[498,455],[562,456],[563,456],[505,457],[506,7],[514,7],[482,458],[464,7],[532,459],[496,7],[471,7],[487,401],[580,460],[623,461],[524,462],[536,463],[609,408],[611,464],[610,464],[527,465],[528,466],[497,7],[461,7],[539,7],[538,467],[583,427],[579,7],[617,467],[521,468],[504,469],[520,468],[522,470],[525,467],[472,424],[574,7],[615,471],[594,472],[548,473],[547,7],[543,474],[568,475],[544,474],[546,476],[545,477],[567,432],[597,478],[595,479],[517,480],[495,7],[523,481],[612,415],[614,448],[613,449],[616,482],[586,483],[577,7],[618,484],[560,485],[555,7],[573,486],[526,487],[557,488],[510,7],[541,7],[484,467],[624,7],[588,489],[589,7],[462,7],[537,467],[465,7],[531,490],[476,7],[509,7],[507,7],[508,7],[549,7],[599,467],[512,467],[582,401],[511,491],[304,7],[81,7],[82,7],[13,7],[14,7],[16,7],[15,7],[2,7],[17,7],[18,7],[19,7],[20,7],[21,7],[22,7],[23,7],[24,7],[3,7],[25,7],[26,7],[4,7],[27,7],[31,7],[28,7],[29,7],[30,7],[32,7],[33,7],[34,7],[5,7],[35,7],[36,7],[37,7],[38,7],[6,7],[42,7],[39,7],[40,7],[41,7],[43,7],[7,7],[44,7],[49,7],[50,7],[45,7],[46,7],[47,7],[48,7],[8,7],[54,7],[51,7],[52,7],[53,7],[55,7],[9,7],[56,7],[57,7],[58,7],[60,7],[59,7],[61,7],[62,7],[10,7],[63,7],[64,7],[65,7],[11,7],[66,7],[67,7],[68,7],[69,7],[70,7],[1,7],[71,7],[72,7],[12,7],[76,7],[74,7],[79,7],[78,7],[73,7],[77,7],[75,7],[80,7],[665,7],[226,492],[237,493],[224,494],[238,495],[247,496],[215,497],[216,498],[214,499],[246,500],[241,501],[245,502],[218,503],[234,504],[217,505],[244,506],[212,507],[213,501],[219,508],[220,7],[225,509],[223,508],[210,510],[248,511],[239,512],[229,513],[228,508],[230,514],[232,515],[227,516],[231,517],[242,500],[221,518],[222,519],[233,520],[211,495],[236,521],[235,508],[240,7],[209,7],[243,522],[952,523],[661,524],[953,525],[960,526],[702,527],[701,528],[949,529],[961,530],[962,531],[705,532],[704,533],[950,534],[963,535],[964,536],[874,537],[873,538],[872,539],[882,540],[965,541],[966,542],[885,543],[884,544],[883,545],[945,546],[948,547],[887,548],[970,549],[888,550],[886,544],[942,545],[871,2],[951,551],[944,552],[946,553],[943,554],[691,7],[692,7],[699,555],[700,7],[698,528],[947,2],[875,556],[459,557],[662,558],[657,559],[889,7],[652,154],[650,560],[651,561],[658,562],[654,563],[659,564],[653,565],[656,566],[663,567],[460,568],[900,569],[901,569],[903,570],[896,571],[897,571],[898,571],[902,569],[899,572],[456,573],[905,574],[907,575],[906,576],[909,577],[910,578],[908,574],[904,579],[911,580],[626,581],[892,582],[893,583],[894,584],[891,585],[895,586],[454,587],[912,574],[916,588],[915,589],[917,590],[914,591],[913,592],[627,593],[920,594],[921,595],[922,596],[923,597],[919,598],[918,599],[628,600],[458,601],[890,572],[928,602],[924,603],[926,604],[929,605],[636,606],[925,607],[927,608],[453,609],[630,558],[455,610],[939,611],[940,612],[629,613],[633,614],[678,615],[679,616],[680,617],[635,618],[448,619],[682,7],[683,7],[681,7],[684,7],[685,7],[686,7],[687,7],[675,620],[449,621],[632,622],[674,623],[450,624],[638,625],[631,558],[677,7],[451,626],[645,625],[637,627],[634,628],[639,629],[690,630],[643,631],[642,632],[676,633],[457,634],[703,7],[648,635],[941,636],[649,7],[971,7],[672,7],[673,637],[664,7],[660,7],[644,638],[646,639],[1022,640]],"semanticDiagnosticsPerFile":[[450,[{"start":2707,"length":16,"code":2416,"category":1,"messageText":{"messageText":"Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.","category":1,"code":2416,"next":[{"messageText":"Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'opts' and 'opts' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'path' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'string' is not assignable to type '`${string}.webm`'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '{ path: string; }' is not assignable to type 'ScreencastOptions'."}}]}]}]}]}]}},{"start":3434,"length":17,"code":2416,"category":1,"messageText":{"messageText":"Property 'createWriteStream' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.","category":1,"code":2416,"next":[{"messageText":"Type '() => { write: () => boolean; end: () => void; }' is not assignable to type '(filepath: string, testName: string) => Promise<string>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ write: () => boolean; end: () => void; }' is missing the following properties from type 'Promise<string>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '() => { write: () => boolean; end: () => void; }' is not assignable to type '(filepath: string, testName: string) => Promise<string>'."}}]}]}}]],[451,[{"start":1558,"length":9,"code":2339,"category":1,"messageText":{"messageText":"Property 'mainFrame' does not exist on type 'string | Page'.","category":1,"code":2339,"next":[{"messageText":"Property 'mainFrame' does not exist on type 'string'.","category":1,"code":2339}]}}]],[458,[{"start":678,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(subject: T[\"isubject\"], initialValues: T[\"iinitialValues\"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T[\"isubject\"]>' is not assignable to type '(subject: T[\"isubject\"], initializer: (c?: any) => T[\"given\"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'initialValues' and 'initializer' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type '(c?: any) => T[\"given\"]' is not assignable to type 'T[\"iinitialValues\"]'.","category":1,"code":2322,"next":[{"messageText":"'T[\"iinitialValues\"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T[\"given\"]'.","category":1,"code":5082}]}]}]},"relatedInformation":[{"file":"../src/coretypes.ts","start":1138,"length":10,"messageText":"The expected type comes from property 'beforeEach' which is declared here on type 'ITestAdapter<T>'","category":3,"code":6500}]},{"start":754,"length":19,"messageText":"Type '\"iinitialValues\"' cannot be used to index type 'T'.","category":1,"code":2536},{"start":1292,"length":6,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type 'unknown' has no call signatures.","category":1,"code":2757}]}},{"start":1608,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '{ assertThis?: ((x: T[\"then\"]) => any) | undefined; andWhen?: ((store: T[\"istore\"], whenCB: T[\"when\"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T[\"istore\"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T[\"isubject\"], initializer: (c?: any) => T[\"given\"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'assertThis' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '((x: T[\"then\"]) => any) | undefined' is not assignable to type '(x: T[\"then\"]) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type '(x: T[\"then\"]) => any'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '{ assertThis?: ((x: T[\"then\"]) => any) | undefined; andWhen?: ((store: T[\"istore\"], whenCB: T[\"when\"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T[\"istore\"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T[\"isubject\"], initializer: (c?: any) => T[\"given\"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'."}}]}]}}]],[626,[{"start":2353,"length":24,"messageText":"Function lacks ending return statement and return type does not include 'undefined'.","category":1,"code":2366},{"start":2600,"length":187,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.","category":1,"code":2756,"next":[{"messageText":"Type 'void' has no call signatures.","category":1,"code":2757}]}]}}]],[627,[{"start":2393,"length":10,"messageText":"A spread argument must either have a tuple type or be passed to a rest parameter.","category":1,"code":2556},{"start":2858,"length":4,"messageText":"A spread argument must either have a tuple type or be passed to a rest parameter.","category":1,"code":2556}]],[628,[{"start":1353,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'Omit<{ suites: import(\"/Users/adam/Code/testeranto/src/Types\").TestSuiteImplementation<O>; givens: import(\"/Users/adam/Code/testeranto/src/Types\").TestGivenImplementation<I, O>; whens: import(\"/Users/adam/Code/testeranto/src/Types\").TestWhenImplementation<...>; thens: import(\"/Users/adam/Code/testeranto/src/Types\")....' is not assignable to parameter of type 'Omit<{ suites: import(\"/Users/adam/Code/testeranto/src/Types\").TestSuiteImplementation<O>; givens: import(\"/Users/adam/Code/testeranto/src/Types\").TestGivenImplementation<I, O>; whens: import(\"/Users/adam/Code/testeranto/src/Types\").TestWhenImplementation<...>; thens: import(\"/Users/adam/Code/testeranto/src/Types\")....'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'suites' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.","category":1,"code":2322,"next":[{"messageText":"'string' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type 'any' is not assignable to type 'never'.","category":1,"code":2322}]}],"canonicalHead":{"code":2322,"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}]}]}}]],[629,[{"start":739,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[634,[{"start":737,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[637,[{"start":1644,"length":680,"code":2322,"category":1,"messageText":{"messageText":"Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; befor...' is not assignable to type '() => IPM'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; befor...' provides no match for the signature '(): IPM'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1901,"length":1,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":2090,"length":1,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":2293,"length":1,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":2347,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(proxyType: string) => (store: { pm: IPM; }) => { pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' is not assignable to type '(Iw_0: string) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' is not assignable to type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '{ pm: IPM; }' is not assignable to type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>'."}}],"canonicalHead":{"code":2322,"messageText":"Type '(proxyType: string) => (store: { pm: IPM; }) => { pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' is not assignable to type '(Iw_0: string) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'."}}]}]},"relatedInformation":[{"start":858,"length":10,"messageText":"The expected type comes from property 'applyProxy' which is declared here on type 'TestWhenImplementation<I, O>'","category":3,"code":6500}]},{"start":3256,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(artifact: Promise<string>) => (store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' is not assignable to type '(Iw_0: Promise<string>) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ artifacts: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(artifact: Promise<string>) => (store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' is not assignable to type '(Iw_0: Promise<string>) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'."}}]}]},"relatedInformation":[{"start":964,"length":11,"messageText":"The expected type comes from property 'addArtifact' which is declared here on type 'TestWhenImplementation<I, O>'","category":3,"code":6500}]},{"start":3376,"length":9,"code":2339,"category":1,"messageText":"Property 'artifacts' does not exist on type '{ pm: IPM; }'."},{"start":3425,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(jobs: any[]) => (store: { pm: IPM; }) => { testJobs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { testJobs: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ testJobs: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(jobs: any[]) => (store: { pm: IPM; }) => { testJobs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'."}}]}]},"relatedInformation":[{"start":1000,"length":11,"messageText":"The expected type comes from property 'setTestJobs' which is declared here on type 'TestWhenImplementation<I, O>'","category":3,"code":6500}]},{"start":3545,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(modifier: (specs: any) => any[]) => (store: { pm: IPM; }) => { specs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { specs: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ specs: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(modifier: (specs: any) => any[]) => (store: { pm: IPM; }) => { specs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'."}}]}]},"relatedInformation":[{"start":1026,"length":11,"messageText":"The expected type comes from property 'modifySpecs' which is declared here on type 'TestWhenImplementation<I, O>'","category":3,"code":6500}]},{"start":3671,"length":5,"code":2339,"category":1,"messageText":"Property 'specs' does not exist on type '{ pm: IPM; }'."},{"start":3749,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3893,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3925,"length":12,"code":2339,"category":1,"messageText":{"messageText":"Property 'getCallCount' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getCallCount' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":4069,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4188,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4312,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4344,"length":12,"code":2339,"category":1,"messageText":{"messageText":"Property 'getCallCount' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getCallCount' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":4479,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedCount: number) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: number) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedCount: number) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: number) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]}]},"relatedInformation":[{"start":1425,"length":13,"messageText":"The expected type comes from property 'specsModified' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":4569,"length":12,"code":2339,"category":1,"messageText":{"messageText":"Property 'getCallCount' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getCallCount' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":4793,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedPath: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedPath: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]}]},"relatedInformation":[{"start":1077,"length":11,"messageText":"The expected type comes from property 'verifyProxy' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":4986,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":5200,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5232,"length":12,"code":2339,"category":1,"messageText":{"messageText":"Property 'getCallCount' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getCallCount' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":5367,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedError: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedError: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]}]},"relatedInformation":[{"start":1217,"length":11,"messageText":"The expected type comes from property 'verifyError' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":5843,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":6034,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":6163,"length":12,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":6321,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]}]],[642,[{"start":3476,"length":6,"code":2339,"category":1,"messageText":"Property 'status' does not exist on type 'Error'."}]],[643,[{"start":118,"length":15,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'number'."}]],[644,[{"start":1068,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[675,[{"start":8613,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '[number, Page]' is not assignable to type '[number, ITTestResourceConfiguration]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'Page' is missing the following properties from type 'ITTestResourceConfiguration': name, fs, ports","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '[number, Page]' is not assignable to type '[number, ITTestResourceConfiguration]'."}}]}]}},{"start":24760,"length":4,"messageText":"Cannot find name 'argz'.","category":1,"code":2304},{"start":32508,"length":4,"code":2322,"category":1,"messageText":{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/types\").Page' is not assignable to type 'import(\"/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page\").Page'.","category":1,"code":2322,"next":[{"messageText":"Property '#private' in type 'Page' refers to a different member that cannot be accessed from within type 'Page'.","category":1,"code":18015}]}},{"start":32601,"length":46,"messageText":"Function lacks ending return statement and return type does not include 'undefined'.","category":1,"code":2366},{"start":39168,"length":4,"messageText":"Variable 'argz' is used before being assigned.","category":1,"code":2454},{"start":46108,"length":37,"messageText":"Object is possibly 'undefined'.","category":1,"code":2532}]],[678,[{"start":1202,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304},{"start":1224,"length":18,"code":2322,"category":1,"messageText":"Type '(x: any) => any' is not assignable to type 'string'.","relatedInformation":[{"start":421,"length":18,"messageText":"The expected type comes from property 'SidecarInitialized' which is declared here on type 'TestSuiteImplementation<O>'","category":3,"code":6500}]},{"start":2356,"length":10,"messageText":"Variable 'callbackFn' is used before being assigned.","category":1,"code":2454},{"start":3203,"length":20,"messageText":"Property 'removeListenerCalled' does not exist on type 'PM'.","category":1,"code":2339},{"start":3406,"length":19,"messageText":"Cannot find name 'IPartialNodeAdapter'.","category":1,"code":2304},{"start":3426,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304}]],[679,[{"start":1090,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304},{"start":1112,"length":18,"code":2322,"category":1,"messageText":"Type '(x: any) => any' is not assignable to type 'string'.","relatedInformation":[{"start":304,"length":18,"messageText":"The expected type comes from property 'SidecarInitialized' which is declared here on type 'TestSuiteImplementation<O>'","category":3,"code":6500}]},{"start":1527,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: \"beforeExit\", listener: BeforeExitListener): Process; (event: \"disconnect\", listener: DisconnectListener): Process; (event: \"exit\", listener: ExitListener): Process; (event: \"rejectionHandled\", listener: RejectionHandledListener): Process; (event: \"uncaughtException\", listener: UncaughtExceptionListener): ...'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'Process'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: \"beforeExit\", listener: BeforeExitListener): Process; (event: \"disconnect\", listener: DisconnectListener): Process; (event: \"exit\", listener: ExitListener): Process; (event: \"rejectionHandled\", listener: RejectionHandledListener): Process; (event: \"uncaughtException\", listener: UncaughtExceptionListener): ...'."}}]}},{"start":2027,"length":10,"messageText":"Variable 'callbackFn' is used before being assigned.","category":1,"code":2454},{"start":2223,"length":26,"code":2322,"category":1,"messageText":"Type 'boolean' is not assignable to type 'Process'.","relatedInformation":[{"file":"../node_modules/@types/node/process.d.ts","start":98930,"length":69,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2288,"length":29,"code":2322,"category":1,"messageText":"Type 'boolean' is not assignable to type 'Process'.","relatedInformation":[{"file":"../node_modules/@types/node/events.d.ts","start":33704,"length":73,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2691,"length":20,"messageText":"Property 'removeListenerCalled' does not exist on type 'PM'.","category":1,"code":2339},{"start":2894,"length":19,"messageText":"Cannot find name 'IPartialNodeAdapter'.","category":1,"code":2304},{"start":2914,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304}]],[680,[{"start":1086,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304},{"start":1108,"length":18,"code":2322,"category":1,"messageText":"Type '(x: any) => any' is not assignable to type 'string'.","relatedInformation":[{"start":301,"length":18,"messageText":"The expected type comes from property 'SidecarInitialized' which is declared here on type 'TestSuiteImplementation<O>'","category":3,"code":6500}]},{"start":1520,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: \"beforeExit\", listener: BeforeExitListener): Process; (event: \"disconnect\", listener: DisconnectListener): Process; (event: \"exit\", listener: ExitListener): Process; (event: \"rejectionHandled\", listener: RejectionHandledListener): Process; (event: \"uncaughtException\", listener: UncaughtExceptionListener): ...'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'Process'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: \"beforeExit\", listener: BeforeExitListener): Process; (event: \"disconnect\", listener: DisconnectListener): Process; (event: \"exit\", listener: ExitListener): Process; (event: \"rejectionHandled\", listener: RejectionHandledListener): Process; (event: \"uncaughtException\", listener: UncaughtExceptionListener): ...'."}}]}},{"start":2020,"length":10,"messageText":"Variable 'callbackFn' is used before being assigned.","category":1,"code":2454},{"start":2215,"length":26,"code":2322,"category":1,"messageText":"Type 'boolean' is not assignable to type 'Process'.","relatedInformation":[{"file":"../node_modules/@types/node/process.d.ts","start":98930,"length":69,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2280,"length":29,"code":2322,"category":1,"messageText":"Type 'boolean' is not assignable to type 'Process'.","relatedInformation":[{"file":"../node_modules/@types/node/events.d.ts","start":33704,"length":73,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2683,"length":20,"messageText":"Property 'removeListenerCalled' does not exist on type 'PM'.","category":1,"code":2339},{"start":2886,"length":19,"messageText":"Cannot find name 'IPartialNodeAdapter'.","category":1,"code":2304},{"start":2906,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304}]],[690,[{"start":3413,"length":7,"code":2719,"category":1,"messageText":{"messageText":"Type '(store: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, thenCB: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, pm: im...' is not assignable to type '(store: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, thenCB: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, pm: im...'. Two different types with this name exist, but they are unrelated.","category":1,"code":2719,"next":[{"messageText":"Type 'Promise<Server<typeof IncomingMessage, typeof ServerResponse>>' is not assignable to type 'Promise<number>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Server<typeof IncomingMessage, typeof ServerResponse>' is not assignable to type 'number'.","category":1,"code":2322}],"canonicalHead":{"code":2719,"messageText":"Type '(store: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, thenCB: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, pm: im...' is not assignable to type '(store: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, thenCB: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, pm: im...'. Two different types with this name exist, but they are unrelated."}}]},"relatedInformation":[{"file":"../src/coretypes.ts","start":730,"length":7,"messageText":"The expected type comes from property 'butThen' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":5256,"length":21,"messageText":"Cannot find name 'IProjectPageViewProps'.","category":1,"code":2304},{"start":5371,"length":21,"messageText":"Cannot find name 'IProjectPageViewProps'.","category":1,"code":2304},{"start":5420,"length":21,"messageText":"Cannot find name 'IProjectPageViewProps'.","category":1,"code":2304},{"start":5602,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '(port: number) => void' is not assignable to parameter of type '(port: number) => Server<typeof IncomingMessage, typeof ServerResponse>'.","category":1,"code":2345,"next":[{"messageText":"Type 'void' is not assignable to type 'Server<typeof IncomingMessage, typeof ServerResponse>'.","category":1,"code":2322}]}}]],[699,[{"start":253,"length":9,"messageText":"Identifier expected. 'interface' is a reserved word in strict mode. Modules are automatically in strict mode.","category":1,"code":1214},{"start":65,"length":14,"messageText":"Module '\"../../CoreTypes\"' has no exported member 'ITestInterface'.","category":1,"code":2305},{"start":217,"length":20,"messageText":"Cannot find module './SunriseAnimation' or its corresponding type declarations.","category":1,"code":2307}]],[882,[{"start":2355,"length":8,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and '':hover'' does not exist in type 'Properties<string | number, string & {}>'.","relatedInformation":[{"file":"../node_modules/@types/react/index.d.ts","start":84696,"length":5,"messageText":"The expected type comes from property 'style' which is declared here on type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, \"ref\"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'","category":3,"code":6500}]}]],[887,[{"start":989,"length":514,"code":2322,"category":1,"messageText":{"messageText":"Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: { name: string; givens: { name: string; whens: { name: string; }[]; thens: { ...; }[]; }[]; }; ... 4 more ...; errorCounts: { ...; }; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.","category":1,"code":2322,"next":[{"messageText":"Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: { name: string; givens: { name: string; whens: { name: string; }[]; thens: { ...; }[]; }[]; }; ... 4 more ...; errorCounts: { ...; }; }' provides no match for the signature '(props: IProjectPageViewProps): ISelection'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1527,"length":681,"code":2322,"category":1,"messageText":{"messageText":"Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: null; logs: undefined; typeErrors: string; lintErrors: string; testsExist: boolean; errorCounts: { ...; }; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.","category":1,"code":2322,"next":[{"messageText":"Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: null; logs: undefined; typeErrors: string; lintErrors: string; testsExist: boolean; errorCounts: { ...; }; }' provides no match for the signature '(props: IProjectPageViewProps): ISelection'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2230,"length":467,"code":2322,"category":1,"messageText":{"messageText":"Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: { name: string; givens: { name: string; whens: { name: string; }[]; thens: { ...; }[]; }[]; }; ... 4 more ...; errorCounts: { ...; }; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.","category":1,"code":2322,"next":[{"messageText":"Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: { name: string; givens: { name: string; whens: { name: string; }[]; thens: { ...; }[]; }[]; }; ... 4 more ...; errorCounts: { ...; }; }' provides no match for the signature '(props: IProjectPageViewProps): ISelection'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2720,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(tabName: string) => (selection: ISelection) => ISelection' is not assignable to type '(Iw_0: string) => (zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(selection: ISelection) => ISelection' and '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'ISelection' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(tabName: string) => (selection: ISelection) => ISelection' is not assignable to type '(Iw_0: string) => (zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>'."}}]}]},"relatedInformation":[{"file":"../src/components/pure/testpageview.test/types.ts","start":1336,"length":11,"messageText":"The expected type comes from property 'SwitchToTab' which is declared here on type 'TestWhenImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection) => ISelection; then: (sel: ISelection) => Promise<...>; }, O>'","category":3,"code":6500}]},{"start":2907,"length":17,"code":2345,"category":1,"messageText":"Argument of type 'Root' is not assignable to parameter of type 'Element | DocumentFragment'."},{"start":3017,"length":16,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => ISelection' is not assignable to type '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'ISelection' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => ISelection' is not assignable to type '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3499,"length":138,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3065,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":3257,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(name: string) => ({ htmlElement }: ISelection, pm: PM) => Promise<{ htmlElement: HTMLElement; }>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '({ htmlElement }: ISelection, pm: PM) => Promise<{ htmlElement: HTMLElement; }>' and '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'Promise<{ htmlElement: HTMLElement; }>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: HTMLElement; }>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(name: string) => ({ htmlElement }: ISelection, pm: PM) => Promise<{ htmlElement: HTMLElement; }>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]}]},"relatedInformation":[{"file":"../src/components/pure/testpageview.test/types.ts","start":1556,"length":14,"messageText":"The expected type comes from property 'takeScreenshot' which is declared here on type 'TestThenImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection) => ISelection; then: (sel: ISelection) => Promise<...>; }, O>'","category":3,"code":6500}]},{"start":3491,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3545,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":3648,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(tabName: string) => (selection: ISelection) => Promise<ISelection>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(selection: ISelection) => Promise<ISelection>' and '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(tabName: string) => (selection: ISelection) => Promise<ISelection>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]}]},"relatedInformation":[{"file":"../src/components/pure/testpageview.test/types.ts","start":1473,"length":14,"messageText":"The expected type comes from property 'ShowsActiveTab' which is declared here on type 'TestThenImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection) => ISelection; then: (sel: ISelection) => Promise<...>; }, O>'","category":3,"code":6500}]},{"start":3742,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":3901,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3955,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":4052,"length":10,"code":2339,"category":1,"messageText":"Property 'testsExist' does not exist on type 'ISelection'."},{"start":4143,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":4303,"length":11,"code":2339,"category":1,"messageText":"Property 'errorCounts' does not exist on type 'ISelection'."},{"start":4379,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":4553,"length":11,"code":2339,"category":1,"messageText":"Property 'errorCounts' does not exist on type 'ISelection'."},{"start":4621,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":4768,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4865,"length":10,"code":2339,"category":1,"messageText":"Property 'testsExist' does not exist on type 'ISelection'."},{"start":4917,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":5058,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5110,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":5230,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5288,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":5421,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5479,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":5620,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5718,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"start":5792,"length":39,"messageText":"Expected 3 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types.ts","start":3565,"length":31,"messageText":"An argument for 'tr' was not provided.","category":3,"code":6210}]},{"start":5894,"length":6,"code":2339,"category":1,"messageText":"Property 'called' does not exist on type '(data: string) => Promise<void>'."}]],[890,[{"start":209,"length":9,"messageText":"Cannot find name 'BaseSuite'.","category":1,"code":2304}]],[891,[{"start":3263,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type '() => MockSuite' is not assignable to type '() => () => Promise<TestStore>'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockSuite' is not assignable to type '() => Promise<TestStore>'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockSuite' provides no match for the signature '(): Promise<TestStore>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '() => MockSuite' is not assignable to type '() => () => Promise<TestStore>'."}}]},"relatedInformation":[{"start":1040,"length":7,"messageText":"The expected type comes from property 'Default' which is declared here on type 'TestGivenImplementation<I, O>'","category":3,"code":6500}]},{"start":3536,"length":8,"code":2345,"category":1,"messageText":"Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'."},{"start":3720,"length":5,"code":2339,"category":1,"messageText":"Property 'specs' does not exist on type 'MockSuite'."},{"start":3743,"length":5,"code":2339,"category":1,"messageText":"Property 'specs' does not exist on type 'MockSuite'."},{"start":3922,"length":8,"code":2339,"category":1,"messageText":"Property 'testJobs' does not exist on type 'MockSuite'."},{"start":3948,"length":8,"code":2339,"category":1,"messageText":"Property 'testJobs' does not exist on type 'MockSuite'."},{"start":4067,"length":29,"code":2322,"category":1,"messageText":{"messageText":"Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'suite' and 'zel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'TestSelection' is not assignable to type 'MockSuite'."}}]}]},"relatedInformation":[{"file":"../src/types.ts","start":3499,"length":138,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4709,"length":1,"code":2322,"category":1,"messageText":{"messageText":"Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.","category":1,"code":2322,"next":[{"messageText":"Type '() => void' is not assignable to type '(selector: string) => boolean'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'boolean'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '() => void' is not assignable to type '(selector: string) => boolean'."}}]}]},"relatedInformation":[{"file":"../src/pm/node.ts","start":2552,"length":1,"messageText":"The expected type comes from property '$' which is declared here on type 'IPM'","category":3,"code":6500}]},{"start":4759,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.","category":1,"code":2322,"next":[{"messageText":"Type '() => void' is not assignable to type '(p: any) => string'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'string'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '() => void' is not assignable to type '(p: any) => string'."}}]}]},"relatedInformation":[{"file":"../src/pm/node.ts","start":2224,"length":9,"messageText":"The expected type comes from property 'closePage' which is declared here on type 'IPM'","category":3,"code":6500}]},{"start":4879,"length":4,"code":2345,"category":1,"messageText":"Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'."},{"start":5212,"length":4,"code":2345,"category":1,"messageText":"Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'."},{"start":5845,"length":16,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedName: string) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(selection: TestSelection) => TestSelection' and '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'TestSelection' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSelection' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedName: string) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'."}}]}]},"relatedInformation":[{"start":1241,"length":16,"messageText":"The expected type comes from property 'SuiteNameMatches' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":5988,"length":4,"code":2339,"category":1,"messageText":"Property 'name' does not exist on type 'TestSelection'."},{"start":6109,"length":4,"code":2339,"category":1,"messageText":"Property 'name' does not exist on type 'TestSelection'."},{"start":6230,"length":4,"code":2339,"category":1,"messageText":"Property 'name' does not exist on type 'TestSelection'."},{"start":6301,"length":17,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedIndex: number) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(selection: TestSelection) => TestSelection' and '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'TestSelection' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSelection' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedIndex: number) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'."}}]}]},"relatedInformation":[{"start":1273,"length":17,"messageText":"The expected type comes from property 'SuiteIndexMatches' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":6445,"length":5,"code":2339,"category":1,"messageText":"Property 'index' does not exist on type 'TestSelection'."},{"start":6567,"length":5,"code":2339,"category":1,"messageText":"Property 'index' does not exist on type 'TestSelection'."},{"start":6638,"length":16,"code":2322,"category":1,"messageText":{"messageText":"Type '(feature: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'suite' and 'ssel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'TestSelection' is not assignable to type 'MockSuite'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(feature: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'."}}]},"relatedInformation":[{"start":1180,"length":16,"messageText":"The expected type comes from property 'FeaturesIncludes' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":7340,"length":23,"code":2322,"category":1,"messageText":{"messageText":"Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'suite' and 'ssel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'TestSelection' is not assignable to type 'MockSuite'."}}]}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":8889,"length":5,"code":2339,"category":1,"messageText":"Property 'specs' does not exist on type 'MockSuite'."},{"start":9170,"length":8,"code":2339,"category":1,"messageText":"Property 'testJobs' does not exist on type 'MockSuite'."},{"start":10294,"length":5,"code":2339,"category":1,"messageText":"Property 'index' does not exist on type '() => Promise<TestStore>'."},{"start":10374,"length":5,"code":2339,"category":1,"messageText":"Property 'store' does not exist on type '() => Promise<TestStore>'."},{"start":10650,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":10658,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: TestStore, thenCB: (selection: TestSelection) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'thenCB' and 'thenCB' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(selection: TestSelection) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'store' and 'selection' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'TestSelection' is not assignable to type 'TestStore'."}}]}]}]}]},"relatedInformation":[{"start":530,"length":9,"messageText":"'testStore' is declared here.","category":3,"code":2728},{"file":"../src/coretypes.ts","start":730,"length":7,"messageText":"The expected type comes from property 'butThen' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":11000,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'."},{"start":11487,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: I[\"istore\"]) => I[\"istore\"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(store: I[\"istore\"]) => I[\"istore\"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'."}}]},"relatedInformation":[{"file":"../src/coretypes.ts","start":932,"length":9,"messageText":"The expected type comes from property 'afterEach' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]}]],[892,[{"start":878,"length":7,"code":2416,"category":1,"messageText":{"messageText":"Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.","category":1,"code":2416,"next":[{"messageText":"Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'whenCB' and 'whenCB' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Types of parameters 'x' and 'store' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'TestStore' is not assignable to type 'TestSelection'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'testSelection' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'boolean | undefined' is not assignable to type 'boolean'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'boolean'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type 'TestStore' is not assignable to type 'TestSelection'."}}]}]}]}]}]}]}},{"start":1214,"length":11,"code":2416,"category":1,"messageText":{"messageText":"Property 'addArtifact' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.","category":1,"code":2416,"next":[{"messageText":"Type '(name: string, content: string) => this' is not assignable to type '(path: string) => void'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}]}]}},{"start":1404,"length":7,"code":2416,"category":1,"messageText":{"messageText":"Property 'butThen' in type 'MockThen' is not assignable to the same property in base type 'BaseThen<I>'.","category":1,"code":2416,"next":[{"messageText":"Types of parameters 'thenCB' and 'thenCB' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Property 'testSelection' is missing in type 'BaseSuite<any, any>' but required in type 'TestSelection'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'BaseSuite<any, any>' is not assignable to type 'TestSelection'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(store: TestStore, thenCB: (selection: TestSelection) => Promise<TestSelection>, testResourceConfiguration: any, pm: any) => Promise<...>' is not assignable to type '(store: TestStore, thenCB: (s: TestSelection) => Promise<BaseSuite<any, any>>, testResourceConfiguration: ITTestResourceConfiguration, pm: IPM, ...args: any[]) => Promise<...>'."}}]},"relatedInformation":[{"file":"../src/lib/basesuite.test/test.ts","start":630,"length":13,"messageText":"'testSelection' is declared here.","category":3,"code":2728}]},{"start":1676,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'."},{"start":2570,"length":68,"code":2322,"category":1,"messageText":{"messageText":"Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'addArtifact' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(name: string, content: string) => MockWhen' is not assignable to type '(path: string) => void'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type 'MockWhen' is not assignable to type 'BaseWhen<I>'."}}]}]}},{"start":2601,"length":36,"code":2322,"category":1,"messageText":{"messageText":"Type 'Promise<{ testStore: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ testStore: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../src/lib/abstractbase.ts","start":4957,"length":35,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2710,"length":40,"code":2322,"category":1,"messageText":{"messageText":"Type 'Promise<{ testSelection: boolean; }>' is not assignable to type 'Promise<(store: TestStore) => Promise<TestSelection>>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testSelection: boolean; }' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testSelection: boolean; }' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.","category":1,"code":2658}]}]},"relatedInformation":[{"file":"../src/lib/abstractbase.ts","start":6436,"length":44,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]}]],[896,[{"start":620,"length":7,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type 'unknown' has no call signatures.","category":1,"code":2757}]}}]],[899,[{"start":364,"length":233,"messageText":"Generic type 'Ibdd_out' requires between 0 and 4 type arguments.","category":1,"code":2707}]],[900,[{"start":170,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type 'Promise<() => { testStore: { value: string; }; }>' is not assignable to type 'Promise<{ testStore: { value: string; }; error?: Error | undefined; }>'.","category":1,"code":2322,"next":[{"messageText":"Type '() => { testStore: { value: string; }; }' is not assignable to type '{ testStore: { value: string; }; error?: Error | undefined; }'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../src/coretypes.ts","start":1150,"length":172,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":311,"length":5,"code":2739,"category":1,"messageText":"Type '{ testStore: { value: string; }; error?: Error | undefined; }' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","relatedInformation":[{"file":"../src/coretypes.ts","start":943,"length":62,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"start":300,"length":16,"messageText":"Did you mean to mark this function as 'async'?","category":1,"code":1356}],"canonicalHead":{"code":2322,"messageText":"Type '{ testStore: { value: string; }; error?: Error | undefined; }' is not assignable to type 'Promise<unknown>'."}}]],[901,[{"start":238,"length":89,"code":2322,"category":1,"messageText":{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '() => { testStore: { value: string; }; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":350,"length":88,"code":2322,"category":1,"messageText":{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '() => { testStore: { value: string; }; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":461,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(newValue: string) => (store: { testSelection: { selected: boolean; }; }) => { testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '(...Iw: any) => (zel: { testSelection: { selected: boolean; }; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testStore: { value: string; }; testSelection: { selected: boolean; }; }' and '(zel: { testSelection: { selected: boolean; }; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is missing the following properties from type 'Promise<(store: any) => any>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(newValue: string) => (store: { testSelection: { selected: boolean; }; }) => { testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '(...Iw: any) => (zel: { testSelection: { selected: boolean; }; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>'."}}]}]},"relatedInformation":[{"file":"../src/types.ts","start":3470,"length":170,"messageText":"The expected type comes from property 'modifyStore' which is declared here on type 'TestWhenImplementation<I, any>'","category":3,"code":6500}]},{"start":667,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' and '(ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ testSelection: { selected: boolean; }; }' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testSelection: { selected: boolean; }; }' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'."}}]}]},"relatedInformation":[{"file":"../src/types.ts","start":3733,"length":113,"messageText":"The expected type comes from property 'verifyStore' which is declared here on type 'TestThenImplementation<I, any>'","category":3,"code":6500}]},{"start":731,"length":9,"code":2339,"category":1,"messageText":"Property 'testStore' does not exist on type '{ testSelection: { selected: boolean; }; }'."},{"start":822,"length":9,"code":2339,"category":1,"messageText":"Property 'testStore' does not exist on type '{ testSelection: { selected: boolean; }; }'."},{"start":881,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' and '(ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ testSelection: { selected: boolean; }; }' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testSelection: { selected: boolean; }; }' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'."}}]}]},"relatedInformation":[{"file":"../src/types.ts","start":3733,"length":113,"messageText":"The expected type comes from property 'verifyError' which is declared here on type 'TestThenImplementation<I, any>'","category":3,"code":6500}]},{"start":946,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type '{ testSelection: { selected: boolean; }; }'."},{"start":962,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type '{ testSelection: { selected: boolean; }; }'."}]],[905,[{"start":301,"length":5,"code":2322,"category":1,"messageText":{"messageText":"Type 'Promise<{}>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type '{}' is missing the following properties from type 'BaseBuilder<any, any, any, any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '{}' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'."}}]},"relatedInformation":[{"file":"../src/coretypes.ts","start":1020,"length":114,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":310,"length":10,"code":2719,"category":1,"messageText":{"messageText":"Type '(subject: import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestR...' is not assignable to type '(subject: import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestR...'. Two different types with this name exist, but they are unrelated.","category":1,"code":2719,"next":[{"messageText":"Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322}],"canonicalHead":{"code":2719,"messageText":"Type '(subject: import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestR...' is not assignable to type '(subject: import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestR...'. Two different types with this name exist, but they are unrelated."}}]},"relatedInformation":[{"file":"../src/coretypes.ts","start":1138,"length":10,"messageText":"The expected type comes from property 'beforeEach' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":531,"length":5,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":625,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":659,"length":5,"code":2739,"category":1,"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","relatedInformation":[{"file":"../src/coretypes.ts","start":943,"length":62,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"start":648,"length":16,"messageText":"Did you mean to mark this function as 'async'?","category":1,"code":1356}],"canonicalHead":{"code":2322,"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'Promise<unknown>'."}}]],[907,[{"start":617,"length":25,"code":2322,"category":1,"messageText":{"messageText":"Type '() => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' provides no match for the signature '(): BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '() => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'."}}]},"relatedInformation":[{"file":"../src/lib/basebuilder.test/basebuilder.test.types.ts","start":644,"length":25,"messageText":"The expected type comes from property 'the default BaseBuilder' which is declared here on type 'TestGivenImplementation<I, O>'","category":3,"code":6500}]},{"start":933,"length":30,"code":2322,"category":1,"messageText":{"messageText":"Type '(input: any) => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 1 or more, but got 0.","category":1,"code":2849}]},"relatedInformation":[{"file":"../src/lib/basebuilder.test/basebuilder.test.types.ts","start":679,"length":30,"messageText":"The expected type comes from property 'a BaseBuilder with TestInput' which is declared here on type 'TestGivenImplementation<I, O>'","category":3,"code":6500}]},{"start":1090,"length":5,"code":2322,"category":1,"messageText":"Type 'never[]' is not assignable to type 'number'."},{"start":1140,"length":47,"code":2322,"category":1,"messageText":{"messageText":"Type '(requirements: ITTestResourceRequest) => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 1 or more, but got 0.","category":1,"code":2849}]},"relatedInformation":[{"file":"../src/lib/basebuilder.test/basebuilder.test.types.ts","start":719,"length":47,"messageText":"The expected type comes from property 'a BaseBuilder with Test Resource Requirements' which is declared here on type 'TestGivenImplementation<I, O>'","category":3,"code":6500}]},{"start":1663,"length":21,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: BaseBuilder<any, any, any, any, any, any>, utils: PM) => BaseBuilder<any, any, any, any, any, any>' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(builder: BaseBuilder<any, any, any, any, any, any>, utils: PM) => BaseBuilder<any, any, any, any, any, any>' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1959,"length":11,"code":2339,"category":1,"messageText":"Property 'constructor' does not exist on type 'never'."},{"start":2437,"length":27,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSubject' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2627,"length":27,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSubject' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2826,"length":34,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: TestSubject, utils: PM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSubject' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(builder: TestSubject, utils: PM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]}]],[912,[{"start":274,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '() => Promise<void>' is not assignable to type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<void>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '() => Promise<void>' is not assignable to type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<BaseBuilder<any, any, any, any, any, any>>'."}}]},"relatedInformation":[{"file":"../src/coretypes.ts","start":1009,"length":9,"messageText":"The expected type comes from property 'beforeAll' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":303,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>) => Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>, testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>) => Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>, testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'."}}]},"relatedInformation":[{"file":"../src/coretypes.ts","start":1138,"length":10,"messageText":"The expected type comes from property 'beforeEach' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":617,"length":5,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":711,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":745,"length":5,"code":2739,"category":1,"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","relatedInformation":[{"file":"../src/coretypes.ts","start":943,"length":62,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"start":734,"length":16,"messageText":"Did you mean to mark this function as 'async'?","category":1,"code":1356}],"canonicalHead":{"code":2322,"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'Promise<unknown>'."}}]],[913,[{"start":1067,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[915,[{"start":558,"length":15,"messageText":"Expected 4 arguments, but got 3.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types.ts","start":2626,"length":25,"messageText":"Arguments for the rest parameter 'xtrasB' were not provided.","category":1,"code":6236}]},{"start":696,"length":24,"messageText":"Expected 4 arguments, but got 3.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types.ts","start":2626,"length":25,"messageText":"Arguments for the rest parameter 'xtrasB' were not provided.","category":1,"code":6236}]},{"start":1804,"length":24,"messageText":"Expected 4 arguments, but got 3.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types.ts","start":2626,"length":25,"messageText":"Arguments for the rest parameter 'xtrasB' were not provided.","category":1,"code":6236}]},{"start":1970,"length":23,"messageText":"Expected 4 arguments, but got 3.","category":1,"code":2554,"relatedInformation":[{"file":"../src/types.ts","start":2626,"length":25,"messageText":"Arguments for the rest parameter 'xtrasB' were not provided.","category":1,"code":6236}]},{"start":2456,"length":8,"messageText":"Cannot find name 'ITestJob'.","category":1,"code":2304},{"start":2917,"length":2,"messageText":"Expected 2 arguments, but got 3.","category":1,"code":2554}]],[916,[{"start":261,"length":16,"messageText":"'\"../classBuilder\"' has no exported member named 'TestClassBuilder'. Did you mean 'ClassBuilder'?","category":1,"code":2724,"relatedInformation":[{"file":"../src/lib/classbuilder.ts","start":607,"length":12,"messageText":"'ClassBuilder' is declared here.","category":3,"code":2728}]},{"start":975,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'typeof MockSuite' is not assignable to parameter of type 'ISuiteKlasser<I, O>'.","category":1,"code":2345,"next":[{"messageText":"Type 'typeof MockSuite' provides no match for the signature '(name: string, index: number, givens: IGivens<I>): BaseSuite<I, O>'.","category":1,"code":2658}]}},{"start":1449,"length":13,"messageText":"Expected 8 arguments, but got 9.","category":1,"code":2554},{"start":1732,"length":12,"messageText":"Expected 8 arguments, but got 9.","category":1,"code":2554},{"start":2004,"length":13,"messageText":"Expected 8 arguments, but got 9.","category":1,"code":2554},{"start":2276,"length":13,"messageText":"Expected 8 arguments, but got 9.","category":1,"code":2554},{"start":5914,"length":20,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: ClassBuilder<any, any, any>) => Promise<ClassBuilder<any, any, any>>' is not assignable to type '(builder: ClassBuilder<any, any, any>) => ClassBuilder<any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ClassBuilder<any, any, any>>' is missing the following properties from type 'ClassBuilder<any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '(builder: ClassBuilder<any, any, any>) => Promise<ClassBuilder<any, any, any>>' is not assignable to type '(builder: ClassBuilder<any, any, any>) => ClassBuilder<any, any, any>'."}}]},"relatedInformation":[{"file":"../src/lib/classbuilder.test/classbuilder.test.types.ts","start":2032,"length":109,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5969,"length":7,"code":2339,"category":1,"messageText":"Property 'testRun' does not exist on type 'ClassBuilder<any, any, any>'."}]],[918,[{"start":925,"length":5,"code":2322,"category":1,"messageText":"Type 'never[]' is not assignable to type 'number'.","relatedInformation":[{"file":"../src/lib/index.ts","start":1996,"length":5,"messageText":"The expected type comes from property 'ports' which is declared here on type 'ITTestResourceRequest'","category":3,"code":6500}]},{"start":1495,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[919,[{"start":432,"length":777,"messageText":"Generic type 'Ibdd_out' requires between 0 and 4 type arguments.","category":1,"code":2707}]],[920,[{"start":874,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":965,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":999,"length":5,"code":2739,"category":1,"messageText":"Type 'MockCore<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","relatedInformation":[{"file":"../src/coretypes.ts","start":943,"length":62,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"start":988,"length":16,"messageText":"Did you mean to mark this function as 'async'?","category":1,"code":1356}],"canonicalHead":{"code":2322,"messageText":"Type 'MockCore<any, any, any>' is not assignable to type 'Promise<unknown>'."}}]],[921,[{"start":597,"length":13,"messageText":"Cannot find name 'specification'.","category":1,"code":2304},{"start":648,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ ports: number[]; }' is not assignable to parameter of type 'ITTestResourceRequest'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'ports' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'number[]' is not assignable to type 'number'.","category":1,"code":2322}]}]}},{"start":671,"length":11,"messageText":"Cannot find name 'testAdapter'.","category":1,"code":2304},{"start":948,"length":13,"messageText":"Cannot find name 'specification'.","category":1,"code":2304},{"start":997,"length":5,"code":2322,"category":1,"messageText":"Type 'never[]' is not assignable to type 'number'."},{"start":1018,"length":11,"messageText":"Cannot find name 'testAdapter'.","category":1,"code":2304},{"start":1188,"length":13,"messageText":"Cannot find name 'specification'.","category":1,"code":2304},{"start":1257,"length":11,"messageText":"Cannot find name 'testAdapter'.","category":1,"code":2304},{"start":1426,"length":13,"messageText":"Cannot find name 'specification'.","category":1,"code":2304},{"start":1475,"length":5,"code":2322,"category":1,"messageText":"Type 'never[]' is not assignable to type 'number'."},{"start":1501,"length":11,"messageText":"Cannot find name 'testAdapter'.","category":1,"code":2304},{"start":2512,"length":11,"code":2339,"category":1,"messageText":"Property 'constructor' does not exist on type 'never'."},{"start":3836,"length":20,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: MockCore<any, any, any>) => Promise<MockCore<any, any, any>>' is not assignable to type '(builder: MockCore<any, any, any>) => MockCore<any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<MockCore<any, any, any>>' is missing the following properties from type 'MockCore<any, any, any>': specs, testJobs, artifacts, testResourceRequirement, and 14 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '(builder: MockCore<any, any, any>) => Promise<MockCore<any, any, any>>' is not assignable to type '(builder: MockCore<any, any, any>) => MockCore<any, any, any>'."}}]},"relatedInformation":[{"file":"../src/lib/core.test/core.test.types.ts","start":1531,"length":101,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]}]],[922,[{"start":593,"length":1384,"messageText":"Expected 2 arguments, but got 4.","category":1,"code":2554},{"start":988,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'test' does not exist in type 'string[]'."},{"start":1169,"length":5,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'ports' does not exist in type 'string[]'."},{"start":1334,"length":10,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'assertThis' does not exist in type 'string[]'."},{"start":2090,"length":876,"messageText":"Expected 2 arguments, but got 3.","category":1,"code":2554}]],[924,[{"start":1412,"length":21,"code":2322,"category":1,"messageText":{"messageText":"Type '(method: string, expectedPath: string) => (store: { pathRewriter: PathRewriter; }) => [undefined, undefined] | [string, string, any] | [any, string]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Type '(store: { pathRewriter: PathRewriter; }) => [undefined, undefined] | [string, string, any] | [any, string]' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'store' and 'ssel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Property 'pathRewriter' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ pathRewriter: PathRewriter; }'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is not assignable to type '{ pathRewriter: PathRewriter; }'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(method: string, expectedPath: string) => (store: { pathRewriter: PathRewriter; }) => [undefined, undefined] | [string, string, any] | [any, string]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'."}}]},"relatedInformation":[{"start":1499,"length":12,"messageText":"'pathRewriter' is declared here.","category":3,"code":2728},{"file":"../src/types.ts","start":3733,"length":113,"messageText":"The expected type comes from property 'theButTheProxyReturns' which is declared here on type 'TestThenImplementation<I, any>'","category":3,"code":6500}]},{"start":2441,"length":7,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":2500,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":2573,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":2858,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":3048,"length":4,"code":2322,"category":1,"messageText":"Type '\"screen.png\"' is not assignable to type '`${string}.webm`'.","relatedInformation":[{"file":"../node_modules/puppeteer-core/lib/types.d.ts","start":250999,"length":4,"messageText":"The expected type comes from property 'path' which is declared here on type 'ScreencastOptions'","category":3,"code":6500}]},{"start":3226,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":3302,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":3462,"length":4,"code":2322,"category":1,"messageText":"Type '\"shot.png\"' is not assignable to type '`${string}.webm`'.","relatedInformation":[{"file":"../node_modules/puppeteer-core/lib/types.d.ts","start":253278,"length":4,"messageText":"The expected type comes from property 'path' which is declared here on type 'ScreenshotOptions & ScreencastOptions'","category":3,"code":6500}]},{"start":3525,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":3944,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedContent: any) => (result: any[]) => any[]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Type '(result: any[]) => any[]' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'result' and 'ssel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is missing the following properties from type 'any[]': length, pop, push, concat, and 35 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is not assignable to type 'any[]'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedContent: any) => (result: any[]) => any[]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'."}}]},"relatedInformation":[{"file":"../src/types.ts","start":3733,"length":113,"messageText":"The expected type comes from property 'verifyContent' which is declared here on type 'TestThenImplementation<I, any>'","category":3,"code":6500}]}]],[926,[{"start":482,"length":14,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, any, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<any>; givens: TestGivenImplementation<I, any>; whens: TestWhenImplementation<I, any>; thens: TestThenImplementation<...>; }, never>'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'givens' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ [x: string]: (...Iw: any) => string; }' is not assignable to type 'TestGivenImplementation<I, any>'.","category":1,"code":2322,"next":[{"messageText":"'string' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type '(...Iw: any) => string' is not assignable to type '(...Ig: any) => [string, string]'.","category":1,"code":2322,"next":[{"messageText":"Type 'string' is not assignable to type '[string, string]'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(...Iw: any) => string' is not assignable to type '(...Ig: any) => [string, string]'."}}]}]}]}]}]}}]],[927,[{"start":531,"length":188,"messageText":"Generic type 'Ibdd_out' requires between 0 and 4 type arguments.","category":1,"code":2707}]],[928,[{"start":423,"length":10,"code":2719,"category":1,"messageText":{"messageText":"Type '(subject: { proxies: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy.test/index\").ITestProxies; filepath: string; mockPm: import(\"/Users/adam/Code/testeranto/src/lib/types\").IPM; }, initializer: (c?: any) => [...], testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, ini...' is not assignable to type '(subject: { proxies: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy.test/index\").ITestProxies; filepath: string; mockPm: import(\"/Users/adam/Code/testeranto/src/lib/types\").IPM; }, initializer: (c?: any) => [...], testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, ini...'. Two different types with this name exist, but they are unrelated.","category":1,"code":2719,"next":[{"messageText":"Type 'Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>' is not assignable to type 'Promise<{ butThenProxy: IProxy; }>'.","category":1,"code":2322,"next":[{"messageText":"Property 'butThenProxy' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ butThenProxy: IProxy; }'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is not assignable to type '{ butThenProxy: IProxy; }'."}}],"canonicalHead":{"code":2719,"messageText":"Type '(subject: { proxies: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy.test/index\").ITestProxies; filepath: string; mockPm: import(\"/Users/adam/Code/testeranto/src/lib/types\").IPM; }, initializer: (c?: any) => [...], testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, ini...' is not assignable to type '(subject: { proxies: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy.test/index\").ITestProxies; filepath: string; mockPm: import(\"/Users/adam/Code/testeranto/src/lib/types\").IPM; }, initializer: (c?: any) => [...], testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, ini...'. Two different types with this name exist, but they are unrelated."}}]},"relatedInformation":[{"file":"../src/lib/pmproxy.test/types.ts","start":294,"length":12,"messageText":"'butThenProxy' is declared here.","category":3,"code":2728},{"file":"../src/coretypes.ts","start":1138,"length":10,"messageText":"The expected type comes from property 'beforeEach' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":722,"length":7,"code":2719,"category":1,"messageText":{"messageText":"Type '(store: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }) => { ...; }, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, p...' is not assignable to type '(store: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }) => { ...; }, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, p...'. Two different types with this name exist, but they are unrelated.","category":1,"code":2719,"next":[{"messageText":"Type 'Promise<(proxies: { butThenProxy: IProxy; }) => { butThenProxy: IProxy; }>' is not assignable to type 'Promise<{ butThenProxy: IProxy; }>'.","category":1,"code":2322,"next":[{"messageText":"Type '(proxies: { butThenProxy: IProxy; }) => { butThenProxy: IProxy; }' is not assignable to type '{ butThenProxy: IProxy; }'.","category":1,"code":2322}],"canonicalHead":{"code":2719,"messageText":"Type '(store: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }) => { ...; }, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, p...' is not assignable to type '(store: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }) => { ...; }, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, p...'. Two different types with this name exist, but they are unrelated."}}]},"relatedInformation":[{"file":"../src/coretypes.ts","start":582,"length":7,"messageText":"The expected type comes from property 'andWhen' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":1156,"length":6,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type '[IPM, \"string\"]' has no call signatures.","category":1,"code":2757}]}},{"start":1273,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '(input: any, testResource: any, pm: any, theGivenString: any) => Promise<{ beforeEachProxy: any; }>' is not assignable to type '(input: { butThenProxy: IProxy; }, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 4 or more, but got 3.","category":1,"code":2849}]},"relatedInformation":[{"file":"../src/coretypes.ts","start":1009,"length":9,"messageText":"The expected type comes from property 'beforeAll' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":1484,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(returnedFilePath: any, expectation: any) => void' is not assignable to type '(x: [IPM, \"string\"]) => any'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}]},"relatedInformation":[{"file":"../src/coretypes.ts","start":545,"length":10,"messageText":"The expected type comes from property 'assertThis' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]}]],[929,[{"start":435,"length":13,"code":2416,"category":1,"messageText":{"messageText":"Property 'launchSideCar' in type 'MockPM' is not assignable to the same property in base type 'MockPMBase'.","category":1,"code":2416,"next":[{"messageText":"Type '(n: number) => Promise<[number, any]>' is not assignable to type '(n: number, testName: string, projectName: string) => Promise<void>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<[number, any]>' is not assignable to type 'Promise<void>'.","category":1,"code":2322,"next":[{"messageText":"Type '[number, any]' is not assignable to type 'void'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '(n: number) => Promise<[number, any]>' is not assignable to type '(n: number, testName: string, projectName: string) => Promise<void>'."}}]}]}}]],[940,[{"start":1282,"length":2,"messageText":"Expected 2 arguments, but got 3.","category":1,"code":2554},{"start":1365,"length":13,"code":2322,"category":1,"messageText":"Type '(x: any) => any' is not assignable to type 'string'.","relatedInformation":[{"start":596,"length":13,"messageText":"The expected type comes from property 'TheMothership' which is declared here on type 'TestSuiteImplementation<O>'","category":3,"code":6500}]}]],[942,[{"start":11463,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '{ testName: string; testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; variant: \"compact\"; className: string; }' is not assignable to type 'IntrinsicAttributes & TestStatusBadgeProps'.","category":1,"code":2322,"next":[{"messageText":"Property 'className' does not exist on type 'IntrinsicAttributes & TestStatusBadgeProps'.","category":1,"code":2339}]}}]],[943,[{"start":3316,"length":52,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'SetStateAction<null>'."},{"start":3568,"length":5,"code":2322,"category":1,"messageText":{"messageText":"Type '{ route: \"coverage\" | \"results\" | \"logs\" | \"types\" | \"lint\"; setRoute: Dispatch<SetStateAction<string>>; navigate: NavigateFunction; ... 6 more ...; errorCounts: { ...; }; }' is not assignable to type 'IntrinsicAttributes & TestPageViewProps'.","category":1,"code":2322,"next":[{"messageText":"Property 'route' does not exist on type 'IntrinsicAttributes & TestPageViewProps'.","category":1,"code":2339}]}}]],[946,[{"start":2645,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type 'Record<string, ISummary>' is not assignable to type 'TestSummary'.","category":1,"code":2322,"next":[{"messageText":"'string' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type 'ISummary' has no properties in common with type '{ testsExist?: boolean | undefined; runTimeErrors?: number | undefined; typeErrors?: number | undefined; staticErrors?: number | undefined; }'.","category":1,"code":2559}]}]},"relatedInformation":[{"file":"../src/components/pure/projectspageview.tsx","start":542,"length":9,"messageText":"The expected type comes from property 'summaries' which is declared here on type 'IntrinsicAttributes & ProjectsPageViewProps'","category":3,"code":6500}]},{"start":2673,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type 'Record<string, object>' is not assignable to type 'ProjectConfig'.","category":1,"code":2322,"next":[{"messageText":"'string' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Property 'tests' is missing in type '{}' but required in type '{ tests: [string, string][]; }'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'object' is not assignable to type '{ tests: [string, string][]; }'."}}]}]},"relatedInformation":[{"file":"../src/components/pure/projectspageview.tsx","start":427,"length":5,"messageText":"'tests' is declared here.","category":3,"code":2728},{"file":"../src/components/pure/projectspageview.tsx","start":568,"length":7,"messageText":"The expected type comes from property 'configs' which is declared here on type 'IntrinsicAttributes & ProjectsPageViewProps'","category":3,"code":6500}]}]],[952,[{"start":1173,"length":10,"code":2339,"category":1,"messageText":"Property 'createRoot' does not exist on type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/index\")'."},{"start":1411,"length":3,"code":2339,"category":1,"messageText":"Property 'App' does not exist on type 'Window & typeof globalThis'."},{"start":1448,"length":15,"code":2740,"category":1,"messageText":"Type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/client\")' is missing the following properties from type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/index\")': findDOMNode, unmountComponentAtNode, createPortal, flushSync, and 5 more.","canonicalHead":{"code":2322,"messageText":"Type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/client\")' is not assignable to type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/index\")'."}}]],[953,[{"start":470,"length":109,"code":2322,"category":1,"messageText":{"messageText":"Type '(children: React.ReactNode) => () => (selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type '(Ig_0: ReactNode) => (s: ISelection) => ISelection'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '() => (selection: ISelection) => { children: ReactNode; htmlElement: HTMLElement; reactElement: ReactElement<any, string | JSXElementConstructor<any>>; domRoot: HTMLElement | null; container?: HTMLElement | undefined; testId?: string | undefined; }' and '(s: ISelection) => ISelection' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '(selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type 'ISelection'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(children: React.ReactNode) => () => (selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type '(Ig_0: ReactNode) => (s: ISelection) => ISelection'."}}]}]},"relatedInformation":[{"start":470,"length":109,"messageText":"Did you mean to call this expression?","category":3,"code":6212}]}]],[955,[{"start":643,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type '(testInput: typeof Component) => { beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' is not assignable to type '(testInput: typeof Component) => ITestAdapter<I>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '{ beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' and 'ITestAdapter<I>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"The types returned by 'beforeAll(...)' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'Promise<{ htmlElement: HTMLElement; }>' is not assignable to type 'Promise<ISubject>'.","category":1,"code":2322,"next":[{"messageText":"Property 'domRoot' is missing in type '{ htmlElement: HTMLElement; }' but required in type 'ISubject'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '{ htmlElement: HTMLElement; }' is not assignable to type 'ISubject'."}}],"canonicalHead":{"code":2322,"messageText":"Type '(testInput: typeof Component) => { beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' is not assignable to type '(testInput: typeof Component) => ITestAdapter<I>'."}}]}]}]},"relatedInformation":[{"start":453,"length":7,"messageText":"'domRoot' is declared here.","category":3,"code":2728}]},{"start":1074,"length":7,"code":2339,"category":1,"messageText":"Property 'subject' does not exist on type 'Readonly<{}>'."},{"start":2612,"length":6,"messageText":"Expected 1 arguments, but got 3.","category":1,"code":2554}]],[956,[{"start":71,"length":16,"messageText":"Cannot find module '../../../Types' or its corresponding type declarations.","category":1,"code":2307}]],[960,[{"start":482,"length":14,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O>' is not assignable to parameter of type 'ITestImplementation<I, O, { whens: TestWhenImplementation<I, O>; }>'.","category":1,"code":2345,"next":[{"messageText":"Type 'ITestImplementation<I, O>' is not assignable to type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, \"whens\">'.","category":1,"code":2322,"next":[{"messageText":"The types returned by 'givens.Default(...)' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type '(s: import(\"/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types\").ISelection) => import(\"/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types\").ISelection' is not assignable to type '(s: import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").ISelection) => import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").ISelection'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 's' and 's' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").ISelection' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types\").ISelection'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'domRoot' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'Root' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, autocorrect, and 314 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").ISelection' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types\").ISelection'."}}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O>' is not assignable to type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, \"whens\">'."}}]}]}]}}]],[961,[{"start":447,"length":4,"code":2322,"category":1,"messageText":"Type '\"test\"' is not assignable to type '\"file\" | \"project\"'.","relatedInformation":[{"file":"../src/types/features.ts","start":43,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'TreeNode'","category":3,"code":6500}]},{"start":579,"length":4,"code":2322,"category":1,"messageText":"Type '\"given\"' is not assignable to type '\"file\" | \"project\"'.","relatedInformation":[{"file":"../src/types/features.ts","start":43,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'TreeNode'","category":3,"code":6500}]},{"start":731,"length":4,"code":2322,"category":1,"messageText":"Type '\"then\"' is not assignable to type '\"file\" | \"project\"'.","relatedInformation":[{"file":"../src/types/features.ts","start":43,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'TreeNode'","category":3,"code":6500}]},{"start":1218,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1227,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":1495,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1504,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":1760,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1769,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":2028,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2037,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":2305,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2314,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":2528,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/featuresreporterview.test/types.ts","start":1139,"length":14,"messageText":"The expected type comes from property 'takeScreenshot' which is declared here on type '{ hasProjectNames: (...args: any[]) => (state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }; ... 4 more ...; takeScreenshot: (...args: any[]) => (state: IInput & { ...; }) => IInput & { ...; }; }'","category":3,"code":6500}]}]],[962,[{"start":487,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>' is not assignable to parameter of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>'.","category":1,"code":2345,"next":[{"messageText":"Types of parameters 'Suite' and 'Suite' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'Default' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>' is not assignable to type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'givens' and 'givens' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I>'.","category":1,"code":2322,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'iinput' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Property 'prototype' is missing in type 'IInput' but required in type 'typeof Component'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I'."}}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>'."}}]}]}]}]}}]],[963,[{"start":410,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IModalContentProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IModalContentProps': theme, handleThemeChange","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IModalContentProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IModalContentProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/modalcontent.test/types.ts","start":1372,"length":153,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":419,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":654,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IModalContentProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IModalContentProps': theme, handleThemeChange","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IModalContentProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IModalContentProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/modalcontent.test/types.ts","start":1372,"length":153,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":663,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":895,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/modalcontent.test/types.ts","start":1005,"length":14,"messageText":"The expected type comes from property 'takeScreenshot' which is declared here on type '{ hasModalHeader: (...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { ...; }; hasThemeCards: (...args: any[]) => (state: IModalContentProps & { ...; }) => IModalContentProps & { ...; }; takeScreenshot: (...args: any[]) => (state: IModalContentProps & {...'","category":3,"code":6500}]}]],[964,[{"start":369,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").O>' is not assignable to parameter of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").O>'.","category":1,"code":2345,"next":[{"messageText":"Types of parameters 'Suite' and 'Suite' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").O>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'Default' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>' is not assignable to type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'givens' and 'givens' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I>'.","category":1,"code":2322,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'iinput' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Property 'prototype' is missing in type 'IModalContentProps' but required in type 'typeof Component'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I'."}}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").O>'."}}]}]}]}]}}]],[965,[{"start":276,"length":2008,"code":2739,"category":1,"messageText":"Type '{ summary: { \"test-suite-1\": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; \"test-suite-2\": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; }; ... 9 more ...; navigate: () => void; }' is missing the following properties from type 'IProjectPageViewProps': activeTab, setActiveTab","relatedInformation":[{"file":"../src/components/pure/projectpageview.test/types.ts","start":2022,"length":41,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}],"canonicalHead":{"code":2322,"messageText":"Type '{ summary: { \"test-suite-1\": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; \"test-suite-2\": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; }; ... 9 more ...; navigate: () => void; }' is not assignable to type 'IProjectPageViewProps'."}},{"start":2307,"length":292,"code":2739,"category":1,"messageText":"Type '{ summary: null; nodeLogs: null; webLogs: null; pureLogs: null; config: { tests: never[]; }; loading: false; error: string; projectName: string; route: string; setRoute: () => void; navigate: () => void; }' is missing the following properties from type 'IProjectPageViewProps': activeTab, setActiveTab","relatedInformation":[{"file":"../src/components/pure/projectpageview.test/types.ts","start":2022,"length":41,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}],"canonicalHead":{"code":2322,"messageText":"Type '{ summary: null; nodeLogs: null; webLogs: null; pureLogs: null; config: { tests: never[]; }; loading: false; error: string; projectName: string; route: string; setRoute: () => void; navigate: () => void; }' is not assignable to type 'IProjectPageViewProps'."}},{"start":2678,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2687,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":2934,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2943,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":3182,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3191,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":3463,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3472,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":3709,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3718,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":3919,"length":2,"messageText":"'el' is of type 'unknown'.","category":1,"code":18046},{"start":4108,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4117,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":4318,"length":2,"messageText":"'el' is of type 'unknown'.","category":1,"code":18046},{"start":4500,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4509,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":4862,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'.","category":1,"code":2322,"next":[{"messageText":"Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'."}}]},"relatedInformation":[{"file":"../src/components/pure/projectpageview.test/types.ts","start":1928,"length":14,"messageText":"The expected type comes from property 'takeScreenshot' which is declared here on type '{ hasContainerFluid: (...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }; ... 6 more ...; takeScreenshot: (...args: any[]) => (state: IProjectPageViewProps & { ...; }) => IProjectPageViewProps & { ...; }; }'","category":3,"code":6500}]}]],[966,[{"start":321,"length":21,"messageText":"Cannot find module './../../../App.scss' or its corresponding type declarations.","category":1,"code":2307},{"start":527,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>' is not assignable to parameter of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>'.","category":1,"code":2345,"next":[{"messageText":"Types of parameters 'Suite' and 'Suite' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'Default' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>' is not assignable to type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'givens' and 'givens' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I>'.","category":1,"code":2322,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'iinput' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Property 'prototype' is missing in type 'IProjectPageViewProps' but required in type 'typeof Component'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I'."}}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>'."}}]}]}]}]}}]],[968,[{"start":406,"length":6,"code":2741,"category":1,"messageText":"Property 'assertThis' is missing in type '{ beforeAll: (prototype: IInput, artificer: ITTestResourceConfiguration) => Promise<HTMLElement>; beforeEach: () => Promise<...>; andWhen: (s: HTMLElement, whenCB: any) => Promise<...>; butThen: (s: HTMLElement) => Promise<...>; afterEach: (store: HTMLElement, ndx: string, artificer: IPM) => Promise<...>; afterAll: ...' but required in type 'ITestAdapter<I>'.","relatedInformation":[{"file":"../src/coretypes.ts","start":545,"length":10,"messageText":"'assertThis' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ beforeAll: (prototype: IInput, artificer: ITTestResourceConfiguration) => Promise<HTMLElement>; beforeEach: () => Promise<...>; andWhen: (s: HTMLElement, whenCB: any) => Promise<...>; butThen: (s: HTMLElement) => Promise<...>; afterEach: (store: HTMLElement, ndx: string, artificer: IPM) => Promise<...>; afterAll: ...' is not assignable to type 'ITestAdapter<I>'."}},{"start":531,"length":4,"code":2345,"category":1,"messageText":"Argument of type 'null' is not assignable to parameter of type 'HTMLElement | PromiseLike<HTMLElement>'."},{"start":646,"length":24,"code":2345,"category":1,"messageText":"Argument of type 'FunctionComponentElement<any>' is not assignable to parameter of type 'HTMLElement | PromiseLike<HTMLElement>'."}]],[970,[{"start":480,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>' is not assignable to parameter of type 'ITestSpecification<I, O>'.","category":1,"code":2345,"next":[{"messageText":"Types of parameters 'Suite' and 'Suite' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'SuiteSpecification<I, O>' is not assignable to type 'SuiteSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'Default' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(name: string, givens: IGivens<I>) => BaseSuite<I, O>' is not assignable to type '(name: string, givens: IGivens<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }>) => BaseSuite<{ iinput: any; ... 5 more ...; then: any; }, O>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'givens' and 'givens' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'IGivens<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }>' is not assignable to type 'IGivens<I>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }' is not assignable to type 'I'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'istore' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'ISelection' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, autocorrect, and 314 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }' is not assignable to type 'I'."}}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'SuiteSpecification<I, O>' is not assignable to type 'SuiteSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>'."}}]}]}]}]}}]],[971,[{"start":649,"length":2,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686},{"start":711,"length":2,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686},{"start":775,"length":4,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686},{"start":851,"length":2,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686},{"start":867,"length":4,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686}]]],"affectedFilesPendingEmit":[952,661,953,960,702,701,949,961,962,705,704,950,963,964,874,873,872,882,965,966,885,884,883,945,948,887,970,888,886,942,871,951,944,946,943,691,692,699,700,698,947,875,459,662,657,889,652,650,651,658,654,659,653,656,663,460,900,901,903,896,897,898,902,899,456,905,907,906,909,910,908,904,911,626,892,893,894,891,895,454,912,916,915,917,914,913,627,920,921,922,923,919,918,628,458,890,928,924,926,929,636,925,927,453,630,455,939,940,629,633,678,679,680,635,448,682,683,681,684,685,686,687,675,449,632,674,450,638,631,677,451,645,637,634,639,690,643,642,676,457,703,648,941,649,971,672,673,664,660,644,646,1022],"version":"5.9.2"}