@cola1900/dsh-ppt 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (730) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +57 -0
  3. package/THIRD_PARTY_NOTICES.md +29 -0
  4. package/UPSTREAM.md +17 -0
  5. package/cordis.patch.yml +8 -0
  6. package/lib/bin.js +4070 -0
  7. package/lib/catalog.js +3 -0
  8. package/lib/client.js +916 -0
  9. package/lib/index.js +3688 -0
  10. package/lib/invariant.js +13 -0
  11. package/lib/pptd-2VqVzr_T.js +2173 -0
  12. package/lib/pptd.js +2 -0
  13. package/lib/preview-assets.js +59 -0
  14. package/lib/preview-manifest.js +2 -0
  15. package/lib/text-wrap.js +20 -0
  16. package/lib/types/bin.d.ts +12 -0
  17. package/lib/types/client/OfficePptHero.d.ts +42 -0
  18. package/lib/types/client/curated-previews.d.ts +3 -0
  19. package/lib/types/client/curated-previews.generated.d.ts +2 -0
  20. package/lib/types/client/index.d.ts +6 -0
  21. package/lib/types/client/locales.d.ts +15 -0
  22. package/lib/types/client/rpc.d.ts +23 -0
  23. package/lib/types/client/standard.d.ts +31 -0
  24. package/lib/types/client.d.ts +1 -0
  25. package/lib/types/data-series.d.ts +31 -0
  26. package/lib/types/index.d.ts +25 -0
  27. package/lib/types/invariant.d.ts +8 -0
  28. package/lib/types/layouts.d.ts +54 -0
  29. package/lib/types/planning.d.ts +35 -0
  30. package/lib/types/ppt-ppt-skill.d.ts +6 -0
  31. package/lib/types/ppt-reference-semantics.generated.d.ts +2 -0
  32. package/lib/types/ppt-rpc.d.ts +5 -0
  33. package/lib/types/ppt-service.d.ts +34 -0
  34. package/lib/types/ppt-store.d.ts +47 -0
  35. package/lib/types/ppt-template-catalog.generated.d.ts +2 -0
  36. package/lib/types/ppt-template-definitions.d.ts +1 -0
  37. package/lib/types/ppt-tools.d.ts +10 -0
  38. package/lib/types/pptd-colors.d.ts +15 -0
  39. package/lib/types/pptd-convert.d.ts +21 -0
  40. package/lib/types/pptd-preview.d.ts +6 -0
  41. package/lib/types/pptd-publish.d.ts +8 -0
  42. package/lib/types/pptd-repair.d.ts +18 -0
  43. package/lib/types/pptd-tools.d.ts +5 -0
  44. package/lib/types/pptd.d.ts +89 -0
  45. package/lib/types/protocol.d.ts +547 -0
  46. package/lib/types/template-reference.d.ts +28 -0
  47. package/lib/types/template-semantics.d.ts +12 -0
  48. package/lib/types/templates.d.ts +2 -0
  49. package/lib/types/text-layout.d.ts +37 -0
  50. package/lib/validation.js +84 -0
  51. package/licenses/composer-NOTICES.md +29 -0
  52. package/licenses/dsh-desktop-LICENSE +21 -0
  53. package/licenses/html-anything/LICENSE +202 -0
  54. package/licenses/html-anything/deck-blueprint.md +22 -0
  55. package/licenses/html-anything/deck-course-module.md +23 -0
  56. package/licenses/zara/LICENSE +21 -0
  57. package/licenses/zara/templates/blue-professional/design.md +701 -0
  58. package/licenses/zara/templates/blue-professional/template.html +1423 -0
  59. package/licenses/zara/templates/blue-professional/template.json +43 -0
  60. package/licenses/zara/templates/broadside/design.md +493 -0
  61. package/licenses/zara/templates/broadside/template.html +2144 -0
  62. package/licenses/zara/templates/broadside/template.json +48 -0
  63. package/licenses/zara/templates/cartesian/design.md +513 -0
  64. package/licenses/zara/templates/cartesian/template.html +1136 -0
  65. package/licenses/zara/templates/cartesian/template.json +46 -0
  66. package/licenses/zara/templates/editorial-forest/design.md +497 -0
  67. package/licenses/zara/templates/editorial-forest/template.html +843 -0
  68. package/licenses/zara/templates/editorial-forest/template.json +44 -0
  69. package/licenses/zara/templates/monochrome/design.md +482 -0
  70. package/licenses/zara/templates/monochrome/template.html +2596 -0
  71. package/licenses/zara/templates/monochrome/template.json +49 -0
  72. package/licenses/zara/templates/neo-grid-bold/design.md +534 -0
  73. package/licenses/zara/templates/neo-grid-bold/template.html +865 -0
  74. package/licenses/zara/templates/neo-grid-bold/template.json +46 -0
  75. package/licenses/zara/templates/playful/design.md +480 -0
  76. package/licenses/zara/templates/playful/template.html +1355 -0
  77. package/licenses/zara/templates/playful/template.json +42 -0
  78. package/licenses/zara/templates/sakura-chroma/design.md +632 -0
  79. package/licenses/zara/templates/sakura-chroma/template.html +1405 -0
  80. package/licenses/zara/templates/sakura-chroma/template.json +53 -0
  81. package/licenses/zara/templates/signal/design.md +517 -0
  82. package/licenses/zara/templates/signal/template.html +2558 -0
  83. package/licenses/zara/templates/signal/template.json +49 -0
  84. package/licenses/zara/templates/soft-editorial/design.md +615 -0
  85. package/licenses/zara/templates/soft-editorial/template.html +1183 -0
  86. package/licenses/zara/templates/soft-editorial/template.json +46 -0
  87. package/package.json +107 -0
  88. package/skills/dsh-ppt/SKILL.md +36 -0
  89. package/skills/dsh-ppt/references/academic/dsh-course-workshop/design.md +61 -0
  90. package/skills/dsh-ppt/references/academic/dsh-course-workshop/metadata.json +2886 -0
  91. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/01.jpg +0 -0
  92. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/02.jpg +0 -0
  93. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/03.jpg +0 -0
  94. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/04.jpg +0 -0
  95. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/05.jpg +0 -0
  96. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/06.jpg +0 -0
  97. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/07.jpg +0 -0
  98. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/08.jpg +0 -0
  99. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/09.jpg +0 -0
  100. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/10.jpg +0 -0
  101. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/11.jpg +0 -0
  102. package/skills/dsh-ppt/references/academic/dsh-course-workshop/pages/12.jpg +0 -0
  103. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/deck.pptd +21 -0
  104. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/01.page +142 -0
  105. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/02.page +382 -0
  106. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/03.page +817 -0
  107. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/04.page +408 -0
  108. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/05.page +407 -0
  109. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/06.page +760 -0
  110. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/07.page +551 -0
  111. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/08.page +339 -0
  112. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/09.page +297 -0
  113. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/10.page +365 -0
  114. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/11.page +575 -0
  115. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source/pages/12.page +130 -0
  116. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/deck.pptd +21 -0
  117. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/01.page +142 -0
  118. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/02.page +382 -0
  119. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/03.page +817 -0
  120. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/04.page +408 -0
  121. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/05.page +407 -0
  122. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/06.page +760 -0
  123. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/07.page +551 -0
  124. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/08.page +339 -0
  125. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/09.page +297 -0
  126. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/10.page +365 -0
  127. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/11.page +575 -0
  128. package/skills/dsh-ppt/references/academic/dsh-course-workshop/source-zh/pages/12.page +130 -0
  129. package/skills/dsh-ppt/references/academic/dsh-monochrome/design.md +61 -0
  130. package/skills/dsh-ppt/references/academic/dsh-monochrome/metadata.json +2989 -0
  131. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/01.jpg +0 -0
  132. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/02.jpg +0 -0
  133. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/03.jpg +0 -0
  134. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/04.jpg +0 -0
  135. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/05.jpg +0 -0
  136. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/06.jpg +0 -0
  137. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/07.jpg +0 -0
  138. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/08.jpg +0 -0
  139. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/09.jpg +0 -0
  140. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/10.jpg +0 -0
  141. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/11.jpg +0 -0
  142. package/skills/dsh-ppt/references/academic/dsh-monochrome/pages/12.jpg +0 -0
  143. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/deck.pptd +21 -0
  144. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/01.page +86 -0
  145. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/02.page +382 -0
  146. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/03.page +479 -0
  147. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/04.page +551 -0
  148. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/05.page +817 -0
  149. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/06.page +760 -0
  150. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/07.page +576 -0
  151. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/08.page +339 -0
  152. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/09.page +295 -0
  153. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/10.page +407 -0
  154. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/11.page +575 -0
  155. package/skills/dsh-ppt/references/academic/dsh-monochrome/source/pages/12.page +86 -0
  156. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/deck.pptd +21 -0
  157. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/01.page +86 -0
  158. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/02.page +382 -0
  159. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/03.page +479 -0
  160. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/04.page +551 -0
  161. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/05.page +817 -0
  162. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/06.page +760 -0
  163. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/07.page +576 -0
  164. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/08.page +339 -0
  165. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/09.page +295 -0
  166. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/10.page +407 -0
  167. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/11.page +575 -0
  168. package/skills/dsh-ppt/references/academic/dsh-monochrome/source-zh/pages/12.page +86 -0
  169. package/skills/dsh-ppt/references/business/dsh-blue-professional/design.md +53 -0
  170. package/skills/dsh-ppt/references/business/dsh-blue-professional/metadata.json +3152 -0
  171. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/01.jpg +0 -0
  172. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/02.jpg +0 -0
  173. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/03.jpg +0 -0
  174. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/04.jpg +0 -0
  175. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/05.jpg +0 -0
  176. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/06.jpg +0 -0
  177. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/07.jpg +0 -0
  178. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/08.jpg +0 -0
  179. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/09.jpg +0 -0
  180. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/10.jpg +0 -0
  181. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/11.jpg +0 -0
  182. package/skills/dsh-ppt/references/business/dsh-blue-professional/pages/12.jpg +0 -0
  183. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/deck.pptd +21 -0
  184. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/01.page +100 -0
  185. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/02.page +310 -0
  186. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/03.page +381 -0
  187. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/04.page +853 -0
  188. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/05.page +436 -0
  189. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/06.page +732 -0
  190. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/07.page +574 -0
  191. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/08.page +767 -0
  192. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/09.page +282 -0
  193. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/10.page +350 -0
  194. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/11.page +462 -0
  195. package/skills/dsh-ppt/references/business/dsh-blue-professional/source/pages/12.page +86 -0
  196. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/deck.pptd +21 -0
  197. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/01.page +100 -0
  198. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/02.page +310 -0
  199. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/03.page +381 -0
  200. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/04.page +853 -0
  201. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/05.page +436 -0
  202. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/06.page +732 -0
  203. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/07.page +574 -0
  204. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/08.page +769 -0
  205. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/09.page +282 -0
  206. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/10.page +350 -0
  207. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/11.page +462 -0
  208. package/skills/dsh-ppt/references/business/dsh-blue-professional/source-zh/pages/12.page +86 -0
  209. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/design.md +61 -0
  210. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/metadata.json +3883 -0
  211. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/01.jpg +0 -0
  212. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/02.jpg +0 -0
  213. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/03.jpg +0 -0
  214. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/04.jpg +0 -0
  215. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/05.jpg +0 -0
  216. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/06.jpg +0 -0
  217. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/07.jpg +0 -0
  218. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/08.jpg +0 -0
  219. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/09.jpg +0 -0
  220. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/10.jpg +0 -0
  221. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/11.jpg +0 -0
  222. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/pages/12.jpg +0 -0
  223. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/deck.pptd +21 -0
  224. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/01.page +355 -0
  225. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/02.page +452 -0
  226. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/03.page +561 -0
  227. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/04.page +830 -0
  228. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/05.page +887 -0
  229. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/06.page +646 -0
  230. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/07.page +881 -0
  231. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/08.page +788 -0
  232. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/09.page +365 -0
  233. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/10.page +617 -0
  234. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/11.page +645 -0
  235. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source/pages/12.page +86 -0
  236. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/deck.pptd +21 -0
  237. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/01.page +354 -0
  238. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/02.page +452 -0
  239. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/03.page +561 -0
  240. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/04.page +830 -0
  241. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/05.page +887 -0
  242. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/06.page +646 -0
  243. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/07.page +881 -0
  244. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/08.page +788 -0
  245. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/09.page +365 -0
  246. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/10.page +617 -0
  247. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/11.page +645 -0
  248. package/skills/dsh-ppt/references/business/dsh-neo-grid-bold/source-zh/pages/12.page +86 -0
  249. package/skills/dsh-ppt/references/composition.md +19 -0
  250. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/design.md +124 -0
  251. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/metadata.json +1930 -0
  252. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/01.jpg +0 -0
  253. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/02.jpg +0 -0
  254. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/03.jpg +0 -0
  255. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/04.jpg +0 -0
  256. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/05.jpg +0 -0
  257. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/06.jpg +0 -0
  258. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/07.jpg +0 -0
  259. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/08.jpg +0 -0
  260. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/09.jpg +0 -0
  261. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/10.jpg +0 -0
  262. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/11.jpg +0 -0
  263. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/pages/12.jpg +0 -0
  264. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/deck.pptd +91 -0
  265. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/01.page +259 -0
  266. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/02.page +325 -0
  267. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/03.page +511 -0
  268. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/04.page +398 -0
  269. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/05.page +439 -0
  270. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/06.page +493 -0
  271. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/07.page +194 -0
  272. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/08.page +422 -0
  273. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/09.page +458 -0
  274. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/10.page +746 -0
  275. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/11.page +604 -0
  276. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source/pages/12.page +343 -0
  277. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/deck.pptd +91 -0
  278. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/01.page +259 -0
  279. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/02.page +325 -0
  280. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/03.page +511 -0
  281. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/04.page +398 -0
  282. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/05.page +439 -0
  283. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/06.page +493 -0
  284. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/07.page +194 -0
  285. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/08.page +417 -0
  286. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/09.page +458 -0
  287. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/10.page +746 -0
  288. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/11.page +604 -0
  289. package/skills/dsh-ppt/references/consulting/curated-swiss-signal-grid/source-zh/pages/12.page +343 -0
  290. package/skills/dsh-ppt/references/consulting/dsh-cartesian/design.md +61 -0
  291. package/skills/dsh-ppt/references/consulting/dsh-cartesian/metadata.json +3196 -0
  292. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/01.jpg +0 -0
  293. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/02.jpg +0 -0
  294. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/03.jpg +0 -0
  295. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/04.jpg +0 -0
  296. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/05.jpg +0 -0
  297. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/06.jpg +0 -0
  298. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/07.jpg +0 -0
  299. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/08.jpg +0 -0
  300. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/09.jpg +0 -0
  301. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/10.jpg +0 -0
  302. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/11.jpg +0 -0
  303. package/skills/dsh-ppt/references/consulting/dsh-cartesian/pages/12.jpg +0 -0
  304. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/deck.pptd +21 -0
  305. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/01.page +98 -0
  306. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/02.page +382 -0
  307. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/03.page +817 -0
  308. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/04.page +479 -0
  309. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/05.page +576 -0
  310. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/06.page +760 -0
  311. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/07.page +339 -0
  312. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/08.page +718 -0
  313. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/09.page +295 -0
  314. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/10.page +547 -0
  315. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/11.page +575 -0
  316. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source/pages/12.page +86 -0
  317. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/deck.pptd +21 -0
  318. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/01.page +98 -0
  319. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/02.page +382 -0
  320. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/03.page +817 -0
  321. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/04.page +479 -0
  322. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/05.page +576 -0
  323. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/06.page +760 -0
  324. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/07.page +339 -0
  325. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/08.page +718 -0
  326. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/09.page +295 -0
  327. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/10.page +547 -0
  328. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/11.page +575 -0
  329. package/skills/dsh-ppt/references/consulting/dsh-cartesian/source-zh/pages/12.page +86 -0
  330. package/skills/dsh-ppt/references/consulting/dsh-signal/design.md +61 -0
  331. package/skills/dsh-ppt/references/consulting/dsh-signal/metadata.json +3172 -0
  332. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/01.jpg +0 -0
  333. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/02.jpg +0 -0
  334. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/03.jpg +0 -0
  335. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/04.jpg +0 -0
  336. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/05.jpg +0 -0
  337. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/06.jpg +0 -0
  338. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/07.jpg +0 -0
  339. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/08.jpg +0 -0
  340. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/09.jpg +0 -0
  341. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/10.jpg +0 -0
  342. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/11.jpg +0 -0
  343. package/skills/dsh-ppt/references/consulting/dsh-signal/pages/12.jpg +0 -0
  344. package/skills/dsh-ppt/references/consulting/dsh-signal/source/deck.pptd +21 -0
  345. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/01.page +100 -0
  346. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/02.page +382 -0
  347. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/03.page +817 -0
  348. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/04.page +760 -0
  349. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/05.page +576 -0
  350. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/06.page +718 -0
  351. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/07.page +295 -0
  352. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/08.page +551 -0
  353. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/09.page +339 -0
  354. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/10.page +547 -0
  355. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/11.page +575 -0
  356. package/skills/dsh-ppt/references/consulting/dsh-signal/source/pages/12.page +86 -0
  357. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/deck.pptd +21 -0
  358. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/01.page +100 -0
  359. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/02.page +382 -0
  360. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/03.page +817 -0
  361. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/04.page +760 -0
  362. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/05.page +576 -0
  363. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/06.page +718 -0
  364. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/07.page +295 -0
  365. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/08.page +551 -0
  366. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/09.page +339 -0
  367. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/10.page +547 -0
  368. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/11.page +575 -0
  369. package/skills/dsh-ppt/references/consulting/dsh-signal/source-zh/pages/12.page +86 -0
  370. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/design.md +61 -0
  371. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/metadata.json +3091 -0
  372. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/01.jpg +0 -0
  373. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/02.jpg +0 -0
  374. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/03.jpg +0 -0
  375. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/04.jpg +0 -0
  376. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/05.jpg +0 -0
  377. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/06.jpg +0 -0
  378. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/07.jpg +0 -0
  379. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/08.jpg +0 -0
  380. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/09.jpg +0 -0
  381. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/10.jpg +0 -0
  382. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/11.jpg +0 -0
  383. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/pages/12.jpg +0 -0
  384. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/deck.pptd +21 -0
  385. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/01.page +124 -0
  386. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/02.page +382 -0
  387. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/03.page +479 -0
  388. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/04.page +365 -0
  389. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/05.page +817 -0
  390. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/06.page +760 -0
  391. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/07.page +576 -0
  392. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/08.page +295 -0
  393. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/09.page +339 -0
  394. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/10.page +547 -0
  395. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/11.page +575 -0
  396. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source/pages/12.page +135 -0
  397. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/deck.pptd +21 -0
  398. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/01.page +124 -0
  399. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/02.page +384 -0
  400. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/03.page +479 -0
  401. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/04.page +365 -0
  402. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/05.page +817 -0
  403. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/06.page +760 -0
  404. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/07.page +576 -0
  405. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/08.page +295 -0
  406. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/09.page +341 -0
  407. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/10.page +547 -0
  408. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/11.page +575 -0
  409. package/skills/dsh-ppt/references/editorial/dsh-editorial-notebook/source-zh/pages/12.page +135 -0
  410. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/design.md +61 -0
  411. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/metadata.json +3119 -0
  412. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/01.jpg +0 -0
  413. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/02.jpg +0 -0
  414. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/03.jpg +0 -0
  415. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/04.jpg +0 -0
  416. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/05.jpg +0 -0
  417. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/06.jpg +0 -0
  418. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/07.jpg +0 -0
  419. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/08.jpg +0 -0
  420. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/09.jpg +0 -0
  421. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/10.jpg +0 -0
  422. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/11.jpg +0 -0
  423. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/pages/12.jpg +0 -0
  424. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/deck.pptd +21 -0
  425. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/01.page +117 -0
  426. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/02.page +382 -0
  427. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/03.page +479 -0
  428. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/04.page +817 -0
  429. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/05.page +760 -0
  430. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/06.page +295 -0
  431. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/07.page +365 -0
  432. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/08.page +576 -0
  433. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/09.page +408 -0
  434. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/10.page +547 -0
  435. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/11.page +575 -0
  436. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source/pages/12.page +86 -0
  437. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/deck.pptd +21 -0
  438. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/01.page +117 -0
  439. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/02.page +384 -0
  440. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/03.page +479 -0
  441. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/04.page +817 -0
  442. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/05.page +760 -0
  443. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/06.page +295 -0
  444. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/07.page +365 -0
  445. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/08.page +576 -0
  446. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/09.page +408 -0
  447. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/10.page +547 -0
  448. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/11.page +575 -0
  449. package/skills/dsh-ppt/references/editorial/dsh-soft-editorial/source-zh/pages/12.page +86 -0
  450. package/skills/dsh-ppt/references/pptd.md +55 -0
  451. package/skills/dsh-ppt/references/promotion/dsh-broadside/design.md +53 -0
  452. package/skills/dsh-ppt/references/promotion/dsh-broadside/metadata.json +2329 -0
  453. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/01.jpg +0 -0
  454. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/02.jpg +0 -0
  455. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/03.jpg +0 -0
  456. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/04.jpg +0 -0
  457. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/05.jpg +0 -0
  458. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/06.jpg +0 -0
  459. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/07.jpg +0 -0
  460. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/08.jpg +0 -0
  461. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/09.jpg +0 -0
  462. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/10.jpg +0 -0
  463. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/11.jpg +0 -0
  464. package/skills/dsh-ppt/references/promotion/dsh-broadside/pages/12.jpg +0 -0
  465. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/deck.pptd +21 -0
  466. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/01.page +72 -0
  467. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/02.page +156 -0
  468. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/03.page +350 -0
  469. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/04.page +210 -0
  470. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/05.page +436 -0
  471. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/06.page +420 -0
  472. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/07.page +480 -0
  473. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/08.page +294 -0
  474. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/09.page +210 -0
  475. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/10.page +392 -0
  476. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/11.page +560 -0
  477. package/skills/dsh-ppt/references/promotion/dsh-broadside/source/pages/12.page +58 -0
  478. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/deck.pptd +21 -0
  479. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/01.page +72 -0
  480. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/02.page +156 -0
  481. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/03.page +350 -0
  482. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/04.page +210 -0
  483. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/05.page +436 -0
  484. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/06.page +420 -0
  485. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/07.page +480 -0
  486. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/08.page +294 -0
  487. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/09.page +210 -0
  488. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/10.page +392 -0
  489. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/11.page +560 -0
  490. package/skills/dsh-ppt/references/promotion/dsh-broadside/source-zh/pages/12.page +58 -0
  491. package/skills/dsh-ppt/references/promotion/dsh-playful/design.md +61 -0
  492. package/skills/dsh-ppt/references/promotion/dsh-playful/metadata.json +3070 -0
  493. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/01.jpg +0 -0
  494. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/02.jpg +0 -0
  495. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/03.jpg +0 -0
  496. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/04.jpg +0 -0
  497. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/05.jpg +0 -0
  498. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/06.jpg +0 -0
  499. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/07.jpg +0 -0
  500. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/08.jpg +0 -0
  501. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/09.jpg +0 -0
  502. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/10.jpg +0 -0
  503. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/11.jpg +0 -0
  504. package/skills/dsh-ppt/references/promotion/dsh-playful/pages/12.jpg +0 -0
  505. package/skills/dsh-ppt/references/promotion/dsh-playful/source/deck.pptd +21 -0
  506. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/01.page +101 -0
  507. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/02.page +410 -0
  508. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/03.page +436 -0
  509. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/04.page +845 -0
  510. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/05.page +579 -0
  511. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/06.page +367 -0
  512. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/07.page +519 -0
  513. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/08.page +323 -0
  514. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/09.page +604 -0
  515. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/10.page +575 -0
  516. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/11.page +603 -0
  517. package/skills/dsh-ppt/references/promotion/dsh-playful/source/pages/12.page +86 -0
  518. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/deck.pptd +21 -0
  519. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/01.page +100 -0
  520. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/02.page +410 -0
  521. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/03.page +436 -0
  522. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/04.page +845 -0
  523. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/05.page +579 -0
  524. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/06.page +367 -0
  525. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/07.page +519 -0
  526. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/08.page +323 -0
  527. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/09.page +604 -0
  528. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/10.page +575 -0
  529. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/11.page +603 -0
  530. package/skills/dsh-ppt/references/promotion/dsh-playful/source-zh/pages/12.page +86 -0
  531. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/design.md +61 -0
  532. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/metadata.json +3203 -0
  533. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/01.jpg +0 -0
  534. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/02.jpg +0 -0
  535. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/03.jpg +0 -0
  536. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/04.jpg +0 -0
  537. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/05.jpg +0 -0
  538. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/06.jpg +0 -0
  539. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/07.jpg +0 -0
  540. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/08.jpg +0 -0
  541. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/09.jpg +0 -0
  542. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/10.jpg +0 -0
  543. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/11.jpg +0 -0
  544. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/pages/12.jpg +0 -0
  545. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/deck.pptd +21 -0
  546. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/01.page +173 -0
  547. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/02.page +424 -0
  548. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/03.page +450 -0
  549. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/04.page +593 -0
  550. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/05.page +521 -0
  551. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/06.page +533 -0
  552. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/07.page +618 -0
  553. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/08.page +381 -0
  554. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/09.page +337 -0
  555. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/10.page +407 -0
  556. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/11.page +617 -0
  557. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source/pages/12.page +145 -0
  558. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/deck.pptd +21 -0
  559. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/01.page +173 -0
  560. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/02.page +424 -0
  561. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/03.page +450 -0
  562. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/04.page +593 -0
  563. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/05.page +521 -0
  564. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/06.page +533 -0
  565. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/07.page +618 -0
  566. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/08.page +381 -0
  567. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/09.page +337 -0
  568. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/10.page +407 -0
  569. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/11.page +617 -0
  570. package/skills/dsh-ppt/references/promotion/dsh-sakura-chroma/source-zh/pages/12.page +145 -0
  571. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/design.md +122 -0
  572. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/metadata.json +1659 -0
  573. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/01.jpg +0 -0
  574. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/02.jpg +0 -0
  575. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/03.jpg +0 -0
  576. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/04.jpg +0 -0
  577. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/05.jpg +0 -0
  578. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/06.jpg +0 -0
  579. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/07.jpg +0 -0
  580. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/08.jpg +0 -0
  581. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/09.jpg +0 -0
  582. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/10.jpg +0 -0
  583. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/11.jpg +0 -0
  584. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/pages/12.jpg +0 -0
  585. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/deck.pptd +105 -0
  586. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/01.page +499 -0
  587. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/02.page +499 -0
  588. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/03.page +577 -0
  589. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/04.page +408 -0
  590. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/05.page +660 -0
  591. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/06.page +641 -0
  592. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/07.page +415 -0
  593. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/08.page +606 -0
  594. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/09.page +567 -0
  595. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/10.page +595 -0
  596. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/11.page +555 -0
  597. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source/pages/12.page +895 -0
  598. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/deck.pptd +105 -0
  599. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/01.page +499 -0
  600. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/02.page +499 -0
  601. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/03.page +577 -0
  602. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/04.page +408 -0
  603. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/05.page +660 -0
  604. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/06.page +641 -0
  605. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/07.page +415 -0
  606. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/08.page +606 -0
  607. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/09.page +567 -0
  608. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/10.page +595 -0
  609. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/11.page +555 -0
  610. package/skills/dsh-ppt/references/work/curated-modular-logistics-system/source-zh/pages/12.page +895 -0
  611. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/design.md +111 -0
  612. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/metadata.json +1712 -0
  613. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/01.jpg +0 -0
  614. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/02.jpg +0 -0
  615. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/03.jpg +0 -0
  616. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/04.jpg +0 -0
  617. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/05.jpg +0 -0
  618. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/06.jpg +0 -0
  619. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/07.jpg +0 -0
  620. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/08.jpg +0 -0
  621. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/09.jpg +0 -0
  622. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/10.jpg +0 -0
  623. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/11.jpg +0 -0
  624. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/pages/12.jpg +0 -0
  625. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/deck.pptd +93 -0
  626. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/01.page +395 -0
  627. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/02.page +574 -0
  628. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/03.page +307 -0
  629. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/04.page +359 -0
  630. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/05.page +443 -0
  631. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/06.page +437 -0
  632. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/07.page +181 -0
  633. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/08.page +557 -0
  634. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/09.page +337 -0
  635. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/10.page +732 -0
  636. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/11.page +589 -0
  637. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source/pages/12.page +385 -0
  638. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/deck.pptd +93 -0
  639. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/01.page +395 -0
  640. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/02.page +574 -0
  641. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/03.page +307 -0
  642. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/04.page +359 -0
  643. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/05.page +443 -0
  644. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/06.page +437 -0
  645. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/07.page +181 -0
  646. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/08.page +557 -0
  647. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/09.page +337 -0
  648. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/10.page +732 -0
  649. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/11.page +589 -0
  650. package/skills/dsh-ppt/references/work/curated-nordic-operating-report/source-zh/pages/12.page +385 -0
  651. package/skills/dsh-ppt/references/work/dsh-editorial-forest/design.md +61 -0
  652. package/skills/dsh-ppt/references/work/dsh-editorial-forest/metadata.json +3338 -0
  653. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/01.jpg +0 -0
  654. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/02.jpg +0 -0
  655. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/03.jpg +0 -0
  656. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/04.jpg +0 -0
  657. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/05.jpg +0 -0
  658. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/06.jpg +0 -0
  659. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/07.jpg +0 -0
  660. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/08.jpg +0 -0
  661. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/09.jpg +0 -0
  662. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/10.jpg +0 -0
  663. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/11.jpg +0 -0
  664. package/skills/dsh-ppt/references/work/dsh-editorial-forest/pages/12.jpg +0 -0
  665. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/deck.pptd +21 -0
  666. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/01.page +87 -0
  667. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/02.page +382 -0
  668. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/03.page +760 -0
  669. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/04.page +718 -0
  670. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/05.page +479 -0
  671. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/06.page +576 -0
  672. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/07.page +551 -0
  673. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/08.page +295 -0
  674. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/09.page +811 -0
  675. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/10.page +547 -0
  676. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/11.page +575 -0
  677. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source/pages/12.page +86 -0
  678. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/deck.pptd +21 -0
  679. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/01.page +87 -0
  680. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/02.page +382 -0
  681. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/03.page +760 -0
  682. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/04.page +718 -0
  683. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/05.page +479 -0
  684. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/06.page +576 -0
  685. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/07.page +551 -0
  686. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/08.page +295 -0
  687. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/09.page +811 -0
  688. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/10.page +547 -0
  689. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/11.page +575 -0
  690. package/skills/dsh-ppt/references/work/dsh-editorial-forest/source-zh/pages/12.page +86 -0
  691. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/design.md +61 -0
  692. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/metadata.json +3147 -0
  693. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/01.jpg +0 -0
  694. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/02.jpg +0 -0
  695. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/03.jpg +0 -0
  696. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/04.jpg +0 -0
  697. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/05.jpg +0 -0
  698. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/06.jpg +0 -0
  699. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/07.jpg +0 -0
  700. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/08.jpg +0 -0
  701. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/09.jpg +0 -0
  702. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/10.jpg +0 -0
  703. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/11.jpg +0 -0
  704. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/pages/12.jpg +0 -0
  705. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/deck.pptd +21 -0
  706. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/01.page +390 -0
  707. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/02.page +1082 -0
  708. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/03.page +1511 -0
  709. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/04.page +1227 -0
  710. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/05.page +1517 -0
  711. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/06.page +1460 -0
  712. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/07.page +1276 -0
  713. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/08.page +1039 -0
  714. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/09.page +995 -0
  715. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/10.page +1275 -0
  716. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/11.page +1275 -0
  717. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source/pages/12.page +125 -0
  718. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/deck.pptd +21 -0
  719. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/01.page +390 -0
  720. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/02.page +1084 -0
  721. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/03.page +1511 -0
  722. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/04.page +1227 -0
  723. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/05.page +1517 -0
  724. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/06.page +1460 -0
  725. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/07.page +1276 -0
  726. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/08.page +1041 -0
  727. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/09.page +995 -0
  728. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/10.page +1275 -0
  729. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/11.page +1275 -0
  730. package/skills/dsh-ppt/references/work/dsh-engineering-blueprint/source-zh/pages/12.page +125 -0
