@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,3152 @@
1
+ {
2
+ "definition": {
3
+ "id": "dsh-blue-professional",
4
+ "category": "business",
5
+ "sourceCollection": "curated",
6
+ "slug": "dsh-blue-professional",
7
+ "name": "Blue Professional",
8
+ "localizedNames": {
9
+ "en": "Blue Professional",
10
+ "zh": "蓝色商务"
11
+ },
12
+ "variantLabel": "DSH",
13
+ "description": "蓝色商务 · Blue Professional",
14
+ "previewTitle": "Blue Professional",
15
+ "previewSubtitle": "12 editable layouts",
16
+ "titleFontFace": "Arial",
17
+ "bodyFontFace": "Arial",
18
+ "fonts": {
19
+ "en": {
20
+ "title": "Arial",
21
+ "body": "Arial"
22
+ },
23
+ "zh": {
24
+ "title": "PingFang SC",
25
+ "body": "PingFang SC"
26
+ },
27
+ "fallbacks": {
28
+ "en": {
29
+ "title": "Arial",
30
+ "body": "Arial"
31
+ },
32
+ "zh": {
33
+ "macOS": {
34
+ "serif": "Songti SC",
35
+ "sans": "PingFang SC"
36
+ },
37
+ "Windows": {
38
+ "serif": "SimSun",
39
+ "sans": "Microsoft YaHei"
40
+ },
41
+ "Linux": {
42
+ "serif": "Noto Serif CJK SC",
43
+ "sans": "Noto Sans CJK SC"
44
+ }
45
+ }
46
+ },
47
+ "upstreamTitle": "Space Grotesk"
48
+ },
49
+ "previewLanguage": "en",
50
+ "palette": {
51
+ "background": "FDFAE7",
52
+ "text": "111111",
53
+ "accent": "1E2BFA",
54
+ "surface": "E9E8E0",
55
+ "secondary": "6B6B6B",
56
+ "muted": "6B6B6B"
57
+ },
58
+ "referenceDirectory": "business/dsh-blue-professional",
59
+ "referenceWidth": 1280,
60
+ "referenceHeight": 720,
61
+ "referencePageCount": 12,
62
+ "representativeSlides": [
63
+ 1,
64
+ 2,
65
+ 3,
66
+ 4,
67
+ 5,
68
+ 6,
69
+ 7,
70
+ 8,
71
+ 9,
72
+ 10,
73
+ 11,
74
+ 12
75
+ ],
76
+ "previewSlides": [
77
+ 4,
78
+ 1,
79
+ 2,
80
+ 3,
81
+ 5,
82
+ 6,
83
+ 7,
84
+ 8,
85
+ 9,
86
+ 10,
87
+ 11,
88
+ 12
89
+ ],
90
+ "designSha256": "6a3cd54d80ab1993aacd53d43299ee68ec744fd70ecfe63e22833ffbe2802476"
91
+ },
92
+ "semantics": {
93
+ "palette": {
94
+ "background": "FDFAE7",
95
+ "text": "111111",
96
+ "accent": "1E2BFA",
97
+ "surface": "E9E8E0",
98
+ "secondary": "6B6B6B",
99
+ "muted": "6B6B6B"
100
+ },
101
+ "source": {
102
+ "fileName": "blue-professional-reference.jpg",
103
+ "sha256": "6a3cd54d80ab1993aacd53d43299ee68ec744fd70ecfe63e22833ffbe2802476",
104
+ "slideCount": 12,
105
+ "averageTextBlocks": 18,
106
+ "averageCharacters": 275,
107
+ "visualGrammar": "blue-professional",
108
+ "recommendedDensity": "medium",
109
+ "designSummary": "# Blue Professional / 蓝色商务\n\nAdapted from Zara Zhang's Blue Professional, commit e5e204fb1f3b06290846e7dcd7aceddabeceec8c. MIT. This native edition rebuilds 12 editable layouts; it is not an HTML import or an exact copy of every upstream slide.\n\n## Typography\n\nEnglish display: Arial; English body: Arial. These portable Office substitutions replace the upstream display face Space Grotesk. Chinese display: PingFang SC; body: PingFang SC. On Windows use Microsoft YaHei / Microsoft YaHei; on Linux use Noto Sans CJK SC / Noto Sans CJK SC. No font binary is distributed. Keep the serif/sans distinction.\n\nEnglish previews use source/. Chinese examples use source-zh/. Preview language does not select the language of the user's output. Choose the matching fonts for the actual content; reflow longer translations instead of shrinking titles.\n\n## Layout grammar\n\n A restrained, consulting-grade presentation system on a warm cream canvas (#fdfae7) with a single saturated cobalt blue (#1e2bfa) as the only accent color. Display type runs Space Grotesk for headlines and numerical callouts; Inter handles body and chrome. Cards are soft-tinted cobalt at 4% opacity with 1.5px translucent borders and 10-14px rounded corners — quiet, never bordered in solid color. The aesthetic borrows from investment-research reports, McKinsey-grade quarterly briefings, and contemporary financial dashboards — measured, data-dense without feeling crowded, and unmistakably professional. The system is built for executive readability at distance, with strong typographic hierarchy and a single accent color carrying every emphasis moment.\n\n1. Cover (cover)\n2. Executive synthesis (insights)\n3. Market segmentation (data)\n4. Stacked trend and interpretation (data)\n5. Opportunity matrix (comparison)\n6. Profit bridge (data)\n7. Customer journey (process)\n8. Service architecture (process)\n9. Annotated case comparison (comparison)\n10. Dependency roadmap (process)\n11. Decision table (comparison)\n12. Closing (closing)\n\n## Expanded composition rules\n\nThis pack has twelve layouts. Start with the information relationship, then choose a reference page. Do not default to three equal cards or one chart per slide.\n\nUse evidence-led report compositions: an executive thesis beside supporting evidence, stacked trends with annotations, a contribution bridge, a portfolio matrix, a customer journey, a capability architecture, a case comparison, a dependency roadmap, and a decision table. Keep cream as the field and use cobalt to identify the decision or most important series.\n\nFor a deck of six or more content pages, use at least four distinct structural families when the material supports them. Avoid repeating the same family on adjacent slides. A detailed page should have one dominant argument, a supporting chart/diagram/table, and one concise interpretation. Alternate detailed evidence pages with simpler synthesis pages.\n\nAdapt the reference geometry to the real content. Add annotations, units, direct labels, baselines, owners and dependencies where they carry meaning. These examples use invented, explicitly marked sample data: replace every value and conclusion with user evidence; never fabricate data to make a page look fuller. Preserve native editable text and geometry. Do not turn all content into images. Keep body text around 18–22 pt and chart labels around 13–16 pt; reflow or split before shrinking.\n\nReference families: 2 executive synthesis; 3 market segmentation; 4 stacked trend; 5 opportunity matrix; 6 profit bridge; 7 customer journey; 8 service architecture; 9 case study; 10 delivery roadmap; 11 decision table.\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.\nAll charts and diagrams are native editable vectors. Example figures are illustrative, not reported facts. Retain a 48 pt outer margin and use 16:9, 960 × 540 pt.\n\nCopyright (c) 2026 Zara Zhang. DSH adaptation 2026-09-06. See licenses/zara/LICENSE and the pinned source design specification.\n",
110
+ "layoutPatterns": [
111
+ {
112
+ "family": "cover",
113
+ "slideCount": 1,
114
+ "sampleSlideNumbers": [
115
+ 1
116
+ ],
117
+ "titlePosition": "left",
118
+ "bodyColumns": 2,
119
+ "density": "medium",
120
+ "averageTextFrames": 4,
121
+ "averageMediaFrames": 0
122
+ },
123
+ {
124
+ "family": "insights",
125
+ "slideCount": 1,
126
+ "sampleSlideNumbers": [
127
+ 2
128
+ ],
129
+ "titlePosition": "left",
130
+ "bodyColumns": 2,
131
+ "density": "high",
132
+ "averageTextFrames": 16,
133
+ "averageMediaFrames": 0
134
+ },
135
+ {
136
+ "family": "data",
137
+ "slideCount": 1,
138
+ "sampleSlideNumbers": [
139
+ 3
140
+ ],
141
+ "titlePosition": "left",
142
+ "bodyColumns": 2,
143
+ "density": "high",
144
+ "averageTextFrames": 17,
145
+ "averageMediaFrames": 0
146
+ },
147
+ {
148
+ "family": "data",
149
+ "slideCount": 1,
150
+ "sampleSlideNumbers": [
151
+ 4
152
+ ],
153
+ "titlePosition": "left",
154
+ "bodyColumns": 2,
155
+ "density": "high",
156
+ "averageTextFrames": 35,
157
+ "averageMediaFrames": 0
158
+ },
159
+ {
160
+ "family": "comparison",
161
+ "slideCount": 1,
162
+ "sampleSlideNumbers": [
163
+ 5
164
+ ],
165
+ "titlePosition": "left",
166
+ "bodyColumns": 2,
167
+ "density": "high",
168
+ "averageTextFrames": 20,
169
+ "averageMediaFrames": 0
170
+ },
171
+ {
172
+ "family": "data",
173
+ "slideCount": 1,
174
+ "sampleSlideNumbers": [
175
+ 6
176
+ ],
177
+ "titlePosition": "left",
178
+ "bodyColumns": 2,
179
+ "density": "high",
180
+ "averageTextFrames": 30,
181
+ "averageMediaFrames": 0
182
+ },
183
+ {
184
+ "family": "process",
185
+ "slideCount": 1,
186
+ "sampleSlideNumbers": [
187
+ 7
188
+ ],
189
+ "titlePosition": "left",
190
+ "bodyColumns": 4,
191
+ "density": "high",
192
+ "averageTextFrames": 25,
193
+ "averageMediaFrames": 0
194
+ },
195
+ {
196
+ "family": "process",
197
+ "slideCount": 1,
198
+ "sampleSlideNumbers": [
199
+ 8
200
+ ],
201
+ "titlePosition": "left",
202
+ "bodyColumns": 3,
203
+ "density": "high",
204
+ "averageTextFrames": 18,
205
+ "averageMediaFrames": 0
206
+ },
207
+ {
208
+ "family": "comparison",
209
+ "slideCount": 1,
210
+ "sampleSlideNumbers": [
211
+ 9
212
+ ],
213
+ "titlePosition": "left",
214
+ "bodyColumns": 2,
215
+ "density": "high",
216
+ "averageTextFrames": 12,
217
+ "averageMediaFrames": 0
218
+ },
219
+ {
220
+ "family": "process",
221
+ "slideCount": 1,
222
+ "sampleSlideNumbers": [
223
+ 10
224
+ ],
225
+ "titlePosition": "left",
226
+ "bodyColumns": 3,
227
+ "density": "high",
228
+ "averageTextFrames": 14,
229
+ "averageMediaFrames": 0
230
+ },
231
+ {
232
+ "family": "comparison",
233
+ "slideCount": 1,
234
+ "sampleSlideNumbers": [
235
+ 11
236
+ ],
237
+ "titlePosition": "left",
238
+ "bodyColumns": 4,
239
+ "density": "high",
240
+ "averageTextFrames": 25,
241
+ "averageMediaFrames": 0
242
+ },
243
+ {
244
+ "family": "closing",
245
+ "slideCount": 1,
246
+ "sampleSlideNumbers": [
247
+ 12
248
+ ],
249
+ "titlePosition": "left",
250
+ "bodyColumns": 2,
251
+ "density": "medium",
252
+ "averageTextFrames": 4,
253
+ "averageMediaFrames": 0
254
+ }
255
+ ],
256
+ "pageReferences": [
257
+ {
258
+ "slideNumber": 1,
259
+ "sourceTitle": "Cover",
260
+ "family": "cover",
261
+ "titlePosition": "left",
262
+ "bodyColumns": 1,
263
+ "density": "medium",
264
+ "features": [
265
+ "cover"
266
+ ],
267
+ "recommendedRoles": [
268
+ "cover"
269
+ ],
270
+ "structureSummary": "Cover",
271
+ "zones": [
272
+ {
273
+ "kind": "shape",
274
+ "x": 920,
275
+ "y": 0,
276
+ "width": 360,
277
+ "height": 666.6666666666666,
278
+ "shape": "rect",
279
+ "fill": "E9E8E0"
280
+ },
281
+ {
282
+ "kind": "title",
283
+ "x": 64,
284
+ "y": 266.6666666666667,
285
+ "width": 813.3333333333334,
286
+ "height": 240,
287
+ "textRole": "title",
288
+ "fontSize": 50,
289
+ "textCapacity": 36
290
+ },
291
+ {
292
+ "kind": "text",
293
+ "x": 64,
294
+ "y": 552,
295
+ "width": 800,
296
+ "height": 66.66666666666667,
297
+ "textRole": "body",
298
+ "fontSize": 20,
299
+ "textCapacity": 60
300
+ },
301
+ {
302
+ "kind": "text",
303
+ "x": 64,
304
+ "y": 674.6666666666666,
305
+ "width": 1013.3333333333334,
306
+ "height": 21.333333333333332,
307
+ "textRole": "body",
308
+ "fontSize": 9,
309
+ "textCapacity": 84
310
+ },
311
+ {
312
+ "kind": "text",
313
+ "x": 1160,
314
+ "y": 670.6666666666666,
315
+ "width": 53.333333333333336,
316
+ "height": 26.666666666666668,
317
+ "textRole": "body",
318
+ "fontSize": 11,
319
+ "textCapacity": 3
320
+ }
321
+ ],
322
+ "jsxReference": ""
323
+ },
324
+ {
325
+ "slideNumber": 2,
326
+ "sourceTitle": "Executive synthesis",
327
+ "family": "insights",
328
+ "titlePosition": "left",
329
+ "bodyColumns": 2,
330
+ "density": "high",
331
+ "features": [
332
+ "insights"
333
+ ],
334
+ "recommendedRoles": [
335
+ "insights"
336
+ ],
337
+ "structureSummary": "Asymmetric thesis, one dominant metric and three evidence rows",
338
+ "zones": [
339
+ {
340
+ "kind": "text",
341
+ "x": 64,
342
+ "y": 34.666666666666664,
343
+ "width": 1093.3333333333333,
344
+ "height": 26.666666666666668,
345
+ "textRole": "body",
346
+ "fontSize": 11,
347
+ "textCapacity": 74
348
+ },
349
+ {
350
+ "kind": "title",
351
+ "x": 64,
352
+ "y": 104,
353
+ "width": 1152,
354
+ "height": 90.66666666666667,
355
+ "textRole": "title",
356
+ "fontSize": 34,
357
+ "textCapacity": 25
358
+ },
359
+ {
360
+ "kind": "title",
361
+ "x": 64,
362
+ "y": 228,
363
+ "width": 437.3333333333333,
364
+ "height": 178.66666666666666,
365
+ "textRole": "title",
366
+ "fontSize": 38,
367
+ "textCapacity": 24
368
+ },
369
+ {
370
+ "kind": "title",
371
+ "x": 64,
372
+ "y": 440,
373
+ "width": 400,
374
+ "height": 116,
375
+ "textRole": "title",
376
+ "fontSize": 68,
377
+ "textCapacity": 4
378
+ },
379
+ {
380
+ "kind": "text",
381
+ "x": 66.66666666666667,
382
+ "y": 560,
383
+ "width": 426.6666666666667,
384
+ "height": 46.666666666666664,
385
+ "textRole": "body",
386
+ "fontSize": 17,
387
+ "textCapacity": 18
388
+ },
389
+ {
390
+ "kind": "text",
391
+ "x": 584,
392
+ "y": 230.66666666666666,
393
+ "width": 60,
394
+ "height": 33.333333333333336,
395
+ "textRole": "body",
396
+ "fontSize": 15,
397
+ "textCapacity": 3
398
+ },
399
+ {
400
+ "kind": "text",
401
+ "x": 666.6666666666666,
402
+ "y": 226.66666666666666,
403
+ "width": 522.6666666666666,
404
+ "height": 46.666666666666664,
405
+ "textRole": "body",
406
+ "fontSize": 23,
407
+ "textCapacity": 17
408
+ },
409
+ {
410
+ "kind": "text",
411
+ "x": 666.6666666666666,
412
+ "y": 284,
413
+ "width": 522.6666666666666,
414
+ "height": 58.666666666666664,
415
+ "textRole": "body",
416
+ "fontSize": 18,
417
+ "textCapacity": 42
418
+ },
419
+ {
420
+ "kind": "text",
421
+ "x": 584,
422
+ "y": 358.6666666666667,
423
+ "width": 60,
424
+ "height": 33.333333333333336,
425
+ "textRole": "body",
426
+ "fontSize": 15,
427
+ "textCapacity": 3
428
+ },
429
+ {
430
+ "kind": "text",
431
+ "x": 666.6666666666666,
432
+ "y": 354.6666666666667,
433
+ "width": 522.6666666666666,
434
+ "height": 46.666666666666664,
435
+ "textRole": "body",
436
+ "fontSize": 23,
437
+ "textCapacity": 17
438
+ },
439
+ {
440
+ "kind": "text",
441
+ "x": 666.6666666666666,
442
+ "y": 412,
443
+ "width": 522.6666666666666,
444
+ "height": 58.666666666666664,
445
+ "textRole": "body",
446
+ "fontSize": 18,
447
+ "textCapacity": 42
448
+ },
449
+ {
450
+ "kind": "text",
451
+ "x": 584,
452
+ "y": 486.6666666666667,
453
+ "width": 60,
454
+ "height": 33.333333333333336,
455
+ "textRole": "body",
456
+ "fontSize": 15,
457
+ "textCapacity": 3
458
+ },
459
+ {
460
+ "kind": "text",
461
+ "x": 666.6666666666666,
462
+ "y": 482.6666666666667,
463
+ "width": 522.6666666666666,
464
+ "height": 46.666666666666664,
465
+ "textRole": "body",
466
+ "fontSize": 23,
467
+ "textCapacity": 17
468
+ },
469
+ {
470
+ "kind": "text",
471
+ "x": 666.6666666666666,
472
+ "y": 540,
473
+ "width": 522.6666666666666,
474
+ "height": 58.666666666666664,
475
+ "textRole": "body",
476
+ "fontSize": 18,
477
+ "textCapacity": 42
478
+ },
479
+ {
480
+ "kind": "text",
481
+ "x": 64,
482
+ "y": 676,
483
+ "width": 1013.3333333333334,
484
+ "height": 21.333333333333332,
485
+ "textRole": "body",
486
+ "fontSize": 9,
487
+ "textCapacity": 84
488
+ },
489
+ {
490
+ "kind": "text",
491
+ "x": 1160,
492
+ "y": 672,
493
+ "width": 56,
494
+ "height": 29.333333333333332,
495
+ "textRole": "body",
496
+ "fontSize": 11,
497
+ "textCapacity": 3
498
+ }
499
+ ],
500
+ "jsxReference": ""
501
+ },
502
+ {
503
+ "slideNumber": 3,
504
+ "sourceTitle": "Market segmentation",
505
+ "family": "data",
506
+ "titlePosition": "left",
507
+ "bodyColumns": 2,
508
+ "density": "high",
509
+ "features": [
510
+ "data"
511
+ ],
512
+ "recommendedRoles": [
513
+ "data"
514
+ ],
515
+ "structureSummary": "Proportional market bar, direct legend and opportunity sizing",
516
+ "zones": [
517
+ {
518
+ "kind": "text",
519
+ "x": 64,
520
+ "y": 34.666666666666664,
521
+ "width": 1093.3333333333333,
522
+ "height": 26.666666666666668,
523
+ "textRole": "body",
524
+ "fontSize": 11,
525
+ "textCapacity": 74
526
+ },
527
+ {
528
+ "kind": "title",
529
+ "x": 64,
530
+ "y": 104,
531
+ "width": 1152,
532
+ "height": 90.66666666666667,
533
+ "textRole": "title",
534
+ "fontSize": 34,
535
+ "textCapacity": 25
536
+ },
537
+ {
538
+ "kind": "shape",
539
+ "x": 64,
540
+ "y": 254.66666666666666,
541
+ "width": 357.11999999999995,
542
+ "height": 150.66666666666666,
543
+ "shape": "rect",
544
+ "fill": "1E2BFA"
545
+ },
546
+ {
547
+ "kind": "title",
548
+ "x": 85.33333333333333,
549
+ "y": 278.6666666666667,
550
+ "width": 323.78666666666663,
551
+ "height": 64,
552
+ "textRole": "title",
553
+ "fontSize": 34,
554
+ "textCapacity": 7
555
+ },
556
+ {
557
+ "kind": "shape",
558
+ "x": 421.11999999999995,
559
+ "y": 254.66666666666666,
560
+ "width": 238.08,
561
+ "height": 150.66666666666666,
562
+ "shape": "rect",
563
+ "fill": "737BF5"
564
+ },
565
+ {
566
+ "kind": "title",
567
+ "x": 442.4533333333333,
568
+ "y": 278.6666666666667,
569
+ "width": 204.74666666666667,
570
+ "height": 64,
571
+ "textRole": "title",
572
+ "fontSize": 34,
573
+ "textCapacity": 4
574
+ },
575
+ {
576
+ "kind": "shape",
577
+ "x": 659.1999999999999,
578
+ "y": 254.66666666666666,
579
+ "width": 148.79999999999998,
580
+ "height": 150.66666666666666,
581
+ "shape": "rect",
582
+ "fill": "C8CBFA"
583
+ },
584
+ {
585
+ "kind": "title",
586
+ "x": 680.5333333333333,
587
+ "y": 278.6666666666667,
588
+ "width": 115.46666666666665,
589
+ "height": 64,
590
+ "textRole": "title",
591
+ "fontSize": 34,
592
+ "textCapacity": 2
593
+ },
594
+ {
595
+ "kind": "shape",
596
+ "x": 65.33333333333333,
597
+ "y": 438.6666666666667,
598
+ "width": 13.333333333333334,
599
+ "height": 13.333333333333334,
600
+ "shape": "ellipse",
601
+ "fill": "1E2BFA"
602
+ },
603
+ {
604
+ "kind": "text",
605
+ "x": 97.33333333333333,
606
+ "y": 429.3333333333333,
607
+ "width": 301.3333333333333,
608
+ "height": 42.666666666666664,
609
+ "textRole": "body",
610
+ "fontSize": 18,
611
+ "textCapacity": 12
612
+ },
613
+ {
614
+ "kind": "text",
615
+ "x": 653.3333333333334,
616
+ "y": 429.3333333333333,
617
+ "width": 154.66666666666666,
618
+ "height": 42.666666666666664,
619
+ "textRole": "body",
620
+ "fontSize": 18,
621
+ "textCapacity": 6
622
+ },
623
+ {
624
+ "kind": "shape",
625
+ "x": 65.33333333333333,
626
+ "y": 496,
627
+ "width": 13.333333333333334,
628
+ "height": 13.333333333333334,
629
+ "shape": "ellipse",
630
+ "fill": "737BF5"
631
+ },
632
+ {
633
+ "kind": "text",
634
+ "x": 97.33333333333333,
635
+ "y": 486.6666666666667,
636
+ "width": 301.3333333333333,
637
+ "height": 42.666666666666664,
638
+ "textRole": "body",
639
+ "fontSize": 18,
640
+ "textCapacity": 12
641
+ },
642
+ {
643
+ "kind": "text",
644
+ "x": 653.3333333333334,
645
+ "y": 486.6666666666667,
646
+ "width": 154.66666666666666,
647
+ "height": 42.666666666666664,
648
+ "textRole": "body",
649
+ "fontSize": 18,
650
+ "textCapacity": 6
651
+ },
652
+ {
653
+ "kind": "shape",
654
+ "x": 65.33333333333333,
655
+ "y": 553.3333333333334,
656
+ "width": 13.333333333333334,
657
+ "height": 13.333333333333334,
658
+ "shape": "ellipse",
659
+ "fill": "C8CBFA"
660
+ },
661
+ {
662
+ "kind": "text",
663
+ "x": 97.33333333333333,
664
+ "y": 544,
665
+ "width": 301.3333333333333,
666
+ "height": 42.666666666666664,
667
+ "textRole": "body",
668
+ "fontSize": 18,
669
+ "textCapacity": 12
670
+ },
671
+ {
672
+ "kind": "text",
673
+ "x": 653.3333333333334,
674
+ "y": 544,
675
+ "width": 154.66666666666666,
676
+ "height": 42.666666666666664,
677
+ "textRole": "body",
678
+ "fontSize": 18,
679
+ "textCapacity": 6
680
+ },
681
+ {
682
+ "kind": "title",
683
+ "x": 898.6666666666666,
684
+ "y": 246.66666666666666,
685
+ "width": 317.3333333333333,
686
+ "height": 104,
687
+ "textRole": "title",
688
+ "fontSize": 49,
689
+ "textCapacity": 4
690
+ },
691
+ {
692
+ "kind": "text",
693
+ "x": 898.6666666666666,
694
+ "y": 369.3333333333333,
695
+ "width": 317.3333333333333,
696
+ "height": 60,
697
+ "textRole": "body",
698
+ "fontSize": 20,
699
+ "textCapacity": 22
700
+ },
701
+ {
702
+ "kind": "text",
703
+ "x": 898.6666666666666,
704
+ "y": 466.6666666666667,
705
+ "width": 317.3333333333333,
706
+ "height": 137.33333333333334,
707
+ "textRole": "body",
708
+ "fontSize": 20,
709
+ "textCapacity": 44
710
+ },
711
+ {
712
+ "kind": "text",
713
+ "x": 64,
714
+ "y": 633.3333333333334,
715
+ "width": 1152,
716
+ "height": 33.333333333333336,
717
+ "textRole": "body",
718
+ "fontSize": 13,
719
+ "textCapacity": 66
720
+ },
721
+ {
722
+ "kind": "text",
723
+ "x": 64,
724
+ "y": 676,
725
+ "width": 1013.3333333333334,
726
+ "height": 21.333333333333332,
727
+ "textRole": "body",
728
+ "fontSize": 9,
729
+ "textCapacity": 84
730
+ },
731
+ {
732
+ "kind": "text",
733
+ "x": 1160,
734
+ "y": 672,
735
+ "width": 56,
736
+ "height": 29.333333333333332,
737
+ "textRole": "body",
738
+ "fontSize": 11,
739
+ "textCapacity": 3
740
+ }
741
+ ],
742
+ "jsxReference": ""
743
+ },
744
+ {
745
+ "slideNumber": 4,
746
+ "sourceTitle": "Stacked trend and interpretation",
747
+ "family": "data",
748
+ "titlePosition": "left",
749
+ "bodyColumns": 2,
750
+ "density": "high",
751
+ "features": [
752
+ "data"
753
+ ],
754
+ "recommendedRoles": [
755
+ "data"
756
+ ],
757
+ "structureSummary": "Stacked columns on a common scale with a derived contribution callout",
758
+ "zones": [
759
+ {
760
+ "kind": "text",
761
+ "x": 64,
762
+ "y": 34.666666666666664,
763
+ "width": 1093.3333333333333,
764
+ "height": 26.666666666666668,
765
+ "textRole": "body",
766
+ "fontSize": 11,
767
+ "textCapacity": 74
768
+ },
769
+ {
770
+ "kind": "title",
771
+ "x": 64,
772
+ "y": 104,
773
+ "width": 1152,
774
+ "height": 90.66666666666667,
775
+ "textRole": "title",
776
+ "fontSize": 34,
777
+ "textCapacity": 25
778
+ },
779
+ {
780
+ "kind": "text",
781
+ "x": 64,
782
+ "y": 204,
783
+ "width": 688,
784
+ "height": 32,
785
+ "textRole": "body",
786
+ "fontSize": 11,
787
+ "textCapacity": 46
788
+ },
789
+ {
790
+ "kind": "shape",
791
+ "x": 144,
792
+ "y": 236,
793
+ "width": 12,
794
+ "height": 12,
795
+ "shape": "rect",
796
+ "fill": "1E2BFA"
797
+ },
798
+ {
799
+ "kind": "text",
800
+ "x": 165.33333333333334,
801
+ "y": 229.33333333333334,
802
+ "width": 209.33333333333334,
803
+ "height": 30.666666666666668,
804
+ "textRole": "body",
805
+ "fontSize": 11,
806
+ "textCapacity": 14
807
+ },
808
+ {
809
+ "kind": "shape",
810
+ "x": 400,
811
+ "y": 236,
812
+ "width": 12,
813
+ "height": 12,
814
+ "shape": "rect",
815
+ "fill": "A1A7FA"
816
+ },
817
+ {
818
+ "kind": "text",
819
+ "x": 421.3333333333333,
820
+ "y": 229.33333333333334,
821
+ "width": 280,
822
+ "height": 30.666666666666668,
823
+ "textRole": "body",
824
+ "fontSize": 11,
825
+ "textCapacity": 19
826
+ },
827
+ {
828
+ "kind": "text",
829
+ "x": 64,
830
+ "y": 529.3333333333334,
831
+ "width": 46.666666666666664,
832
+ "height": 29.333333333333332,
833
+ "textRole": "body",
834
+ "fontSize": 11,
835
+ "textCapacity": 3
836
+ },
837
+ {
838
+ "kind": "text",
839
+ "x": 64,
840
+ "y": 448.26666666666665,
841
+ "width": 46.666666666666664,
842
+ "height": 29.333333333333332,
843
+ "textRole": "body",
844
+ "fontSize": 11,
845
+ "textCapacity": 3
846
+ },
847
+ {
848
+ "kind": "text",
849
+ "x": 64,
850
+ "y": 367.2,
851
+ "width": 46.666666666666664,
852
+ "height": 29.333333333333332,
853
+ "textRole": "body",
854
+ "fontSize": 11,
855
+ "textCapacity": 3
856
+ },
857
+ {
858
+ "kind": "text",
859
+ "x": 64,
860
+ "y": 286.1333333333333,
861
+ "width": 46.666666666666664,
862
+ "height": 29.333333333333332,
863
+ "textRole": "body",
864
+ "fontSize": 11,
865
+ "textCapacity": 3
866
+ },
867
+ {
868
+ "kind": "shape",
869
+ "x": 148,
870
+ "y": 457.5466666666666,
871
+ "width": 57.333333333333336,
872
+ "height": 85.12,
873
+ "shape": "rect",
874
+ "fill": "1E2BFA"
875
+ },
876
+ {
877
+ "kind": "shape",
878
+ "x": 148,
879
+ "y": 421.06666666666666,
880
+ "width": 57.333333333333336,
881
+ "height": 36.48,
882
+ "shape": "rect",
883
+ "fill": "A1A7FA"
884
+ },
885
+ {
886
+ "kind": "text",
887
+ "x": 141.33333333333334,
888
+ "y": 383.73333333333335,
889
+ "width": 80,
890
+ "height": 33.333333333333336,
891
+ "textRole": "body",
892
+ "fontSize": 14,
893
+ "textCapacity": 4
894
+ },
895
+ {
896
+ "kind": "text",
897
+ "x": 145.33333333333334,
898
+ "y": 556,
899
+ "width": 74.66666666666667,
900
+ "height": 33.333333333333336,
901
+ "textRole": "body",
902
+ "fontSize": 12,
903
+ "textCapacity": 4
904
+ },
905
+ {
906
+ "kind": "shape",
907
+ "x": 257.3333333333333,
908
+ "y": 445.3866666666666,
909
+ "width": 57.333333333333336,
910
+ "height": 97.28000000000002,
911
+ "shape": "rect",
912
+ "fill": "1E2BFA"
913
+ },
914
+ {
915
+ "kind": "shape",
916
+ "x": 257.3333333333333,
917
+ "y": 404.8533333333333,
918
+ "width": 57.333333333333336,
919
+ "height": 40.53333333333333,
920
+ "shape": "rect",
921
+ "fill": "A1A7FA"
922
+ },
923
+ {
924
+ "kind": "text",
925
+ "x": 250.66666666666666,
926
+ "y": 367.52,
927
+ "width": 80,
928
+ "height": 33.333333333333336,
929
+ "textRole": "body",
930
+ "fontSize": 14,
931
+ "textCapacity": 4
932
+ },
933
+ {
934
+ "kind": "text",
935
+ "x": 254.66666666666666,
936
+ "y": 556,
937
+ "width": 74.66666666666667,
938
+ "height": 33.333333333333336,
939
+ "textRole": "body",
940
+ "fontSize": 12,
941
+ "textCapacity": 4
942
+ },
943
+ {
944
+ "kind": "shape",
945
+ "x": 366.6666666666667,
946
+ "y": 435.25333333333333,
947
+ "width": 57.333333333333336,
948
+ "height": 107.41333333333334,
949
+ "shape": "rect",
950
+ "fill": "1E2BFA"
951
+ },
952
+ {
953
+ "kind": "shape",
954
+ "x": 366.6666666666667,
955
+ "y": 388.64000000000004,
956
+ "width": 57.333333333333336,
957
+ "height": 46.61333333333334,
958
+ "shape": "rect",
959
+ "fill": "A1A7FA"
960
+ },
961
+ {
962
+ "kind": "text",
963
+ "x": 360,
964
+ "y": 351.3066666666667,
965
+ "width": 80,
966
+ "height": 33.333333333333336,
967
+ "textRole": "body",
968
+ "fontSize": 14,
969
+ "textCapacity": 4
970
+ },
971
+ {
972
+ "kind": "text",
973
+ "x": 364,
974
+ "y": 556,
975
+ "width": 74.66666666666667,
976
+ "height": 33.333333333333336,
977
+ "textRole": "body",
978
+ "fontSize": 12,
979
+ "textCapacity": 4
980
+ },
981
+ {
982
+ "kind": "shape",
983
+ "x": 476,
984
+ "y": 419.03999999999996,
985
+ "width": 57.333333333333336,
986
+ "height": 123.62666666666667,
987
+ "shape": "rect",
988
+ "fill": "1E2BFA"
989
+ },
990
+ {
991
+ "kind": "shape",
992
+ "x": 476,
993
+ "y": 368.3733333333333,
994
+ "width": 57.333333333333336,
995
+ "height": 50.666666666666664,
996
+ "shape": "rect",
997
+ "fill": "A1A7FA"
998
+ },
999
+ {
1000
+ "kind": "text",
1001
+ "x": 469.3333333333333,
1002
+ "y": 331.04,
1003
+ "width": 80,
1004
+ "height": 33.333333333333336,
1005
+ "textRole": "body",
1006
+ "fontSize": 14,
1007
+ "textCapacity": 4
1008
+ },
1009
+ {
1010
+ "kind": "text",
1011
+ "x": 473.3333333333333,
1012
+ "y": 556,
1013
+ "width": 74.66666666666667,
1014
+ "height": 33.333333333333336,
1015
+ "textRole": "body",
1016
+ "fontSize": 12,
1017
+ "textCapacity": 4
1018
+ },
1019
+ {
1020
+ "kind": "shape",
1021
+ "x": 585.3333333333334,
1022
+ "y": 410.93333333333334,
1023
+ "width": 57.333333333333336,
1024
+ "height": 131.73333333333332,
1025
+ "shape": "rect",
1026
+ "fill": "1E2BFA"
1027
+ },
1028
+ {
1029
+ "kind": "shape",
1030
+ "x": 585.3333333333334,
1031
+ "y": 352.16,
1032
+ "width": 57.333333333333336,
1033
+ "height": 58.77333333333333,
1034
+ "shape": "rect",
1035
+ "fill": "A1A7FA"
1036
+ },
1037
+ {
1038
+ "kind": "text",
1039
+ "x": 578.6666666666666,
1040
+ "y": 314.82666666666665,
1041
+ "width": 80,
1042
+ "height": 33.333333333333336,
1043
+ "textRole": "body",
1044
+ "fontSize": 14,
1045
+ "textCapacity": 4
1046
+ },
1047
+ {
1048
+ "kind": "text",
1049
+ "x": 582.6666666666666,
1050
+ "y": 556,
1051
+ "width": 74.66666666666667,
1052
+ "height": 33.333333333333336,
1053
+ "textRole": "body",
1054
+ "fontSize": 12,
1055
+ "textCapacity": 4
1056
+ },
1057
+ {
1058
+ "kind": "shape",
1059
+ "x": 694.6666666666666,
1060
+ "y": 396.74666666666667,
1061
+ "width": 57.333333333333336,
1062
+ "height": 145.92,
1063
+ "shape": "rect",
1064
+ "fill": "1E2BFA"
1065
+ },
1066
+ {
1067
+ "kind": "shape",
1068
+ "x": 694.6666666666666,
1069
+ "y": 329.8666666666667,
1070
+ "width": 57.333333333333336,
1071
+ "height": 66.88000000000001,
1072
+ "shape": "rect",
1073
+ "fill": "A1A7FA"
1074
+ },
1075
+ {
1076
+ "kind": "text",
1077
+ "x": 688,
1078
+ "y": 292.53333333333336,
1079
+ "width": 80,
1080
+ "height": 33.333333333333336,
1081
+ "textRole": "body",
1082
+ "fontSize": 14,
1083
+ "textCapacity": 4
1084
+ },
1085
+ {
1086
+ "kind": "text",
1087
+ "x": 692,
1088
+ "y": 556,
1089
+ "width": 74.66666666666667,
1090
+ "height": 33.333333333333336,
1091
+ "textRole": "body",
1092
+ "fontSize": 12,
1093
+ "textCapacity": 4
1094
+ },
1095
+ {
1096
+ "kind": "text",
1097
+ "x": 124,
1098
+ "y": 597.3333333333334,
1099
+ "width": 201.33333333333334,
1100
+ "height": 36,
1101
+ "textRole": "body",
1102
+ "fontSize": 17,
1103
+ "textCapacity": 8
1104
+ },
1105
+ {
1106
+ "kind": "text",
1107
+ "x": 328,
1108
+ "y": 597.3333333333334,
1109
+ "width": 486.6666666666667,
1110
+ "height": 36,
1111
+ "textRole": "body",
1112
+ "fontSize": 14,
1113
+ "textCapacity": 26
1114
+ },
1115
+ {
1116
+ "kind": "text",
1117
+ "x": 898.6666666666666,
1118
+ "y": 206.66666666666666,
1119
+ "width": 317.3333333333333,
1120
+ "height": 37.333333333333336,
1121
+ "textRole": "body",
1122
+ "fontSize": 11,
1123
+ "textCapacity": 42
1124
+ },
1125
+ {
1126
+ "kind": "title",
1127
+ "x": 898.6666666666666,
1128
+ "y": 272,
1129
+ "width": 317.3333333333333,
1130
+ "height": 98.66666666666667,
1131
+ "textRole": "title",
1132
+ "fontSize": 57,
1133
+ "textCapacity": 4
1134
+ },
1135
+ {
1136
+ "kind": "text",
1137
+ "x": 898.6666666666666,
1138
+ "y": 380,
1139
+ "width": 317.3333333333333,
1140
+ "height": 68,
1141
+ "textRole": "body",
1142
+ "fontSize": 20,
1143
+ "textCapacity": 22
1144
+ },
1145
+ {
1146
+ "kind": "text",
1147
+ "x": 898.6666666666666,
1148
+ "y": 458.6666666666667,
1149
+ "width": 220,
1150
+ "height": 37.333333333333336,
1151
+ "textRole": "body",
1152
+ "fontSize": 14,
1153
+ "textCapacity": 11
1154
+ },
1155
+ {
1156
+ "kind": "text",
1157
+ "x": 1118.6666666666667,
1158
+ "y": 457.3333333333333,
1159
+ "width": 97.33333333333333,
1160
+ "height": 38.666666666666664,
1161
+ "textRole": "body",
1162
+ "fontSize": 19,
1163
+ "textCapacity": 3
1164
+ },
1165
+ {
1166
+ "kind": "text",
1167
+ "x": 898.6666666666666,
1168
+ "y": 506.6666666666667,
1169
+ "width": 220,
1170
+ "height": 37.333333333333336,
1171
+ "textRole": "body",
1172
+ "fontSize": 14,
1173
+ "textCapacity": 11
1174
+ },
1175
+ {
1176
+ "kind": "text",
1177
+ "x": 1118.6666666666667,
1178
+ "y": 505.3333333333333,
1179
+ "width": 97.33333333333333,
1180
+ "height": 38.666666666666664,
1181
+ "textRole": "body",
1182
+ "fontSize": 19,
1183
+ "textCapacity": 3
1184
+ },
1185
+ {
1186
+ "kind": "text",
1187
+ "x": 898.6666666666666,
1188
+ "y": 554.6666666666666,
1189
+ "width": 220,
1190
+ "height": 37.333333333333336,
1191
+ "textRole": "body",
1192
+ "fontSize": 14,
1193
+ "textCapacity": 11
1194
+ },
1195
+ {
1196
+ "kind": "text",
1197
+ "x": 1118.6666666666667,
1198
+ "y": 553.3333333333334,
1199
+ "width": 97.33333333333333,
1200
+ "height": 38.666666666666664,
1201
+ "textRole": "body",
1202
+ "fontSize": 19,
1203
+ "textCapacity": 3
1204
+ },
1205
+ {
1206
+ "kind": "text",
1207
+ "x": 64,
1208
+ "y": 633.3333333333334,
1209
+ "width": 1152,
1210
+ "height": 33.333333333333336,
1211
+ "textRole": "body",
1212
+ "fontSize": 13,
1213
+ "textCapacity": 66
1214
+ },
1215
+ {
1216
+ "kind": "text",
1217
+ "x": 64,
1218
+ "y": 676,
1219
+ "width": 1013.3333333333334,
1220
+ "height": 21.333333333333332,
1221
+ "textRole": "body",
1222
+ "fontSize": 9,
1223
+ "textCapacity": 84
1224
+ },
1225
+ {
1226
+ "kind": "text",
1227
+ "x": 1160,
1228
+ "y": 672,
1229
+ "width": 56,
1230
+ "height": 29.333333333333332,
1231
+ "textRole": "body",
1232
+ "fontSize": 11,
1233
+ "textCapacity": 3
1234
+ }
1235
+ ],
1236
+ "jsxReference": ""
1237
+ },
1238
+ {
1239
+ "slideNumber": 5,
1240
+ "sourceTitle": "Opportunity matrix",
1241
+ "family": "comparison",
1242
+ "titlePosition": "left",
1243
+ "bodyColumns": 2,
1244
+ "density": "high",
1245
+ "features": [
1246
+ "comparison"
1247
+ ],
1248
+ "recommendedRoles": [
1249
+ "comparison"
1250
+ ],
1251
+ "structureSummary": "Two-axis market map, sized markers and a separate decision rationale",
1252
+ "zones": [
1253
+ {
1254
+ "kind": "text",
1255
+ "x": 64,
1256
+ "y": 34.666666666666664,
1257
+ "width": 1093.3333333333333,
1258
+ "height": 26.666666666666668,
1259
+ "textRole": "body",
1260
+ "fontSize": 11,
1261
+ "textCapacity": 74
1262
+ },
1263
+ {
1264
+ "kind": "title",
1265
+ "x": 64,
1266
+ "y": 104,
1267
+ "width": 1152,
1268
+ "height": 90.66666666666667,
1269
+ "textRole": "title",
1270
+ "fontSize": 34,
1271
+ "textCapacity": 25
1272
+ },
1273
+ {
1274
+ "kind": "shape",
1275
+ "x": 120,
1276
+ "y": 233.33333333333334,
1277
+ "width": 669.3333333333334,
1278
+ "height": 360,
1279
+ "shape": "rect",
1280
+ "fill": "F1EEDB"
1281
+ },
1282
+ {
1283
+ "kind": "shape",
1284
+ "x": 454.6666666666667,
1285
+ "y": 233.33333333333334,
1286
+ "width": 334.6666666666667,
1287
+ "height": 180,
1288
+ "shape": "rect",
1289
+ "fill": "E2E3F8"
1290
+ },
1291
+ {
1292
+ "kind": "text",
1293
+ "x": 142.66666666666666,
1294
+ "y": 245.33333333333334,
1295
+ "width": 289.3333333333333,
1296
+ "height": 32,
1297
+ "textRole": "body",
1298
+ "fontSize": 11,
1299
+ "textCapacity": 19
1300
+ },
1301
+ {
1302
+ "kind": "text",
1303
+ "x": 477.3333333333333,
1304
+ "y": 245.33333333333334,
1305
+ "width": 280,
1306
+ "height": 32,
1307
+ "textRole": "body",
1308
+ "fontSize": 11,
1309
+ "textCapacity": 19
1310
+ },
1311
+ {
1312
+ "kind": "text",
1313
+ "x": 142.66666666666666,
1314
+ "y": 549.3333333333334,
1315
+ "width": 288,
1316
+ "height": 32,
1317
+ "textRole": "body",
1318
+ "fontSize": 11,
1319
+ "textCapacity": 19
1320
+ },
1321
+ {
1322
+ "kind": "text",
1323
+ "x": 477.3333333333333,
1324
+ "y": 549.3333333333334,
1325
+ "width": 297.3333333333333,
1326
+ "height": 32,
1327
+ "textRole": "body",
1328
+ "fontSize": 11,
1329
+ "textCapacity": 20
1330
+ },
1331
+ {
1332
+ "kind": "shape",
1333
+ "x": 252,
1334
+ "y": 345.3333333333333,
1335
+ "width": 34.666666666666664,
1336
+ "height": 34.666666666666664,
1337
+ "shape": "ellipse",
1338
+ "fill": "1E2BFA"
1339
+ },
1340
+ {
1341
+ "kind": "text",
1342
+ "x": 300,
1343
+ "y": 346.6666666666667,
1344
+ "width": 124,
1345
+ "height": 36,
1346
+ "textRole": "body",
1347
+ "fontSize": 14,
1348
+ "textCapacity": 6
1349
+ },
1350
+ {
1351
+ "kind": "shape",
1352
+ "x": 588,
1353
+ "y": 301.3333333333333,
1354
+ "width": 53.333333333333336,
1355
+ "height": 53.333333333333336,
1356
+ "shape": "ellipse",
1357
+ "fill": "1E2BFA"
1358
+ },
1359
+ {
1360
+ "kind": "text",
1361
+ "x": 645.3333333333334,
1362
+ "y": 312,
1363
+ "width": 124,
1364
+ "height": 36,
1365
+ "textRole": "body",
1366
+ "fontSize": 14,
1367
+ "textCapacity": 6
1368
+ },
1369
+ {
1370
+ "kind": "shape",
1371
+ "x": 494.6666666666667,
1372
+ "y": 358.6666666666667,
1373
+ "width": 32,
1374
+ "height": 32,
1375
+ "shape": "ellipse",
1376
+ "fill": "1E2BFA"
1377
+ },
1378
+ {
1379
+ "kind": "text",
1380
+ "x": 541.3333333333334,
1381
+ "y": 358.6666666666667,
1382
+ "width": 124,
1383
+ "height": 36,
1384
+ "textRole": "body",
1385
+ "fontSize": 14,
1386
+ "textCapacity": 6
1387
+ },
1388
+ {
1389
+ "kind": "shape",
1390
+ "x": 344,
1391
+ "y": 478.6666666666667,
1392
+ "width": 24,
1393
+ "height": 24,
1394
+ "shape": "ellipse",
1395
+ "fill": "1E2BFA"
1396
+ },
1397
+ {
1398
+ "kind": "text",
1399
+ "x": 386.6666666666667,
1400
+ "y": 474.6666666666667,
1401
+ "width": 124,
1402
+ "height": 36,
1403
+ "textRole": "body",
1404
+ "fontSize": 14,
1405
+ "textCapacity": 6
1406
+ },
1407
+ {
1408
+ "kind": "shape",
1409
+ "x": 630.6666666666666,
1410
+ "y": 477.3333333333333,
1411
+ "width": 37.333333333333336,
1412
+ "height": 37.333333333333336,
1413
+ "shape": "ellipse",
1414
+ "fill": "1E2BFA"
1415
+ },
1416
+ {
1417
+ "kind": "text",
1418
+ "x": 680,
1419
+ "y": 480,
1420
+ "width": 124,
1421
+ "height": 36,
1422
+ "textRole": "body",
1423
+ "fontSize": 14,
1424
+ "textCapacity": 6
1425
+ },
1426
+ {
1427
+ "kind": "text",
1428
+ "x": 120,
1429
+ "y": 606.6666666666666,
1430
+ "width": 80,
1431
+ "height": 37.333333333333336,
1432
+ "textRole": "body",
1433
+ "fontSize": 12,
1434
+ "textCapacity": 10
1435
+ },
1436
+ {
1437
+ "kind": "text",
1438
+ "x": 240,
1439
+ "y": 606.6666666666666,
1440
+ "width": 424,
1441
+ "height": 37.333333333333336,
1442
+ "textRole": "body",
1443
+ "fontSize": 12,
1444
+ "textCapacity": 52
1445
+ },
1446
+ {
1447
+ "kind": "text",
1448
+ "x": 708,
1449
+ "y": 606.6666666666666,
1450
+ "width": 81.33333333333333,
1451
+ "height": 37.333333333333336,
1452
+ "textRole": "body",
1453
+ "fontSize": 12,
1454
+ "textCapacity": 10
1455
+ },
1456
+ {
1457
+ "kind": "text",
1458
+ "x": 120,
1459
+ "y": 194.66666666666666,
1460
+ "width": 700,
1461
+ "height": 29.333333333333332,
1462
+ "textRole": "body",
1463
+ "fontSize": 12,
1464
+ "textCapacity": 43
1465
+ },
1466
+ {
1467
+ "kind": "text",
1468
+ "x": 866.6666666666666,
1469
+ "y": 252,
1470
+ "width": 344,
1471
+ "height": 92,
1472
+ "textRole": "body",
1473
+ "fontSize": 28,
1474
+ "textCapacity": 18
1475
+ },
1476
+ {
1477
+ "kind": "text",
1478
+ "x": 866.6666666666666,
1479
+ "y": 376,
1480
+ "width": 344,
1481
+ "height": 126.66666666666667,
1482
+ "textRole": "body",
1483
+ "fontSize": 21,
1484
+ "textCapacity": 48
1485
+ },
1486
+ {
1487
+ "kind": "text",
1488
+ "x": 866.6666666666666,
1489
+ "y": 546.6666666666666,
1490
+ "width": 344,
1491
+ "height": 53.333333333333336,
1492
+ "textRole": "body",
1493
+ "fontSize": 14,
1494
+ "textCapacity": 36
1495
+ },
1496
+ {
1497
+ "kind": "text",
1498
+ "x": 64,
1499
+ "y": 676,
1500
+ "width": 1013.3333333333334,
1501
+ "height": 21.333333333333332,
1502
+ "textRole": "body",
1503
+ "fontSize": 9,
1504
+ "textCapacity": 84
1505
+ },
1506
+ {
1507
+ "kind": "text",
1508
+ "x": 1160,
1509
+ "y": 672,
1510
+ "width": 56,
1511
+ "height": 29.333333333333332,
1512
+ "textRole": "body",
1513
+ "fontSize": 11,
1514
+ "textCapacity": 3
1515
+ }
1516
+ ],
1517
+ "jsxReference": ""
1518
+ },
1519
+ {
1520
+ "slideNumber": 6,
1521
+ "sourceTitle": "Profit bridge",
1522
+ "family": "data",
1523
+ "titlePosition": "left",
1524
+ "bodyColumns": 2,
1525
+ "density": "high",
1526
+ "features": [
1527
+ "data"
1528
+ ],
1529
+ "recommendedRoles": [
1530
+ "data"
1531
+ ],
1532
+ "structureSummary": "Editable waterfall with sequential baselines and a reconciled net change",
1533
+ "zones": [
1534
+ {
1535
+ "kind": "text",
1536
+ "x": 64,
1537
+ "y": 34.666666666666664,
1538
+ "width": 1093.3333333333333,
1539
+ "height": 26.666666666666668,
1540
+ "textRole": "body",
1541
+ "fontSize": 11,
1542
+ "textCapacity": 74
1543
+ },
1544
+ {
1545
+ "kind": "title",
1546
+ "x": 64,
1547
+ "y": 104,
1548
+ "width": 1152,
1549
+ "height": 90.66666666666667,
1550
+ "textRole": "title",
1551
+ "fontSize": 34,
1552
+ "textCapacity": 25
1553
+ },
1554
+ {
1555
+ "kind": "text",
1556
+ "x": 64,
1557
+ "y": 204,
1558
+ "width": 772,
1559
+ "height": 30.666666666666668,
1560
+ "textRole": "body",
1561
+ "fontSize": 11,
1562
+ "textCapacity": 52
1563
+ },
1564
+ {
1565
+ "kind": "text",
1566
+ "x": 64,
1567
+ "y": 557.3333333333334,
1568
+ "width": 41.333333333333336,
1569
+ "height": 30.666666666666668,
1570
+ "textRole": "body",
1571
+ "fontSize": 11,
1572
+ "textCapacity": 2
1573
+ },
1574
+ {
1575
+ "kind": "text",
1576
+ "x": 64,
1577
+ "y": 490.6666666666667,
1578
+ "width": 41.333333333333336,
1579
+ "height": 30.666666666666668,
1580
+ "textRole": "body",
1581
+ "fontSize": 11,
1582
+ "textCapacity": 2
1583
+ },
1584
+ {
1585
+ "kind": "text",
1586
+ "x": 64,
1587
+ "y": 424,
1588
+ "width": 41.333333333333336,
1589
+ "height": 30.666666666666668,
1590
+ "textRole": "body",
1591
+ "fontSize": 11,
1592
+ "textCapacity": 2
1593
+ },
1594
+ {
1595
+ "kind": "text",
1596
+ "x": 64,
1597
+ "y": 357.3333333333333,
1598
+ "width": 41.333333333333336,
1599
+ "height": 30.666666666666668,
1600
+ "textRole": "body",
1601
+ "fontSize": 11,
1602
+ "textCapacity": 2
1603
+ },
1604
+ {
1605
+ "kind": "text",
1606
+ "x": 64,
1607
+ "y": 290.6666666666667,
1608
+ "width": 41.333333333333336,
1609
+ "height": 30.666666666666668,
1610
+ "textRole": "body",
1611
+ "fontSize": 11,
1612
+ "textCapacity": 2
1613
+ },
1614
+ {
1615
+ "kind": "shape",
1616
+ "x": 133.33333333333334,
1617
+ "y": 409.3333333333333,
1618
+ "width": 81.33333333333333,
1619
+ "height": 160,
1620
+ "shape": "rect",
1621
+ "fill": "1E2BFA"
1622
+ },
1623
+ {
1624
+ "kind": "text",
1625
+ "x": 126.66666666666667,
1626
+ "y": 368,
1627
+ "width": 94.66666666666667,
1628
+ "height": 37.333333333333336,
1629
+ "textRole": "body",
1630
+ "fontSize": 20,
1631
+ "textCapacity": 3
1632
+ },
1633
+ {
1634
+ "kind": "text",
1635
+ "x": 110.66666666666667,
1636
+ "y": 585.3333333333334,
1637
+ "width": 126.66666666666667,
1638
+ "height": 36,
1639
+ "textRole": "body",
1640
+ "fontSize": 13,
1641
+ "textCapacity": 7
1642
+ },
1643
+ {
1644
+ "kind": "shape",
1645
+ "x": 274.6666666666667,
1646
+ "y": 329.3333333333333,
1647
+ "width": 81.33333333333333,
1648
+ "height": 80,
1649
+ "shape": "rect",
1650
+ "fill": "929AFF"
1651
+ },
1652
+ {
1653
+ "kind": "text",
1654
+ "x": 268,
1655
+ "y": 288,
1656
+ "width": 94.66666666666667,
1657
+ "height": 37.333333333333336,
1658
+ "textRole": "body",
1659
+ "fontSize": 20,
1660
+ "textCapacity": 3
1661
+ },
1662
+ {
1663
+ "kind": "text",
1664
+ "x": 252,
1665
+ "y": 585.3333333333334,
1666
+ "width": 126.66666666666667,
1667
+ "height": 36,
1668
+ "textRole": "body",
1669
+ "fontSize": 13,
1670
+ "textCapacity": 7
1671
+ },
1672
+ {
1673
+ "kind": "shape",
1674
+ "x": 416,
1675
+ "y": 329.3333333333333,
1676
+ "width": 81.33333333333333,
1677
+ "height": 40,
1678
+ "shape": "rect",
1679
+ "fill": "BCBEB9"
1680
+ },
1681
+ {
1682
+ "kind": "text",
1683
+ "x": 409.3333333333333,
1684
+ "y": 288,
1685
+ "width": 94.66666666666667,
1686
+ "height": 37.333333333333336,
1687
+ "textRole": "body",
1688
+ "fontSize": 20,
1689
+ "textCapacity": 3
1690
+ },
1691
+ {
1692
+ "kind": "text",
1693
+ "x": 393.3333333333333,
1694
+ "y": 585.3333333333334,
1695
+ "width": 126.66666666666667,
1696
+ "height": 36,
1697
+ "textRole": "body",
1698
+ "fontSize": 13,
1699
+ "textCapacity": 7
1700
+ },
1701
+ {
1702
+ "kind": "shape",
1703
+ "x": 557.3333333333334,
1704
+ "y": 369.3333333333333,
1705
+ "width": 81.33333333333333,
1706
+ "height": 26.666666666666668,
1707
+ "shape": "rect",
1708
+ "fill": "BCBEB9"
1709
+ },
1710
+ {
1711
+ "kind": "text",
1712
+ "x": 550.6666666666666,
1713
+ "y": 328,
1714
+ "width": 94.66666666666667,
1715
+ "height": 37.333333333333336,
1716
+ "textRole": "body",
1717
+ "fontSize": 20,
1718
+ "textCapacity": 3
1719
+ },
1720
+ {
1721
+ "kind": "text",
1722
+ "x": 534.6666666666666,
1723
+ "y": 585.3333333333334,
1724
+ "width": 126.66666666666667,
1725
+ "height": 36,
1726
+ "textRole": "body",
1727
+ "fontSize": 13,
1728
+ "textCapacity": 7
1729
+ },
1730
+ {
1731
+ "kind": "shape",
1732
+ "x": 698.6666666666666,
1733
+ "y": 396,
1734
+ "width": 81.33333333333333,
1735
+ "height": 173.33333333333334,
1736
+ "shape": "rect",
1737
+ "fill": "1E2BFA"
1738
+ },
1739
+ {
1740
+ "kind": "text",
1741
+ "x": 692,
1742
+ "y": 354.6666666666667,
1743
+ "width": 94.66666666666667,
1744
+ "height": 37.333333333333336,
1745
+ "textRole": "body",
1746
+ "fontSize": 20,
1747
+ "textCapacity": 3
1748
+ },
1749
+ {
1750
+ "kind": "text",
1751
+ "x": 676,
1752
+ "y": 585.3333333333334,
1753
+ "width": 126.66666666666667,
1754
+ "height": 36,
1755
+ "textRole": "body",
1756
+ "fontSize": 13,
1757
+ "textCapacity": 7
1758
+ },
1759
+ {
1760
+ "kind": "text",
1761
+ "x": 905.3333333333334,
1762
+ "y": 213.33333333333334,
1763
+ "width": 310.6666666666667,
1764
+ "height": 33.333333333333336,
1765
+ "textRole": "body",
1766
+ "fontSize": 11,
1767
+ "textCapacity": 42
1768
+ },
1769
+ {
1770
+ "kind": "title",
1771
+ "x": 905.3333333333334,
1772
+ "y": 273.3333333333333,
1773
+ "width": 310.6666666666667,
1774
+ "height": 113.33333333333333,
1775
+ "textRole": "title",
1776
+ "fontSize": 54,
1777
+ "textCapacity": 4
1778
+ },
1779
+ {
1780
+ "kind": "text",
1781
+ "x": 905.3333333333334,
1782
+ "y": 392,
1783
+ "width": 310.6666666666667,
1784
+ "height": 65.33333333333333,
1785
+ "textRole": "body",
1786
+ "fontSize": 19,
1787
+ "textCapacity": 24
1788
+ },
1789
+ {
1790
+ "kind": "text",
1791
+ "x": 905.3333333333334,
1792
+ "y": 468,
1793
+ "width": 228,
1794
+ "height": 36,
1795
+ "textRole": "body",
1796
+ "fontSize": 14,
1797
+ "textCapacity": 12
1798
+ },
1799
+ {
1800
+ "kind": "text",
1801
+ "x": 1133.3333333333333,
1802
+ "y": 465.3333333333333,
1803
+ "width": 82.66666666666667,
1804
+ "height": 40,
1805
+ "textRole": "body",
1806
+ "fontSize": 19,
1807
+ "textCapacity": 3
1808
+ },
1809
+ {
1810
+ "kind": "text",
1811
+ "x": 905.3333333333334,
1812
+ "y": 514.6666666666666,
1813
+ "width": 228,
1814
+ "height": 36,
1815
+ "textRole": "body",
1816
+ "fontSize": 14,
1817
+ "textCapacity": 12
1818
+ },
1819
+ {
1820
+ "kind": "text",
1821
+ "x": 1133.3333333333333,
1822
+ "y": 512,
1823
+ "width": 82.66666666666667,
1824
+ "height": 40,
1825
+ "textRole": "body",
1826
+ "fontSize": 19,
1827
+ "textCapacity": 3
1828
+ },
1829
+ {
1830
+ "kind": "text",
1831
+ "x": 905.3333333333334,
1832
+ "y": 561.3333333333334,
1833
+ "width": 228,
1834
+ "height": 36,
1835
+ "textRole": "body",
1836
+ "fontSize": 14,
1837
+ "textCapacity": 12
1838
+ },
1839
+ {
1840
+ "kind": "text",
1841
+ "x": 1133.3333333333333,
1842
+ "y": 558.6666666666666,
1843
+ "width": 82.66666666666667,
1844
+ "height": 40,
1845
+ "textRole": "body",
1846
+ "fontSize": 19,
1847
+ "textCapacity": 3
1848
+ },
1849
+ {
1850
+ "kind": "text",
1851
+ "x": 64,
1852
+ "y": 633.3333333333334,
1853
+ "width": 1152,
1854
+ "height": 33.333333333333336,
1855
+ "textRole": "body",
1856
+ "fontSize": 13,
1857
+ "textCapacity": 66
1858
+ },
1859
+ {
1860
+ "kind": "text",
1861
+ "x": 64,
1862
+ "y": 676,
1863
+ "width": 1013.3333333333334,
1864
+ "height": 21.333333333333332,
1865
+ "textRole": "body",
1866
+ "fontSize": 9,
1867
+ "textCapacity": 84
1868
+ },
1869
+ {
1870
+ "kind": "text",
1871
+ "x": 1160,
1872
+ "y": 672,
1873
+ "width": 56,
1874
+ "height": 29.333333333333332,
1875
+ "textRole": "body",
1876
+ "fontSize": 11,
1877
+ "textCapacity": 3
1878
+ }
1879
+ ],
1880
+ "jsxReference": ""
1881
+ },
1882
+ {
1883
+ "slideNumber": 7,
1884
+ "sourceTitle": "Customer journey",
1885
+ "family": "process",
1886
+ "titlePosition": "left",
1887
+ "bodyColumns": 4,
1888
+ "density": "high",
1889
+ "features": [
1890
+ "process"
1891
+ ],
1892
+ "recommendedRoles": [
1893
+ "process"
1894
+ ],
1895
+ "structureSummary": "Sequential journey with action, touchpoint and per-stage success measure",
1896
+ "zones": [
1897
+ {
1898
+ "kind": "text",
1899
+ "x": 64,
1900
+ "y": 34.666666666666664,
1901
+ "width": 1093.3333333333333,
1902
+ "height": 26.666666666666668,
1903
+ "textRole": "body",
1904
+ "fontSize": 11,
1905
+ "textCapacity": 74
1906
+ },
1907
+ {
1908
+ "kind": "title",
1909
+ "x": 64,
1910
+ "y": 104,
1911
+ "width": 1152,
1912
+ "height": 90.66666666666667,
1913
+ "textRole": "title",
1914
+ "fontSize": 34,
1915
+ "textCapacity": 25
1916
+ },
1917
+ {
1918
+ "kind": "text",
1919
+ "x": 64,
1920
+ "y": 218.66666666666666,
1921
+ "width": 261.3333333333333,
1922
+ "height": 32,
1923
+ "textRole": "body",
1924
+ "fontSize": 13,
1925
+ "textCapacity": 15
1926
+ },
1927
+ {
1928
+ "kind": "text",
1929
+ "x": 64,
1930
+ "y": 266.6666666666667,
1931
+ "width": 261.3333333333333,
1932
+ "height": 61.333333333333336,
1933
+ "textRole": "body",
1934
+ "fontSize": 27,
1935
+ "textCapacity": 7
1936
+ },
1937
+ {
1938
+ "kind": "text",
1939
+ "x": 64,
1940
+ "y": 385.3333333333333,
1941
+ "width": 261.3333333333333,
1942
+ "height": 77.33333333333333,
1943
+ "textRole": "body",
1944
+ "fontSize": 19,
1945
+ "textCapacity": 20
1946
+ },
1947
+ {
1948
+ "kind": "text",
1949
+ "x": 64,
1950
+ "y": 492,
1951
+ "width": 261.3333333333333,
1952
+ "height": 68,
1953
+ "textRole": "body",
1954
+ "fontSize": 16,
1955
+ "textCapacity": 24
1956
+ },
1957
+ {
1958
+ "kind": "title",
1959
+ "x": 64,
1960
+ "y": 572,
1961
+ "width": 261.3333333333333,
1962
+ "height": 57.333333333333336,
1963
+ "textRole": "title",
1964
+ "fontSize": 30,
1965
+ "textCapacity": 6
1966
+ },
1967
+ {
1968
+ "kind": "text",
1969
+ "x": 357.3333333333333,
1970
+ "y": 218.66666666666666,
1971
+ "width": 261.3333333333333,
1972
+ "height": 32,
1973
+ "textRole": "body",
1974
+ "fontSize": 13,
1975
+ "textCapacity": 15
1976
+ },
1977
+ {
1978
+ "kind": "text",
1979
+ "x": 357.3333333333333,
1980
+ "y": 266.6666666666667,
1981
+ "width": 261.3333333333333,
1982
+ "height": 61.333333333333336,
1983
+ "textRole": "body",
1984
+ "fontSize": 27,
1985
+ "textCapacity": 7
1986
+ },
1987
+ {
1988
+ "kind": "text",
1989
+ "x": 357.3333333333333,
1990
+ "y": 385.3333333333333,
1991
+ "width": 261.3333333333333,
1992
+ "height": 77.33333333333333,
1993
+ "textRole": "body",
1994
+ "fontSize": 19,
1995
+ "textCapacity": 20
1996
+ },
1997
+ {
1998
+ "kind": "text",
1999
+ "x": 357.3333333333333,
2000
+ "y": 492,
2001
+ "width": 261.3333333333333,
2002
+ "height": 68,
2003
+ "textRole": "body",
2004
+ "fontSize": 16,
2005
+ "textCapacity": 24
2006
+ },
2007
+ {
2008
+ "kind": "title",
2009
+ "x": 357.3333333333333,
2010
+ "y": 572,
2011
+ "width": 261.3333333333333,
2012
+ "height": 57.333333333333336,
2013
+ "textRole": "title",
2014
+ "fontSize": 30,
2015
+ "textCapacity": 6
2016
+ },
2017
+ {
2018
+ "kind": "text",
2019
+ "x": 650.6666666666666,
2020
+ "y": 218.66666666666666,
2021
+ "width": 261.3333333333333,
2022
+ "height": 32,
2023
+ "textRole": "body",
2024
+ "fontSize": 13,
2025
+ "textCapacity": 15
2026
+ },
2027
+ {
2028
+ "kind": "text",
2029
+ "x": 650.6666666666666,
2030
+ "y": 266.6666666666667,
2031
+ "width": 261.3333333333333,
2032
+ "height": 61.333333333333336,
2033
+ "textRole": "body",
2034
+ "fontSize": 27,
2035
+ "textCapacity": 7
2036
+ },
2037
+ {
2038
+ "kind": "text",
2039
+ "x": 650.6666666666666,
2040
+ "y": 385.3333333333333,
2041
+ "width": 261.3333333333333,
2042
+ "height": 77.33333333333333,
2043
+ "textRole": "body",
2044
+ "fontSize": 19,
2045
+ "textCapacity": 20
2046
+ },
2047
+ {
2048
+ "kind": "text",
2049
+ "x": 650.6666666666666,
2050
+ "y": 492,
2051
+ "width": 261.3333333333333,
2052
+ "height": 68,
2053
+ "textRole": "body",
2054
+ "fontSize": 16,
2055
+ "textCapacity": 24
2056
+ },
2057
+ {
2058
+ "kind": "title",
2059
+ "x": 650.6666666666666,
2060
+ "y": 572,
2061
+ "width": 261.3333333333333,
2062
+ "height": 57.333333333333336,
2063
+ "textRole": "title",
2064
+ "fontSize": 30,
2065
+ "textCapacity": 6
2066
+ },
2067
+ {
2068
+ "kind": "text",
2069
+ "x": 944,
2070
+ "y": 218.66666666666666,
2071
+ "width": 261.3333333333333,
2072
+ "height": 32,
2073
+ "textRole": "body",
2074
+ "fontSize": 13,
2075
+ "textCapacity": 15
2076
+ },
2077
+ {
2078
+ "kind": "text",
2079
+ "x": 944,
2080
+ "y": 266.6666666666667,
2081
+ "width": 261.3333333333333,
2082
+ "height": 61.333333333333336,
2083
+ "textRole": "body",
2084
+ "fontSize": 27,
2085
+ "textCapacity": 7
2086
+ },
2087
+ {
2088
+ "kind": "text",
2089
+ "x": 944,
2090
+ "y": 385.3333333333333,
2091
+ "width": 261.3333333333333,
2092
+ "height": 77.33333333333333,
2093
+ "textRole": "body",
2094
+ "fontSize": 19,
2095
+ "textCapacity": 20
2096
+ },
2097
+ {
2098
+ "kind": "text",
2099
+ "x": 944,
2100
+ "y": 492,
2101
+ "width": 261.3333333333333,
2102
+ "height": 68,
2103
+ "textRole": "body",
2104
+ "fontSize": 16,
2105
+ "textCapacity": 24
2106
+ },
2107
+ {
2108
+ "kind": "title",
2109
+ "x": 944,
2110
+ "y": 572,
2111
+ "width": 261.3333333333333,
2112
+ "height": 57.333333333333336,
2113
+ "textRole": "title",
2114
+ "fontSize": 30,
2115
+ "textCapacity": 6
2116
+ },
2117
+ {
2118
+ "kind": "shape",
2119
+ "x": 357.3333333333333,
2120
+ "y": 357.3333333333333,
2121
+ "width": 261.3333333333333,
2122
+ "height": 6.666666666666667,
2123
+ "shape": "rect",
2124
+ "fill": "1E2BFA"
2125
+ },
2126
+ {
2127
+ "kind": "text",
2128
+ "x": 64,
2129
+ "y": 632,
2130
+ "width": 1152,
2131
+ "height": 32,
2132
+ "textRole": "body",
2133
+ "fontSize": 15,
2134
+ "textCapacity": 57
2135
+ },
2136
+ {
2137
+ "kind": "text",
2138
+ "x": 64,
2139
+ "y": 676,
2140
+ "width": 1013.3333333333334,
2141
+ "height": 21.333333333333332,
2142
+ "textRole": "body",
2143
+ "fontSize": 9,
2144
+ "textCapacity": 84
2145
+ },
2146
+ {
2147
+ "kind": "text",
2148
+ "x": 1160,
2149
+ "y": 672,
2150
+ "width": 56,
2151
+ "height": 29.333333333333332,
2152
+ "textRole": "body",
2153
+ "fontSize": 11,
2154
+ "textCapacity": 3
2155
+ }
2156
+ ],
2157
+ "jsxReference": ""
2158
+ },
2159
+ {
2160
+ "slideNumber": 8,
2161
+ "sourceTitle": "Service architecture",
2162
+ "family": "process",
2163
+ "titlePosition": "left",
2164
+ "bodyColumns": 3,
2165
+ "density": "high",
2166
+ "features": [
2167
+ "process"
2168
+ ],
2169
+ "recommendedRoles": [
2170
+ "process"
2171
+ ],
2172
+ "structureSummary": "Three operating layers with horizontal handoffs and vertical feedback",
2173
+ "zones": [
2174
+ {
2175
+ "kind": "text",
2176
+ "x": 64,
2177
+ "y": 34.666666666666664,
2178
+ "width": 1093.3333333333333,
2179
+ "height": 26.666666666666668,
2180
+ "textRole": "body",
2181
+ "fontSize": 11,
2182
+ "textCapacity": 74
2183
+ },
2184
+ {
2185
+ "kind": "title",
2186
+ "x": 64,
2187
+ "y": 104,
2188
+ "width": 1152,
2189
+ "height": 90.66666666666667,
2190
+ "textRole": "title",
2191
+ "fontSize": 34,
2192
+ "textCapacity": 25
2193
+ },
2194
+ {
2195
+ "kind": "text",
2196
+ "x": 64,
2197
+ "y": 260,
2198
+ "width": 138.66666666666666,
2199
+ "height": 42.666666666666664,
2200
+ "textRole": "body",
2201
+ "fontSize": 15,
2202
+ "textCapacity": 6
2203
+ },
2204
+ {
2205
+ "kind": "shape",
2206
+ "x": 226.66666666666666,
2207
+ "y": 230.66666666666666,
2208
+ "width": 200,
2209
+ "height": 92,
2210
+ "shape": "rect",
2211
+ "fill": "E9E8E0"
2212
+ },
2213
+ {
2214
+ "kind": "text",
2215
+ "x": 242.66666666666666,
2216
+ "y": 253.33333333333334,
2217
+ "width": 168,
2218
+ "height": 65.33333333333333,
2219
+ "textRole": "body",
2220
+ "fontSize": 18,
2221
+ "textCapacity": 14
2222
+ },
2223
+ {
2224
+ "kind": "shape",
2225
+ "x": 456,
2226
+ "y": 230.66666666666666,
2227
+ "width": 200,
2228
+ "height": 92,
2229
+ "shape": "rect",
2230
+ "fill": "E9E8E0"
2231
+ },
2232
+ {
2233
+ "kind": "text",
2234
+ "x": 472,
2235
+ "y": 253.33333333333334,
2236
+ "width": 168,
2237
+ "height": 65.33333333333333,
2238
+ "textRole": "body",
2239
+ "fontSize": 18,
2240
+ "textCapacity": 14
2241
+ },
2242
+ {
2243
+ "kind": "shape",
2244
+ "x": 685.3333333333334,
2245
+ "y": 230.66666666666666,
2246
+ "width": 200,
2247
+ "height": 92,
2248
+ "shape": "rect",
2249
+ "fill": "E9E8E0"
2250
+ },
2251
+ {
2252
+ "kind": "text",
2253
+ "x": 701.3333333333334,
2254
+ "y": 253.33333333333334,
2255
+ "width": 168,
2256
+ "height": 65.33333333333333,
2257
+ "textRole": "body",
2258
+ "fontSize": 18,
2259
+ "textCapacity": 14
2260
+ },
2261
+ {
2262
+ "kind": "text",
2263
+ "x": 64,
2264
+ "y": 398.6666666666667,
2265
+ "width": 138.66666666666666,
2266
+ "height": 42.666666666666664,
2267
+ "textRole": "body",
2268
+ "fontSize": 15,
2269
+ "textCapacity": 6
2270
+ },
2271
+ {
2272
+ "kind": "shape",
2273
+ "x": 226.66666666666666,
2274
+ "y": 369.3333333333333,
2275
+ "width": 200,
2276
+ "height": 92,
2277
+ "shape": "rect",
2278
+ "fill": "1E2BFA"
2279
+ },
2280
+ {
2281
+ "kind": "text",
2282
+ "x": 242.66666666666666,
2283
+ "y": 392,
2284
+ "width": 168,
2285
+ "height": 65.33333333333333,
2286
+ "textRole": "body",
2287
+ "fontSize": 18,
2288
+ "textCapacity": 14
2289
+ },
2290
+ {
2291
+ "kind": "shape",
2292
+ "x": 456,
2293
+ "y": 369.3333333333333,
2294
+ "width": 200,
2295
+ "height": 92,
2296
+ "shape": "rect",
2297
+ "fill": "1E2BFA"
2298
+ },
2299
+ {
2300
+ "kind": "text",
2301
+ "x": 472,
2302
+ "y": 392,
2303
+ "width": 168,
2304
+ "height": 65.33333333333333,
2305
+ "textRole": "body",
2306
+ "fontSize": 18,
2307
+ "textCapacity": 14
2308
+ },
2309
+ {
2310
+ "kind": "shape",
2311
+ "x": 685.3333333333334,
2312
+ "y": 369.3333333333333,
2313
+ "width": 200,
2314
+ "height": 92,
2315
+ "shape": "rect",
2316
+ "fill": "1E2BFA"
2317
+ },
2318
+ {
2319
+ "kind": "text",
2320
+ "x": 701.3333333333334,
2321
+ "y": 392,
2322
+ "width": 168,
2323
+ "height": 65.33333333333333,
2324
+ "textRole": "body",
2325
+ "fontSize": 18,
2326
+ "textCapacity": 14
2327
+ },
2328
+ {
2329
+ "kind": "text",
2330
+ "x": 64,
2331
+ "y": 537.3333333333334,
2332
+ "width": 138.66666666666666,
2333
+ "height": 42.666666666666664,
2334
+ "textRole": "body",
2335
+ "fontSize": 15,
2336
+ "textCapacity": 6
2337
+ },
2338
+ {
2339
+ "kind": "shape",
2340
+ "x": 226.66666666666666,
2341
+ "y": 508,
2342
+ "width": 200,
2343
+ "height": 92,
2344
+ "shape": "rect",
2345
+ "fill": "E9E8E0"
2346
+ },
2347
+ {
2348
+ "kind": "text",
2349
+ "x": 242.66666666666666,
2350
+ "y": 530.6666666666666,
2351
+ "width": 168,
2352
+ "height": 65.33333333333333,
2353
+ "textRole": "body",
2354
+ "fontSize": 18,
2355
+ "textCapacity": 14
2356
+ },
2357
+ {
2358
+ "kind": "shape",
2359
+ "x": 456,
2360
+ "y": 508,
2361
+ "width": 200,
2362
+ "height": 92,
2363
+ "shape": "rect",
2364
+ "fill": "E9E8E0"
2365
+ },
2366
+ {
2367
+ "kind": "text",
2368
+ "x": 472,
2369
+ "y": 530.6666666666666,
2370
+ "width": 168,
2371
+ "height": 65.33333333333333,
2372
+ "textRole": "body",
2373
+ "fontSize": 18,
2374
+ "textCapacity": 14
2375
+ },
2376
+ {
2377
+ "kind": "shape",
2378
+ "x": 685.3333333333334,
2379
+ "y": 508,
2380
+ "width": 200,
2381
+ "height": 92,
2382
+ "shape": "rect",
2383
+ "fill": "E9E8E0"
2384
+ },
2385
+ {
2386
+ "kind": "text",
2387
+ "x": 701.3333333333334,
2388
+ "y": 530.6666666666666,
2389
+ "width": 168,
2390
+ "height": 65.33333333333333,
2391
+ "textRole": "body",
2392
+ "fontSize": 18,
2393
+ "textCapacity": 14
2394
+ },
2395
+ {
2396
+ "kind": "text",
2397
+ "x": 988,
2398
+ "y": 253.33333333333334,
2399
+ "width": 224,
2400
+ "height": 130.66666666666666,
2401
+ "textRole": "body",
2402
+ "fontSize": 28,
2403
+ "textCapacity": 18
2404
+ },
2405
+ {
2406
+ "kind": "text",
2407
+ "x": 988,
2408
+ "y": 438.6666666666667,
2409
+ "width": 224,
2410
+ "height": 156,
2411
+ "textRole": "body",
2412
+ "fontSize": 19,
2413
+ "textCapacity": 40
2414
+ },
2415
+ {
2416
+ "kind": "text",
2417
+ "x": 64,
2418
+ "y": 676,
2419
+ "width": 1013.3333333333334,
2420
+ "height": 21.333333333333332,
2421
+ "textRole": "body",
2422
+ "fontSize": 9,
2423
+ "textCapacity": 84
2424
+ },
2425
+ {
2426
+ "kind": "text",
2427
+ "x": 1160,
2428
+ "y": 672,
2429
+ "width": 56,
2430
+ "height": 29.333333333333332,
2431
+ "textRole": "body",
2432
+ "fontSize": 11,
2433
+ "textCapacity": 3
2434
+ }
2435
+ ],
2436
+ "jsxReference": ""
2437
+ },
2438
+ {
2439
+ "slideNumber": 9,
2440
+ "sourceTitle": "Annotated case comparison",
2441
+ "family": "comparison",
2442
+ "titlePosition": "left",
2443
+ "bodyColumns": 2,
2444
+ "density": "high",
2445
+ "features": [
2446
+ "comparison"
2447
+ ],
2448
+ "recommendedRoles": [
2449
+ "comparison"
2450
+ ],
2451
+ "structureSummary": "Asymmetric intervention narrative with paired before/after evidence",
2452
+ "zones": [
2453
+ {
2454
+ "kind": "text",
2455
+ "x": 64,
2456
+ "y": 34.666666666666664,
2457
+ "width": 1093.3333333333333,
2458
+ "height": 26.666666666666668,
2459
+ "textRole": "body",
2460
+ "fontSize": 11,
2461
+ "textCapacity": 74
2462
+ },
2463
+ {
2464
+ "kind": "title",
2465
+ "x": 64,
2466
+ "y": 104,
2467
+ "width": 1152,
2468
+ "height": 90.66666666666667,
2469
+ "textRole": "title",
2470
+ "fontSize": 34,
2471
+ "textCapacity": 25
2472
+ },
2473
+ {
2474
+ "kind": "text",
2475
+ "x": 64,
2476
+ "y": 225.33333333333334,
2477
+ "width": 373.3333333333333,
2478
+ "height": 37.333333333333336,
2479
+ "textRole": "body",
2480
+ "fontSize": 12,
2481
+ "textCapacity": 46
2482
+ },
2483
+ {
2484
+ "kind": "title",
2485
+ "x": 64,
2486
+ "y": 293.3333333333333,
2487
+ "width": 380,
2488
+ "height": 162.66666666666666,
2489
+ "textRole": "title",
2490
+ "fontSize": 32,
2491
+ "textCapacity": 24
2492
+ },
2493
+ {
2494
+ "kind": "text",
2495
+ "x": 64,
2496
+ "y": 494.6666666666667,
2497
+ "width": 376,
2498
+ "height": 104,
2499
+ "textRole": "body",
2500
+ "fontSize": 20,
2501
+ "textCapacity": 42
2502
+ },
2503
+ {
2504
+ "kind": "text",
2505
+ "x": 550.6666666666666,
2506
+ "y": 230.66666666666666,
2507
+ "width": 657.3333333333334,
2508
+ "height": 37.333333333333336,
2509
+ "textRole": "body",
2510
+ "fontSize": 18,
2511
+ "textCapacity": 27
2512
+ },
2513
+ {
2514
+ "kind": "shape",
2515
+ "x": 550.6666666666666,
2516
+ "y": 296,
2517
+ "width": 398.40000000000003,
2518
+ "height": 30.666666666666668,
2519
+ "shape": "rect",
2520
+ "fill": "C1C2B7"
2521
+ },
2522
+ {
2523
+ "kind": "shape",
2524
+ "x": 550.6666666666666,
2525
+ "y": 338.6666666666667,
2526
+ "width": 154.93333333333334,
2527
+ "height": 30.666666666666668,
2528
+ "shape": "rect",
2529
+ "fill": "1E2BFA"
2530
+ },
2531
+ {
2532
+ "kind": "text",
2533
+ "x": 1017.3333333333334,
2534
+ "y": 297.3333333333333,
2535
+ "width": 198.66666666666666,
2536
+ "height": 60,
2537
+ "textRole": "body",
2538
+ "fontSize": 25,
2539
+ "textCapacity": 5
2540
+ },
2541
+ {
2542
+ "kind": "text",
2543
+ "x": 550.6666666666666,
2544
+ "y": 428,
2545
+ "width": 657.3333333333334,
2546
+ "height": 37.333333333333336,
2547
+ "textRole": "body",
2548
+ "fontSize": 18,
2549
+ "textCapacity": 27
2550
+ },
2551
+ {
2552
+ "kind": "shape",
2553
+ "x": 550.6666666666666,
2554
+ "y": 493.3333333333333,
2555
+ "width": 265.59999999999997,
2556
+ "height": 30.666666666666668,
2557
+ "shape": "rect",
2558
+ "fill": "C1C2B7"
2559
+ },
2560
+ {
2561
+ "kind": "shape",
2562
+ "x": 550.6666666666666,
2563
+ "y": 536,
2564
+ "width": 385.7523809523809,
2565
+ "height": 30.666666666666668,
2566
+ "shape": "rect",
2567
+ "fill": "1E2BFA"
2568
+ },
2569
+ {
2570
+ "kind": "text",
2571
+ "x": 1017.3333333333334,
2572
+ "y": 494.6666666666667,
2573
+ "width": 198.66666666666666,
2574
+ "height": 60,
2575
+ "textRole": "body",
2576
+ "fontSize": 25,
2577
+ "textCapacity": 5
2578
+ },
2579
+ {
2580
+ "kind": "text",
2581
+ "x": 64,
2582
+ "y": 633.3333333333334,
2583
+ "width": 1152,
2584
+ "height": 33.333333333333336,
2585
+ "textRole": "body",
2586
+ "fontSize": 13,
2587
+ "textCapacity": 66
2588
+ },
2589
+ {
2590
+ "kind": "text",
2591
+ "x": 64,
2592
+ "y": 676,
2593
+ "width": 1013.3333333333334,
2594
+ "height": 21.333333333333332,
2595
+ "textRole": "body",
2596
+ "fontSize": 9,
2597
+ "textCapacity": 84
2598
+ },
2599
+ {
2600
+ "kind": "text",
2601
+ "x": 1160,
2602
+ "y": 672,
2603
+ "width": 56,
2604
+ "height": 29.333333333333332,
2605
+ "textRole": "body",
2606
+ "fontSize": 11,
2607
+ "textCapacity": 3
2608
+ }
2609
+ ],
2610
+ "jsxReference": ""
2611
+ },
2612
+ {
2613
+ "slideNumber": 10,
2614
+ "sourceTitle": "Dependency roadmap",
2615
+ "family": "process",
2616
+ "titlePosition": "left",
2617
+ "bodyColumns": 3,
2618
+ "density": "high",
2619
+ "features": [
2620
+ "process"
2621
+ ],
2622
+ "recommendedRoles": [
2623
+ "process"
2624
+ ],
2625
+ "structureSummary": "Timed workstreams, named owners and a decision gate",
2626
+ "zones": [
2627
+ {
2628
+ "kind": "text",
2629
+ "x": 64,
2630
+ "y": 34.666666666666664,
2631
+ "width": 1093.3333333333333,
2632
+ "height": 26.666666666666668,
2633
+ "textRole": "body",
2634
+ "fontSize": 11,
2635
+ "textCapacity": 74
2636
+ },
2637
+ {
2638
+ "kind": "title",
2639
+ "x": 64,
2640
+ "y": 104,
2641
+ "width": 1152,
2642
+ "height": 90.66666666666667,
2643
+ "textRole": "title",
2644
+ "fontSize": 34,
2645
+ "textCapacity": 25
2646
+ },
2647
+ {
2648
+ "kind": "text",
2649
+ "x": 397.3333333333333,
2650
+ "y": 218.66666666666666,
2651
+ "width": 233.33333333333334,
2652
+ "height": 32,
2653
+ "textRole": "body",
2654
+ "fontSize": 13,
2655
+ "textCapacity": 13
2656
+ },
2657
+ {
2658
+ "kind": "text",
2659
+ "x": 649.3333333333334,
2660
+ "y": 218.66666666666666,
2661
+ "width": 233.33333333333334,
2662
+ "height": 32,
2663
+ "textRole": "body",
2664
+ "fontSize": 13,
2665
+ "textCapacity": 13
2666
+ },
2667
+ {
2668
+ "kind": "text",
2669
+ "x": 901.3333333333334,
2670
+ "y": 218.66666666666666,
2671
+ "width": 233.33333333333334,
2672
+ "height": 32,
2673
+ "textRole": "body",
2674
+ "fontSize": 13,
2675
+ "textCapacity": 13
2676
+ },
2677
+ {
2678
+ "kind": "text",
2679
+ "x": 64,
2680
+ "y": 272,
2681
+ "width": 290.6666666666667,
2682
+ "height": 42.666666666666664,
2683
+ "textRole": "body",
2684
+ "fontSize": 20,
2685
+ "textCapacity": 10
2686
+ },
2687
+ {
2688
+ "kind": "text",
2689
+ "x": 64,
2690
+ "y": 317.3333333333333,
2691
+ "width": 290.6666666666667,
2692
+ "height": 29.333333333333332,
2693
+ "textRole": "body",
2694
+ "fontSize": 13,
2695
+ "textCapacity": 16
2696
+ },
2697
+ {
2698
+ "kind": "shape",
2699
+ "x": 382.6666666666667,
2700
+ "y": 284,
2701
+ "width": 264.6,
2702
+ "height": 38.666666666666664,
2703
+ "shape": "rect",
2704
+ "fill": "9EA5F4"
2705
+ },
2706
+ {
2707
+ "kind": "text",
2708
+ "x": 64,
2709
+ "y": 372,
2710
+ "width": 290.6666666666667,
2711
+ "height": 42.666666666666664,
2712
+ "textRole": "body",
2713
+ "fontSize": 20,
2714
+ "textCapacity": 10
2715
+ },
2716
+ {
2717
+ "kind": "text",
2718
+ "x": 64,
2719
+ "y": 417.3333333333333,
2720
+ "width": 290.6666666666667,
2721
+ "height": 29.333333333333332,
2722
+ "textRole": "body",
2723
+ "fontSize": 13,
2724
+ "textCapacity": 16
2725
+ },
2726
+ {
2727
+ "kind": "shape",
2728
+ "x": 533.8666666666667,
2729
+ "y": 384,
2730
+ "width": 302.4,
2731
+ "height": 38.666666666666664,
2732
+ "shape": "rect",
2733
+ "fill": "1E2BFA"
2734
+ },
2735
+ {
2736
+ "kind": "text",
2737
+ "x": 64,
2738
+ "y": 472,
2739
+ "width": 290.6666666666667,
2740
+ "height": 42.666666666666664,
2741
+ "textRole": "body",
2742
+ "fontSize": 20,
2743
+ "textCapacity": 10
2744
+ },
2745
+ {
2746
+ "kind": "text",
2747
+ "x": 64,
2748
+ "y": 517.3333333333334,
2749
+ "width": 290.6666666666667,
2750
+ "height": 29.333333333333332,
2751
+ "textRole": "body",
2752
+ "fontSize": 13,
2753
+ "textCapacity": 16
2754
+ },
2755
+ {
2756
+ "kind": "shape",
2757
+ "x": 836.2666666666668,
2758
+ "y": 484,
2759
+ "width": 302.4,
2760
+ "height": 38.666666666666664,
2761
+ "shape": "rect",
2762
+ "fill": "9EA5F4"
2763
+ },
2764
+ {
2765
+ "kind": "shape",
2766
+ "x": 826.6666666666666,
2767
+ "y": 580,
2768
+ "width": 16,
2769
+ "height": 16,
2770
+ "shape": "ellipse",
2771
+ "fill": "1E2BFA"
2772
+ },
2773
+ {
2774
+ "kind": "text",
2775
+ "x": 64,
2776
+ "y": 616,
2777
+ "width": 1152,
2778
+ "height": 41.333333333333336,
2779
+ "textRole": "body",
2780
+ "fontSize": 18,
2781
+ "textCapacity": 48
2782
+ },
2783
+ {
2784
+ "kind": "text",
2785
+ "x": 64,
2786
+ "y": 676,
2787
+ "width": 1013.3333333333334,
2788
+ "height": 21.333333333333332,
2789
+ "textRole": "body",
2790
+ "fontSize": 9,
2791
+ "textCapacity": 84
2792
+ },
2793
+ {
2794
+ "kind": "text",
2795
+ "x": 1160,
2796
+ "y": 672,
2797
+ "width": 56,
2798
+ "height": 29.333333333333332,
2799
+ "textRole": "body",
2800
+ "fontSize": 11,
2801
+ "textCapacity": 3
2802
+ }
2803
+ ],
2804
+ "jsxReference": ""
2805
+ },
2806
+ {
2807
+ "slideNumber": 11,
2808
+ "sourceTitle": "Decision table",
2809
+ "family": "comparison",
2810
+ "titlePosition": "left",
2811
+ "bodyColumns": 4,
2812
+ "density": "high",
2813
+ "features": [
2814
+ "comparison"
2815
+ ],
2816
+ "recommendedRoles": [
2817
+ "comparison"
2818
+ ],
2819
+ "structureSummary": "Four criteria across three options, highlighted recommendation and next gate",
2820
+ "zones": [
2821
+ {
2822
+ "kind": "text",
2823
+ "x": 64,
2824
+ "y": 34.666666666666664,
2825
+ "width": 1093.3333333333333,
2826
+ "height": 26.666666666666668,
2827
+ "textRole": "body",
2828
+ "fontSize": 11,
2829
+ "textCapacity": 74
2830
+ },
2831
+ {
2832
+ "kind": "title",
2833
+ "x": 64,
2834
+ "y": 104,
2835
+ "width": 1152,
2836
+ "height": 90.66666666666667,
2837
+ "textRole": "title",
2838
+ "fontSize": 34,
2839
+ "textCapacity": 25
2840
+ },
2841
+ {
2842
+ "kind": "shape",
2843
+ "x": 466.6666666666667,
2844
+ "y": 233.33333333333334,
2845
+ "width": 237.33333333333334,
2846
+ "height": 376,
2847
+ "shape": "rect",
2848
+ "fill": "E1E3FA"
2849
+ },
2850
+ {
2851
+ "kind": "text",
2852
+ "x": 64,
2853
+ "y": 244,
2854
+ "width": 365.3333333333333,
2855
+ "height": 72,
2856
+ "textRole": "body",
2857
+ "fontSize": 12,
2858
+ "textCapacity": 88
2859
+ },
2860
+ {
2861
+ "kind": "text",
2862
+ "x": 488,
2863
+ "y": 244,
2864
+ "width": 222.66666666666666,
2865
+ "height": 72,
2866
+ "textRole": "body",
2867
+ "fontSize": 20,
2868
+ "textCapacity": 16
2869
+ },
2870
+ {
2871
+ "kind": "text",
2872
+ "x": 733.3333333333334,
2873
+ "y": 244,
2874
+ "width": 222.66666666666666,
2875
+ "height": 72,
2876
+ "textRole": "body",
2877
+ "fontSize": 20,
2878
+ "textCapacity": 16
2879
+ },
2880
+ {
2881
+ "kind": "text",
2882
+ "x": 978.6666666666666,
2883
+ "y": 244,
2884
+ "width": 222.66666666666666,
2885
+ "height": 72,
2886
+ "textRole": "body",
2887
+ "fontSize": 20,
2888
+ "textCapacity": 16
2889
+ },
2890
+ {
2891
+ "kind": "text",
2892
+ "x": 64,
2893
+ "y": 338.6666666666667,
2894
+ "width": 373.3333333333333,
2895
+ "height": 44,
2896
+ "textRole": "body",
2897
+ "fontSize": 17,
2898
+ "textCapacity": 16
2899
+ },
2900
+ {
2901
+ "kind": "text",
2902
+ "x": 488,
2903
+ "y": 338.6666666666667,
2904
+ "width": 220,
2905
+ "height": 46.666666666666664,
2906
+ "textRole": "body",
2907
+ "fontSize": 17,
2908
+ "textCapacity": 9
2909
+ },
2910
+ {
2911
+ "kind": "text",
2912
+ "x": 733.3333333333334,
2913
+ "y": 338.6666666666667,
2914
+ "width": 220,
2915
+ "height": 46.666666666666664,
2916
+ "textRole": "body",
2917
+ "fontSize": 17,
2918
+ "textCapacity": 9
2919
+ },
2920
+ {
2921
+ "kind": "text",
2922
+ "x": 978.6666666666666,
2923
+ "y": 338.6666666666667,
2924
+ "width": 220,
2925
+ "height": 46.666666666666664,
2926
+ "textRole": "body",
2927
+ "fontSize": 17,
2928
+ "textCapacity": 9
2929
+ },
2930
+ {
2931
+ "kind": "text",
2932
+ "x": 64,
2933
+ "y": 404,
2934
+ "width": 373.3333333333333,
2935
+ "height": 44,
2936
+ "textRole": "body",
2937
+ "fontSize": 17,
2938
+ "textCapacity": 16
2939
+ },
2940
+ {
2941
+ "kind": "text",
2942
+ "x": 488,
2943
+ "y": 404,
2944
+ "width": 220,
2945
+ "height": 46.666666666666664,
2946
+ "textRole": "body",
2947
+ "fontSize": 17,
2948
+ "textCapacity": 9
2949
+ },
2950
+ {
2951
+ "kind": "text",
2952
+ "x": 733.3333333333334,
2953
+ "y": 404,
2954
+ "width": 220,
2955
+ "height": 46.666666666666664,
2956
+ "textRole": "body",
2957
+ "fontSize": 17,
2958
+ "textCapacity": 9
2959
+ },
2960
+ {
2961
+ "kind": "text",
2962
+ "x": 978.6666666666666,
2963
+ "y": 404,
2964
+ "width": 220,
2965
+ "height": 46.666666666666664,
2966
+ "textRole": "body",
2967
+ "fontSize": 17,
2968
+ "textCapacity": 9
2969
+ },
2970
+ {
2971
+ "kind": "text",
2972
+ "x": 64,
2973
+ "y": 469.3333333333333,
2974
+ "width": 373.3333333333333,
2975
+ "height": 44,
2976
+ "textRole": "body",
2977
+ "fontSize": 17,
2978
+ "textCapacity": 16
2979
+ },
2980
+ {
2981
+ "kind": "text",
2982
+ "x": 488,
2983
+ "y": 469.3333333333333,
2984
+ "width": 220,
2985
+ "height": 46.666666666666664,
2986
+ "textRole": "body",
2987
+ "fontSize": 17,
2988
+ "textCapacity": 9
2989
+ },
2990
+ {
2991
+ "kind": "text",
2992
+ "x": 733.3333333333334,
2993
+ "y": 469.3333333333333,
2994
+ "width": 220,
2995
+ "height": 46.666666666666664,
2996
+ "textRole": "body",
2997
+ "fontSize": 17,
2998
+ "textCapacity": 9
2999
+ },
3000
+ {
3001
+ "kind": "text",
3002
+ "x": 978.6666666666666,
3003
+ "y": 469.3333333333333,
3004
+ "width": 220,
3005
+ "height": 46.666666666666664,
3006
+ "textRole": "body",
3007
+ "fontSize": 17,
3008
+ "textCapacity": 9
3009
+ },
3010
+ {
3011
+ "kind": "text",
3012
+ "x": 64,
3013
+ "y": 534.6666666666666,
3014
+ "width": 373.3333333333333,
3015
+ "height": 44,
3016
+ "textRole": "body",
3017
+ "fontSize": 17,
3018
+ "textCapacity": 16
3019
+ },
3020
+ {
3021
+ "kind": "text",
3022
+ "x": 488,
3023
+ "y": 534.6666666666666,
3024
+ "width": 220,
3025
+ "height": 46.666666666666664,
3026
+ "textRole": "body",
3027
+ "fontSize": 17,
3028
+ "textCapacity": 9
3029
+ },
3030
+ {
3031
+ "kind": "text",
3032
+ "x": 733.3333333333334,
3033
+ "y": 534.6666666666666,
3034
+ "width": 220,
3035
+ "height": 46.666666666666664,
3036
+ "textRole": "body",
3037
+ "fontSize": 17,
3038
+ "textCapacity": 9
3039
+ },
3040
+ {
3041
+ "kind": "text",
3042
+ "x": 978.6666666666666,
3043
+ "y": 534.6666666666666,
3044
+ "width": 220,
3045
+ "height": 46.666666666666664,
3046
+ "textRole": "body",
3047
+ "fontSize": 17,
3048
+ "textCapacity": 9
3049
+ },
3050
+ {
3051
+ "kind": "text",
3052
+ "x": 64,
3053
+ "y": 633.3333333333334,
3054
+ "width": 1152,
3055
+ "height": 33.333333333333336,
3056
+ "textRole": "body",
3057
+ "fontSize": 13,
3058
+ "textCapacity": 66
3059
+ },
3060
+ {
3061
+ "kind": "text",
3062
+ "x": 64,
3063
+ "y": 676,
3064
+ "width": 1013.3333333333334,
3065
+ "height": 21.333333333333332,
3066
+ "textRole": "body",
3067
+ "fontSize": 9,
3068
+ "textCapacity": 84
3069
+ },
3070
+ {
3071
+ "kind": "text",
3072
+ "x": 1160,
3073
+ "y": 672,
3074
+ "width": 56,
3075
+ "height": 29.333333333333332,
3076
+ "textRole": "body",
3077
+ "fontSize": 11,
3078
+ "textCapacity": 3
3079
+ }
3080
+ ],
3081
+ "jsxReference": ""
3082
+ },
3083
+ {
3084
+ "slideNumber": 12,
3085
+ "sourceTitle": "Closing",
3086
+ "family": "closing",
3087
+ "titlePosition": "left",
3088
+ "bodyColumns": 1,
3089
+ "density": "medium",
3090
+ "features": [
3091
+ "closing"
3092
+ ],
3093
+ "recommendedRoles": [
3094
+ "closing"
3095
+ ],
3096
+ "structureSummary": "Closing",
3097
+ "zones": [
3098
+ {
3099
+ "kind": "text",
3100
+ "x": 64,
3101
+ "y": 105.33333333333333,
3102
+ "width": 1133.3333333333333,
3103
+ "height": 34.666666666666664,
3104
+ "textRole": "body",
3105
+ "fontSize": 13,
3106
+ "textCapacity": 65
3107
+ },
3108
+ {
3109
+ "kind": "title",
3110
+ "x": 64,
3111
+ "y": 245.33333333333334,
3112
+ "width": 1146.6666666666667,
3113
+ "height": 262.6666666666667,
3114
+ "textRole": "title",
3115
+ "fontSize": 55,
3116
+ "textCapacity": 45
3117
+ },
3118
+ {
3119
+ "kind": "text",
3120
+ "x": 64,
3121
+ "y": 674.6666666666666,
3122
+ "width": 1013.3333333333334,
3123
+ "height": 21.333333333333332,
3124
+ "textRole": "body",
3125
+ "fontSize": 9,
3126
+ "textCapacity": 84
3127
+ },
3128
+ {
3129
+ "kind": "text",
3130
+ "x": 1160,
3131
+ "y": 670.6666666666666,
3132
+ "width": 53.333333333333336,
3133
+ "height": 26.666666666666668,
3134
+ "textRole": "body",
3135
+ "fontSize": 11,
3136
+ "textCapacity": 3
3137
+ }
3138
+ ],
3139
+ "jsxReference": ""
3140
+ }
3141
+ ]
3142
+ }
3143
+ },
3144
+ "provenance": {
3145
+ "kind": "mit-adaptation",
3146
+ "license": "MIT",
3147
+ "upstream": "https://github.com/zarazhangrui/beautiful-html-templates/tree/e5e204fb1f3b06290846e7dcd7aceddabeceec8c/templates/blue-professional",
3148
+ "author": "Zara Zhang",
3149
+ "adaptedBy": "DSH Desktop contributors",
3150
+ "modified": "2026-09-06"
3151
+ }
3152
+ }