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