@@ -0,0 +1,2886 @@
1
+ {
2
+ "definition": {
3
+ "id": "dsh-course-workshop",
4
+ "category": "academic",
5
+ "sourceCollection": "curated",
6
+ "slug": "dsh-course-workshop",
7
+ "name": "Course Workshop",
8
+ "variantLabel": "DSH",
9
+ "description": "固定学习目标边栏、概念图、实例与自测;用于培训、课程和工作坊。",
10
+ "previewTitle": "Course Workshop",
11
+ "previewSubtitle": "12 editable layouts",
12
+ "titleFontFace": "Arial",
13
+ "bodyFontFace": "Arial",
14
+ "palette": {
15
+ "background": "F7F4EB",
16
+ "surface": "E5EBDD",
17
+ "text": "243F35",
18
+ "muted": "70766B",
19
+ "accent": "447A62",
20
+ "secondary": "E5EBDD"
21
+ },
22
+ "referenceDirectory": "academic/dsh-course-workshop",
23
+ "referenceWidth": 1280,
24
+ "referenceHeight": 720,
25
+ "referencePageCount": 12,
26
+ "representativeSlides": [
27
+ 1,
28
+ 2,
29
+ 3,
30
+ 4,
31
+ 5,
32
+ 6,
33
+ 7,
34
+ 8,
35
+ 9,
36
+ 10,
37
+ 11,
38
+ 12
39
+ ],
40
+ "previewSlides": [
41
+ 4,
42
+ 1,
43
+ 2,
44
+ 3,
45
+ 5,
46
+ 6,
47
+ 7,
48
+ 8,
49
+ 9,
50
+ 10,
51
+ 11,
52
+ 12
53
+ ],
54
+ "designSha256": "ba78a07b9a899bab3db404755f9a1dcd3bdd0c8010f41387d4bffbb9841b2f96",
55
+ "localizedNames": {
56
+ "en": "Course Workshop",
57
+ "zh": "Course Workshop"
58
+ },
59
+ "previewLanguage": "en",
60
+ "fonts": {
61
+ "en": {
62
+ "title": "Arial",
63
+ "body": "Arial"
64
+ },
65
+ "zh": {
66
+ "title": "PingFang SC",
67
+ "body": "PingFang SC"
68
+ },
69
+ "fallbacks": {
70
+ "zh": {
71
+ "macOS": {
72
+ "title": "PingFang SC",
73
+ "body": "PingFang SC"
74
+ },
75
+ "Windows": {
76
+ "title": "Microsoft YaHei",
77
+ "body": "Microsoft YaHei"
78
+ },
79
+ "Linux": {
80
+ "title": "Noto Sans CJK SC",
81
+ "body": "Noto Sans CJK SC"
82
+ }
83
+ }
84
+ }
85
+ }
86
+ },
87
+ "semantics": {
88
+ "palette": {
89
+ "background": "F7F4EB",
90
+ "surface": "E5EBDD",
91
+ "text": "243F35",
92
+ "muted": "70766B",
93
+ "accent": "447A62",
94
+ "secondary": "E5EBDD"
95
+ },
96
+ "source": {
97
+ "fileName": "dsh-course-workshop-reference.jpg",
98
+ "sha256": "ba78a07b9a899bab3db404755f9a1dcd3bdd0c8010f41387d4bffbb9841b2f96",
99
+ "slideCount": 12,
100
+ "averageTextBlocks": 17,
101
+ "averageCharacters": 299,
102
+ "visualGrammar": "editorial",
103
+ "recommendedDensity": "medium",
104
+ "designSummary": "# 课程培训 · Course Workshop\n\n固定学习目标边栏、概念图、实例与自测;用于培训、课程和工作坊。\n\n## 使用规则\n\n16:9,960×540 点。正文使用 Arial 并由系统回退中文字体;编辑部大标题可用 Georgia,缺失时回退衬线字体。只引用字体名称,不分发字体文件。背景 #F7F4EB,正文 #243F35,强调 #447A62。单页突出一个判断;超出文本容量时拆页,不缩小字号。保持边距 48 点、清晰层次及页脚。图表、表格、关系图均使用可编辑元素。\n\n## 版式\n\n1. 课程封面\n2. 学习目标\n3. 概念结构\n4. 实例讲解\n5. 限时练习\n6. 选择自测\n7. 学习复盘\n8. 课程总结\n\n## 来源\n\n视觉方向参考 html-anything 的 deck-course-module(Apache-2.0,固定提交 c31204544230578ac814026fecc153c6e36587ae)。本文件、PPTD 页面、示例内容和预览为 DSH 的适配和新增;保留上游许可和署名。 示例句和示例数字均为自编,不代表事实结论。\n\n## Bilingual typography\n\nEnglish previews: source/. Chinese examples: source-zh/. English title/body: Arial / Arial. Chinese macOS: PingFang SC / PingFang SC; Windows: Microsoft YaHei / Microsoft YaHei; Linux: Noto Sans CJK SC / Noto Sans CJK SC. Font names only, no binaries. Use the user's requested output language, independently of the preview language. Reflow long translations; do not reduce text below readable size.\n\n## Expanded composition rules\n\nTwelve editable reference pages. The cover and closing retain the parent style; ten content layouts add information structures with varied density.\n\n1. 课程封面 — 课程封面;以可编辑文本和矢量形状组织信息。\n2. From guided practice to independent work — Asymmetric argument with three supporting evidence rows\n3. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n4. Give each moment a distinct purpose — Three schematic frames with distinct content and intent\n5. Define what independent work looks like — Three criteria across three levels of observable competence\n6. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n7. Locate the friction along the journey — Four stages aligned across actions and independent outcome measures\n8. Design the test before reading the result — One hypothesis with comparison, measure and a predeclared decision rule\n9. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n10. Show how the judgment develops — Alternating milestone notes around a continuous argument timeline\n11. Sequence the work around a decision gate — Four timed workstreams and a decision gate\n12. 课程总结 — 课程总结;以可编辑文本和矢量形状组织信息。\n\nChoose a layout by the information relationship: evidence and interpretation, hierarchy, change over time, decision criteria, timed dependencies or ordered handoffs. For six or more content pages, use at least four distinct structures when the material supports them; avoid repeating the same composition on adjacent pages. Alternate detailed evidence with a simpler synthesis. A detailed page needs one dominant argument, supporting evidence and a concise interpretation. More detail must come from meaningful relationships, not extra decoration or a smaller font.\n\nKeep the parent palette and typography. Preserve its characteristic rails, paper fields, serif/sans hierarchy and light/dark rhythm. Use body text around 18–22 pt, direct chart labels around 13–16 pt, and 48 pt outer margins on 960 × 540 pt pages. Native text, shapes and connectors remain editable. Rescale the geometry or split a page before shrinking the text. Reference charts drawn with shapes have editable geometry; they do not contain an embedded chart spreadsheet.\n\nNew examples are explicitly illustrative: replace every invented value, quote and conclusion with the user's evidence. Retained sourced industry examples remain attributed in their existing notes. Never invent facts to fill a layout. Include units, common baselines, meaningful owners, measurement windows and dependencies as appropriate. English previews do not select the user's output language. Use the existing English/Chinese font pairs and platform fallbacks; reflow translated text.\n\n## Composition finish\n\nTreat an analytical slide as a small argument: a claim at the top, a dominant exhibit, and a concise readout or next decision. A second exhibit must add evidence (a reconciled breakdown, a comparison table, an exception or a test), not repeat the same headline. Do not fill every page with equally sized cards. Keep a quiet synthesis or section break between dense runs.\n\nUse a shared baseline for chart labels, aligned numeric columns and a limited set of type sizes. Distinguish a section label, headline, exhibit label, evidence text and source note by size and spacing before adding color. Keep body text readable; short exhibit labels may be smaller. Avoid single-word last lines, detached punctuation and arbitrary line breaks. Reflow Chinese and English separately.\n\nPut units, population and measurement window beside the relevant exhibit. Directly label the meaningful exception or inflection; use a subtle highlight or a short leader without crossing another label. For paired exhibits with different denominators, state both explicitly. Reconcile subtotals and deltas. Use a common quantitative scale; decorative bars must never imply a different value.\n\nEnd an evidence page with a concise interpretation, bounded recommendation or open question. A roadmap names owners and a gate; a scorecard distinguishes exceptions from measures that pass. Highlight the one decision or exception, not every cell. Adapt these devices to the parent pack: quiet serif pages, engineering schematics and bold posters should not converge on one visual style.\n\nInspect a rendered page, not just its bounding boxes: check the reading order, line endings, label collisions, chart contrast and the gap above the footer. Keep labels clear of rules and markers. Use native editable text and geometry. Fictional reference data must be replaced by verified user material or visibly marked as an example.\n",
105
+ "layoutPatterns": [
106
+ {
107
+ "family": "cover",
108
+ "slideCount": 1,
109
+ "sampleSlideNumbers": [
110
+ 1
111
+ ],
112
+ "titlePosition": "left",
113
+ "bodyColumns": 1,
114
+ "density": "medium",
115
+ "averageTextFrames": 7,
116
+ "averageMediaFrames": 0
117
+ },
118
+ {
119
+ "family": "insights",
120
+ "slideCount": 1,
121
+ "sampleSlideNumbers": [
122
+ 2
123
+ ],
124
+ "titlePosition": "left",
125
+ "bodyColumns": 2,
126
+ "density": "medium",
127
+ "averageTextFrames": 20,
128
+ "averageMediaFrames": 0
129
+ },
130
+ {
131
+ "family": "process",
132
+ "slideCount": 1,
133
+ "sampleSlideNumbers": [
134
+ 3
135
+ ],
136
+ "titlePosition": "left",
137
+ "bodyColumns": 3,
138
+ "density": "high",
139
+ "averageTextFrames": 17,
140
+ "averageMediaFrames": 0
141
+ },
142
+ {
143
+ "family": "grid",
144
+ "slideCount": 1,
145
+ "sampleSlideNumbers": [
146
+ 4
147
+ ],
148
+ "titlePosition": "left",
149
+ "bodyColumns": 3,
150
+ "density": "high",
151
+ "averageTextFrames": 13,
152
+ "averageMediaFrames": 0
153
+ },
154
+ {
155
+ "family": "table",
156
+ "slideCount": 1,
157
+ "sampleSlideNumbers": [
158
+ 5
159
+ ],
160
+ "titlePosition": "left",
161
+ "bodyColumns": 2,
162
+ "density": "high",
163
+ "averageTextFrames": 22,
164
+ "averageMediaFrames": 0
165
+ },
166
+ {
167
+ "family": "data",
168
+ "slideCount": 1,
169
+ "sampleSlideNumbers": [
170
+ 6
171
+ ],
172
+ "titlePosition": "left",
173
+ "bodyColumns": 2,
174
+ "density": "high",
175
+ "averageTextFrames": 30,
176
+ "averageMediaFrames": 0
177
+ },
178
+ {
179
+ "family": "process",
180
+ "slideCount": 1,
181
+ "sampleSlideNumbers": [
182
+ 7
183
+ ],
184
+ "titlePosition": "left",
185
+ "bodyColumns": 2,
186
+ "density": "high",
187
+ "averageTextFrames": 21,
188
+ "averageMediaFrames": 0
189
+ },
190
+ {
191
+ "family": "comparison",
192
+ "slideCount": 1,
193
+ "sampleSlideNumbers": [
194
+ 8
195
+ ],
196
+ "titlePosition": "left",
197
+ "bodyColumns": 2,
198
+ "density": "high",
199
+ "averageTextFrames": 16,
200
+ "averageMediaFrames": 0
201
+ },
202
+ {
203
+ "family": "comparison",
204
+ "slideCount": 1,
205
+ "sampleSlideNumbers": [
206
+ 9
207
+ ],
208
+ "titlePosition": "left",
209
+ "bodyColumns": 2,
210
+ "density": "high",
211
+ "averageTextFrames": 13,
212
+ "averageMediaFrames": 0
213
+ },
214
+ {
215
+ "family": "process",
216
+ "slideCount": 1,
217
+ "sampleSlideNumbers": [
218
+ 10
219
+ ],
220
+ "titlePosition": "left",
221
+ "bodyColumns": 2,
222
+ "density": "medium",
223
+ "averageTextFrames": 18,
224
+ "averageMediaFrames": 0
225
+ },
226
+ {
227
+ "family": "process",
228
+ "slideCount": 1,
229
+ "sampleSlideNumbers": [
230
+ 11
231
+ ],
232
+ "titlePosition": "left",
233
+ "bodyColumns": 2,
234
+ "density": "high",
235
+ "averageTextFrames": 19,
236
+ "averageMediaFrames": 0
237
+ },
238
+ {
239
+ "family": "closing",
240
+ "slideCount": 1,
241
+ "sampleSlideNumbers": [
242
+ 12
243
+ ],
244
+ "titlePosition": "left",
245
+ "bodyColumns": 1,
246
+ "density": "medium",
247
+ "averageTextFrames": 6,
248
+ "averageMediaFrames": 0
249
+ }
250
+ ],
251
+ "pageReferences": [
252
+ {
253
+ "slideNumber": 1,
254
+ "sourceTitle": "课程封面",
255
+ "family": "cover",
256
+ "titlePosition": "left",
257
+ "bodyColumns": 1,
258
+ "density": "medium",
259
+ "features": [
260
+ "statement"
261
+ ],
262
+ "recommendedRoles": [
263
+ "cover"
264
+ ],
265
+ "structureSummary": "课程封面;以可编辑文本和矢量形状组织信息。",
266
+ "zones": [
267
+ {
268
+ "kind": "text",
269
+ "x": 64,
270
+ "y": 32,
271
+ "width": 933.3333333333334,
272
+ "height": 24,
273
+ "textRole": "body",
274
+ "fontSize": 10,
275
+ "textCapacity": 70
276
+ },
277
+ {
278
+ "kind": "title",
279
+ "x": 64,
280
+ "y": 90.66666666666667,
281
+ "width": 1152,
282
+ "height": 85.33333333333333,
283
+ "textRole": "title",
284
+ "fontSize": 31,
285
+ "textCapacity": 27
286
+ },
287
+ {
288
+ "kind": "text",
289
+ "x": 64,
290
+ "y": 673.3333333333334,
291
+ "width": 1013.3333333333334,
292
+ "height": 21.333333333333332,
293
+ "textRole": "body",
294
+ "fontSize": 9,
295
+ "textCapacity": 84
296
+ },
297
+ {
298
+ "kind": "text",
299
+ "x": 1146.6666666666667,
300
+ "y": 672,
301
+ "width": 64,
302
+ "height": 24,
303
+ "textRole": "body",
304
+ "fontSize": 11,
305
+ "textCapacity": 4
306
+ },
307
+ {
308
+ "kind": "title",
309
+ "x": 64,
310
+ "y": 229.33333333333334,
311
+ "width": 840,
312
+ "height": 229.33333333333334,
313
+ "textRole": "title",
314
+ "fontSize": 64,
315
+ "textCapacity": 18
316
+ },
317
+ {
318
+ "kind": "shape",
319
+ "x": 954.6666666666666,
320
+ "y": 229.33333333333334,
321
+ "width": 261.3333333333333,
322
+ "height": 306.6666666666667,
323
+ "shape": "rect",
324
+ "fill": "E5EBDD"
325
+ },
326
+ {
327
+ "kind": "text",
328
+ "x": 986.6666666666666,
329
+ "y": 274.6666666666667,
330
+ "width": 202.66666666666666,
331
+ "height": 209.33333333333334,
332
+ "textRole": "body",
333
+ "fontSize": 25,
334
+ "textCapacity": 30
335
+ },
336
+ {
337
+ "kind": "text",
338
+ "x": 69.33333333333333,
339
+ "y": 518.6666666666666,
340
+ "width": 826.6666666666666,
341
+ "height": 56,
342
+ "textRole": "body",
343
+ "fontSize": 19,
344
+ "textCapacity": 32
345
+ }
346
+ ],
347
+ "jsxReference": ""
348
+ },
349
+ {
350
+ "slideNumber": 2,
351
+ "sourceTitle": "From guided practice to independent work",
352
+ "family": "insights",
353
+ "titlePosition": "left",
354
+ "bodyColumns": 2,
355
+ "density": "medium",
356
+ "features": [
357
+ "thesis"
358
+ ],
359
+ "recommendedRoles": [
360
+ "insights"
361
+ ],
362
+ "structureSummary": "Asymmetric argument with three supporting evidence rows",
363
+ "zones": [
364
+ {
365
+ "kind": "text",
366
+ "x": 64,
367
+ "y": 36,
368
+ "width": 886.6666666666666,
369
+ "height": 26.666666666666668,
370
+ "textRole": "body",
371
+ "fontSize": 10,
372
+ "textCapacity": 66
373
+ },
374
+ {
375
+ "kind": "title",
376
+ "x": 64,
377
+ "y": 101.33333333333333,
378
+ "width": 1152,
379
+ "height": 85.33333333333333,
380
+ "textRole": "title",
381
+ "fontSize": 32,
382
+ "textCapacity": 27
383
+ },
384
+ {
385
+ "kind": "text",
386
+ "x": 1005.3333333333334,
387
+ "y": 61.333333333333336,
388
+ "width": 210.66666666666666,
389
+ "height": 17.333333333333332,
390
+ "textRole": "body",
391
+ "fontSize": 9,
392
+ "textCapacity": 17
393
+ },
394
+ {
395
+ "kind": "text",
396
+ "x": 64,
397
+ "y": 218.66666666666666,
398
+ "width": 464,
399
+ "height": 33.333333333333336,
400
+ "textRole": "body",
401
+ "fontSize": 13,
402
+ "textCapacity": 26
403
+ },
404
+ {
405
+ "kind": "title",
406
+ "x": 64,
407
+ "y": 276,
408
+ "width": 442.6666666666667,
409
+ "height": 236,
410
+ "textRole": "title",
411
+ "fontSize": 30,
412
+ "textCapacity": 55
413
+ },
414
+ {
415
+ "kind": "text",
416
+ "x": 64,
417
+ "y": 560,
418
+ "width": 440,
419
+ "height": 57.333333333333336,
420
+ "textRole": "body",
421
+ "fontSize": 17,
422
+ "textCapacity": 38
423
+ },
424
+ {
425
+ "kind": "text",
426
+ "x": 588,
427
+ "y": 222.66666666666666,
428
+ "width": 66.66666666666667,
429
+ "height": 50.666666666666664,
430
+ "textRole": "body",
431
+ "fontSize": 26,
432
+ "textCapacity": 1
433
+ },
434
+ {
435
+ "kind": "text",
436
+ "x": 685.3333333333334,
437
+ "y": 226.66666666666666,
438
+ "width": 332,
439
+ "height": 42.666666666666664,
440
+ "textRole": "body",
441
+ "fontSize": 23,
442
+ "textCapacity": 10
443
+ },
444
+ {
445
+ "kind": "text",
446
+ "x": 1040,
447
+ "y": 234.66666666666666,
448
+ "width": 176,
449
+ "height": 32,
450
+ "textRole": "body",
451
+ "fontSize": 10,
452
+ "textCapacity": 26
453
+ },
454
+ {
455
+ "kind": "text",
456
+ "x": 685.3333333333334,
457
+ "y": 281.3333333333333,
458
+ "width": 530.6666666666666,
459
+ "height": 62.666666666666664,
460
+ "textRole": "body",
461
+ "fontSize": 18,
462
+ "textCapacity": 44
463
+ },
464
+ {
465
+ "kind": "text",
466
+ "x": 588,
467
+ "y": 348,
468
+ "width": 66.66666666666667,
469
+ "height": 50.666666666666664,
470
+ "textRole": "body",
471
+ "fontSize": 26,
472
+ "textCapacity": 1
473
+ },
474
+ {
475
+ "kind": "text",
476
+ "x": 685.3333333333334,
477
+ "y": 352,
478
+ "width": 332,
479
+ "height": 42.666666666666664,
480
+ "textRole": "body",
481
+ "fontSize": 23,
482
+ "textCapacity": 10
483
+ },
484
+ {
485
+ "kind": "text",
486
+ "x": 1040,
487
+ "y": 360,
488
+ "width": 176,
489
+ "height": 32,
490
+ "textRole": "body",
491
+ "fontSize": 10,
492
+ "textCapacity": 26
493
+ },
494
+ {
495
+ "kind": "text",
496
+ "x": 685.3333333333334,
497
+ "y": 406.6666666666667,
498
+ "width": 530.6666666666666,
499
+ "height": 62.666666666666664,
500
+ "textRole": "body",
501
+ "fontSize": 18,
502
+ "textCapacity": 44
503
+ },
504
+ {
505
+ "kind": "text",
506
+ "x": 588,
507
+ "y": 473.3333333333333,
508
+ "width": 66.66666666666667,
509
+ "height": 50.666666666666664,
510
+ "textRole": "body",
511
+ "fontSize": 26,
512
+ "textCapacity": 1
513
+ },
514
+ {
515
+ "kind": "text",
516
+ "x": 685.3333333333334,
517
+ "y": 477.3333333333333,
518
+ "width": 332,
519
+ "height": 42.666666666666664,
520
+ "textRole": "body",
521
+ "fontSize": 23,
522
+ "textCapacity": 10
523
+ },
524
+ {
525
+ "kind": "text",
526
+ "x": 1040,
527
+ "y": 485.3333333333333,
528
+ "width": 176,
529
+ "height": 32,
530
+ "textRole": "body",
531
+ "fontSize": 10,
532
+ "textCapacity": 26
533
+ },
534
+ {
535
+ "kind": "text",
536
+ "x": 685.3333333333334,
537
+ "y": 532,
538
+ "width": 530.6666666666666,
539
+ "height": 62.666666666666664,
540
+ "textRole": "body",
541
+ "fontSize": 18,
542
+ "textCapacity": 44
543
+ },
544
+ {
545
+ "kind": "text",
546
+ "x": 64,
547
+ "y": 676,
548
+ "width": 1044,
549
+ "height": 21.333333333333332,
550
+ "textRole": "body",
551
+ "fontSize": 9,
552
+ "textCapacity": 87
553
+ },
554
+ {
555
+ "kind": "text",
556
+ "x": 1161.3333333333333,
557
+ "y": 672,
558
+ "width": 54.666666666666664,
559
+ "height": 29.333333333333332,
560
+ "textRole": "body",
561
+ "fontSize": 11,
562
+ "textCapacity": 3
563
+ }
564
+ ],
565
+ "jsxReference": ""
566
+ },
567
+ {
568
+ "slideNumber": 3,
569
+ "sourceTitle": "Trace the question to testable branches",
570
+ "family": "process",
571
+ "titlePosition": "left",
572
+ "bodyColumns": 3,
573
+ "density": "high",
574
+ "features": [
575
+ "tree"
576
+ ],
577
+ "recommendedRoles": [
578
+ "process"
579
+ ],
580
+ "structureSummary": "Three-branch hypothesis tree with six testable leaves",
581
+ "zones": [
582
+ {
583
+ "kind": "text",
584
+ "x": 64,
585
+ "y": 36,
586
+ "width": 886.6666666666666,
587
+ "height": 26.666666666666668,
588
+ "textRole": "body",
589
+ "fontSize": 10,
590
+ "textCapacity": 66
591
+ },
592
+ {
593
+ "kind": "title",
594
+ "x": 64,
595
+ "y": 101.33333333333333,
596
+ "width": 1152,
597
+ "height": 85.33333333333333,
598
+ "textRole": "title",
599
+ "fontSize": 32,
600
+ "textCapacity": 27
601
+ },
602
+ {
603
+ "kind": "text",
604
+ "x": 1005.3333333333334,
605
+ "y": 61.333333333333336,
606
+ "width": 210.66666666666666,
607
+ "height": 17.333333333333332,
608
+ "textRole": "body",
609
+ "fontSize": 9,
610
+ "textCapacity": 17
611
+ },
612
+ {
613
+ "kind": "text",
614
+ "x": 64,
615
+ "y": 202.66666666666666,
616
+ "width": 1133.3333333333333,
617
+ "height": 33.333333333333336,
618
+ "textRole": "body",
619
+ "fontSize": 13,
620
+ "textCapacity": 65
621
+ },
622
+ {
623
+ "kind": "shape",
624
+ "x": 64,
625
+ "y": 362.6666666666667,
626
+ "width": 292,
627
+ "height": 140,
628
+ "shape": "rect",
629
+ "fill": "447A62"
630
+ },
631
+ {
632
+ "kind": "text",
633
+ "x": 80,
634
+ "y": 380,
635
+ "width": 260,
636
+ "height": 114.66666666666667,
637
+ "textRole": "body",
638
+ "fontSize": 18,
639
+ "textCapacity": 40
640
+ },
641
+ {
642
+ "kind": "shape",
643
+ "x": 466.6666666666667,
644
+ "y": 245.33333333333334,
645
+ "width": 226.66666666666666,
646
+ "height": 77.33333333333333,
647
+ "shape": "rect",
648
+ "fill": "E5EBDD"
649
+ },
650
+ {
651
+ "kind": "text",
652
+ "x": 482.6666666666667,
653
+ "y": 262.6666666666667,
654
+ "width": 194.66666666666666,
655
+ "height": 52,
656
+ "textRole": "body",
657
+ "fontSize": 18,
658
+ "textCapacity": 8
659
+ },
660
+ {
661
+ "kind": "text",
662
+ "x": 810.6666666666666,
663
+ "y": 236,
664
+ "width": 398.6666666666667,
665
+ "height": 45.333333333333336,
666
+ "textRole": "body",
667
+ "fontSize": 18,
668
+ "textCapacity": 16
669
+ },
670
+ {
671
+ "kind": "text",
672
+ "x": 810.6666666666666,
673
+ "y": 292,
674
+ "width": 398.6666666666667,
675
+ "height": 45.333333333333336,
676
+ "textRole": "body",
677
+ "fontSize": 18,
678
+ "textCapacity": 16
679
+ },
680
+ {
681
+ "kind": "shape",
682
+ "x": 466.6666666666667,
683
+ "y": 376,
684
+ "width": 226.66666666666666,
685
+ "height": 77.33333333333333,
686
+ "shape": "rect",
687
+ "fill": "E5EBDD"
688
+ },
689
+ {
690
+ "kind": "text",
691
+ "x": 482.6666666666667,
692
+ "y": 393.3333333333333,
693
+ "width": 194.66666666666666,
694
+ "height": 52,
695
+ "textRole": "body",
696
+ "fontSize": 18,
697
+ "textCapacity": 8
698
+ },
699
+ {
700
+ "kind": "text",
701
+ "x": 810.6666666666666,
702
+ "y": 366.6666666666667,
703
+ "width": 398.6666666666667,
704
+ "height": 45.333333333333336,
705
+ "textRole": "body",
706
+ "fontSize": 18,
707
+ "textCapacity": 16
708
+ },
709
+ {
710
+ "kind": "text",
711
+ "x": 810.6666666666666,
712
+ "y": 422.6666666666667,
713
+ "width": 398.6666666666667,
714
+ "height": 45.333333333333336,
715
+ "textRole": "body",
716
+ "fontSize": 18,
717
+ "textCapacity": 16
718
+ },
719
+ {
720
+ "kind": "shape",
721
+ "x": 466.6666666666667,
722
+ "y": 506.6666666666667,
723
+ "width": 226.66666666666666,
724
+ "height": 77.33333333333333,
725
+ "shape": "rect",
726
+ "fill": "E5EBDD"
727
+ },
728
+ {
729
+ "kind": "text",
730
+ "x": 482.6666666666667,
731
+ "y": 524,
732
+ "width": 194.66666666666666,
733
+ "height": 52,
734
+ "textRole": "body",
735
+ "fontSize": 18,
736
+ "textCapacity": 8
737
+ },
738
+ {
739
+ "kind": "text",
740
+ "x": 810.6666666666666,
741
+ "y": 497.3333333333333,
742
+ "width": 398.6666666666667,
743
+ "height": 45.333333333333336,
744
+ "textRole": "body",
745
+ "fontSize": 18,
746
+ "textCapacity": 16
747
+ },
748
+ {
749
+ "kind": "text",
750
+ "x": 810.6666666666666,
751
+ "y": 553.3333333333334,
752
+ "width": 398.6666666666667,
753
+ "height": 45.333333333333336,
754
+ "textRole": "body",
755
+ "fontSize": 18,
756
+ "textCapacity": 16
757
+ },
758
+ {
759
+ "kind": "text",
760
+ "x": 64,
761
+ "y": 633.3333333333334,
762
+ "width": 1152,
763
+ "height": 33.333333333333336,
764
+ "textRole": "body",
765
+ "fontSize": 13,
766
+ "textCapacity": 66
767
+ },
768
+ {
769
+ "kind": "text",
770
+ "x": 64,
771
+ "y": 676,
772
+ "width": 1044,
773
+ "height": 21.333333333333332,
774
+ "textRole": "body",
775
+ "fontSize": 9,
776
+ "textCapacity": 87
777
+ },
778
+ {
779
+ "kind": "text",
780
+ "x": 1161.3333333333333,
781
+ "y": 672,
782
+ "width": 54.666666666666664,
783
+ "height": 29.333333333333332,
784
+ "textRole": "body",
785
+ "fontSize": 11,
786
+ "textCapacity": 3
787
+ }
788
+ ],
789
+ "jsxReference": ""
790
+ },
791
+ {
792
+ "slideNumber": 4,
793
+ "sourceTitle": "Give each moment a distinct purpose",
794
+ "family": "grid",
795
+ "titlePosition": "left",
796
+ "bodyColumns": 3,
797
+ "density": "high",
798
+ "features": [
799
+ "storyboard"
800
+ ],
801
+ "recommendedRoles": [
802
+ "grid"
803
+ ],
804
+ "structureSummary": "Three schematic frames with distinct content and intent",
805
+ "zones": [
806
+ {
807
+ "kind": "text",
808
+ "x": 64,
809
+ "y": 36,
810
+ "width": 886.6666666666666,
811
+ "height": 26.666666666666668,
812
+ "textRole": "body",
813
+ "fontSize": 10,
814
+ "textCapacity": 66
815
+ },
816
+ {
817
+ "kind": "title",
818
+ "x": 64,
819
+ "y": 101.33333333333333,
820
+ "width": 1152,
821
+ "height": 85.33333333333333,
822
+ "textRole": "title",
823
+ "fontSize": 32,
824
+ "textCapacity": 27
825
+ },
826
+ {
827
+ "kind": "text",
828
+ "x": 1005.3333333333334,
829
+ "y": 61.333333333333336,
830
+ "width": 210.66666666666666,
831
+ "height": 17.333333333333332,
832
+ "textRole": "body",
833
+ "fontSize": 9,
834
+ "textCapacity": 17
835
+ },
836
+ {
837
+ "kind": "shape",
838
+ "x": 64,
839
+ "y": 228,
840
+ "width": 360,
841
+ "height": 200,
842
+ "shape": "rect",
843
+ "fill": "E5EBDD"
844
+ },
845
+ {
846
+ "kind": "shape",
847
+ "x": 112,
848
+ "y": 337.3333333333333,
849
+ "width": 117.33333333333333,
850
+ "height": 41.333333333333336,
851
+ "shape": "rect",
852
+ "fill": "181915"
853
+ },
854
+ {
855
+ "kind": "text",
856
+ "x": 64,
857
+ "y": 449.3333333333333,
858
+ "width": 346.6666666666667,
859
+ "height": 33.333333333333336,
860
+ "textRole": "body",
861
+ "fontSize": 13,
862
+ "textCapacity": 20
863
+ },
864
+ {
865
+ "kind": "text",
866
+ "x": 64,
867
+ "y": 501.3333333333333,
868
+ "width": 350.6666666666667,
869
+ "height": 105.33333333333333,
870
+ "textRole": "body",
871
+ "fontSize": 26,
872
+ "textCapacity": 20
873
+ },
874
+ {
875
+ "kind": "shape",
876
+ "x": 456,
877
+ "y": 228,
878
+ "width": 360,
879
+ "height": 200,
880
+ "shape": "rect",
881
+ "fill": "447A62"
882
+ },
883
+ {
884
+ "kind": "shape",
885
+ "x": 582.6666666666666,
886
+ "y": 266.6666666666667,
887
+ "width": 104,
888
+ "height": 104,
889
+ "shape": "ellipse",
890
+ "fill": "F8F6EE"
891
+ },
892
+ {
893
+ "kind": "title",
894
+ "x": 604,
895
+ "y": 285.3333333333333,
896
+ "width": 69.33333333333333,
897
+ "height": 77.33333333333333,
898
+ "textRole": "title",
899
+ "fontSize": 33,
900
+ "textCapacity": 1
901
+ },
902
+ {
903
+ "kind": "text",
904
+ "x": 456,
905
+ "y": 449.3333333333333,
906
+ "width": 346.6666666666667,
907
+ "height": 33.333333333333336,
908
+ "textRole": "body",
909
+ "fontSize": 13,
910
+ "textCapacity": 20
911
+ },
912
+ {
913
+ "kind": "text",
914
+ "x": 456,
915
+ "y": 501.3333333333333,
916
+ "width": 350.6666666666667,
917
+ "height": 105.33333333333333,
918
+ "textRole": "body",
919
+ "fontSize": 26,
920
+ "textCapacity": 20
921
+ },
922
+ {
923
+ "kind": "shape",
924
+ "x": 848,
925
+ "y": 228,
926
+ "width": 360,
927
+ "height": 200,
928
+ "shape": "rect",
929
+ "fill": "E5EBDD"
930
+ },
931
+ {
932
+ "kind": "shape",
933
+ "x": 896,
934
+ "y": 262.6666666666667,
935
+ "width": 16,
936
+ "height": 16,
937
+ "shape": "ellipse",
938
+ "fill": "181915"
939
+ },
940
+ {
941
+ "kind": "shape",
942
+ "x": 896,
943
+ "y": 312,
944
+ "width": 16,
945
+ "height": 16,
946
+ "shape": "ellipse",
947
+ "fill": "181915"
948
+ },
949
+ {
950
+ "kind": "shape",
951
+ "x": 896,
952
+ "y": 361.3333333333333,
953
+ "width": 16,
954
+ "height": 16,
955
+ "shape": "ellipse",
956
+ "fill": "181915"
957
+ },
958
+ {
959
+ "kind": "text",
960
+ "x": 848,
961
+ "y": 449.3333333333333,
962
+ "width": 346.6666666666667,
963
+ "height": 33.333333333333336,
964
+ "textRole": "body",
965
+ "fontSize": 13,
966
+ "textCapacity": 20
967
+ },
968
+ {
969
+ "kind": "text",
970
+ "x": 848,
971
+ "y": 501.3333333333333,
972
+ "width": 350.6666666666667,
973
+ "height": 105.33333333333333,
974
+ "textRole": "body",
975
+ "fontSize": 26,
976
+ "textCapacity": 20
977
+ },
978
+ {
979
+ "kind": "text",
980
+ "x": 64,
981
+ "y": 633.3333333333334,
982
+ "width": 1152,
983
+ "height": 33.333333333333336,
984
+ "textRole": "body",
985
+ "fontSize": 13,
986
+ "textCapacity": 66
987
+ },
988
+ {
989
+ "kind": "text",
990
+ "x": 64,
991
+ "y": 676,
992
+ "width": 1044,
993
+ "height": 21.333333333333332,
994
+ "textRole": "body",
995
+ "fontSize": 9,
996
+ "textCapacity": 87
997
+ },
998
+ {
999
+ "kind": "text",
1000
+ "x": 1161.3333333333333,
1001
+ "y": 672,
1002
+ "width": 54.666666666666664,
1003
+ "height": 29.333333333333332,
1004
+ "textRole": "body",
1005
+ "fontSize": 11,
1006
+ "textCapacity": 3
1007
+ }
1008
+ ],
1009
+ "jsxReference": ""
1010
+ },
1011
+ {
1012
+ "slideNumber": 5,
1013
+ "sourceTitle": "Define what independent work looks like",
1014
+ "family": "table",
1015
+ "titlePosition": "left",
1016
+ "bodyColumns": 2,
1017
+ "density": "high",
1018
+ "features": [
1019
+ "rubric"
1020
+ ],
1021
+ "recommendedRoles": [
1022
+ "table"
1023
+ ],
1024
+ "structureSummary": "Three criteria across three levels of observable competence",
1025
+ "zones": [
1026
+ {
1027
+ "kind": "text",
1028
+ "x": 64,
1029
+ "y": 36,
1030
+ "width": 886.6666666666666,
1031
+ "height": 26.666666666666668,
1032
+ "textRole": "body",
1033
+ "fontSize": 10,
1034
+ "textCapacity": 66
1035
+ },
1036
+ {
1037
+ "kind": "title",
1038
+ "x": 64,
1039
+ "y": 101.33333333333333,
1040
+ "width": 1152,
1041
+ "height": 85.33333333333333,
1042
+ "textRole": "title",
1043
+ "fontSize": 32,
1044
+ "textCapacity": 27
1045
+ },
1046
+ {
1047
+ "kind": "text",
1048
+ "x": 1005.3333333333334,
1049
+ "y": 61.333333333333336,
1050
+ "width": 210.66666666666666,
1051
+ "height": 17.333333333333332,
1052
+ "textRole": "body",
1053
+ "fontSize": 9,
1054
+ "textCapacity": 17
1055
+ },
1056
+ {
1057
+ "kind": "shape",
1058
+ "x": 914.6666666666666,
1059
+ "y": 220,
1060
+ "width": 301.3333333333333,
1061
+ "height": 376,
1062
+ "shape": "rect",
1063
+ "fill": "E5EBDD"
1064
+ },
1065
+ {
1066
+ "kind": "text",
1067
+ "x": 64,
1068
+ "y": 233.33333333333334,
1069
+ "width": 269.3333333333333,
1070
+ "height": 48,
1071
+ "textRole": "body",
1072
+ "fontSize": 13,
1073
+ "textCapacity": 30
1074
+ },
1075
+ {
1076
+ "kind": "text",
1077
+ "x": 360,
1078
+ "y": 233.33333333333334,
1079
+ "width": 256,
1080
+ "height": 48,
1081
+ "textRole": "body",
1082
+ "fontSize": 13,
1083
+ "textCapacity": 28
1084
+ },
1085
+ {
1086
+ "kind": "text",
1087
+ "x": 644,
1088
+ "y": 233.33333333333334,
1089
+ "width": 257.3333333333333,
1090
+ "height": 48,
1091
+ "textRole": "body",
1092
+ "fontSize": 13,
1093
+ "textCapacity": 28
1094
+ },
1095
+ {
1096
+ "kind": "text",
1097
+ "x": 930.6666666666666,
1098
+ "y": 233.33333333333334,
1099
+ "width": 285.3333333333333,
1100
+ "height": 48,
1101
+ "textRole": "body",
1102
+ "fontSize": 13,
1103
+ "textCapacity": 32
1104
+ },
1105
+ {
1106
+ "kind": "text",
1107
+ "x": 64,
1108
+ "y": 322.6666666666667,
1109
+ "width": 258.6666666666667,
1110
+ "height": 76,
1111
+ "textRole": "body",
1112
+ "fontSize": 18,
1113
+ "textCapacity": 20
1114
+ },
1115
+ {
1116
+ "kind": "text",
1117
+ "x": 360,
1118
+ "y": 322.6666666666667,
1119
+ "width": 245.33333333333334,
1120
+ "height": 76,
1121
+ "textRole": "body",
1122
+ "fontSize": 18,
1123
+ "textCapacity": 20
1124
+ },
1125
+ {
1126
+ "kind": "text",
1127
+ "x": 644,
1128
+ "y": 322.6666666666667,
1129
+ "width": 246.66666666666666,
1130
+ "height": 76,
1131
+ "textRole": "body",
1132
+ "fontSize": 18,
1133
+ "textCapacity": 20
1134
+ },
1135
+ {
1136
+ "kind": "text",
1137
+ "x": 930.6666666666666,
1138
+ "y": 322.6666666666667,
1139
+ "width": 274.6666666666667,
1140
+ "height": 76,
1141
+ "textRole": "body",
1142
+ "fontSize": 18,
1143
+ "textCapacity": 22
1144
+ },
1145
+ {
1146
+ "kind": "text",
1147
+ "x": 64,
1148
+ "y": 414.6666666666667,
1149
+ "width": 258.6666666666667,
1150
+ "height": 76,
1151
+ "textRole": "body",
1152
+ "fontSize": 18,
1153
+ "textCapacity": 20
1154
+ },
1155
+ {
1156
+ "kind": "text",
1157
+ "x": 360,
1158
+ "y": 414.6666666666667,
1159
+ "width": 245.33333333333334,
1160
+ "height": 76,
1161
+ "textRole": "body",
1162
+ "fontSize": 18,
1163
+ "textCapacity": 20
1164
+ },
1165
+ {
1166
+ "kind": "text",
1167
+ "x": 644,
1168
+ "y": 414.6666666666667,
1169
+ "width": 246.66666666666666,
1170
+ "height": 76,
1171
+ "textRole": "body",
1172
+ "fontSize": 18,
1173
+ "textCapacity": 20
1174
+ },
1175
+ {
1176
+ "kind": "text",
1177
+ "x": 930.6666666666666,
1178
+ "y": 414.6666666666667,
1179
+ "width": 274.6666666666667,
1180
+ "height": 76,
1181
+ "textRole": "body",
1182
+ "fontSize": 18,
1183
+ "textCapacity": 22
1184
+ },
1185
+ {
1186
+ "kind": "text",
1187
+ "x": 64,
1188
+ "y": 506.6666666666667,
1189
+ "width": 258.6666666666667,
1190
+ "height": 76,
1191
+ "textRole": "body",
1192
+ "fontSize": 18,
1193
+ "textCapacity": 20
1194
+ },
1195
+ {
1196
+ "kind": "text",
1197
+ "x": 360,
1198
+ "y": 506.6666666666667,
1199
+ "width": 245.33333333333334,
1200
+ "height": 76,
1201
+ "textRole": "body",
1202
+ "fontSize": 18,
1203
+ "textCapacity": 20
1204
+ },
1205
+ {
1206
+ "kind": "text",
1207
+ "x": 644,
1208
+ "y": 506.6666666666667,
1209
+ "width": 246.66666666666666,
1210
+ "height": 76,
1211
+ "textRole": "body",
1212
+ "fontSize": 18,
1213
+ "textCapacity": 20
1214
+ },
1215
+ {
1216
+ "kind": "text",
1217
+ "x": 930.6666666666666,
1218
+ "y": 506.6666666666667,
1219
+ "width": 274.6666666666667,
1220
+ "height": 76,
1221
+ "textRole": "body",
1222
+ "fontSize": 18,
1223
+ "textCapacity": 22
1224
+ },
1225
+ {
1226
+ "kind": "text",
1227
+ "x": 64,
1228
+ "y": 633.3333333333334,
1229
+ "width": 1152,
1230
+ "height": 33.333333333333336,
1231
+ "textRole": "body",
1232
+ "fontSize": 13,
1233
+ "textCapacity": 66
1234
+ },
1235
+ {
1236
+ "kind": "text",
1237
+ "x": 64,
1238
+ "y": 676,
1239
+ "width": 1044,
1240
+ "height": 21.333333333333332,
1241
+ "textRole": "body",
1242
+ "fontSize": 9,
1243
+ "textCapacity": 87
1244
+ },
1245
+ {
1246
+ "kind": "text",
1247
+ "x": 1161.3333333333333,
1248
+ "y": 672,
1249
+ "width": 54.666666666666664,
1250
+ "height": 29.333333333333332,
1251
+ "textRole": "body",
1252
+ "fontSize": 11,
1253
+ "textCapacity": 3
1254
+ }
1255
+ ],
1256
+ "jsxReference": ""
1257
+ },
1258
+ {
1259
+ "slideNumber": 6,
1260
+ "sourceTitle": "Read the trend and investigate the pause",
1261
+ "family": "data",
1262
+ "titlePosition": "left",
1263
+ "bodyColumns": 2,
1264
+ "density": "high",
1265
+ "features": [
1266
+ "trend"
1267
+ ],
1268
+ "recommendedRoles": [
1269
+ "data"
1270
+ ],
1271
+ "structureSummary": "Labeled six-point trend with common scale and a separate interpretation",
1272
+ "zones": [
1273
+ {
1274
+ "kind": "text",
1275
+ "x": 64,
1276
+ "y": 36,
1277
+ "width": 886.6666666666666,
1278
+ "height": 26.666666666666668,
1279
+ "textRole": "body",
1280
+ "fontSize": 10,
1281
+ "textCapacity": 66
1282
+ },
1283
+ {
1284
+ "kind": "title",
1285
+ "x": 64,
1286
+ "y": 101.33333333333333,
1287
+ "width": 1152,
1288
+ "height": 85.33333333333333,
1289
+ "textRole": "title",
1290
+ "fontSize": 32,
1291
+ "textCapacity": 27
1292
+ },
1293
+ {
1294
+ "kind": "text",
1295
+ "x": 1005.3333333333334,
1296
+ "y": 61.333333333333336,
1297
+ "width": 210.66666666666666,
1298
+ "height": 17.333333333333332,
1299
+ "textRole": "body",
1300
+ "fontSize": 9,
1301
+ "textCapacity": 17
1302
+ },
1303
+ {
1304
+ "kind": "text",
1305
+ "x": 64,
1306
+ "y": 202.66666666666666,
1307
+ "width": 1133.3333333333333,
1308
+ "height": 33.333333333333336,
1309
+ "textRole": "body",
1310
+ "fontSize": 13,
1311
+ "textCapacity": 65
1312
+ },
1313
+ {
1314
+ "kind": "shape",
1315
+ "x": 437.3333333333333,
1316
+ "y": 253.33333333333334,
1317
+ "width": 121.33333333333333,
1318
+ "height": 314.6666666666667,
1319
+ "shape": "rect",
1320
+ "fill": "e5e8dd"
1321
+ },
1322
+ {
1323
+ "kind": "text",
1324
+ "x": 64,
1325
+ "y": 554.6666666666666,
1326
+ "width": 40,
1327
+ "height": 29.333333333333332,
1328
+ "textRole": "body",
1329
+ "fontSize": 11,
1330
+ "textCapacity": 2
1331
+ },
1332
+ {
1333
+ "kind": "text",
1334
+ "x": 64,
1335
+ "y": 480,
1336
+ "width": 40,
1337
+ "height": 29.333333333333332,
1338
+ "textRole": "body",
1339
+ "fontSize": 11,
1340
+ "textCapacity": 2
1341
+ },
1342
+ {
1343
+ "kind": "text",
1344
+ "x": 64,
1345
+ "y": 405.3333333333333,
1346
+ "width": 40,
1347
+ "height": 29.333333333333332,
1348
+ "textRole": "body",
1349
+ "fontSize": 11,
1350
+ "textCapacity": 2
1351
+ },
1352
+ {
1353
+ "kind": "text",
1354
+ "x": 64,
1355
+ "y": 330.6666666666667,
1356
+ "width": 40,
1357
+ "height": 29.333333333333332,
1358
+ "textRole": "body",
1359
+ "fontSize": 11,
1360
+ "textCapacity": 2
1361
+ },
1362
+ {
1363
+ "kind": "text",
1364
+ "x": 64,
1365
+ "y": 256,
1366
+ "width": 40,
1367
+ "height": 29.333333333333332,
1368
+ "textRole": "body",
1369
+ "fontSize": 11,
1370
+ "textCapacity": 2
1371
+ },
1372
+ {
1373
+ "kind": "shape",
1374
+ "x": 134.4,
1375
+ "y": 462.18666666666667,
1376
+ "width": 8.533333333333333,
1377
+ "height": 8.533333333333333,
1378
+ "shape": "ellipse",
1379
+ "fill": "243F35"
1380
+ },
1381
+ {
1382
+ "kind": "text",
1383
+ "x": 108,
1384
+ "y": 426.4533333333333,
1385
+ "width": 62.666666666666664,
1386
+ "height": 33.333333333333336,
1387
+ "textRole": "body",
1388
+ "fontSize": 15,
1389
+ "textCapacity": 3
1390
+ },
1391
+ {
1392
+ "kind": "text",
1393
+ "x": 117.33333333333333,
1394
+ "y": 582.6666666666666,
1395
+ "width": 49.333333333333336,
1396
+ "height": 32,
1397
+ "textRole": "body",
1398
+ "fontSize": 12,
1399
+ "textCapacity": 3
1400
+ },
1401
+ {
1402
+ "kind": "shape",
1403
+ "x": 265.06666666666666,
1404
+ "y": 438.29333333333335,
1405
+ "width": 8.533333333333333,
1406
+ "height": 8.533333333333333,
1407
+ "shape": "ellipse",
1408
+ "fill": "243F35"
1409
+ },
1410
+ {
1411
+ "kind": "text",
1412
+ "x": 238.66666666666666,
1413
+ "y": 402.56,
1414
+ "width": 62.666666666666664,
1415
+ "height": 33.333333333333336,
1416
+ "textRole": "body",
1417
+ "fontSize": 15,
1418
+ "textCapacity": 3
1419
+ },
1420
+ {
1421
+ "kind": "text",
1422
+ "x": 248,
1423
+ "y": 582.6666666666666,
1424
+ "width": 49.333333333333336,
1425
+ "height": 32,
1426
+ "textRole": "body",
1427
+ "fontSize": 12,
1428
+ "textCapacity": 3
1429
+ },
1430
+ {
1431
+ "kind": "shape",
1432
+ "x": 395.73333333333335,
1433
+ "y": 381.5466666666667,
1434
+ "width": 8.533333333333333,
1435
+ "height": 8.533333333333333,
1436
+ "shape": "ellipse",
1437
+ "fill": "243F35"
1438
+ },
1439
+ {
1440
+ "kind": "text",
1441
+ "x": 369.3333333333333,
1442
+ "y": 345.81333333333333,
1443
+ "width": 62.666666666666664,
1444
+ "height": 33.333333333333336,
1445
+ "textRole": "body",
1446
+ "fontSize": 15,
1447
+ "textCapacity": 3
1448
+ },
1449
+ {
1450
+ "kind": "text",
1451
+ "x": 378.6666666666667,
1452
+ "y": 582.6666666666666,
1453
+ "width": 49.333333333333336,
1454
+ "height": 32,
1455
+ "textRole": "body",
1456
+ "fontSize": 12,
1457
+ "textCapacity": 3
1458
+ },
1459
+ {
1460
+ "kind": "shape",
1461
+ "x": 524,
1462
+ "y": 385.12000000000006,
1463
+ "width": 13.333333333333334,
1464
+ "height": 13.333333333333334,
1465
+ "shape": "ellipse",
1466
+ "fill": "447A62"
1467
+ },
1468
+ {
1469
+ "kind": "text",
1470
+ "x": 500,
1471
+ "y": 351.7866666666667,
1472
+ "width": 62.666666666666664,
1473
+ "height": 33.333333333333336,
1474
+ "textRole": "body",
1475
+ "fontSize": 15,
1476
+ "textCapacity": 3
1477
+ },
1478
+ {
1479
+ "kind": "text",
1480
+ "x": 509.3333333333333,
1481
+ "y": 582.6666666666666,
1482
+ "width": 49.333333333333336,
1483
+ "height": 32,
1484
+ "textRole": "body",
1485
+ "fontSize": 12,
1486
+ "textCapacity": 3
1487
+ },
1488
+ {
1489
+ "kind": "shape",
1490
+ "x": 657.0666666666667,
1491
+ "y": 336.74666666666667,
1492
+ "width": 8.533333333333333,
1493
+ "height": 8.533333333333333,
1494
+ "shape": "ellipse",
1495
+ "fill": "243F35"
1496
+ },
1497
+ {
1498
+ "kind": "text",
1499
+ "x": 630.6666666666666,
1500
+ "y": 301.0133333333333,
1501
+ "width": 62.666666666666664,
1502
+ "height": 33.333333333333336,
1503
+ "textRole": "body",
1504
+ "fontSize": 15,
1505
+ "textCapacity": 3
1506
+ },
1507
+ {
1508
+ "kind": "text",
1509
+ "x": 640,
1510
+ "y": 582.6666666666666,
1511
+ "width": 49.333333333333336,
1512
+ "height": 32,
1513
+ "textRole": "body",
1514
+ "fontSize": 12,
1515
+ "textCapacity": 3
1516
+ },
1517
+ {
1518
+ "kind": "shape",
1519
+ "x": 787.7333333333332,
1520
+ "y": 300.9066666666667,
1521
+ "width": 8.533333333333333,
1522
+ "height": 8.533333333333333,
1523
+ "shape": "ellipse",
1524
+ "fill": "243F35"
1525
+ },
1526
+ {
1527
+ "kind": "text",
1528
+ "x": 761.3333333333334,
1529
+ "y": 265.17333333333335,
1530
+ "width": 62.666666666666664,
1531
+ "height": 33.333333333333336,
1532
+ "textRole": "body",
1533
+ "fontSize": 15,
1534
+ "textCapacity": 3
1535
+ },
1536
+ {
1537
+ "kind": "text",
1538
+ "x": 770.6666666666666,
1539
+ "y": 582.6666666666666,
1540
+ "width": 49.333333333333336,
1541
+ "height": 32,
1542
+ "textRole": "body",
1543
+ "fontSize": 12,
1544
+ "textCapacity": 3
1545
+ },
1546
+ {
1547
+ "kind": "text",
1548
+ "x": 365.3333333333333,
1549
+ "y": 248,
1550
+ "width": 206.66666666666666,
1551
+ "height": 33.333333333333336,
1552
+ "textRole": "body",
1553
+ "fontSize": 13,
1554
+ "textCapacity": 11
1555
+ },
1556
+ {
1557
+ "kind": "text",
1558
+ "x": 905.3333333333334,
1559
+ "y": 217.33333333333334,
1560
+ "width": 310.6666666666667,
1561
+ "height": 33.333333333333336,
1562
+ "textRole": "body",
1563
+ "fontSize": 13,
1564
+ "textCapacity": 17
1565
+ },
1566
+ {
1567
+ "kind": "title",
1568
+ "x": 905.3333333333334,
1569
+ "y": 269.3333333333333,
1570
+ "width": 310.6666666666667,
1571
+ "height": 104,
1572
+ "textRole": "title",
1573
+ "fontSize": 56,
1574
+ "textCapacity": 4
1575
+ },
1576
+ {
1577
+ "kind": "text",
1578
+ "x": 905.3333333333334,
1579
+ "y": 381.3333333333333,
1580
+ "width": 305.3333333333333,
1581
+ "height": 73.33333333333333,
1582
+ "textRole": "body",
1583
+ "fontSize": 18,
1584
+ "textCapacity": 24
1585
+ },
1586
+ {
1587
+ "kind": "text",
1588
+ "x": 905.3333333333334,
1589
+ "y": 492,
1590
+ "width": 305.3333333333333,
1591
+ "height": 29.333333333333332,
1592
+ "textRole": "body",
1593
+ "fontSize": 10,
1594
+ "textCapacity": 44
1595
+ },
1596
+ {
1597
+ "kind": "text",
1598
+ "x": 905.3333333333334,
1599
+ "y": 538.6666666666666,
1600
+ "width": 305.3333333333333,
1601
+ "height": 66.66666666666667,
1602
+ "textRole": "body",
1603
+ "fontSize": 20,
1604
+ "textCapacity": 22
1605
+ },
1606
+ {
1607
+ "kind": "text",
1608
+ "x": 64,
1609
+ "y": 633.3333333333334,
1610
+ "width": 1152,
1611
+ "height": 33.333333333333336,
1612
+ "textRole": "body",
1613
+ "fontSize": 13,
1614
+ "textCapacity": 66
1615
+ },
1616
+ {
1617
+ "kind": "text",
1618
+ "x": 64,
1619
+ "y": 676,
1620
+ "width": 1044,
1621
+ "height": 21.333333333333332,
1622
+ "textRole": "body",
1623
+ "fontSize": 9,
1624
+ "textCapacity": 87
1625
+ },
1626
+ {
1627
+ "kind": "text",
1628
+ "x": 1161.3333333333333,
1629
+ "y": 672,
1630
+ "width": 54.666666666666664,
1631
+ "height": 29.333333333333332,
1632
+ "textRole": "body",
1633
+ "fontSize": 11,
1634
+ "textCapacity": 3
1635
+ }
1636
+ ],
1637
+ "jsxReference": ""
1638
+ },
1639
+ {
1640
+ "slideNumber": 7,
1641
+ "sourceTitle": "Locate the friction along the journey",
1642
+ "family": "process",
1643
+ "titlePosition": "left",
1644
+ "bodyColumns": 2,
1645
+ "density": "high",
1646
+ "features": [
1647
+ "journey"
1648
+ ],
1649
+ "recommendedRoles": [
1650
+ "process"
1651
+ ],
1652
+ "structureSummary": "Four stages aligned across actions and independent outcome measures",
1653
+ "zones": [
1654
+ {
1655
+ "kind": "text",
1656
+ "x": 64,
1657
+ "y": 36,
1658
+ "width": 886.6666666666666,
1659
+ "height": 26.666666666666668,
1660
+ "textRole": "body",
1661
+ "fontSize": 10,
1662
+ "textCapacity": 66
1663
+ },
1664
+ {
1665
+ "kind": "title",
1666
+ "x": 64,
1667
+ "y": 101.33333333333333,
1668
+ "width": 1152,
1669
+ "height": 85.33333333333333,
1670
+ "textRole": "title",
1671
+ "fontSize": 32,
1672
+ "textCapacity": 27
1673
+ },
1674
+ {
1675
+ "kind": "text",
1676
+ "x": 1005.3333333333334,
1677
+ "y": 61.333333333333336,
1678
+ "width": 210.66666666666666,
1679
+ "height": 17.333333333333332,
1680
+ "textRole": "body",
1681
+ "fontSize": 9,
1682
+ "textCapacity": 17
1683
+ },
1684
+ {
1685
+ "kind": "text",
1686
+ "x": 64,
1687
+ "y": 250.66666666666666,
1688
+ "width": 153.33333333333334,
1689
+ "height": 40,
1690
+ "textRole": "body",
1691
+ "fontSize": 12,
1692
+ "textCapacity": 18
1693
+ },
1694
+ {
1695
+ "kind": "text",
1696
+ "x": 64,
1697
+ "y": 376,
1698
+ "width": 153.33333333333334,
1699
+ "height": 40,
1700
+ "textRole": "body",
1701
+ "fontSize": 12,
1702
+ "textCapacity": 18
1703
+ },
1704
+ {
1705
+ "kind": "text",
1706
+ "x": 64,
1707
+ "y": 501.3333333333333,
1708
+ "width": 153.33333333333334,
1709
+ "height": 40,
1710
+ "textRole": "body",
1711
+ "fontSize": 12,
1712
+ "textCapacity": 18
1713
+ },
1714
+ {
1715
+ "kind": "shape",
1716
+ "x": 244,
1717
+ "y": 232,
1718
+ "width": 222.66666666666666,
1719
+ "height": 84,
1720
+ "shape": "rect",
1721
+ "fill": "E5EBDD"
1722
+ },
1723
+ {
1724
+ "kind": "text",
1725
+ "x": 260,
1726
+ "y": 249.33333333333334,
1727
+ "width": 190.66666666666666,
1728
+ "height": 58.666666666666664,
1729
+ "textRole": "body",
1730
+ "fontSize": 18,
1731
+ "textCapacity": 14
1732
+ },
1733
+ {
1734
+ "kind": "text",
1735
+ "x": 244,
1736
+ "y": 372,
1737
+ "width": 212,
1738
+ "height": 82.66666666666667,
1739
+ "textRole": "body",
1740
+ "fontSize": 20,
1741
+ "textCapacity": 14
1742
+ },
1743
+ {
1744
+ "kind": "title",
1745
+ "x": 244,
1746
+ "y": 490.6666666666667,
1747
+ "width": 212,
1748
+ "height": 73.33333333333333,
1749
+ "textRole": "title",
1750
+ "fontSize": 35,
1751
+ "textCapacity": 4
1752
+ },
1753
+ {
1754
+ "kind": "shape",
1755
+ "x": 488,
1756
+ "y": 232,
1757
+ "width": 222.66666666666666,
1758
+ "height": 84,
1759
+ "shape": "rect",
1760
+ "fill": "447A62"
1761
+ },
1762
+ {
1763
+ "kind": "text",
1764
+ "x": 504,
1765
+ "y": 249.33333333333334,
1766
+ "width": 190.66666666666666,
1767
+ "height": 58.666666666666664,
1768
+ "textRole": "body",
1769
+ "fontSize": 18,
1770
+ "textCapacity": 14
1771
+ },
1772
+ {
1773
+ "kind": "text",
1774
+ "x": 488,
1775
+ "y": 372,
1776
+ "width": 212,
1777
+ "height": 82.66666666666667,
1778
+ "textRole": "body",
1779
+ "fontSize": 20,
1780
+ "textCapacity": 14
1781
+ },
1782
+ {
1783
+ "kind": "title",
1784
+ "x": 488,
1785
+ "y": 490.6666666666667,
1786
+ "width": 212,
1787
+ "height": 73.33333333333333,
1788
+ "textRole": "title",
1789
+ "fontSize": 35,
1790
+ "textCapacity": 4
1791
+ },
1792
+ {
1793
+ "kind": "shape",
1794
+ "x": 732,
1795
+ "y": 232,
1796
+ "width": 222.66666666666666,
1797
+ "height": 84,
1798
+ "shape": "rect",
1799
+ "fill": "E5EBDD"
1800
+ },
1801
+ {
1802
+ "kind": "text",
1803
+ "x": 748,
1804
+ "y": 249.33333333333334,
1805
+ "width": 190.66666666666666,
1806
+ "height": 58.666666666666664,
1807
+ "textRole": "body",
1808
+ "fontSize": 18,
1809
+ "textCapacity": 14
1810
+ },
1811
+ {
1812
+ "kind": "text",
1813
+ "x": 732,
1814
+ "y": 372,
1815
+ "width": 212,
1816
+ "height": 82.66666666666667,
1817
+ "textRole": "body",
1818
+ "fontSize": 20,
1819
+ "textCapacity": 14
1820
+ },
1821
+ {
1822
+ "kind": "title",
1823
+ "x": 732,
1824
+ "y": 490.6666666666667,
1825
+ "width": 212,
1826
+ "height": 73.33333333333333,
1827
+ "textRole": "title",
1828
+ "fontSize": 35,
1829
+ "textCapacity": 4
1830
+ },
1831
+ {
1832
+ "kind": "shape",
1833
+ "x": 976,
1834
+ "y": 232,
1835
+ "width": 222.66666666666666,
1836
+ "height": 84,
1837
+ "shape": "rect",
1838
+ "fill": "E5EBDD"
1839
+ },
1840
+ {
1841
+ "kind": "text",
1842
+ "x": 992,
1843
+ "y": 249.33333333333334,
1844
+ "width": 190.66666666666666,
1845
+ "height": 58.666666666666664,
1846
+ "textRole": "body",
1847
+ "fontSize": 18,
1848
+ "textCapacity": 14
1849
+ },
1850
+ {
1851
+ "kind": "text",
1852
+ "x": 976,
1853
+ "y": 372,
1854
+ "width": 212,
1855
+ "height": 82.66666666666667,
1856
+ "textRole": "body",
1857
+ "fontSize": 20,
1858
+ "textCapacity": 14
1859
+ },
1860
+ {
1861
+ "kind": "title",
1862
+ "x": 976,
1863
+ "y": 490.6666666666667,
1864
+ "width": 212,
1865
+ "height": 73.33333333333333,
1866
+ "textRole": "title",
1867
+ "fontSize": 35,
1868
+ "textCapacity": 4
1869
+ },
1870
+ {
1871
+ "kind": "text",
1872
+ "x": 64,
1873
+ "y": 633.3333333333334,
1874
+ "width": 1152,
1875
+ "height": 33.333333333333336,
1876
+ "textRole": "body",
1877
+ "fontSize": 13,
1878
+ "textCapacity": 66
1879
+ },
1880
+ {
1881
+ "kind": "text",
1882
+ "x": 64,
1883
+ "y": 676,
1884
+ "width": 1044,
1885
+ "height": 21.333333333333332,
1886
+ "textRole": "body",
1887
+ "fontSize": 9,
1888
+ "textCapacity": 87
1889
+ },
1890
+ {
1891
+ "kind": "text",
1892
+ "x": 1161.3333333333333,
1893
+ "y": 672,
1894
+ "width": 54.666666666666664,
1895
+ "height": 29.333333333333332,
1896
+ "textRole": "body",
1897
+ "fontSize": 11,
1898
+ "textCapacity": 3
1899
+ }
1900
+ ],
1901
+ "jsxReference": ""
1902
+ },
1903
+ {
1904
+ "slideNumber": 8,
1905
+ "sourceTitle": "Design the test before reading the result",
1906
+ "family": "comparison",
1907
+ "titlePosition": "left",
1908
+ "bodyColumns": 2,
1909
+ "density": "high",
1910
+ "features": [
1911
+ "experiment"
1912
+ ],
1913
+ "recommendedRoles": [
1914
+ "comparison"
1915
+ ],
1916
+ "structureSummary": "One hypothesis with comparison, measure and a predeclared decision rule",
1917
+ "zones": [
1918
+ {
1919
+ "kind": "text",
1920
+ "x": 64,
1921
+ "y": 36,
1922
+ "width": 886.6666666666666,
1923
+ "height": 26.666666666666668,
1924
+ "textRole": "body",
1925
+ "fontSize": 10,
1926
+ "textCapacity": 66
1927
+ },
1928
+ {
1929
+ "kind": "title",
1930
+ "x": 64,
1931
+ "y": 101.33333333333333,
1932
+ "width": 1152,
1933
+ "height": 85.33333333333333,
1934
+ "textRole": "title",
1935
+ "fontSize": 32,
1936
+ "textCapacity": 27
1937
+ },
1938
+ {
1939
+ "kind": "text",
1940
+ "x": 1005.3333333333334,
1941
+ "y": 61.333333333333336,
1942
+ "width": 210.66666666666666,
1943
+ "height": 17.333333333333332,
1944
+ "textRole": "body",
1945
+ "fontSize": 9,
1946
+ "textCapacity": 17
1947
+ },
1948
+ {
1949
+ "kind": "title",
1950
+ "x": 64,
1951
+ "y": 232,
1952
+ "width": 366.6666666666667,
1953
+ "height": 138.66666666666666,
1954
+ "textRole": "title",
1955
+ "fontSize": 32,
1956
+ "textCapacity": 16
1957
+ },
1958
+ {
1959
+ "kind": "text",
1960
+ "x": 64,
1961
+ "y": 441.3333333333333,
1962
+ "width": 370.6666666666667,
1963
+ "height": 156,
1964
+ "textRole": "body",
1965
+ "fontSize": 21,
1966
+ "textCapacity": 65
1967
+ },
1968
+ {
1969
+ "kind": "text",
1970
+ "x": 536,
1971
+ "y": 236,
1972
+ "width": 188,
1973
+ "height": 45.333333333333336,
1974
+ "textRole": "body",
1975
+ "fontSize": 18,
1976
+ "textCapacity": 7
1977
+ },
1978
+ {
1979
+ "kind": "text",
1980
+ "x": 748,
1981
+ "y": 236,
1982
+ "width": 466.6666666666667,
1983
+ "height": 77.33333333333333,
1984
+ "textRole": "body",
1985
+ "fontSize": 18,
1986
+ "textCapacity": 38
1987
+ },
1988
+ {
1989
+ "kind": "text",
1990
+ "x": 536,
1991
+ "y": 330.6666666666667,
1992
+ "width": 188,
1993
+ "height": 45.333333333333336,
1994
+ "textRole": "body",
1995
+ "fontSize": 18,
1996
+ "textCapacity": 7
1997
+ },
1998
+ {
1999
+ "kind": "text",
2000
+ "x": 748,
2001
+ "y": 330.6666666666667,
2002
+ "width": 466.6666666666667,
2003
+ "height": 77.33333333333333,
2004
+ "textRole": "body",
2005
+ "fontSize": 18,
2006
+ "textCapacity": 38
2007
+ },
2008
+ {
2009
+ "kind": "text",
2010
+ "x": 536,
2011
+ "y": 425.3333333333333,
2012
+ "width": 188,
2013
+ "height": 45.333333333333336,
2014
+ "textRole": "body",
2015
+ "fontSize": 18,
2016
+ "textCapacity": 7
2017
+ },
2018
+ {
2019
+ "kind": "text",
2020
+ "x": 748,
2021
+ "y": 425.3333333333333,
2022
+ "width": 466.6666666666667,
2023
+ "height": 77.33333333333333,
2024
+ "textRole": "body",
2025
+ "fontSize": 18,
2026
+ "textCapacity": 38
2027
+ },
2028
+ {
2029
+ "kind": "text",
2030
+ "x": 536,
2031
+ "y": 520,
2032
+ "width": 188,
2033
+ "height": 45.333333333333336,
2034
+ "textRole": "body",
2035
+ "fontSize": 18,
2036
+ "textCapacity": 7
2037
+ },
2038
+ {
2039
+ "kind": "text",
2040
+ "x": 748,
2041
+ "y": 520,
2042
+ "width": 466.6666666666667,
2043
+ "height": 77.33333333333333,
2044
+ "textRole": "body",
2045
+ "fontSize": 18,
2046
+ "textCapacity": 38
2047
+ },
2048
+ {
2049
+ "kind": "text",
2050
+ "x": 64,
2051
+ "y": 633.3333333333334,
2052
+ "width": 1152,
2053
+ "height": 33.333333333333336,
2054
+ "textRole": "body",
2055
+ "fontSize": 13,
2056
+ "textCapacity": 66
2057
+ },
2058
+ {
2059
+ "kind": "text",
2060
+ "x": 64,
2061
+ "y": 676,
2062
+ "width": 1044,
2063
+ "height": 21.333333333333332,
2064
+ "textRole": "body",
2065
+ "fontSize": 9,
2066
+ "textCapacity": 87
2067
+ },
2068
+ {
2069
+ "kind": "text",
2070
+ "x": 1161.3333333333333,
2071
+ "y": 672,
2072
+ "width": 54.666666666666664,
2073
+ "height": 29.333333333333332,
2074
+ "textRole": "body",
2075
+ "fontSize": 11,
2076
+ "textCapacity": 3
2077
+ }
2078
+ ],
2079
+ "jsxReference": ""
2080
+ },
2081
+ {
2082
+ "slideNumber": 9,
2083
+ "sourceTitle": "A small intervention, a measurable change",
2084
+ "family": "comparison",
2085
+ "titlePosition": "left",
2086
+ "bodyColumns": 2,
2087
+ "density": "high",
2088
+ "features": [
2089
+ "case"
2090
+ ],
2091
+ "recommendedRoles": [
2092
+ "comparison"
2093
+ ],
2094
+ "structureSummary": "Intervention narrative beside paired before and after comparisons",
2095
+ "zones": [
2096
+ {
2097
+ "kind": "text",
2098
+ "x": 64,
2099
+ "y": 36,
2100
+ "width": 886.6666666666666,
2101
+ "height": 26.666666666666668,
2102
+ "textRole": "body",
2103
+ "fontSize": 10,
2104
+ "textCapacity": 66
2105
+ },
2106
+ {
2107
+ "kind": "title",
2108
+ "x": 64,
2109
+ "y": 101.33333333333333,
2110
+ "width": 1152,
2111
+ "height": 85.33333333333333,
2112
+ "textRole": "title",
2113
+ "fontSize": 32,
2114
+ "textCapacity": 27
2115
+ },
2116
+ {
2117
+ "kind": "text",
2118
+ "x": 1005.3333333333334,
2119
+ "y": 61.333333333333336,
2120
+ "width": 210.66666666666666,
2121
+ "height": 17.333333333333332,
2122
+ "textRole": "body",
2123
+ "fontSize": 9,
2124
+ "textCapacity": 17
2125
+ },
2126
+ {
2127
+ "kind": "text",
2128
+ "x": 64,
2129
+ "y": 224,
2130
+ "width": 386.6666666666667,
2131
+ "height": 34.666666666666664,
2132
+ "textRole": "body",
2133
+ "fontSize": 12,
2134
+ "textCapacity": 24
2135
+ },
2136
+ {
2137
+ "kind": "title",
2138
+ "x": 64,
2139
+ "y": 289.3333333333333,
2140
+ "width": 384,
2141
+ "height": 161.33333333333334,
2142
+ "textRole": "title",
2143
+ "fontSize": 34,
2144
+ "textCapacity": 24
2145
+ },
2146
+ {
2147
+ "kind": "text",
2148
+ "x": 64,
2149
+ "y": 492,
2150
+ "width": 374.6666666666667,
2151
+ "height": 104,
2152
+ "textRole": "body",
2153
+ "fontSize": 20,
2154
+ "textCapacity": 42
2155
+ },
2156
+ {
2157
+ "kind": "text",
2158
+ "x": 552,
2159
+ "y": 232,
2160
+ "width": 649.3333333333334,
2161
+ "height": 42.666666666666664,
2162
+ "textRole": "body",
2163
+ "fontSize": 20,
2164
+ "textCapacity": 24
2165
+ },
2166
+ {
2167
+ "kind": "shape",
2168
+ "x": 553.3333333333334,
2169
+ "y": 300,
2170
+ "width": 181.44000000000003,
2171
+ "height": 26.666666666666668,
2172
+ "shape": "rect",
2173
+ "fill": "b8beb4"
2174
+ },
2175
+ {
2176
+ "kind": "shape",
2177
+ "x": 553.3333333333334,
2178
+ "y": 340,
2179
+ "width": 328.32,
2180
+ "height": 26.666666666666668,
2181
+ "shape": "rect",
2182
+ "fill": "447A62"
2183
+ },
2184
+ {
2185
+ "kind": "text",
2186
+ "x": 1005.3333333333334,
2187
+ "y": 305.3333333333333,
2188
+ "width": 210.66666666666666,
2189
+ "height": 60,
2190
+ "textRole": "body",
2191
+ "fontSize": 23,
2192
+ "textCapacity": 6
2193
+ },
2194
+ {
2195
+ "kind": "text",
2196
+ "x": 552,
2197
+ "y": 421.3333333333333,
2198
+ "width": 649.3333333333334,
2199
+ "height": 42.666666666666664,
2200
+ "textRole": "body",
2201
+ "fontSize": 20,
2202
+ "textCapacity": 24
2203
+ },
2204
+ {
2205
+ "kind": "shape",
2206
+ "x": 553.3333333333334,
2207
+ "y": 489.3333333333333,
2208
+ "width": 345.59999999999997,
2209
+ "height": 26.666666666666668,
2210
+ "shape": "rect",
2211
+ "fill": "b8beb4"
2212
+ },
2213
+ {
2214
+ "kind": "shape",
2215
+ "x": 553.3333333333334,
2216
+ "y": 529.3333333333334,
2217
+ "width": 129.6,
2218
+ "height": 26.666666666666668,
2219
+ "shape": "rect",
2220
+ "fill": "447A62"
2221
+ },
2222
+ {
2223
+ "kind": "text",
2224
+ "x": 1005.3333333333334,
2225
+ "y": 494.6666666666667,
2226
+ "width": 210.66666666666666,
2227
+ "height": 60,
2228
+ "textRole": "body",
2229
+ "fontSize": 23,
2230
+ "textCapacity": 6
2231
+ },
2232
+ {
2233
+ "kind": "text",
2234
+ "x": 64,
2235
+ "y": 633.3333333333334,
2236
+ "width": 1152,
2237
+ "height": 33.333333333333336,
2238
+ "textRole": "body",
2239
+ "fontSize": 13,
2240
+ "textCapacity": 66
2241
+ },
2242
+ {
2243
+ "kind": "text",
2244
+ "x": 64,
2245
+ "y": 676,
2246
+ "width": 1044,
2247
+ "height": 21.333333333333332,
2248
+ "textRole": "body",
2249
+ "fontSize": 9,
2250
+ "textCapacity": 87
2251
+ },
2252
+ {
2253
+ "kind": "text",
2254
+ "x": 1161.3333333333333,
2255
+ "y": 672,
2256
+ "width": 54.666666666666664,
2257
+ "height": 29.333333333333332,
2258
+ "textRole": "body",
2259
+ "fontSize": 11,
2260
+ "textCapacity": 3
2261
+ }
2262
+ ],
2263
+ "jsxReference": ""
2264
+ },
2265
+ {
2266
+ "slideNumber": 10,
2267
+ "sourceTitle": "Show how the judgment develops",
2268
+ "family": "process",
2269
+ "titlePosition": "left",
2270
+ "bodyColumns": 2,
2271
+ "density": "medium",
2272
+ "features": [
2273
+ "timeline"
2274
+ ],
2275
+ "recommendedRoles": [
2276
+ "process"
2277
+ ],
2278
+ "structureSummary": "Alternating milestone notes around a continuous argument timeline",
2279
+ "zones": [
2280
+ {
2281
+ "kind": "text",
2282
+ "x": 64,
2283
+ "y": 36,
2284
+ "width": 886.6666666666666,
2285
+ "height": 26.666666666666668,
2286
+ "textRole": "body",
2287
+ "fontSize": 10,
2288
+ "textCapacity": 66
2289
+ },
2290
+ {
2291
+ "kind": "title",
2292
+ "x": 64,
2293
+ "y": 101.33333333333333,
2294
+ "width": 1152,
2295
+ "height": 85.33333333333333,
2296
+ "textRole": "title",
2297
+ "fontSize": 32,
2298
+ "textCapacity": 27
2299
+ },
2300
+ {
2301
+ "kind": "text",
2302
+ "x": 1005.3333333333334,
2303
+ "y": 61.333333333333336,
2304
+ "width": 210.66666666666666,
2305
+ "height": 17.333333333333332,
2306
+ "textRole": "body",
2307
+ "fontSize": 9,
2308
+ "textCapacity": 17
2309
+ },
2310
+ {
2311
+ "kind": "shape",
2312
+ "x": 117.33333333333333,
2313
+ "y": 377.3333333333333,
2314
+ "width": 18.666666666666668,
2315
+ "height": 18.666666666666668,
2316
+ "shape": "ellipse",
2317
+ "fill": "447A62"
2318
+ },
2319
+ {
2320
+ "kind": "text",
2321
+ "x": 142.66666666666666,
2322
+ "y": 397.3333333333333,
2323
+ "width": 80,
2324
+ "height": 33.333333333333336,
2325
+ "textRole": "body",
2326
+ "fontSize": 13,
2327
+ "textCapacity": 4
2328
+ },
2329
+ {
2330
+ "kind": "text",
2331
+ "x": 104,
2332
+ "y": 236,
2333
+ "width": 245.33333333333334,
2334
+ "height": 62.666666666666664,
2335
+ "textRole": "body",
2336
+ "fontSize": 27,
2337
+ "textCapacity": 6
2338
+ },
2339
+ {
2340
+ "kind": "text",
2341
+ "x": 104,
2342
+ "y": 298.6666666666667,
2343
+ "width": 242.66666666666666,
2344
+ "height": 76,
2345
+ "textRole": "body",
2346
+ "fontSize": 18,
2347
+ "textCapacity": 20
2348
+ },
2349
+ {
2350
+ "kind": "shape",
2351
+ "x": 402.6666666666667,
2352
+ "y": 377.3333333333333,
2353
+ "width": 18.666666666666668,
2354
+ "height": 18.666666666666668,
2355
+ "shape": "ellipse",
2356
+ "fill": "447A62"
2357
+ },
2358
+ {
2359
+ "kind": "text",
2360
+ "x": 428,
2361
+ "y": 397.3333333333333,
2362
+ "width": 80,
2363
+ "height": 33.333333333333336,
2364
+ "textRole": "body",
2365
+ "fontSize": 13,
2366
+ "textCapacity": 4
2367
+ },
2368
+ {
2369
+ "kind": "text",
2370
+ "x": 389.3333333333333,
2371
+ "y": 440,
2372
+ "width": 245.33333333333334,
2373
+ "height": 62.666666666666664,
2374
+ "textRole": "body",
2375
+ "fontSize": 27,
2376
+ "textCapacity": 6
2377
+ },
2378
+ {
2379
+ "kind": "text",
2380
+ "x": 389.3333333333333,
2381
+ "y": 520,
2382
+ "width": 242.66666666666666,
2383
+ "height": 76,
2384
+ "textRole": "body",
2385
+ "fontSize": 18,
2386
+ "textCapacity": 20
2387
+ },
2388
+ {
2389
+ "kind": "shape",
2390
+ "x": 688,
2391
+ "y": 377.3333333333333,
2392
+ "width": 18.666666666666668,
2393
+ "height": 18.666666666666668,
2394
+ "shape": "ellipse",
2395
+ "fill": "447A62"
2396
+ },
2397
+ {
2398
+ "kind": "text",
2399
+ "x": 713.3333333333334,
2400
+ "y": 397.3333333333333,
2401
+ "width": 80,
2402
+ "height": 33.333333333333336,
2403
+ "textRole": "body",
2404
+ "fontSize": 13,
2405
+ "textCapacity": 4
2406
+ },
2407
+ {
2408
+ "kind": "text",
2409
+ "x": 674.6666666666666,
2410
+ "y": 236,
2411
+ "width": 245.33333333333334,
2412
+ "height": 62.666666666666664,
2413
+ "textRole": "body",
2414
+ "fontSize": 27,
2415
+ "textCapacity": 6
2416
+ },
2417
+ {
2418
+ "kind": "text",
2419
+ "x": 674.6666666666666,
2420
+ "y": 298.6666666666667,
2421
+ "width": 242.66666666666666,
2422
+ "height": 76,
2423
+ "textRole": "body",
2424
+ "fontSize": 18,
2425
+ "textCapacity": 20
2426
+ },
2427
+ {
2428
+ "kind": "shape",
2429
+ "x": 973.3333333333334,
2430
+ "y": 377.3333333333333,
2431
+ "width": 18.666666666666668,
2432
+ "height": 18.666666666666668,
2433
+ "shape": "ellipse",
2434
+ "fill": "447A62"
2435
+ },
2436
+ {
2437
+ "kind": "text",
2438
+ "x": 998.6666666666666,
2439
+ "y": 397.3333333333333,
2440
+ "width": 80,
2441
+ "height": 33.333333333333336,
2442
+ "textRole": "body",
2443
+ "fontSize": 13,
2444
+ "textCapacity": 4
2445
+ },
2446
+ {
2447
+ "kind": "text",
2448
+ "x": 960,
2449
+ "y": 440,
2450
+ "width": 245.33333333333334,
2451
+ "height": 62.666666666666664,
2452
+ "textRole": "body",
2453
+ "fontSize": 27,
2454
+ "textCapacity": 6
2455
+ },
2456
+ {
2457
+ "kind": "text",
2458
+ "x": 960,
2459
+ "y": 520,
2460
+ "width": 242.66666666666666,
2461
+ "height": 76,
2462
+ "textRole": "body",
2463
+ "fontSize": 18,
2464
+ "textCapacity": 20
2465
+ },
2466
+ {
2467
+ "kind": "text",
2468
+ "x": 64,
2469
+ "y": 633.3333333333334,
2470
+ "width": 1152,
2471
+ "height": 33.333333333333336,
2472
+ "textRole": "body",
2473
+ "fontSize": 13,
2474
+ "textCapacity": 66
2475
+ },
2476
+ {
2477
+ "kind": "text",
2478
+ "x": 64,
2479
+ "y": 676,
2480
+ "width": 1044,
2481
+ "height": 21.333333333333332,
2482
+ "textRole": "body",
2483
+ "fontSize": 9,
2484
+ "textCapacity": 87
2485
+ },
2486
+ {
2487
+ "kind": "text",
2488
+ "x": 1161.3333333333333,
2489
+ "y": 672,
2490
+ "width": 54.666666666666664,
2491
+ "height": 29.333333333333332,
2492
+ "textRole": "body",
2493
+ "fontSize": 11,
2494
+ "textCapacity": 3
2495
+ }
2496
+ ],
2497
+ "jsxReference": ""
2498
+ },
2499
+ {
2500
+ "slideNumber": 11,
2501
+ "sourceTitle": "Sequence the work around a decision gate",
2502
+ "family": "process",
2503
+ "titlePosition": "left",
2504
+ "bodyColumns": 2,
2505
+ "density": "high",
2506
+ "features": [
2507
+ "roadmap"
2508
+ ],
2509
+ "recommendedRoles": [
2510
+ "process"
2511
+ ],
2512
+ "structureSummary": "Four timed workstreams and a decision gate",
2513
+ "zones": [
2514
+ {
2515
+ "kind": "text",
2516
+ "x": 64,
2517
+ "y": 36,
2518
+ "width": 886.6666666666666,
2519
+ "height": 26.666666666666668,
2520
+ "textRole": "body",
2521
+ "fontSize": 10,
2522
+ "textCapacity": 66
2523
+ },
2524
+ {
2525
+ "kind": "title",
2526
+ "x": 64,
2527
+ "y": 101.33333333333333,
2528
+ "width": 1152,
2529
+ "height": 85.33333333333333,
2530
+ "textRole": "title",
2531
+ "fontSize": 32,
2532
+ "textCapacity": 27
2533
+ },
2534
+ {
2535
+ "kind": "text",
2536
+ "x": 1005.3333333333334,
2537
+ "y": 61.333333333333336,
2538
+ "width": 210.66666666666666,
2539
+ "height": 17.333333333333332,
2540
+ "textRole": "body",
2541
+ "fontSize": 9,
2542
+ "textCapacity": 17
2543
+ },
2544
+ {
2545
+ "kind": "text",
2546
+ "x": 64,
2547
+ "y": 222.66666666666666,
2548
+ "width": 324,
2549
+ "height": 30.666666666666668,
2550
+ "textRole": "body",
2551
+ "fontSize": 11,
2552
+ "textCapacity": 22
2553
+ },
2554
+ {
2555
+ "kind": "text",
2556
+ "x": 421.3333333333333,
2557
+ "y": 221.33333333333334,
2558
+ "width": 176,
2559
+ "height": 33.333333333333336,
2560
+ "textRole": "body",
2561
+ "fontSize": 12,
2562
+ "textCapacity": 11
2563
+ },
2564
+ {
2565
+ "kind": "text",
2566
+ "x": 617.3333333333334,
2567
+ "y": 221.33333333333334,
2568
+ "width": 176,
2569
+ "height": 33.333333333333336,
2570
+ "textRole": "body",
2571
+ "fontSize": 12,
2572
+ "textCapacity": 11
2573
+ },
2574
+ {
2575
+ "kind": "text",
2576
+ "x": 813.3333333333334,
2577
+ "y": 221.33333333333334,
2578
+ "width": 176,
2579
+ "height": 33.333333333333336,
2580
+ "textRole": "body",
2581
+ "fontSize": 12,
2582
+ "textCapacity": 11
2583
+ },
2584
+ {
2585
+ "kind": "text",
2586
+ "x": 1009.3333333333334,
2587
+ "y": 221.33333333333334,
2588
+ "width": 176,
2589
+ "height": 33.333333333333336,
2590
+ "textRole": "body",
2591
+ "fontSize": 12,
2592
+ "textCapacity": 11
2593
+ },
2594
+ {
2595
+ "kind": "text",
2596
+ "x": 64,
2597
+ "y": 273.3333333333333,
2598
+ "width": 318.6666666666667,
2599
+ "height": 40,
2600
+ "textRole": "body",
2601
+ "fontSize": 18,
2602
+ "textCapacity": 13
2603
+ },
2604
+ {
2605
+ "kind": "text",
2606
+ "x": 64,
2607
+ "y": 313.3333333333333,
2608
+ "width": 318.6666666666667,
2609
+ "height": 32,
2610
+ "textRole": "body",
2611
+ "fontSize": 11,
2612
+ "textCapacity": 21
2613
+ },
2614
+ {
2615
+ "kind": "shape",
2616
+ "x": 406.6666666666667,
2617
+ "y": 289.3333333333333,
2618
+ "width": 176.4,
2619
+ "height": 29.333333333333332,
2620
+ "shape": "rect",
2621
+ "fill": "bec3ba"
2622
+ },
2623
+ {
2624
+ "kind": "shape",
2625
+ "x": 579.0666666666667,
2626
+ "y": 300,
2627
+ "width": 8,
2628
+ "height": 8,
2629
+ "shape": "ellipse",
2630
+ "fill": "839087"
2631
+ },
2632
+ {
2633
+ "kind": "text",
2634
+ "x": 64,
2635
+ "y": 354.6666666666667,
2636
+ "width": 318.6666666666667,
2637
+ "height": 40,
2638
+ "textRole": "body",
2639
+ "fontSize": 18,
2640
+ "textCapacity": 13
2641
+ },
2642
+ {
2643
+ "kind": "text",
2644
+ "x": 64,
2645
+ "y": 394.6666666666667,
2646
+ "width": 318.6666666666667,
2647
+ "height": 32,
2648
+ "textRole": "body",
2649
+ "fontSize": 11,
2650
+ "textCapacity": 21
2651
+ },
2652
+ {
2653
+ "kind": "shape",
2654
+ "x": 543.8666666666667,
2655
+ "y": 370.6666666666667,
2656
+ "width": 254.79999999999998,
2657
+ "height": 29.333333333333332,
2658
+ "shape": "rect",
2659
+ "fill": "bec3ba"
2660
+ },
2661
+ {
2662
+ "kind": "shape",
2663
+ "x": 794.6666666666666,
2664
+ "y": 381.3333333333333,
2665
+ "width": 8,
2666
+ "height": 8,
2667
+ "shape": "ellipse",
2668
+ "fill": "839087"
2669
+ },
2670
+ {
2671
+ "kind": "text",
2672
+ "x": 64,
2673
+ "y": 436,
2674
+ "width": 318.6666666666667,
2675
+ "height": 40,
2676
+ "textRole": "body",
2677
+ "fontSize": 18,
2678
+ "textCapacity": 13
2679
+ },
2680
+ {
2681
+ "kind": "text",
2682
+ "x": 64,
2683
+ "y": 476,
2684
+ "width": 318.6666666666667,
2685
+ "height": 32,
2686
+ "textRole": "body",
2687
+ "fontSize": 11,
2688
+ "textCapacity": 21
2689
+ },
2690
+ {
2691
+ "kind": "shape",
2692
+ "x": 759.4666666666667,
2693
+ "y": 452,
2694
+ "width": 215.60000000000002,
2695
+ "height": 29.333333333333332,
2696
+ "shape": "rect",
2697
+ "fill": "243F35"
2698
+ },
2699
+ {
2700
+ "kind": "shape",
2701
+ "x": 971.0666666666667,
2702
+ "y": 462.6666666666667,
2703
+ "width": 8,
2704
+ "height": 8,
2705
+ "shape": "ellipse",
2706
+ "fill": "243F35"
2707
+ },
2708
+ {
2709
+ "kind": "text",
2710
+ "x": 64,
2711
+ "y": 517.3333333333334,
2712
+ "width": 318.6666666666667,
2713
+ "height": 40,
2714
+ "textRole": "body",
2715
+ "fontSize": 18,
2716
+ "textCapacity": 13
2717
+ },
2718
+ {
2719
+ "kind": "text",
2720
+ "x": 64,
2721
+ "y": 557.3333333333334,
2722
+ "width": 318.6666666666667,
2723
+ "height": 32,
2724
+ "textRole": "body",
2725
+ "fontSize": 11,
2726
+ "textCapacity": 21
2727
+ },
2728
+ {
2729
+ "kind": "shape",
2730
+ "x": 955.4666666666666,
2731
+ "y": 533.3333333333334,
2732
+ "width": 235.20000000000002,
2733
+ "height": 29.333333333333332,
2734
+ "shape": "rect",
2735
+ "fill": "bec3ba"
2736
+ },
2737
+ {
2738
+ "kind": "shape",
2739
+ "x": 1186.6666666666665,
2740
+ "y": 544,
2741
+ "width": 8,
2742
+ "height": 8,
2743
+ "shape": "ellipse",
2744
+ "fill": "839087"
2745
+ },
2746
+ {
2747
+ "kind": "shape",
2748
+ "x": 949.3333333333334,
2749
+ "y": 592,
2750
+ "width": 10.666666666666666,
2751
+ "height": 10.666666666666666,
2752
+ "shape": "ellipse",
2753
+ "fill": "447A62"
2754
+ },
2755
+ {
2756
+ "kind": "text",
2757
+ "x": 64,
2758
+ "y": 633.3333333333334,
2759
+ "width": 1152,
2760
+ "height": 33.333333333333336,
2761
+ "textRole": "body",
2762
+ "fontSize": 13,
2763
+ "textCapacity": 66
2764
+ },
2765
+ {
2766
+ "kind": "text",
2767
+ "x": 64,
2768
+ "y": 676,
2769
+ "width": 1044,
2770
+ "height": 21.333333333333332,
2771
+ "textRole": "body",
2772
+ "fontSize": 9,
2773
+ "textCapacity": 87
2774
+ },
2775
+ {
2776
+ "kind": "text",
2777
+ "x": 1161.3333333333333,
2778
+ "y": 672,
2779
+ "width": 54.666666666666664,
2780
+ "height": 29.333333333333332,
2781
+ "textRole": "body",
2782
+ "fontSize": 11,
2783
+ "textCapacity": 3
2784
+ }
2785
+ ],
2786
+ "jsxReference": ""
2787
+ },
2788
+ {
2789
+ "slideNumber": 12,
2790
+ "sourceTitle": "课程总结",
2791
+ "family": "closing",
2792
+ "titlePosition": "left",
2793
+ "bodyColumns": 1,
2794
+ "density": "medium",
2795
+ "features": [
2796
+ "statement"
2797
+ ],
2798
+ "recommendedRoles": [
2799
+ "closing"
2800
+ ],
2801
+ "structureSummary": "课程总结;以可编辑文本和矢量形状组织信息。",
2802
+ "zones": [
2803
+ {
2804
+ "kind": "text",
2805
+ "x": 64,
2806
+ "y": 32,
2807
+ "width": 933.3333333333334,
2808
+ "height": 24,
2809
+ "textRole": "body",
2810
+ "fontSize": 10,
2811
+ "textCapacity": 70
2812
+ },
2813
+ {
2814
+ "kind": "title",
2815
+ "x": 64,
2816
+ "y": 90.66666666666667,
2817
+ "width": 1152,
2818
+ "height": 85.33333333333333,
2819
+ "textRole": "title",
2820
+ "fontSize": 31,
2821
+ "textCapacity": 27
2822
+ },
2823
+ {
2824
+ "kind": "text",
2825
+ "x": 64,
2826
+ "y": 673.3333333333334,
2827
+ "width": 1013.3333333333334,
2828
+ "height": 21.333333333333332,
2829
+ "textRole": "body",
2830
+ "fontSize": 9,
2831
+ "textCapacity": 84
2832
+ },
2833
+ {
2834
+ "kind": "text",
2835
+ "x": 1146.6666666666667,
2836
+ "y": 672,
2837
+ "width": 64,
2838
+ "height": 24,
2839
+ "textRole": "body",
2840
+ "fontSize": 11,
2841
+ "textCapacity": 4
2842
+ },
2843
+ {
2844
+ "kind": "title",
2845
+ "x": 64,
2846
+ "y": 213.33333333333334,
2847
+ "width": 866.6666666666666,
2848
+ "height": 314.6666666666667,
2849
+ "textRole": "title",
2850
+ "fontSize": 42,
2851
+ "textCapacity": 60
2852
+ },
2853
+ {
2854
+ "kind": "shape",
2855
+ "x": 952,
2856
+ "y": 224,
2857
+ "width": 264,
2858
+ "height": 338.6666666666667,
2859
+ "shape": "rect",
2860
+ "fill": "E5EBDD"
2861
+ },
2862
+ {
2863
+ "kind": "text",
2864
+ "x": 981.3333333333334,
2865
+ "y": 281.3333333333333,
2866
+ "width": 202.66666666666666,
2867
+ "height": 213.33333333333334,
2868
+ "textRole": "body",
2869
+ "fontSize": 27,
2870
+ "textCapacity": 20
2871
+ }
2872
+ ],
2873
+ "jsxReference": ""
2874
+ }
2875
+ ]
2876
+ }
2877
+ },
2878
+ "provenance": {
2879
+ "kind": "apache-adaptation",
2880
+ "license": "Apache-2.0",
2881
+ "upstream": "https://github.com/nexu-io/html-anything/tree/c31204544230578ac814026fecc153c6e36587ae",
2882
+ "sourceSkill": "deck-course-module",
2883
+ "author": "DSH Desktop contributors",
2884
+ "modified": "2026-09-06"
2885
+ }
2886
+ }