@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,3091 @@
1
+ {
2
+ "definition": {
3
+ "id": "dsh-editorial-notebook",
4
+ "category": "editorial",
5
+ "sourceCollection": "curated",
6
+ "slug": "dsh-editorial-notebook",
7
+ "name": "Editorial Notebook",
8
+ "variantLabel": "DSH",
9
+ "description": "原创的双栏论述、边注、证据条和决策矩阵;用于研究、观点与业务叙事。",
10
+ "previewTitle": "Editorial Notebook",
11
+ "previewSubtitle": "12 editable layouts",
12
+ "titleFontFace": "Georgia",
13
+ "bodyFontFace": "Arial",
14
+ "palette": {
15
+ "background": "F8F8F6",
16
+ "surface": "EDEBE5",
17
+ "text": "252320",
18
+ "muted": "76716A",
19
+ "accent": "A86043",
20
+ "secondary": "EDEBE5"
21
+ },
22
+ "referenceDirectory": "editorial/dsh-editorial-notebook",
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": "31799db0d7de058746a678867f90f3958515744748ddeaab3645615827342ecc",
55
+ "localizedNames": {
56
+ "en": "Editorial Notebook",
57
+ "zh": "Editorial Notebook"
58
+ },
59
+ "previewLanguage": "en",
60
+ "fonts": {
61
+ "en": {
62
+ "title": "Georgia",
63
+ "body": "Arial"
64
+ },
65
+ "zh": {
66
+ "title": "Songti SC",
67
+ "body": "PingFang SC"
68
+ },
69
+ "fallbacks": {
70
+ "zh": {
71
+ "macOS": {
72
+ "title": "Songti SC",
73
+ "body": "PingFang SC"
74
+ },
75
+ "Windows": {
76
+ "title": "SimSun",
77
+ "body": "Microsoft YaHei"
78
+ },
79
+ "Linux": {
80
+ "title": "Noto Serif CJK SC",
81
+ "body": "Noto Sans CJK SC"
82
+ }
83
+ }
84
+ }
85
+ }
86
+ },
87
+ "semantics": {
88
+ "palette": {
89
+ "background": "F8F8F6",
90
+ "surface": "EDEBE5",
91
+ "text": "252320",
92
+ "muted": "76716A",
93
+ "accent": "A86043",
94
+ "secondary": "EDEBE5"
95
+ },
96
+ "source": {
97
+ "fileName": "dsh-editorial-notebook-reference.jpg",
98
+ "sha256": "31799db0d7de058746a678867f90f3958515744748ddeaab3645615827342ecc",
99
+ "slideCount": 12,
100
+ "averageTextBlocks": 18,
101
+ "averageCharacters": 324,
102
+ "visualGrammar": "editorial",
103
+ "recommendedDensity": "medium",
104
+ "designSummary": "# 编辑手记 · Editorial Notebook\n\n原创的双栏论述、边注、证据条和决策矩阵;用于研究、观点与业务叙事。\n\n## 使用规则\n\n16:9,960×540 点。正文使用 Arial 并由系统回退中文字体;编辑部大标题可用 Georgia,缺失时回退衬线字体。只引用字体名称,不分发字体文件。背景 #F8F8F6,正文 #252320,强调 #A86043。单页突出一个判断;超出文本容量时拆页,不缩小字号。保持边距 48 点、清晰层次及页脚。图表、表格、关系图均使用可编辑元素。\n\n## 版式\n\n1. 手记封面\n2. 观点展开\n3. 引文页\n4. 证据条图\n5. 假设对照\n6. 因果分析\n7. 决策矩阵\n8. 行动收尾\n\n## 来源\n\nDSH 独立编写;未使用 guizang-ppt-skill、社区 Kimi 模板、木友圈文件或它们的派生图片。 示例句和示例数字均为自编,不代表事实结论。\n\n## Bilingual typography\n\nEnglish previews: source/. Chinese examples: source-zh/. English title/body: Georgia / Arial. Chinese macOS: Songti SC / PingFang SC; Windows: SimSun / Microsoft YaHei; Linux: Noto Serif 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. A judgment worth revisiting — Asymmetric argument with three supporting evidence rows\n3. Separate the record from the explanation — Interview excerpt, observation, competing explanation and next check\n4. Show how the judgment develops — Alternating milestone notes around a continuous argument timeline\n5. Trace the question to testable branches — Three-branch hypothesis tree with six testable leaves\n6. Read the trend and investigate the pause — Labeled six-point trend with common scale and a separate interpretation\n7. Choose the next move with evidence — Two-axis decision map with direct labels and a recommended next step\n8. A small intervention, a measurable change — Intervention narrative beside paired before and after comparisons\n9. Design the test before reading the result — One hypothesis with comparison, measure and a predeclared decision rule\n10. Connect each measure to a response — Actual, target and response aligned across four measures\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": 6,
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": "quote",
132
+ "slideCount": 1,
133
+ "sampleSlideNumbers": [
134
+ 3
135
+ ],
136
+ "titlePosition": "left",
137
+ "bodyColumns": 2,
138
+ "density": "high",
139
+ "averageTextFrames": 18,
140
+ "averageMediaFrames": 0
141
+ },
142
+ {
143
+ "family": "process",
144
+ "slideCount": 1,
145
+ "sampleSlideNumbers": [
146
+ 4
147
+ ],
148
+ "titlePosition": "left",
149
+ "bodyColumns": 2,
150
+ "density": "medium",
151
+ "averageTextFrames": 18,
152
+ "averageMediaFrames": 0
153
+ },
154
+ {
155
+ "family": "process",
156
+ "slideCount": 1,
157
+ "sampleSlideNumbers": [
158
+ 5
159
+ ],
160
+ "titlePosition": "left",
161
+ "bodyColumns": 3,
162
+ "density": "high",
163
+ "averageTextFrames": 17,
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": "comparison",
180
+ "slideCount": 1,
181
+ "sampleSlideNumbers": [
182
+ 7
183
+ ],
184
+ "titlePosition": "left",
185
+ "bodyColumns": 2,
186
+ "density": "high",
187
+ "averageTextFrames": 26,
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": 13,
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": 16,
212
+ "averageMediaFrames": 0
213
+ },
214
+ {
215
+ "family": "table",
216
+ "slideCount": 1,
217
+ "sampleSlideNumbers": [
218
+ 10
219
+ ],
220
+ "titlePosition": "left",
221
+ "bodyColumns": 2,
222
+ "density": "high",
223
+ "averageTextFrames": 30,
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": 7,
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": 221.33333333333334,
311
+ "width": 1064,
312
+ "height": 229.33333333333334,
313
+ "textRole": "title",
314
+ "fontSize": 64,
315
+ "textCapacity": 24
316
+ },
317
+ {
318
+ "kind": "text",
319
+ "x": 64,
320
+ "y": 496,
321
+ "width": 1061.3333333333333,
322
+ "height": 86.66666666666667,
323
+ "textRole": "body",
324
+ "fontSize": 24,
325
+ "textCapacity": 66
326
+ }
327
+ ],
328
+ "jsxReference": ""
329
+ },
330
+ {
331
+ "slideNumber": 2,
332
+ "sourceTitle": "A judgment worth revisiting",
333
+ "family": "insights",
334
+ "titlePosition": "left",
335
+ "bodyColumns": 2,
336
+ "density": "medium",
337
+ "features": [
338
+ "thesis"
339
+ ],
340
+ "recommendedRoles": [
341
+ "insights"
342
+ ],
343
+ "structureSummary": "Asymmetric argument with three supporting evidence rows",
344
+ "zones": [
345
+ {
346
+ "kind": "text",
347
+ "x": 64,
348
+ "y": 36,
349
+ "width": 886.6666666666666,
350
+ "height": 26.666666666666668,
351
+ "textRole": "body",
352
+ "fontSize": 10,
353
+ "textCapacity": 66
354
+ },
355
+ {
356
+ "kind": "title",
357
+ "x": 64,
358
+ "y": 101.33333333333333,
359
+ "width": 1152,
360
+ "height": 85.33333333333333,
361
+ "textRole": "title",
362
+ "fontSize": 32,
363
+ "textCapacity": 27
364
+ },
365
+ {
366
+ "kind": "text",
367
+ "x": 1005.3333333333334,
368
+ "y": 61.333333333333336,
369
+ "width": 210.66666666666666,
370
+ "height": 17.333333333333332,
371
+ "textRole": "body",
372
+ "fontSize": 9,
373
+ "textCapacity": 17
374
+ },
375
+ {
376
+ "kind": "text",
377
+ "x": 64,
378
+ "y": 218.66666666666666,
379
+ "width": 464,
380
+ "height": 33.333333333333336,
381
+ "textRole": "body",
382
+ "fontSize": 13,
383
+ "textCapacity": 26
384
+ },
385
+ {
386
+ "kind": "title",
387
+ "x": 64,
388
+ "y": 276,
389
+ "width": 442.6666666666667,
390
+ "height": 236,
391
+ "textRole": "title",
392
+ "fontSize": 30,
393
+ "textCapacity": 55
394
+ },
395
+ {
396
+ "kind": "text",
397
+ "x": 64,
398
+ "y": 560,
399
+ "width": 440,
400
+ "height": 57.333333333333336,
401
+ "textRole": "body",
402
+ "fontSize": 17,
403
+ "textCapacity": 38
404
+ },
405
+ {
406
+ "kind": "text",
407
+ "x": 588,
408
+ "y": 222.66666666666666,
409
+ "width": 66.66666666666667,
410
+ "height": 50.666666666666664,
411
+ "textRole": "body",
412
+ "fontSize": 26,
413
+ "textCapacity": 1
414
+ },
415
+ {
416
+ "kind": "text",
417
+ "x": 685.3333333333334,
418
+ "y": 226.66666666666666,
419
+ "width": 332,
420
+ "height": 42.666666666666664,
421
+ "textRole": "body",
422
+ "fontSize": 23,
423
+ "textCapacity": 10
424
+ },
425
+ {
426
+ "kind": "text",
427
+ "x": 1040,
428
+ "y": 234.66666666666666,
429
+ "width": 176,
430
+ "height": 32,
431
+ "textRole": "body",
432
+ "fontSize": 10,
433
+ "textCapacity": 26
434
+ },
435
+ {
436
+ "kind": "text",
437
+ "x": 685.3333333333334,
438
+ "y": 281.3333333333333,
439
+ "width": 530.6666666666666,
440
+ "height": 62.666666666666664,
441
+ "textRole": "body",
442
+ "fontSize": 18,
443
+ "textCapacity": 44
444
+ },
445
+ {
446
+ "kind": "text",
447
+ "x": 588,
448
+ "y": 348,
449
+ "width": 66.66666666666667,
450
+ "height": 50.666666666666664,
451
+ "textRole": "body",
452
+ "fontSize": 26,
453
+ "textCapacity": 1
454
+ },
455
+ {
456
+ "kind": "text",
457
+ "x": 685.3333333333334,
458
+ "y": 352,
459
+ "width": 332,
460
+ "height": 42.666666666666664,
461
+ "textRole": "body",
462
+ "fontSize": 23,
463
+ "textCapacity": 10
464
+ },
465
+ {
466
+ "kind": "text",
467
+ "x": 1040,
468
+ "y": 360,
469
+ "width": 176,
470
+ "height": 32,
471
+ "textRole": "body",
472
+ "fontSize": 10,
473
+ "textCapacity": 26
474
+ },
475
+ {
476
+ "kind": "text",
477
+ "x": 685.3333333333334,
478
+ "y": 406.6666666666667,
479
+ "width": 530.6666666666666,
480
+ "height": 62.666666666666664,
481
+ "textRole": "body",
482
+ "fontSize": 18,
483
+ "textCapacity": 44
484
+ },
485
+ {
486
+ "kind": "text",
487
+ "x": 588,
488
+ "y": 473.3333333333333,
489
+ "width": 66.66666666666667,
490
+ "height": 50.666666666666664,
491
+ "textRole": "body",
492
+ "fontSize": 26,
493
+ "textCapacity": 1
494
+ },
495
+ {
496
+ "kind": "text",
497
+ "x": 685.3333333333334,
498
+ "y": 477.3333333333333,
499
+ "width": 332,
500
+ "height": 42.666666666666664,
501
+ "textRole": "body",
502
+ "fontSize": 23,
503
+ "textCapacity": 10
504
+ },
505
+ {
506
+ "kind": "text",
507
+ "x": 1040,
508
+ "y": 485.3333333333333,
509
+ "width": 176,
510
+ "height": 32,
511
+ "textRole": "body",
512
+ "fontSize": 10,
513
+ "textCapacity": 26
514
+ },
515
+ {
516
+ "kind": "text",
517
+ "x": 685.3333333333334,
518
+ "y": 532,
519
+ "width": 530.6666666666666,
520
+ "height": 62.666666666666664,
521
+ "textRole": "body",
522
+ "fontSize": 18,
523
+ "textCapacity": 44
524
+ },
525
+ {
526
+ "kind": "text",
527
+ "x": 64,
528
+ "y": 676,
529
+ "width": 1044,
530
+ "height": 21.333333333333332,
531
+ "textRole": "body",
532
+ "fontSize": 9,
533
+ "textCapacity": 87
534
+ },
535
+ {
536
+ "kind": "text",
537
+ "x": 1161.3333333333333,
538
+ "y": 672,
539
+ "width": 54.666666666666664,
540
+ "height": 29.333333333333332,
541
+ "textRole": "body",
542
+ "fontSize": 11,
543
+ "textCapacity": 3
544
+ }
545
+ ],
546
+ "jsxReference": ""
547
+ },
548
+ {
549
+ "slideNumber": 3,
550
+ "sourceTitle": "Separate the record from the explanation",
551
+ "family": "quote",
552
+ "titlePosition": "left",
553
+ "bodyColumns": 2,
554
+ "density": "high",
555
+ "features": [
556
+ "evidence"
557
+ ],
558
+ "recommendedRoles": [
559
+ "quote"
560
+ ],
561
+ "structureSummary": "Interview excerpt, observation, competing explanation and next check",
562
+ "zones": [
563
+ {
564
+ "kind": "text",
565
+ "x": 64,
566
+ "y": 36,
567
+ "width": 886.6666666666666,
568
+ "height": 26.666666666666668,
569
+ "textRole": "body",
570
+ "fontSize": 10,
571
+ "textCapacity": 66
572
+ },
573
+ {
574
+ "kind": "title",
575
+ "x": 64,
576
+ "y": 101.33333333333333,
577
+ "width": 1152,
578
+ "height": 85.33333333333333,
579
+ "textRole": "title",
580
+ "fontSize": 32,
581
+ "textCapacity": 27
582
+ },
583
+ {
584
+ "kind": "text",
585
+ "x": 1005.3333333333334,
586
+ "y": 61.333333333333336,
587
+ "width": 210.66666666666666,
588
+ "height": 17.333333333333332,
589
+ "textRole": "body",
590
+ "fontSize": 9,
591
+ "textCapacity": 17
592
+ },
593
+ {
594
+ "kind": "shape",
595
+ "x": 64,
596
+ "y": 234.66666666666666,
597
+ "width": 369.3333333333333,
598
+ "height": 365.3333333333333,
599
+ "shape": "rect",
600
+ "fill": "EDEBE5"
601
+ },
602
+ {
603
+ "kind": "text",
604
+ "x": 92,
605
+ "y": 253.33333333333334,
606
+ "width": 313.3333333333333,
607
+ "height": 30.666666666666668,
608
+ "textRole": "body",
609
+ "fontSize": 10,
610
+ "textCapacity": 46
611
+ },
612
+ {
613
+ "kind": "text",
614
+ "x": 92,
615
+ "y": 317.3333333333333,
616
+ "width": 309.3333333333333,
617
+ "height": 173.33333333333334,
618
+ "textRole": "body",
619
+ "fontSize": 28,
620
+ "textCapacity": 32
621
+ },
622
+ {
623
+ "kind": "text",
624
+ "x": 92,
625
+ "y": 546.6666666666666,
626
+ "width": 312,
627
+ "height": 36,
628
+ "textRole": "body",
629
+ "fontSize": 12,
630
+ "textCapacity": 38
631
+ },
632
+ {
633
+ "kind": "title",
634
+ "x": 482.6666666666667,
635
+ "y": 221.33333333333334,
636
+ "width": 253.33333333333334,
637
+ "height": 90.66666666666667,
638
+ "textRole": "title",
639
+ "fontSize": 48,
640
+ "textCapacity": 3
641
+ },
642
+ {
643
+ "kind": "text",
644
+ "x": 740,
645
+ "y": 234.66666666666666,
646
+ "width": 462.6666666666667,
647
+ "height": 64,
648
+ "textRole": "body",
649
+ "fontSize": 22,
650
+ "textCapacity": 15
651
+ },
652
+ {
653
+ "kind": "shape",
654
+ "x": 485.3333333333333,
655
+ "y": 321.3333333333333,
656
+ "width": 18.666666666666668,
657
+ "height": 18.666666666666668,
658
+ "shape": "rect",
659
+ "fill": "252320"
660
+ },
661
+ {
662
+ "kind": "shape",
663
+ "x": 514.6666666666666,
664
+ "y": 321.3333333333333,
665
+ "width": 18.666666666666668,
666
+ "height": 18.666666666666668,
667
+ "shape": "rect",
668
+ "fill": "252320"
669
+ },
670
+ {
671
+ "kind": "shape",
672
+ "x": 544,
673
+ "y": 321.3333333333333,
674
+ "width": 18.666666666666668,
675
+ "height": 18.666666666666668,
676
+ "shape": "rect",
677
+ "fill": "252320"
678
+ },
679
+ {
680
+ "kind": "shape",
681
+ "x": 573.3333333333334,
682
+ "y": 321.3333333333333,
683
+ "width": 18.666666666666668,
684
+ "height": 18.666666666666668,
685
+ "shape": "rect",
686
+ "fill": "d2d2cf"
687
+ },
688
+ {
689
+ "kind": "shape",
690
+ "x": 602.6666666666666,
691
+ "y": 321.3333333333333,
692
+ "width": 18.666666666666668,
693
+ "height": 18.666666666666668,
694
+ "shape": "rect",
695
+ "fill": "d2d2cf"
696
+ },
697
+ {
698
+ "kind": "shape",
699
+ "x": 632,
700
+ "y": 321.3333333333333,
701
+ "width": 18.666666666666668,
702
+ "height": 18.666666666666668,
703
+ "shape": "rect",
704
+ "fill": "d2d2cf"
705
+ },
706
+ {
707
+ "kind": "shape",
708
+ "x": 661.3333333333334,
709
+ "y": 321.3333333333333,
710
+ "width": 18.666666666666668,
711
+ "height": 18.666666666666668,
712
+ "shape": "rect",
713
+ "fill": "d2d2cf"
714
+ },
715
+ {
716
+ "kind": "shape",
717
+ "x": 690.6666666666666,
718
+ "y": 321.3333333333333,
719
+ "width": 18.666666666666668,
720
+ "height": 18.666666666666668,
721
+ "shape": "rect",
722
+ "fill": "d2d2cf"
723
+ },
724
+ {
725
+ "kind": "text",
726
+ "x": 748,
727
+ "y": 317.3333333333333,
728
+ "width": 468,
729
+ "height": 33.333333333333336,
730
+ "textRole": "body",
731
+ "fontSize": 10,
732
+ "textCapacity": 70
733
+ },
734
+ {
735
+ "kind": "text",
736
+ "x": 482.6666666666667,
737
+ "y": 390.6666666666667,
738
+ "width": 233.33333333333334,
739
+ "height": 45.333333333333336,
740
+ "textRole": "body",
741
+ "fontSize": 15,
742
+ "textCapacity": 22
743
+ },
744
+ {
745
+ "kind": "text",
746
+ "x": 741.3333333333334,
747
+ "y": 389.3333333333333,
748
+ "width": 469.3333333333333,
749
+ "height": 62.666666666666664,
750
+ "textRole": "body",
751
+ "fontSize": 17,
752
+ "textCapacity": 40
753
+ },
754
+ {
755
+ "kind": "text",
756
+ "x": 482.6666666666667,
757
+ "y": 466.6666666666667,
758
+ "width": 233.33333333333334,
759
+ "height": 45.333333333333336,
760
+ "textRole": "body",
761
+ "fontSize": 15,
762
+ "textCapacity": 22
763
+ },
764
+ {
765
+ "kind": "text",
766
+ "x": 741.3333333333334,
767
+ "y": 465.3333333333333,
768
+ "width": 469.3333333333333,
769
+ "height": 62.666666666666664,
770
+ "textRole": "body",
771
+ "fontSize": 17,
772
+ "textCapacity": 40
773
+ },
774
+ {
775
+ "kind": "text",
776
+ "x": 482.6666666666667,
777
+ "y": 542.6666666666666,
778
+ "width": 233.33333333333334,
779
+ "height": 45.333333333333336,
780
+ "textRole": "body",
781
+ "fontSize": 15,
782
+ "textCapacity": 22
783
+ },
784
+ {
785
+ "kind": "text",
786
+ "x": 741.3333333333334,
787
+ "y": 541.3333333333334,
788
+ "width": 469.3333333333333,
789
+ "height": 62.666666666666664,
790
+ "textRole": "body",
791
+ "fontSize": 17,
792
+ "textCapacity": 40
793
+ },
794
+ {
795
+ "kind": "text",
796
+ "x": 64,
797
+ "y": 633.3333333333334,
798
+ "width": 1152,
799
+ "height": 33.333333333333336,
800
+ "textRole": "body",
801
+ "fontSize": 13,
802
+ "textCapacity": 66
803
+ },
804
+ {
805
+ "kind": "text",
806
+ "x": 64,
807
+ "y": 676,
808
+ "width": 1044,
809
+ "height": 21.333333333333332,
810
+ "textRole": "body",
811
+ "fontSize": 9,
812
+ "textCapacity": 87
813
+ },
814
+ {
815
+ "kind": "text",
816
+ "x": 1161.3333333333333,
817
+ "y": 672,
818
+ "width": 54.666666666666664,
819
+ "height": 29.333333333333332,
820
+ "textRole": "body",
821
+ "fontSize": 11,
822
+ "textCapacity": 3
823
+ }
824
+ ],
825
+ "jsxReference": ""
826
+ },
827
+ {
828
+ "slideNumber": 4,
829
+ "sourceTitle": "Show how the judgment develops",
830
+ "family": "process",
831
+ "titlePosition": "left",
832
+ "bodyColumns": 2,
833
+ "density": "medium",
834
+ "features": [
835
+ "timeline"
836
+ ],
837
+ "recommendedRoles": [
838
+ "process"
839
+ ],
840
+ "structureSummary": "Alternating milestone notes around a continuous argument timeline",
841
+ "zones": [
842
+ {
843
+ "kind": "text",
844
+ "x": 64,
845
+ "y": 36,
846
+ "width": 886.6666666666666,
847
+ "height": 26.666666666666668,
848
+ "textRole": "body",
849
+ "fontSize": 10,
850
+ "textCapacity": 66
851
+ },
852
+ {
853
+ "kind": "title",
854
+ "x": 64,
855
+ "y": 101.33333333333333,
856
+ "width": 1152,
857
+ "height": 85.33333333333333,
858
+ "textRole": "title",
859
+ "fontSize": 32,
860
+ "textCapacity": 27
861
+ },
862
+ {
863
+ "kind": "text",
864
+ "x": 1005.3333333333334,
865
+ "y": 61.333333333333336,
866
+ "width": 210.66666666666666,
867
+ "height": 17.333333333333332,
868
+ "textRole": "body",
869
+ "fontSize": 9,
870
+ "textCapacity": 17
871
+ },
872
+ {
873
+ "kind": "shape",
874
+ "x": 117.33333333333333,
875
+ "y": 377.3333333333333,
876
+ "width": 18.666666666666668,
877
+ "height": 18.666666666666668,
878
+ "shape": "ellipse",
879
+ "fill": "A86043"
880
+ },
881
+ {
882
+ "kind": "text",
883
+ "x": 142.66666666666666,
884
+ "y": 397.3333333333333,
885
+ "width": 80,
886
+ "height": 33.333333333333336,
887
+ "textRole": "body",
888
+ "fontSize": 13,
889
+ "textCapacity": 4
890
+ },
891
+ {
892
+ "kind": "text",
893
+ "x": 104,
894
+ "y": 236,
895
+ "width": 245.33333333333334,
896
+ "height": 62.666666666666664,
897
+ "textRole": "body",
898
+ "fontSize": 27,
899
+ "textCapacity": 6
900
+ },
901
+ {
902
+ "kind": "text",
903
+ "x": 104,
904
+ "y": 298.6666666666667,
905
+ "width": 242.66666666666666,
906
+ "height": 76,
907
+ "textRole": "body",
908
+ "fontSize": 18,
909
+ "textCapacity": 20
910
+ },
911
+ {
912
+ "kind": "shape",
913
+ "x": 402.6666666666667,
914
+ "y": 377.3333333333333,
915
+ "width": 18.666666666666668,
916
+ "height": 18.666666666666668,
917
+ "shape": "ellipse",
918
+ "fill": "A86043"
919
+ },
920
+ {
921
+ "kind": "text",
922
+ "x": 428,
923
+ "y": 397.3333333333333,
924
+ "width": 80,
925
+ "height": 33.333333333333336,
926
+ "textRole": "body",
927
+ "fontSize": 13,
928
+ "textCapacity": 4
929
+ },
930
+ {
931
+ "kind": "text",
932
+ "x": 389.3333333333333,
933
+ "y": 440,
934
+ "width": 245.33333333333334,
935
+ "height": 62.666666666666664,
936
+ "textRole": "body",
937
+ "fontSize": 27,
938
+ "textCapacity": 6
939
+ },
940
+ {
941
+ "kind": "text",
942
+ "x": 389.3333333333333,
943
+ "y": 520,
944
+ "width": 242.66666666666666,
945
+ "height": 76,
946
+ "textRole": "body",
947
+ "fontSize": 18,
948
+ "textCapacity": 20
949
+ },
950
+ {
951
+ "kind": "shape",
952
+ "x": 688,
953
+ "y": 377.3333333333333,
954
+ "width": 18.666666666666668,
955
+ "height": 18.666666666666668,
956
+ "shape": "ellipse",
957
+ "fill": "A86043"
958
+ },
959
+ {
960
+ "kind": "text",
961
+ "x": 713.3333333333334,
962
+ "y": 397.3333333333333,
963
+ "width": 80,
964
+ "height": 33.333333333333336,
965
+ "textRole": "body",
966
+ "fontSize": 13,
967
+ "textCapacity": 4
968
+ },
969
+ {
970
+ "kind": "text",
971
+ "x": 674.6666666666666,
972
+ "y": 236,
973
+ "width": 245.33333333333334,
974
+ "height": 62.666666666666664,
975
+ "textRole": "body",
976
+ "fontSize": 27,
977
+ "textCapacity": 6
978
+ },
979
+ {
980
+ "kind": "text",
981
+ "x": 674.6666666666666,
982
+ "y": 298.6666666666667,
983
+ "width": 242.66666666666666,
984
+ "height": 76,
985
+ "textRole": "body",
986
+ "fontSize": 18,
987
+ "textCapacity": 20
988
+ },
989
+ {
990
+ "kind": "shape",
991
+ "x": 973.3333333333334,
992
+ "y": 377.3333333333333,
993
+ "width": 18.666666666666668,
994
+ "height": 18.666666666666668,
995
+ "shape": "ellipse",
996
+ "fill": "A86043"
997
+ },
998
+ {
999
+ "kind": "text",
1000
+ "x": 998.6666666666666,
1001
+ "y": 397.3333333333333,
1002
+ "width": 80,
1003
+ "height": 33.333333333333336,
1004
+ "textRole": "body",
1005
+ "fontSize": 13,
1006
+ "textCapacity": 4
1007
+ },
1008
+ {
1009
+ "kind": "text",
1010
+ "x": 960,
1011
+ "y": 440,
1012
+ "width": 245.33333333333334,
1013
+ "height": 62.666666666666664,
1014
+ "textRole": "body",
1015
+ "fontSize": 27,
1016
+ "textCapacity": 6
1017
+ },
1018
+ {
1019
+ "kind": "text",
1020
+ "x": 960,
1021
+ "y": 520,
1022
+ "width": 242.66666666666666,
1023
+ "height": 76,
1024
+ "textRole": "body",
1025
+ "fontSize": 18,
1026
+ "textCapacity": 20
1027
+ },
1028
+ {
1029
+ "kind": "text",
1030
+ "x": 64,
1031
+ "y": 633.3333333333334,
1032
+ "width": 1152,
1033
+ "height": 33.333333333333336,
1034
+ "textRole": "body",
1035
+ "fontSize": 13,
1036
+ "textCapacity": 66
1037
+ },
1038
+ {
1039
+ "kind": "text",
1040
+ "x": 64,
1041
+ "y": 676,
1042
+ "width": 1044,
1043
+ "height": 21.333333333333332,
1044
+ "textRole": "body",
1045
+ "fontSize": 9,
1046
+ "textCapacity": 87
1047
+ },
1048
+ {
1049
+ "kind": "text",
1050
+ "x": 1161.3333333333333,
1051
+ "y": 672,
1052
+ "width": 54.666666666666664,
1053
+ "height": 29.333333333333332,
1054
+ "textRole": "body",
1055
+ "fontSize": 11,
1056
+ "textCapacity": 3
1057
+ }
1058
+ ],
1059
+ "jsxReference": ""
1060
+ },
1061
+ {
1062
+ "slideNumber": 5,
1063
+ "sourceTitle": "Trace the question to testable branches",
1064
+ "family": "process",
1065
+ "titlePosition": "left",
1066
+ "bodyColumns": 3,
1067
+ "density": "high",
1068
+ "features": [
1069
+ "tree"
1070
+ ],
1071
+ "recommendedRoles": [
1072
+ "process"
1073
+ ],
1074
+ "structureSummary": "Three-branch hypothesis tree with six testable leaves",
1075
+ "zones": [
1076
+ {
1077
+ "kind": "text",
1078
+ "x": 64,
1079
+ "y": 36,
1080
+ "width": 886.6666666666666,
1081
+ "height": 26.666666666666668,
1082
+ "textRole": "body",
1083
+ "fontSize": 10,
1084
+ "textCapacity": 66
1085
+ },
1086
+ {
1087
+ "kind": "title",
1088
+ "x": 64,
1089
+ "y": 101.33333333333333,
1090
+ "width": 1152,
1091
+ "height": 85.33333333333333,
1092
+ "textRole": "title",
1093
+ "fontSize": 32,
1094
+ "textCapacity": 27
1095
+ },
1096
+ {
1097
+ "kind": "text",
1098
+ "x": 1005.3333333333334,
1099
+ "y": 61.333333333333336,
1100
+ "width": 210.66666666666666,
1101
+ "height": 17.333333333333332,
1102
+ "textRole": "body",
1103
+ "fontSize": 9,
1104
+ "textCapacity": 17
1105
+ },
1106
+ {
1107
+ "kind": "text",
1108
+ "x": 64,
1109
+ "y": 202.66666666666666,
1110
+ "width": 1133.3333333333333,
1111
+ "height": 33.333333333333336,
1112
+ "textRole": "body",
1113
+ "fontSize": 13,
1114
+ "textCapacity": 65
1115
+ },
1116
+ {
1117
+ "kind": "shape",
1118
+ "x": 64,
1119
+ "y": 362.6666666666667,
1120
+ "width": 292,
1121
+ "height": 140,
1122
+ "shape": "rect",
1123
+ "fill": "A86043"
1124
+ },
1125
+ {
1126
+ "kind": "text",
1127
+ "x": 80,
1128
+ "y": 380,
1129
+ "width": 260,
1130
+ "height": 114.66666666666667,
1131
+ "textRole": "body",
1132
+ "fontSize": 18,
1133
+ "textCapacity": 40
1134
+ },
1135
+ {
1136
+ "kind": "shape",
1137
+ "x": 466.6666666666667,
1138
+ "y": 245.33333333333334,
1139
+ "width": 226.66666666666666,
1140
+ "height": 77.33333333333333,
1141
+ "shape": "rect",
1142
+ "fill": "EDEBE5"
1143
+ },
1144
+ {
1145
+ "kind": "text",
1146
+ "x": 482.6666666666667,
1147
+ "y": 262.6666666666667,
1148
+ "width": 194.66666666666666,
1149
+ "height": 52,
1150
+ "textRole": "body",
1151
+ "fontSize": 18,
1152
+ "textCapacity": 8
1153
+ },
1154
+ {
1155
+ "kind": "text",
1156
+ "x": 810.6666666666666,
1157
+ "y": 236,
1158
+ "width": 398.6666666666667,
1159
+ "height": 45.333333333333336,
1160
+ "textRole": "body",
1161
+ "fontSize": 18,
1162
+ "textCapacity": 16
1163
+ },
1164
+ {
1165
+ "kind": "text",
1166
+ "x": 810.6666666666666,
1167
+ "y": 292,
1168
+ "width": 398.6666666666667,
1169
+ "height": 45.333333333333336,
1170
+ "textRole": "body",
1171
+ "fontSize": 18,
1172
+ "textCapacity": 16
1173
+ },
1174
+ {
1175
+ "kind": "shape",
1176
+ "x": 466.6666666666667,
1177
+ "y": 376,
1178
+ "width": 226.66666666666666,
1179
+ "height": 77.33333333333333,
1180
+ "shape": "rect",
1181
+ "fill": "EDEBE5"
1182
+ },
1183
+ {
1184
+ "kind": "text",
1185
+ "x": 482.6666666666667,
1186
+ "y": 393.3333333333333,
1187
+ "width": 194.66666666666666,
1188
+ "height": 52,
1189
+ "textRole": "body",
1190
+ "fontSize": 18,
1191
+ "textCapacity": 8
1192
+ },
1193
+ {
1194
+ "kind": "text",
1195
+ "x": 810.6666666666666,
1196
+ "y": 366.6666666666667,
1197
+ "width": 398.6666666666667,
1198
+ "height": 45.333333333333336,
1199
+ "textRole": "body",
1200
+ "fontSize": 18,
1201
+ "textCapacity": 16
1202
+ },
1203
+ {
1204
+ "kind": "text",
1205
+ "x": 810.6666666666666,
1206
+ "y": 422.6666666666667,
1207
+ "width": 398.6666666666667,
1208
+ "height": 45.333333333333336,
1209
+ "textRole": "body",
1210
+ "fontSize": 18,
1211
+ "textCapacity": 16
1212
+ },
1213
+ {
1214
+ "kind": "shape",
1215
+ "x": 466.6666666666667,
1216
+ "y": 506.6666666666667,
1217
+ "width": 226.66666666666666,
1218
+ "height": 77.33333333333333,
1219
+ "shape": "rect",
1220
+ "fill": "EDEBE5"
1221
+ },
1222
+ {
1223
+ "kind": "text",
1224
+ "x": 482.6666666666667,
1225
+ "y": 524,
1226
+ "width": 194.66666666666666,
1227
+ "height": 52,
1228
+ "textRole": "body",
1229
+ "fontSize": 18,
1230
+ "textCapacity": 8
1231
+ },
1232
+ {
1233
+ "kind": "text",
1234
+ "x": 810.6666666666666,
1235
+ "y": 497.3333333333333,
1236
+ "width": 398.6666666666667,
1237
+ "height": 45.333333333333336,
1238
+ "textRole": "body",
1239
+ "fontSize": 18,
1240
+ "textCapacity": 16
1241
+ },
1242
+ {
1243
+ "kind": "text",
1244
+ "x": 810.6666666666666,
1245
+ "y": 553.3333333333334,
1246
+ "width": 398.6666666666667,
1247
+ "height": 45.333333333333336,
1248
+ "textRole": "body",
1249
+ "fontSize": 18,
1250
+ "textCapacity": 16
1251
+ },
1252
+ {
1253
+ "kind": "text",
1254
+ "x": 64,
1255
+ "y": 633.3333333333334,
1256
+ "width": 1152,
1257
+ "height": 33.333333333333336,
1258
+ "textRole": "body",
1259
+ "fontSize": 13,
1260
+ "textCapacity": 66
1261
+ },
1262
+ {
1263
+ "kind": "text",
1264
+ "x": 64,
1265
+ "y": 676,
1266
+ "width": 1044,
1267
+ "height": 21.333333333333332,
1268
+ "textRole": "body",
1269
+ "fontSize": 9,
1270
+ "textCapacity": 87
1271
+ },
1272
+ {
1273
+ "kind": "text",
1274
+ "x": 1161.3333333333333,
1275
+ "y": 672,
1276
+ "width": 54.666666666666664,
1277
+ "height": 29.333333333333332,
1278
+ "textRole": "body",
1279
+ "fontSize": 11,
1280
+ "textCapacity": 3
1281
+ }
1282
+ ],
1283
+ "jsxReference": ""
1284
+ },
1285
+ {
1286
+ "slideNumber": 6,
1287
+ "sourceTitle": "Read the trend and investigate the pause",
1288
+ "family": "data",
1289
+ "titlePosition": "left",
1290
+ "bodyColumns": 2,
1291
+ "density": "high",
1292
+ "features": [
1293
+ "trend"
1294
+ ],
1295
+ "recommendedRoles": [
1296
+ "data"
1297
+ ],
1298
+ "structureSummary": "Labeled six-point trend with common scale and a separate interpretation",
1299
+ "zones": [
1300
+ {
1301
+ "kind": "text",
1302
+ "x": 64,
1303
+ "y": 36,
1304
+ "width": 886.6666666666666,
1305
+ "height": 26.666666666666668,
1306
+ "textRole": "body",
1307
+ "fontSize": 10,
1308
+ "textCapacity": 66
1309
+ },
1310
+ {
1311
+ "kind": "title",
1312
+ "x": 64,
1313
+ "y": 101.33333333333333,
1314
+ "width": 1152,
1315
+ "height": 85.33333333333333,
1316
+ "textRole": "title",
1317
+ "fontSize": 32,
1318
+ "textCapacity": 27
1319
+ },
1320
+ {
1321
+ "kind": "text",
1322
+ "x": 1005.3333333333334,
1323
+ "y": 61.333333333333336,
1324
+ "width": 210.66666666666666,
1325
+ "height": 17.333333333333332,
1326
+ "textRole": "body",
1327
+ "fontSize": 9,
1328
+ "textCapacity": 17
1329
+ },
1330
+ {
1331
+ "kind": "text",
1332
+ "x": 64,
1333
+ "y": 202.66666666666666,
1334
+ "width": 1133.3333333333333,
1335
+ "height": 33.333333333333336,
1336
+ "textRole": "body",
1337
+ "fontSize": 13,
1338
+ "textCapacity": 65
1339
+ },
1340
+ {
1341
+ "kind": "shape",
1342
+ "x": 437.3333333333333,
1343
+ "y": 253.33333333333334,
1344
+ "width": 121.33333333333333,
1345
+ "height": 314.6666666666667,
1346
+ "shape": "rect",
1347
+ "fill": "f0e9e4"
1348
+ },
1349
+ {
1350
+ "kind": "text",
1351
+ "x": 64,
1352
+ "y": 554.6666666666666,
1353
+ "width": 40,
1354
+ "height": 29.333333333333332,
1355
+ "textRole": "body",
1356
+ "fontSize": 11,
1357
+ "textCapacity": 2
1358
+ },
1359
+ {
1360
+ "kind": "text",
1361
+ "x": 64,
1362
+ "y": 480,
1363
+ "width": 40,
1364
+ "height": 29.333333333333332,
1365
+ "textRole": "body",
1366
+ "fontSize": 11,
1367
+ "textCapacity": 2
1368
+ },
1369
+ {
1370
+ "kind": "text",
1371
+ "x": 64,
1372
+ "y": 405.3333333333333,
1373
+ "width": 40,
1374
+ "height": 29.333333333333332,
1375
+ "textRole": "body",
1376
+ "fontSize": 11,
1377
+ "textCapacity": 2
1378
+ },
1379
+ {
1380
+ "kind": "text",
1381
+ "x": 64,
1382
+ "y": 330.6666666666667,
1383
+ "width": 40,
1384
+ "height": 29.333333333333332,
1385
+ "textRole": "body",
1386
+ "fontSize": 11,
1387
+ "textCapacity": 2
1388
+ },
1389
+ {
1390
+ "kind": "text",
1391
+ "x": 64,
1392
+ "y": 256,
1393
+ "width": 40,
1394
+ "height": 29.333333333333332,
1395
+ "textRole": "body",
1396
+ "fontSize": 11,
1397
+ "textCapacity": 2
1398
+ },
1399
+ {
1400
+ "kind": "shape",
1401
+ "x": 134.4,
1402
+ "y": 377.06666666666666,
1403
+ "width": 8.533333333333333,
1404
+ "height": 8.533333333333333,
1405
+ "shape": "ellipse",
1406
+ "fill": "252320"
1407
+ },
1408
+ {
1409
+ "kind": "text",
1410
+ "x": 108,
1411
+ "y": 341.3333333333333,
1412
+ "width": 62.666666666666664,
1413
+ "height": 33.333333333333336,
1414
+ "textRole": "body",
1415
+ "fontSize": 15,
1416
+ "textCapacity": 3
1417
+ },
1418
+ {
1419
+ "kind": "text",
1420
+ "x": 117.33333333333333,
1421
+ "y": 582.6666666666666,
1422
+ "width": 49.333333333333336,
1423
+ "height": 32,
1424
+ "textRole": "body",
1425
+ "fontSize": 12,
1426
+ "textCapacity": 3
1427
+ },
1428
+ {
1429
+ "kind": "shape",
1430
+ "x": 265.06666666666666,
1431
+ "y": 362.13333333333327,
1432
+ "width": 8.533333333333333,
1433
+ "height": 8.533333333333333,
1434
+ "shape": "ellipse",
1435
+ "fill": "252320"
1436
+ },
1437
+ {
1438
+ "kind": "text",
1439
+ "x": 238.66666666666666,
1440
+ "y": 326.3999999999999,
1441
+ "width": 62.666666666666664,
1442
+ "height": 33.333333333333336,
1443
+ "textRole": "body",
1444
+ "fontSize": 15,
1445
+ "textCapacity": 3
1446
+ },
1447
+ {
1448
+ "kind": "text",
1449
+ "x": 248,
1450
+ "y": 582.6666666666666,
1451
+ "width": 49.333333333333336,
1452
+ "height": 32,
1453
+ "textRole": "body",
1454
+ "fontSize": 12,
1455
+ "textCapacity": 3
1456
+ },
1457
+ {
1458
+ "kind": "shape",
1459
+ "x": 395.73333333333335,
1460
+ "y": 350.93333333333334,
1461
+ "width": 8.533333333333333,
1462
+ "height": 8.533333333333333,
1463
+ "shape": "ellipse",
1464
+ "fill": "252320"
1465
+ },
1466
+ {
1467
+ "kind": "text",
1468
+ "x": 369.3333333333333,
1469
+ "y": 315.2,
1470
+ "width": 62.666666666666664,
1471
+ "height": 33.333333333333336,
1472
+ "textRole": "body",
1473
+ "fontSize": 15,
1474
+ "textCapacity": 3
1475
+ },
1476
+ {
1477
+ "kind": "text",
1478
+ "x": 378.6666666666667,
1479
+ "y": 582.6666666666666,
1480
+ "width": 49.333333333333336,
1481
+ "height": 32,
1482
+ "textRole": "body",
1483
+ "fontSize": 12,
1484
+ "textCapacity": 3
1485
+ },
1486
+ {
1487
+ "kind": "shape",
1488
+ "x": 524,
1489
+ "y": 352.2666666666667,
1490
+ "width": 13.333333333333334,
1491
+ "height": 13.333333333333334,
1492
+ "shape": "ellipse",
1493
+ "fill": "A86043"
1494
+ },
1495
+ {
1496
+ "kind": "text",
1497
+ "x": 500,
1498
+ "y": 318.9333333333334,
1499
+ "width": 62.666666666666664,
1500
+ "height": 33.333333333333336,
1501
+ "textRole": "body",
1502
+ "fontSize": 15,
1503
+ "textCapacity": 3
1504
+ },
1505
+ {
1506
+ "kind": "text",
1507
+ "x": 509.3333333333333,
1508
+ "y": 582.6666666666666,
1509
+ "width": 49.333333333333336,
1510
+ "height": 32,
1511
+ "textRole": "body",
1512
+ "fontSize": 12,
1513
+ "textCapacity": 3
1514
+ },
1515
+ {
1516
+ "kind": "shape",
1517
+ "x": 657.0666666666667,
1518
+ "y": 324.8,
1519
+ "width": 8.533333333333333,
1520
+ "height": 8.533333333333333,
1521
+ "shape": "ellipse",
1522
+ "fill": "252320"
1523
+ },
1524
+ {
1525
+ "kind": "text",
1526
+ "x": 630.6666666666666,
1527
+ "y": 289.06666666666666,
1528
+ "width": 62.666666666666664,
1529
+ "height": 33.333333333333336,
1530
+ "textRole": "body",
1531
+ "fontSize": 15,
1532
+ "textCapacity": 3
1533
+ },
1534
+ {
1535
+ "kind": "text",
1536
+ "x": 640,
1537
+ "y": 582.6666666666666,
1538
+ "width": 49.333333333333336,
1539
+ "height": 32,
1540
+ "textRole": "body",
1541
+ "fontSize": 12,
1542
+ "textCapacity": 3
1543
+ },
1544
+ {
1545
+ "kind": "shape",
1546
+ "x": 787.7333333333332,
1547
+ "y": 298.6666666666667,
1548
+ "width": 8.533333333333333,
1549
+ "height": 8.533333333333333,
1550
+ "shape": "ellipse",
1551
+ "fill": "252320"
1552
+ },
1553
+ {
1554
+ "kind": "text",
1555
+ "x": 761.3333333333334,
1556
+ "y": 262.93333333333334,
1557
+ "width": 62.666666666666664,
1558
+ "height": 33.333333333333336,
1559
+ "textRole": "body",
1560
+ "fontSize": 15,
1561
+ "textCapacity": 3
1562
+ },
1563
+ {
1564
+ "kind": "text",
1565
+ "x": 770.6666666666666,
1566
+ "y": 582.6666666666666,
1567
+ "width": 49.333333333333336,
1568
+ "height": 32,
1569
+ "textRole": "body",
1570
+ "fontSize": 12,
1571
+ "textCapacity": 3
1572
+ },
1573
+ {
1574
+ "kind": "text",
1575
+ "x": 365.3333333333333,
1576
+ "y": 248,
1577
+ "width": 206.66666666666666,
1578
+ "height": 33.333333333333336,
1579
+ "textRole": "body",
1580
+ "fontSize": 13,
1581
+ "textCapacity": 11
1582
+ },
1583
+ {
1584
+ "kind": "text",
1585
+ "x": 905.3333333333334,
1586
+ "y": 217.33333333333334,
1587
+ "width": 310.6666666666667,
1588
+ "height": 33.333333333333336,
1589
+ "textRole": "body",
1590
+ "fontSize": 13,
1591
+ "textCapacity": 17
1592
+ },
1593
+ {
1594
+ "kind": "title",
1595
+ "x": 905.3333333333334,
1596
+ "y": 269.3333333333333,
1597
+ "width": 310.6666666666667,
1598
+ "height": 104,
1599
+ "textRole": "title",
1600
+ "fontSize": 56,
1601
+ "textCapacity": 4
1602
+ },
1603
+ {
1604
+ "kind": "text",
1605
+ "x": 905.3333333333334,
1606
+ "y": 381.3333333333333,
1607
+ "width": 305.3333333333333,
1608
+ "height": 73.33333333333333,
1609
+ "textRole": "body",
1610
+ "fontSize": 18,
1611
+ "textCapacity": 24
1612
+ },
1613
+ {
1614
+ "kind": "text",
1615
+ "x": 905.3333333333334,
1616
+ "y": 492,
1617
+ "width": 305.3333333333333,
1618
+ "height": 29.333333333333332,
1619
+ "textRole": "body",
1620
+ "fontSize": 10,
1621
+ "textCapacity": 44
1622
+ },
1623
+ {
1624
+ "kind": "text",
1625
+ "x": 905.3333333333334,
1626
+ "y": 538.6666666666666,
1627
+ "width": 305.3333333333333,
1628
+ "height": 66.66666666666667,
1629
+ "textRole": "body",
1630
+ "fontSize": 20,
1631
+ "textCapacity": 22
1632
+ },
1633
+ {
1634
+ "kind": "text",
1635
+ "x": 64,
1636
+ "y": 633.3333333333334,
1637
+ "width": 1152,
1638
+ "height": 33.333333333333336,
1639
+ "textRole": "body",
1640
+ "fontSize": 13,
1641
+ "textCapacity": 66
1642
+ },
1643
+ {
1644
+ "kind": "text",
1645
+ "x": 64,
1646
+ "y": 676,
1647
+ "width": 1044,
1648
+ "height": 21.333333333333332,
1649
+ "textRole": "body",
1650
+ "fontSize": 9,
1651
+ "textCapacity": 87
1652
+ },
1653
+ {
1654
+ "kind": "text",
1655
+ "x": 1161.3333333333333,
1656
+ "y": 672,
1657
+ "width": 54.666666666666664,
1658
+ "height": 29.333333333333332,
1659
+ "textRole": "body",
1660
+ "fontSize": 11,
1661
+ "textCapacity": 3
1662
+ }
1663
+ ],
1664
+ "jsxReference": ""
1665
+ },
1666
+ {
1667
+ "slideNumber": 7,
1668
+ "sourceTitle": "Choose the next move with evidence",
1669
+ "family": "comparison",
1670
+ "titlePosition": "left",
1671
+ "bodyColumns": 2,
1672
+ "density": "high",
1673
+ "features": [
1674
+ "matrix"
1675
+ ],
1676
+ "recommendedRoles": [
1677
+ "comparison"
1678
+ ],
1679
+ "structureSummary": "Two-axis decision map with direct labels and a recommended next step",
1680
+ "zones": [
1681
+ {
1682
+ "kind": "text",
1683
+ "x": 64,
1684
+ "y": 36,
1685
+ "width": 886.6666666666666,
1686
+ "height": 26.666666666666668,
1687
+ "textRole": "body",
1688
+ "fontSize": 10,
1689
+ "textCapacity": 66
1690
+ },
1691
+ {
1692
+ "kind": "title",
1693
+ "x": 64,
1694
+ "y": 101.33333333333333,
1695
+ "width": 1152,
1696
+ "height": 85.33333333333333,
1697
+ "textRole": "title",
1698
+ "fontSize": 32,
1699
+ "textCapacity": 27
1700
+ },
1701
+ {
1702
+ "kind": "text",
1703
+ "x": 1005.3333333333334,
1704
+ "y": 61.333333333333336,
1705
+ "width": 210.66666666666666,
1706
+ "height": 17.333333333333332,
1707
+ "textRole": "body",
1708
+ "fontSize": 9,
1709
+ "textCapacity": 17
1710
+ },
1711
+ {
1712
+ "kind": "text",
1713
+ "x": 64,
1714
+ "y": 202.66666666666666,
1715
+ "width": 1133.3333333333333,
1716
+ "height": 33.333333333333336,
1717
+ "textRole": "body",
1718
+ "fontSize": 13,
1719
+ "textCapacity": 65
1720
+ },
1721
+ {
1722
+ "kind": "shape",
1723
+ "x": 118.66666666666667,
1724
+ "y": 245.33333333333334,
1725
+ "width": 662.6666666666666,
1726
+ "height": 336,
1727
+ "shape": "rect",
1728
+ "fill": "f1f1ef"
1729
+ },
1730
+ {
1731
+ "kind": "shape",
1732
+ "x": 450.6666666666667,
1733
+ "y": 245.33333333333334,
1734
+ "width": 330.6666666666667,
1735
+ "height": 168,
1736
+ "shape": "rect",
1737
+ "fill": "e8dad2"
1738
+ },
1739
+ {
1740
+ "kind": "text",
1741
+ "x": 137.33333333333334,
1742
+ "y": 258.6666666666667,
1743
+ "width": 285.3333333333333,
1744
+ "height": 30.666666666666668,
1745
+ "textRole": "body",
1746
+ "fontSize": 10,
1747
+ "textCapacity": 42
1748
+ },
1749
+ {
1750
+ "kind": "text",
1751
+ "x": 472,
1752
+ "y": 258.6666666666667,
1753
+ "width": 285.3333333333333,
1754
+ "height": 30.666666666666668,
1755
+ "textRole": "body",
1756
+ "fontSize": 10,
1757
+ "textCapacity": 42
1758
+ },
1759
+ {
1760
+ "kind": "text",
1761
+ "x": 137.33333333333334,
1762
+ "y": 545.3333333333334,
1763
+ "width": 285.3333333333333,
1764
+ "height": 30.666666666666668,
1765
+ "textRole": "body",
1766
+ "fontSize": 10,
1767
+ "textCapacity": 42
1768
+ },
1769
+ {
1770
+ "kind": "text",
1771
+ "x": 472,
1772
+ "y": 545.3333333333334,
1773
+ "width": 285.3333333333333,
1774
+ "height": 30.666666666666668,
1775
+ "textRole": "body",
1776
+ "fontSize": 10,
1777
+ "textCapacity": 42
1778
+ },
1779
+ {
1780
+ "kind": "shape",
1781
+ "x": 236,
1782
+ "y": 345.3333333333333,
1783
+ "width": 18.666666666666668,
1784
+ "height": 18.666666666666668,
1785
+ "shape": "ellipse",
1786
+ "fill": "93928f"
1787
+ },
1788
+ {
1789
+ "kind": "text",
1790
+ "x": 269.3333333333333,
1791
+ "y": 338.6666666666667,
1792
+ "width": 50.666666666666664,
1793
+ "height": 37.333333333333336,
1794
+ "textRole": "body",
1795
+ "fontSize": 15,
1796
+ "textCapacity": 2
1797
+ },
1798
+ {
1799
+ "kind": "shape",
1800
+ "x": 557.3333333333334,
1801
+ "y": 322.6666666666667,
1802
+ "width": 34.666666666666664,
1803
+ "height": 34.666666666666664,
1804
+ "shape": "ellipse",
1805
+ "fill": "252320"
1806
+ },
1807
+ {
1808
+ "kind": "text",
1809
+ "x": 598.6666666666666,
1810
+ "y": 324,
1811
+ "width": 50.666666666666664,
1812
+ "height": 37.333333333333336,
1813
+ "textRole": "body",
1814
+ "fontSize": 15,
1815
+ "textCapacity": 2
1816
+ },
1817
+ {
1818
+ "kind": "shape",
1819
+ "x": 500,
1820
+ "y": 376,
1821
+ "width": 18.666666666666668,
1822
+ "height": 18.666666666666668,
1823
+ "shape": "ellipse",
1824
+ "fill": "93928f"
1825
+ },
1826
+ {
1827
+ "kind": "text",
1828
+ "x": 533.3333333333334,
1829
+ "y": 369.3333333333333,
1830
+ "width": 50.666666666666664,
1831
+ "height": 37.333333333333336,
1832
+ "textRole": "body",
1833
+ "fontSize": 15,
1834
+ "textCapacity": 2
1835
+ },
1836
+ {
1837
+ "kind": "shape",
1838
+ "x": 293.3333333333333,
1839
+ "y": 462.6666666666667,
1840
+ "width": 18.666666666666668,
1841
+ "height": 18.666666666666668,
1842
+ "shape": "ellipse",
1843
+ "fill": "93928f"
1844
+ },
1845
+ {
1846
+ "kind": "text",
1847
+ "x": 326.6666666666667,
1848
+ "y": 456,
1849
+ "width": 50.666666666666664,
1850
+ "height": 37.333333333333336,
1851
+ "textRole": "body",
1852
+ "fontSize": 15,
1853
+ "textCapacity": 2
1854
+ },
1855
+ {
1856
+ "kind": "shape",
1857
+ "x": 634.6666666666666,
1858
+ "y": 473.3333333333333,
1859
+ "width": 18.666666666666668,
1860
+ "height": 18.666666666666668,
1861
+ "shape": "ellipse",
1862
+ "fill": "93928f"
1863
+ },
1864
+ {
1865
+ "kind": "text",
1866
+ "x": 668,
1867
+ "y": 466.6666666666667,
1868
+ "width": 50.666666666666664,
1869
+ "height": 37.333333333333336,
1870
+ "textRole": "body",
1871
+ "fontSize": 15,
1872
+ "textCapacity": 2
1873
+ },
1874
+ {
1875
+ "kind": "text",
1876
+ "x": 118.66666666666667,
1877
+ "y": 589.3333333333334,
1878
+ "width": 317.3333333333333,
1879
+ "height": 29.333333333333332,
1880
+ "textRole": "body",
1881
+ "fontSize": 11,
1882
+ "textCapacity": 21
1883
+ },
1884
+ {
1885
+ "kind": "text",
1886
+ "x": 469.3333333333333,
1887
+ "y": 589.3333333333334,
1888
+ "width": 312,
1889
+ "height": 29.333333333333332,
1890
+ "textRole": "body",
1891
+ "fontSize": 11,
1892
+ "textCapacity": 21
1893
+ },
1894
+ {
1895
+ "kind": "text",
1896
+ "x": 842.6666666666666,
1897
+ "y": 230.66666666666666,
1898
+ "width": 373.3333333333333,
1899
+ "height": 33.333333333333336,
1900
+ "textRole": "body",
1901
+ "fontSize": 13,
1902
+ "textCapacity": 21
1903
+ },
1904
+ {
1905
+ "kind": "title",
1906
+ "x": 842.6666666666666,
1907
+ "y": 286.6666666666667,
1908
+ "width": 373.3333333333333,
1909
+ "height": 82.66666666666667,
1910
+ "textRole": "title",
1911
+ "fontSize": 32,
1912
+ "textCapacity": 8
1913
+ },
1914
+ {
1915
+ "kind": "text",
1916
+ "x": 842.6666666666666,
1917
+ "y": 414.6666666666667,
1918
+ "width": 146.66666666666666,
1919
+ "height": 41.333333333333336,
1920
+ "textRole": "body",
1921
+ "fontSize": 14,
1922
+ "textCapacity": 14
1923
+ },
1924
+ {
1925
+ "kind": "text",
1926
+ "x": 1004,
1927
+ "y": 414.6666666666667,
1928
+ "width": 212,
1929
+ "height": 45.333333333333336,
1930
+ "textRole": "body",
1931
+ "fontSize": 16,
1932
+ "textCapacity": 9
1933
+ },
1934
+ {
1935
+ "kind": "text",
1936
+ "x": 842.6666666666666,
1937
+ "y": 476,
1938
+ "width": 146.66666666666666,
1939
+ "height": 41.333333333333336,
1940
+ "textRole": "body",
1941
+ "fontSize": 14,
1942
+ "textCapacity": 14
1943
+ },
1944
+ {
1945
+ "kind": "text",
1946
+ "x": 1004,
1947
+ "y": 476,
1948
+ "width": 212,
1949
+ "height": 45.333333333333336,
1950
+ "textRole": "body",
1951
+ "fontSize": 16,
1952
+ "textCapacity": 9
1953
+ },
1954
+ {
1955
+ "kind": "text",
1956
+ "x": 842.6666666666666,
1957
+ "y": 537.3333333333334,
1958
+ "width": 146.66666666666666,
1959
+ "height": 41.333333333333336,
1960
+ "textRole": "body",
1961
+ "fontSize": 14,
1962
+ "textCapacity": 14
1963
+ },
1964
+ {
1965
+ "kind": "text",
1966
+ "x": 1004,
1967
+ "y": 537.3333333333334,
1968
+ "width": 212,
1969
+ "height": 45.333333333333336,
1970
+ "textRole": "body",
1971
+ "fontSize": 16,
1972
+ "textCapacity": 9
1973
+ },
1974
+ {
1975
+ "kind": "text",
1976
+ "x": 64,
1977
+ "y": 633.3333333333334,
1978
+ "width": 1152,
1979
+ "height": 33.333333333333336,
1980
+ "textRole": "body",
1981
+ "fontSize": 13,
1982
+ "textCapacity": 66
1983
+ },
1984
+ {
1985
+ "kind": "text",
1986
+ "x": 64,
1987
+ "y": 676,
1988
+ "width": 1044,
1989
+ "height": 21.333333333333332,
1990
+ "textRole": "body",
1991
+ "fontSize": 9,
1992
+ "textCapacity": 87
1993
+ },
1994
+ {
1995
+ "kind": "text",
1996
+ "x": 1161.3333333333333,
1997
+ "y": 672,
1998
+ "width": 54.666666666666664,
1999
+ "height": 29.333333333333332,
2000
+ "textRole": "body",
2001
+ "fontSize": 11,
2002
+ "textCapacity": 3
2003
+ }
2004
+ ],
2005
+ "jsxReference": ""
2006
+ },
2007
+ {
2008
+ "slideNumber": 8,
2009
+ "sourceTitle": "A small intervention, a measurable change",
2010
+ "family": "comparison",
2011
+ "titlePosition": "left",
2012
+ "bodyColumns": 2,
2013
+ "density": "high",
2014
+ "features": [
2015
+ "case"
2016
+ ],
2017
+ "recommendedRoles": [
2018
+ "comparison"
2019
+ ],
2020
+ "structureSummary": "Intervention narrative beside paired before and after comparisons",
2021
+ "zones": [
2022
+ {
2023
+ "kind": "text",
2024
+ "x": 64,
2025
+ "y": 36,
2026
+ "width": 886.6666666666666,
2027
+ "height": 26.666666666666668,
2028
+ "textRole": "body",
2029
+ "fontSize": 10,
2030
+ "textCapacity": 66
2031
+ },
2032
+ {
2033
+ "kind": "title",
2034
+ "x": 64,
2035
+ "y": 101.33333333333333,
2036
+ "width": 1152,
2037
+ "height": 85.33333333333333,
2038
+ "textRole": "title",
2039
+ "fontSize": 32,
2040
+ "textCapacity": 27
2041
+ },
2042
+ {
2043
+ "kind": "text",
2044
+ "x": 1005.3333333333334,
2045
+ "y": 61.333333333333336,
2046
+ "width": 210.66666666666666,
2047
+ "height": 17.333333333333332,
2048
+ "textRole": "body",
2049
+ "fontSize": 9,
2050
+ "textCapacity": 17
2051
+ },
2052
+ {
2053
+ "kind": "text",
2054
+ "x": 64,
2055
+ "y": 224,
2056
+ "width": 386.6666666666667,
2057
+ "height": 34.666666666666664,
2058
+ "textRole": "body",
2059
+ "fontSize": 12,
2060
+ "textCapacity": 24
2061
+ },
2062
+ {
2063
+ "kind": "title",
2064
+ "x": 64,
2065
+ "y": 289.3333333333333,
2066
+ "width": 384,
2067
+ "height": 161.33333333333334,
2068
+ "textRole": "title",
2069
+ "fontSize": 34,
2070
+ "textCapacity": 24
2071
+ },
2072
+ {
2073
+ "kind": "text",
2074
+ "x": 64,
2075
+ "y": 492,
2076
+ "width": 374.6666666666667,
2077
+ "height": 104,
2078
+ "textRole": "body",
2079
+ "fontSize": 20,
2080
+ "textCapacity": 42
2081
+ },
2082
+ {
2083
+ "kind": "text",
2084
+ "x": 552,
2085
+ "y": 232,
2086
+ "width": 649.3333333333334,
2087
+ "height": 42.666666666666664,
2088
+ "textRole": "body",
2089
+ "fontSize": 20,
2090
+ "textCapacity": 24
2091
+ },
2092
+ {
2093
+ "kind": "shape",
2094
+ "x": 553.3333333333334,
2095
+ "y": 300,
2096
+ "width": 388.8,
2097
+ "height": 26.666666666666668,
2098
+ "shape": "rect",
2099
+ "fill": "b9b8b6"
2100
+ },
2101
+ {
2102
+ "kind": "shape",
2103
+ "x": 553.3333333333334,
2104
+ "y": 340,
2105
+ "width": 151.20000000000002,
2106
+ "height": 26.666666666666668,
2107
+ "shape": "rect",
2108
+ "fill": "A86043"
2109
+ },
2110
+ {
2111
+ "kind": "text",
2112
+ "x": 1005.3333333333334,
2113
+ "y": 305.3333333333333,
2114
+ "width": 210.66666666666666,
2115
+ "height": 60,
2116
+ "textRole": "body",
2117
+ "fontSize": 23,
2118
+ "textCapacity": 6
2119
+ },
2120
+ {
2121
+ "kind": "text",
2122
+ "x": 552,
2123
+ "y": 421.3333333333333,
2124
+ "width": 649.3333333333334,
2125
+ "height": 42.666666666666664,
2126
+ "textRole": "body",
2127
+ "fontSize": 20,
2128
+ "textCapacity": 24
2129
+ },
2130
+ {
2131
+ "kind": "shape",
2132
+ "x": 553.3333333333334,
2133
+ "y": 489.3333333333333,
2134
+ "width": 198.72,
2135
+ "height": 26.666666666666668,
2136
+ "shape": "rect",
2137
+ "fill": "b9b8b6"
2138
+ },
2139
+ {
2140
+ "kind": "shape",
2141
+ "x": 553.3333333333334,
2142
+ "y": 529.3333333333334,
2143
+ "width": 315.36,
2144
+ "height": 26.666666666666668,
2145
+ "shape": "rect",
2146
+ "fill": "A86043"
2147
+ },
2148
+ {
2149
+ "kind": "text",
2150
+ "x": 1005.3333333333334,
2151
+ "y": 494.6666666666667,
2152
+ "width": 210.66666666666666,
2153
+ "height": 60,
2154
+ "textRole": "body",
2155
+ "fontSize": 23,
2156
+ "textCapacity": 6
2157
+ },
2158
+ {
2159
+ "kind": "text",
2160
+ "x": 64,
2161
+ "y": 633.3333333333334,
2162
+ "width": 1152,
2163
+ "height": 33.333333333333336,
2164
+ "textRole": "body",
2165
+ "fontSize": 13,
2166
+ "textCapacity": 66
2167
+ },
2168
+ {
2169
+ "kind": "text",
2170
+ "x": 64,
2171
+ "y": 676,
2172
+ "width": 1044,
2173
+ "height": 21.333333333333332,
2174
+ "textRole": "body",
2175
+ "fontSize": 9,
2176
+ "textCapacity": 87
2177
+ },
2178
+ {
2179
+ "kind": "text",
2180
+ "x": 1161.3333333333333,
2181
+ "y": 672,
2182
+ "width": 54.666666666666664,
2183
+ "height": 29.333333333333332,
2184
+ "textRole": "body",
2185
+ "fontSize": 11,
2186
+ "textCapacity": 3
2187
+ }
2188
+ ],
2189
+ "jsxReference": ""
2190
+ },
2191
+ {
2192
+ "slideNumber": 9,
2193
+ "sourceTitle": "Design the test before reading the result",
2194
+ "family": "comparison",
2195
+ "titlePosition": "left",
2196
+ "bodyColumns": 2,
2197
+ "density": "high",
2198
+ "features": [
2199
+ "experiment"
2200
+ ],
2201
+ "recommendedRoles": [
2202
+ "comparison"
2203
+ ],
2204
+ "structureSummary": "One hypothesis with comparison, measure and a predeclared decision rule",
2205
+ "zones": [
2206
+ {
2207
+ "kind": "text",
2208
+ "x": 64,
2209
+ "y": 36,
2210
+ "width": 886.6666666666666,
2211
+ "height": 26.666666666666668,
2212
+ "textRole": "body",
2213
+ "fontSize": 10,
2214
+ "textCapacity": 66
2215
+ },
2216
+ {
2217
+ "kind": "title",
2218
+ "x": 64,
2219
+ "y": 101.33333333333333,
2220
+ "width": 1152,
2221
+ "height": 85.33333333333333,
2222
+ "textRole": "title",
2223
+ "fontSize": 32,
2224
+ "textCapacity": 27
2225
+ },
2226
+ {
2227
+ "kind": "text",
2228
+ "x": 1005.3333333333334,
2229
+ "y": 61.333333333333336,
2230
+ "width": 210.66666666666666,
2231
+ "height": 17.333333333333332,
2232
+ "textRole": "body",
2233
+ "fontSize": 9,
2234
+ "textCapacity": 17
2235
+ },
2236
+ {
2237
+ "kind": "title",
2238
+ "x": 64,
2239
+ "y": 232,
2240
+ "width": 366.6666666666667,
2241
+ "height": 138.66666666666666,
2242
+ "textRole": "title",
2243
+ "fontSize": 32,
2244
+ "textCapacity": 16
2245
+ },
2246
+ {
2247
+ "kind": "text",
2248
+ "x": 64,
2249
+ "y": 441.3333333333333,
2250
+ "width": 370.6666666666667,
2251
+ "height": 156,
2252
+ "textRole": "body",
2253
+ "fontSize": 21,
2254
+ "textCapacity": 65
2255
+ },
2256
+ {
2257
+ "kind": "text",
2258
+ "x": 536,
2259
+ "y": 236,
2260
+ "width": 188,
2261
+ "height": 45.333333333333336,
2262
+ "textRole": "body",
2263
+ "fontSize": 18,
2264
+ "textCapacity": 7
2265
+ },
2266
+ {
2267
+ "kind": "text",
2268
+ "x": 748,
2269
+ "y": 236,
2270
+ "width": 466.6666666666667,
2271
+ "height": 77.33333333333333,
2272
+ "textRole": "body",
2273
+ "fontSize": 18,
2274
+ "textCapacity": 38
2275
+ },
2276
+ {
2277
+ "kind": "text",
2278
+ "x": 536,
2279
+ "y": 330.6666666666667,
2280
+ "width": 188,
2281
+ "height": 45.333333333333336,
2282
+ "textRole": "body",
2283
+ "fontSize": 18,
2284
+ "textCapacity": 7
2285
+ },
2286
+ {
2287
+ "kind": "text",
2288
+ "x": 748,
2289
+ "y": 330.6666666666667,
2290
+ "width": 466.6666666666667,
2291
+ "height": 77.33333333333333,
2292
+ "textRole": "body",
2293
+ "fontSize": 18,
2294
+ "textCapacity": 38
2295
+ },
2296
+ {
2297
+ "kind": "text",
2298
+ "x": 536,
2299
+ "y": 425.3333333333333,
2300
+ "width": 188,
2301
+ "height": 45.333333333333336,
2302
+ "textRole": "body",
2303
+ "fontSize": 18,
2304
+ "textCapacity": 7
2305
+ },
2306
+ {
2307
+ "kind": "text",
2308
+ "x": 748,
2309
+ "y": 425.3333333333333,
2310
+ "width": 466.6666666666667,
2311
+ "height": 77.33333333333333,
2312
+ "textRole": "body",
2313
+ "fontSize": 18,
2314
+ "textCapacity": 38
2315
+ },
2316
+ {
2317
+ "kind": "text",
2318
+ "x": 536,
2319
+ "y": 520,
2320
+ "width": 188,
2321
+ "height": 45.333333333333336,
2322
+ "textRole": "body",
2323
+ "fontSize": 18,
2324
+ "textCapacity": 7
2325
+ },
2326
+ {
2327
+ "kind": "text",
2328
+ "x": 748,
2329
+ "y": 520,
2330
+ "width": 466.6666666666667,
2331
+ "height": 77.33333333333333,
2332
+ "textRole": "body",
2333
+ "fontSize": 18,
2334
+ "textCapacity": 38
2335
+ },
2336
+ {
2337
+ "kind": "text",
2338
+ "x": 64,
2339
+ "y": 633.3333333333334,
2340
+ "width": 1152,
2341
+ "height": 33.333333333333336,
2342
+ "textRole": "body",
2343
+ "fontSize": 13,
2344
+ "textCapacity": 66
2345
+ },
2346
+ {
2347
+ "kind": "text",
2348
+ "x": 64,
2349
+ "y": 676,
2350
+ "width": 1044,
2351
+ "height": 21.333333333333332,
2352
+ "textRole": "body",
2353
+ "fontSize": 9,
2354
+ "textCapacity": 87
2355
+ },
2356
+ {
2357
+ "kind": "text",
2358
+ "x": 1161.3333333333333,
2359
+ "y": 672,
2360
+ "width": 54.666666666666664,
2361
+ "height": 29.333333333333332,
2362
+ "textRole": "body",
2363
+ "fontSize": 11,
2364
+ "textCapacity": 3
2365
+ }
2366
+ ],
2367
+ "jsxReference": ""
2368
+ },
2369
+ {
2370
+ "slideNumber": 10,
2371
+ "sourceTitle": "Connect each measure to a response",
2372
+ "family": "table",
2373
+ "titlePosition": "left",
2374
+ "bodyColumns": 2,
2375
+ "density": "high",
2376
+ "features": [
2377
+ "scorecard"
2378
+ ],
2379
+ "recommendedRoles": [
2380
+ "table"
2381
+ ],
2382
+ "structureSummary": "Actual, target and response aligned across four measures",
2383
+ "zones": [
2384
+ {
2385
+ "kind": "text",
2386
+ "x": 64,
2387
+ "y": 36,
2388
+ "width": 886.6666666666666,
2389
+ "height": 26.666666666666668,
2390
+ "textRole": "body",
2391
+ "fontSize": 10,
2392
+ "textCapacity": 66
2393
+ },
2394
+ {
2395
+ "kind": "title",
2396
+ "x": 64,
2397
+ "y": 101.33333333333333,
2398
+ "width": 1152,
2399
+ "height": 85.33333333333333,
2400
+ "textRole": "title",
2401
+ "fontSize": 32,
2402
+ "textCapacity": 27
2403
+ },
2404
+ {
2405
+ "kind": "text",
2406
+ "x": 1005.3333333333334,
2407
+ "y": 61.333333333333336,
2408
+ "width": 210.66666666666666,
2409
+ "height": 17.333333333333332,
2410
+ "textRole": "body",
2411
+ "fontSize": 9,
2412
+ "textCapacity": 17
2413
+ },
2414
+ {
2415
+ "kind": "text",
2416
+ "x": 64,
2417
+ "y": 222.66666666666666,
2418
+ "width": 373.3333333333333,
2419
+ "height": 32,
2420
+ "textRole": "body",
2421
+ "fontSize": 11,
2422
+ "textCapacity": 25
2423
+ },
2424
+ {
2425
+ "kind": "text",
2426
+ "x": 497.3333333333333,
2427
+ "y": 222.66666666666666,
2428
+ "width": 226.66666666666666,
2429
+ "height": 32,
2430
+ "textRole": "body",
2431
+ "fontSize": 11,
2432
+ "textCapacity": 15
2433
+ },
2434
+ {
2435
+ "kind": "text",
2436
+ "x": 697.3333333333334,
2437
+ "y": 222.66666666666666,
2438
+ "width": 226.66666666666666,
2439
+ "height": 32,
2440
+ "textRole": "body",
2441
+ "fontSize": 11,
2442
+ "textCapacity": 15
2443
+ },
2444
+ {
2445
+ "kind": "text",
2446
+ "x": 922.6666666666666,
2447
+ "y": 222.66666666666666,
2448
+ "width": 226.66666666666666,
2449
+ "height": 32,
2450
+ "textRole": "body",
2451
+ "fontSize": 11,
2452
+ "textCapacity": 15
2453
+ },
2454
+ {
2455
+ "kind": "text",
2456
+ "x": 81.33333333333333,
2457
+ "y": 294.6666666666667,
2458
+ "width": 373.3333333333333,
2459
+ "height": 49.333333333333336,
2460
+ "textRole": "body",
2461
+ "fontSize": 18,
2462
+ "textCapacity": 15
2463
+ },
2464
+ {
2465
+ "kind": "text",
2466
+ "x": 497.3333333333333,
2467
+ "y": 285.3333333333333,
2468
+ "width": 172,
2469
+ "height": 60,
2470
+ "textRole": "body",
2471
+ "fontSize": 28,
2472
+ "textCapacity": 4
2473
+ },
2474
+ {
2475
+ "kind": "text",
2476
+ "x": 697.3333333333334,
2477
+ "y": 298.6666666666667,
2478
+ "width": 193.33333333333334,
2479
+ "height": 44,
2480
+ "textRole": "body",
2481
+ "fontSize": 17,
2482
+ "textCapacity": 8
2483
+ },
2484
+ {
2485
+ "kind": "text",
2486
+ "x": 922.6666666666666,
2487
+ "y": 297.3333333333333,
2488
+ "width": 36,
2489
+ "height": 40,
2490
+ "textRole": "body",
2491
+ "fontSize": 18,
2492
+ "textCapacity": 1
2493
+ },
2494
+ {
2495
+ "kind": "text",
2496
+ "x": 980,
2497
+ "y": 298.6666666666667,
2498
+ "width": 210.66666666666666,
2499
+ "height": 40,
2500
+ "textRole": "body",
2501
+ "fontSize": 16,
2502
+ "textCapacity": 9
2503
+ },
2504
+ {
2505
+ "kind": "text",
2506
+ "x": 81.33333333333333,
2507
+ "y": 376,
2508
+ "width": 373.3333333333333,
2509
+ "height": 49.333333333333336,
2510
+ "textRole": "body",
2511
+ "fontSize": 18,
2512
+ "textCapacity": 15
2513
+ },
2514
+ {
2515
+ "kind": "text",
2516
+ "x": 497.3333333333333,
2517
+ "y": 366.6666666666667,
2518
+ "width": 172,
2519
+ "height": 60,
2520
+ "textRole": "body",
2521
+ "fontSize": 28,
2522
+ "textCapacity": 4
2523
+ },
2524
+ {
2525
+ "kind": "text",
2526
+ "x": 697.3333333333334,
2527
+ "y": 380,
2528
+ "width": 193.33333333333334,
2529
+ "height": 44,
2530
+ "textRole": "body",
2531
+ "fontSize": 17,
2532
+ "textCapacity": 8
2533
+ },
2534
+ {
2535
+ "kind": "text",
2536
+ "x": 922.6666666666666,
2537
+ "y": 378.6666666666667,
2538
+ "width": 36,
2539
+ "height": 40,
2540
+ "textRole": "body",
2541
+ "fontSize": 18,
2542
+ "textCapacity": 1
2543
+ },
2544
+ {
2545
+ "kind": "text",
2546
+ "x": 980,
2547
+ "y": 380,
2548
+ "width": 210.66666666666666,
2549
+ "height": 40,
2550
+ "textRole": "body",
2551
+ "fontSize": 16,
2552
+ "textCapacity": 9
2553
+ },
2554
+ {
2555
+ "kind": "shape",
2556
+ "x": 64,
2557
+ "y": 434.6666666666667,
2558
+ "width": 1152,
2559
+ "height": 81.33333333333333,
2560
+ "shape": "rect",
2561
+ "fill": "efe7e2"
2562
+ },
2563
+ {
2564
+ "kind": "shape",
2565
+ "x": 64,
2566
+ "y": 434.6666666666667,
2567
+ "width": 4,
2568
+ "height": 81.33333333333333,
2569
+ "shape": "rect",
2570
+ "fill": "252320"
2571
+ },
2572
+ {
2573
+ "kind": "text",
2574
+ "x": 81.33333333333333,
2575
+ "y": 457.3333333333333,
2576
+ "width": 373.3333333333333,
2577
+ "height": 49.333333333333336,
2578
+ "textRole": "body",
2579
+ "fontSize": 18,
2580
+ "textCapacity": 15
2581
+ },
2582
+ {
2583
+ "kind": "text",
2584
+ "x": 497.3333333333333,
2585
+ "y": 448,
2586
+ "width": 172,
2587
+ "height": 60,
2588
+ "textRole": "body",
2589
+ "fontSize": 28,
2590
+ "textCapacity": 4
2591
+ },
2592
+ {
2593
+ "kind": "text",
2594
+ "x": 697.3333333333334,
2595
+ "y": 461.3333333333333,
2596
+ "width": 193.33333333333334,
2597
+ "height": 44,
2598
+ "textRole": "body",
2599
+ "fontSize": 17,
2600
+ "textCapacity": 8
2601
+ },
2602
+ {
2603
+ "kind": "text",
2604
+ "x": 922.6666666666666,
2605
+ "y": 460,
2606
+ "width": 36,
2607
+ "height": 40,
2608
+ "textRole": "body",
2609
+ "fontSize": 18,
2610
+ "textCapacity": 1
2611
+ },
2612
+ {
2613
+ "kind": "text",
2614
+ "x": 980,
2615
+ "y": 461.3333333333333,
2616
+ "width": 210.66666666666666,
2617
+ "height": 40,
2618
+ "textRole": "body",
2619
+ "fontSize": 16,
2620
+ "textCapacity": 9
2621
+ },
2622
+ {
2623
+ "kind": "text",
2624
+ "x": 81.33333333333333,
2625
+ "y": 538.6666666666666,
2626
+ "width": 373.3333333333333,
2627
+ "height": 49.333333333333336,
2628
+ "textRole": "body",
2629
+ "fontSize": 18,
2630
+ "textCapacity": 15
2631
+ },
2632
+ {
2633
+ "kind": "text",
2634
+ "x": 497.3333333333333,
2635
+ "y": 529.3333333333334,
2636
+ "width": 172,
2637
+ "height": 60,
2638
+ "textRole": "body",
2639
+ "fontSize": 28,
2640
+ "textCapacity": 4
2641
+ },
2642
+ {
2643
+ "kind": "text",
2644
+ "x": 697.3333333333334,
2645
+ "y": 542.6666666666666,
2646
+ "width": 193.33333333333334,
2647
+ "height": 44,
2648
+ "textRole": "body",
2649
+ "fontSize": 17,
2650
+ "textCapacity": 8
2651
+ },
2652
+ {
2653
+ "kind": "text",
2654
+ "x": 922.6666666666666,
2655
+ "y": 541.3333333333334,
2656
+ "width": 36,
2657
+ "height": 40,
2658
+ "textRole": "body",
2659
+ "fontSize": 18,
2660
+ "textCapacity": 1
2661
+ },
2662
+ {
2663
+ "kind": "text",
2664
+ "x": 980,
2665
+ "y": 542.6666666666666,
2666
+ "width": 210.66666666666666,
2667
+ "height": 40,
2668
+ "textRole": "body",
2669
+ "fontSize": 16,
2670
+ "textCapacity": 9
2671
+ },
2672
+ {
2673
+ "kind": "text",
2674
+ "x": 64,
2675
+ "y": 633.3333333333334,
2676
+ "width": 1152,
2677
+ "height": 33.333333333333336,
2678
+ "textRole": "body",
2679
+ "fontSize": 13,
2680
+ "textCapacity": 66
2681
+ },
2682
+ {
2683
+ "kind": "text",
2684
+ "x": 64,
2685
+ "y": 676,
2686
+ "width": 1044,
2687
+ "height": 21.333333333333332,
2688
+ "textRole": "body",
2689
+ "fontSize": 9,
2690
+ "textCapacity": 87
2691
+ },
2692
+ {
2693
+ "kind": "text",
2694
+ "x": 1161.3333333333333,
2695
+ "y": 672,
2696
+ "width": 54.666666666666664,
2697
+ "height": 29.333333333333332,
2698
+ "textRole": "body",
2699
+ "fontSize": 11,
2700
+ "textCapacity": 3
2701
+ }
2702
+ ],
2703
+ "jsxReference": ""
2704
+ },
2705
+ {
2706
+ "slideNumber": 11,
2707
+ "sourceTitle": "Sequence the work around a decision gate",
2708
+ "family": "process",
2709
+ "titlePosition": "left",
2710
+ "bodyColumns": 2,
2711
+ "density": "high",
2712
+ "features": [
2713
+ "roadmap"
2714
+ ],
2715
+ "recommendedRoles": [
2716
+ "process"
2717
+ ],
2718
+ "structureSummary": "Four timed workstreams and a decision gate",
2719
+ "zones": [
2720
+ {
2721
+ "kind": "text",
2722
+ "x": 64,
2723
+ "y": 36,
2724
+ "width": 886.6666666666666,
2725
+ "height": 26.666666666666668,
2726
+ "textRole": "body",
2727
+ "fontSize": 10,
2728
+ "textCapacity": 66
2729
+ },
2730
+ {
2731
+ "kind": "title",
2732
+ "x": 64,
2733
+ "y": 101.33333333333333,
2734
+ "width": 1152,
2735
+ "height": 85.33333333333333,
2736
+ "textRole": "title",
2737
+ "fontSize": 32,
2738
+ "textCapacity": 27
2739
+ },
2740
+ {
2741
+ "kind": "text",
2742
+ "x": 1005.3333333333334,
2743
+ "y": 61.333333333333336,
2744
+ "width": 210.66666666666666,
2745
+ "height": 17.333333333333332,
2746
+ "textRole": "body",
2747
+ "fontSize": 9,
2748
+ "textCapacity": 17
2749
+ },
2750
+ {
2751
+ "kind": "text",
2752
+ "x": 64,
2753
+ "y": 222.66666666666666,
2754
+ "width": 324,
2755
+ "height": 30.666666666666668,
2756
+ "textRole": "body",
2757
+ "fontSize": 11,
2758
+ "textCapacity": 22
2759
+ },
2760
+ {
2761
+ "kind": "text",
2762
+ "x": 421.3333333333333,
2763
+ "y": 221.33333333333334,
2764
+ "width": 176,
2765
+ "height": 33.333333333333336,
2766
+ "textRole": "body",
2767
+ "fontSize": 12,
2768
+ "textCapacity": 11
2769
+ },
2770
+ {
2771
+ "kind": "text",
2772
+ "x": 617.3333333333334,
2773
+ "y": 221.33333333333334,
2774
+ "width": 176,
2775
+ "height": 33.333333333333336,
2776
+ "textRole": "body",
2777
+ "fontSize": 12,
2778
+ "textCapacity": 11
2779
+ },
2780
+ {
2781
+ "kind": "text",
2782
+ "x": 813.3333333333334,
2783
+ "y": 221.33333333333334,
2784
+ "width": 176,
2785
+ "height": 33.333333333333336,
2786
+ "textRole": "body",
2787
+ "fontSize": 12,
2788
+ "textCapacity": 11
2789
+ },
2790
+ {
2791
+ "kind": "text",
2792
+ "x": 1009.3333333333334,
2793
+ "y": 221.33333333333334,
2794
+ "width": 176,
2795
+ "height": 33.333333333333336,
2796
+ "textRole": "body",
2797
+ "fontSize": 12,
2798
+ "textCapacity": 11
2799
+ },
2800
+ {
2801
+ "kind": "text",
2802
+ "x": 64,
2803
+ "y": 273.3333333333333,
2804
+ "width": 318.6666666666667,
2805
+ "height": 40,
2806
+ "textRole": "body",
2807
+ "fontSize": 18,
2808
+ "textCapacity": 13
2809
+ },
2810
+ {
2811
+ "kind": "text",
2812
+ "x": 64,
2813
+ "y": 313.3333333333333,
2814
+ "width": 318.6666666666667,
2815
+ "height": 32,
2816
+ "textRole": "body",
2817
+ "fontSize": 11,
2818
+ "textCapacity": 21
2819
+ },
2820
+ {
2821
+ "kind": "shape",
2822
+ "x": 406.6666666666667,
2823
+ "y": 289.3333333333333,
2824
+ "width": 176.4,
2825
+ "height": 29.333333333333332,
2826
+ "shape": "rect",
2827
+ "fill": "bfbebc"
2828
+ },
2829
+ {
2830
+ "kind": "shape",
2831
+ "x": 579.0666666666667,
2832
+ "y": 300,
2833
+ "width": 8,
2834
+ "height": 8,
2835
+ "shape": "ellipse",
2836
+ "fill": "848380"
2837
+ },
2838
+ {
2839
+ "kind": "text",
2840
+ "x": 64,
2841
+ "y": 354.6666666666667,
2842
+ "width": 318.6666666666667,
2843
+ "height": 40,
2844
+ "textRole": "body",
2845
+ "fontSize": 18,
2846
+ "textCapacity": 13
2847
+ },
2848
+ {
2849
+ "kind": "text",
2850
+ "x": 64,
2851
+ "y": 394.6666666666667,
2852
+ "width": 318.6666666666667,
2853
+ "height": 32,
2854
+ "textRole": "body",
2855
+ "fontSize": 11,
2856
+ "textCapacity": 21
2857
+ },
2858
+ {
2859
+ "kind": "shape",
2860
+ "x": 543.8666666666667,
2861
+ "y": 370.6666666666667,
2862
+ "width": 254.79999999999998,
2863
+ "height": 29.333333333333332,
2864
+ "shape": "rect",
2865
+ "fill": "bfbebc"
2866
+ },
2867
+ {
2868
+ "kind": "shape",
2869
+ "x": 794.6666666666666,
2870
+ "y": 381.3333333333333,
2871
+ "width": 8,
2872
+ "height": 8,
2873
+ "shape": "ellipse",
2874
+ "fill": "848380"
2875
+ },
2876
+ {
2877
+ "kind": "text",
2878
+ "x": 64,
2879
+ "y": 436,
2880
+ "width": 318.6666666666667,
2881
+ "height": 40,
2882
+ "textRole": "body",
2883
+ "fontSize": 18,
2884
+ "textCapacity": 13
2885
+ },
2886
+ {
2887
+ "kind": "text",
2888
+ "x": 64,
2889
+ "y": 476,
2890
+ "width": 318.6666666666667,
2891
+ "height": 32,
2892
+ "textRole": "body",
2893
+ "fontSize": 11,
2894
+ "textCapacity": 21
2895
+ },
2896
+ {
2897
+ "kind": "shape",
2898
+ "x": 759.4666666666667,
2899
+ "y": 452,
2900
+ "width": 215.60000000000002,
2901
+ "height": 29.333333333333332,
2902
+ "shape": "rect",
2903
+ "fill": "252320"
2904
+ },
2905
+ {
2906
+ "kind": "shape",
2907
+ "x": 971.0666666666667,
2908
+ "y": 462.6666666666667,
2909
+ "width": 8,
2910
+ "height": 8,
2911
+ "shape": "ellipse",
2912
+ "fill": "252320"
2913
+ },
2914
+ {
2915
+ "kind": "text",
2916
+ "x": 64,
2917
+ "y": 517.3333333333334,
2918
+ "width": 318.6666666666667,
2919
+ "height": 40,
2920
+ "textRole": "body",
2921
+ "fontSize": 18,
2922
+ "textCapacity": 13
2923
+ },
2924
+ {
2925
+ "kind": "text",
2926
+ "x": 64,
2927
+ "y": 557.3333333333334,
2928
+ "width": 318.6666666666667,
2929
+ "height": 32,
2930
+ "textRole": "body",
2931
+ "fontSize": 11,
2932
+ "textCapacity": 21
2933
+ },
2934
+ {
2935
+ "kind": "shape",
2936
+ "x": 955.4666666666666,
2937
+ "y": 533.3333333333334,
2938
+ "width": 235.20000000000002,
2939
+ "height": 29.333333333333332,
2940
+ "shape": "rect",
2941
+ "fill": "bfbebc"
2942
+ },
2943
+ {
2944
+ "kind": "shape",
2945
+ "x": 1186.6666666666665,
2946
+ "y": 544,
2947
+ "width": 8,
2948
+ "height": 8,
2949
+ "shape": "ellipse",
2950
+ "fill": "848380"
2951
+ },
2952
+ {
2953
+ "kind": "shape",
2954
+ "x": 949.3333333333334,
2955
+ "y": 592,
2956
+ "width": 10.666666666666666,
2957
+ "height": 10.666666666666666,
2958
+ "shape": "ellipse",
2959
+ "fill": "A86043"
2960
+ },
2961
+ {
2962
+ "kind": "text",
2963
+ "x": 64,
2964
+ "y": 633.3333333333334,
2965
+ "width": 1152,
2966
+ "height": 33.333333333333336,
2967
+ "textRole": "body",
2968
+ "fontSize": 13,
2969
+ "textCapacity": 66
2970
+ },
2971
+ {
2972
+ "kind": "text",
2973
+ "x": 64,
2974
+ "y": 676,
2975
+ "width": 1044,
2976
+ "height": 21.333333333333332,
2977
+ "textRole": "body",
2978
+ "fontSize": 9,
2979
+ "textCapacity": 87
2980
+ },
2981
+ {
2982
+ "kind": "text",
2983
+ "x": 1161.3333333333333,
2984
+ "y": 672,
2985
+ "width": 54.666666666666664,
2986
+ "height": 29.333333333333332,
2987
+ "textRole": "body",
2988
+ "fontSize": 11,
2989
+ "textCapacity": 3
2990
+ }
2991
+ ],
2992
+ "jsxReference": ""
2993
+ },
2994
+ {
2995
+ "slideNumber": 12,
2996
+ "sourceTitle": "行动收尾",
2997
+ "family": "closing",
2998
+ "titlePosition": "left",
2999
+ "bodyColumns": 1,
3000
+ "density": "medium",
3001
+ "features": [
3002
+ "statement"
3003
+ ],
3004
+ "recommendedRoles": [
3005
+ "closing"
3006
+ ],
3007
+ "structureSummary": "行动收尾;以可编辑文本和矢量形状组织信息。",
3008
+ "zones": [
3009
+ {
3010
+ "kind": "text",
3011
+ "x": 64,
3012
+ "y": 32,
3013
+ "width": 933.3333333333334,
3014
+ "height": 24,
3015
+ "textRole": "body",
3016
+ "fontSize": 10,
3017
+ "textCapacity": 70
3018
+ },
3019
+ {
3020
+ "kind": "title",
3021
+ "x": 64,
3022
+ "y": 90.66666666666667,
3023
+ "width": 1152,
3024
+ "height": 85.33333333333333,
3025
+ "textRole": "title",
3026
+ "fontSize": 31,
3027
+ "textCapacity": 27
3028
+ },
3029
+ {
3030
+ "kind": "text",
3031
+ "x": 64,
3032
+ "y": 673.3333333333334,
3033
+ "width": 1013.3333333333334,
3034
+ "height": 21.333333333333332,
3035
+ "textRole": "body",
3036
+ "fontSize": 9,
3037
+ "textCapacity": 84
3038
+ },
3039
+ {
3040
+ "kind": "text",
3041
+ "x": 1146.6666666666667,
3042
+ "y": 672,
3043
+ "width": 64,
3044
+ "height": 24,
3045
+ "textRole": "body",
3046
+ "fontSize": 11,
3047
+ "textCapacity": 4
3048
+ },
3049
+ {
3050
+ "kind": "title",
3051
+ "x": 64,
3052
+ "y": 225.33333333333334,
3053
+ "width": 1146.6666666666667,
3054
+ "height": 93.33333333333333,
3055
+ "textRole": "title",
3056
+ "fontSize": 39,
3057
+ "textCapacity": 22
3058
+ },
3059
+ {
3060
+ "kind": "text",
3061
+ "x": 64,
3062
+ "y": 361.3333333333333,
3063
+ "width": 1146.6666666666667,
3064
+ "height": 80,
3065
+ "textRole": "body",
3066
+ "fontSize": 23,
3067
+ "textCapacity": 74
3068
+ },
3069
+ {
3070
+ "kind": "title",
3071
+ "x": 64,
3072
+ "y": 541.3333333333334,
3073
+ "width": 1146.6666666666667,
3074
+ "height": 85.33333333333333,
3075
+ "textRole": "title",
3076
+ "fontSize": 29,
3077
+ "textCapacity": 29
3078
+ }
3079
+ ],
3080
+ "jsxReference": ""
3081
+ }
3082
+ ]
3083
+ }
3084
+ },
3085
+ "provenance": {
3086
+ "kind": "dsh-original",
3087
+ "license": "MIT",
3088
+ "author": "DSH Desktop contributors",
3089
+ "modified": "2026-09-06"
3090
+ }
3091
+ }