ppt-master 0.1.0__py3-none-any.whl

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 (11992) hide show
  1. cli.py +134 -0
  2. ppt_master-0.1.0.dist-info/METADATA +406 -0
  3. ppt_master-0.1.0.dist-info/RECORD +11992 -0
  4. ppt_master-0.1.0.dist-info/WHEEL +5 -0
  5. ppt_master-0.1.0.dist-info/entry_points.txt +2 -0
  6. ppt_master-0.1.0.dist-info/licenses/LICENSE +21 -0
  7. ppt_master-0.1.0.dist-info/top_level.txt +2 -0
  8. skills/__init__.py +1 -0
  9. skills/ppt-master/__init__.py +1 -0
  10. skills/ppt-master/cli.py +125 -0
  11. skills/ppt-master/scripts/README.md +132 -0
  12. skills/ppt-master/scripts/__init__.py +1 -0
  13. skills/ppt-master/scripts/analyze_images.py +584 -0
  14. skills/ppt-master/scripts/animation_config.py +124 -0
  15. skills/ppt-master/scripts/assets/bg_48.png +0 -0
  16. skills/ppt-master/scripts/assets/bg_96.png +0 -0
  17. skills/ppt-master/scripts/batch_validate.py +318 -0
  18. skills/ppt-master/scripts/check_annotations.py +126 -0
  19. skills/ppt-master/scripts/check_cli_sync.py +123 -0
  20. skills/ppt-master/scripts/check_deps_sync.py +271 -0
  21. skills/ppt-master/scripts/config.py +756 -0
  22. skills/ppt-master/scripts/docs/conversion.md +164 -0
  23. skills/ppt-master/scripts/docs/image.md +221 -0
  24. skills/ppt-master/scripts/docs/project.md +128 -0
  25. skills/ppt-master/scripts/docs/svg-pipeline.md +216 -0
  26. skills/ppt-master/scripts/docs/troubleshooting.md +80 -0
  27. skills/ppt-master/scripts/docs/update_spec.md +59 -0
  28. skills/ppt-master/scripts/error_helper.py +446 -0
  29. skills/ppt-master/scripts/finalize_svg.py +338 -0
  30. skills/ppt-master/scripts/gemini_watermark_remover.py +230 -0
  31. skills/ppt-master/scripts/generate_examples_index.py +245 -0
  32. skills/ppt-master/scripts/image_backends/__init__.py +1 -0
  33. skills/ppt-master/scripts/image_backends/backend_bfl.py +179 -0
  34. skills/ppt-master/scripts/image_backends/backend_common.py +249 -0
  35. skills/ppt-master/scripts/image_backends/backend_fal.py +131 -0
  36. skills/ppt-master/scripts/image_backends/backend_gemini.py +226 -0
  37. skills/ppt-master/scripts/image_backends/backend_ideogram.py +156 -0
  38. skills/ppt-master/scripts/image_backends/backend_minimax.py +210 -0
  39. skills/ppt-master/scripts/image_backends/backend_modelscope.py +168 -0
  40. skills/ppt-master/scripts/image_backends/backend_openai.py +453 -0
  41. skills/ppt-master/scripts/image_backends/backend_openrouter.py +186 -0
  42. skills/ppt-master/scripts/image_backends/backend_qwen.py +201 -0
  43. skills/ppt-master/scripts/image_backends/backend_replicate.py +173 -0
  44. skills/ppt-master/scripts/image_backends/backend_siliconflow.py +184 -0
  45. skills/ppt-master/scripts/image_backends/backend_stability.py +147 -0
  46. skills/ppt-master/scripts/image_backends/backend_volcengine.py +191 -0
  47. skills/ppt-master/scripts/image_backends/backend_zhipu.py +190 -0
  48. skills/ppt-master/scripts/image_gen.py +769 -0
  49. skills/ppt-master/scripts/image_search.py +746 -0
  50. skills/ppt-master/scripts/image_sources/__init__.py +9 -0
  51. skills/ppt-master/scripts/image_sources/provider_common.py +471 -0
  52. skills/ppt-master/scripts/image_sources/provider_openverse.py +119 -0
  53. skills/ppt-master/scripts/image_sources/provider_pexels.py +124 -0
  54. skills/ppt-master/scripts/image_sources/provider_pixabay.py +129 -0
  55. skills/ppt-master/scripts/image_sources/provider_wikimedia.py +196 -0
  56. skills/ppt-master/scripts/latex_render.py +614 -0
  57. skills/ppt-master/scripts/notes_to_audio.py +379 -0
  58. skills/ppt-master/scripts/pptx_animations.py +659 -0
  59. skills/ppt-master/scripts/pptx_template_import.py +151 -0
  60. skills/ppt-master/scripts/pptx_to_svg/__init__.py +13 -0
  61. skills/ppt-master/scripts/pptx_to_svg/color_resolver.py +347 -0
  62. skills/ppt-master/scripts/pptx_to_svg/converter.py +443 -0
  63. skills/ppt-master/scripts/pptx_to_svg/custgeom_to_svg.py +192 -0
  64. skills/ppt-master/scripts/pptx_to_svg/effect_to_svg.py +210 -0
  65. skills/ppt-master/scripts/pptx_to_svg/emu_units.py +223 -0
  66. skills/ppt-master/scripts/pptx_to_svg/fill_to_svg.py +393 -0
  67. skills/ppt-master/scripts/pptx_to_svg/ln_to_svg.py +234 -0
  68. skills/ppt-master/scripts/pptx_to_svg/ooxml_loader.py +375 -0
  69. skills/ppt-master/scripts/pptx_to_svg/pic_to_svg.py +354 -0
  70. skills/ppt-master/scripts/pptx_to_svg/prstgeom_to_svg.py +670 -0
  71. skills/ppt-master/scripts/pptx_to_svg/shape_walker.py +392 -0
  72. skills/ppt-master/scripts/pptx_to_svg/slide_to_svg.py +925 -0
  73. skills/ppt-master/scripts/pptx_to_svg/tbl_to_svg.py +401 -0
  74. skills/ppt-master/scripts/pptx_to_svg/txbody_to_svg.py +1145 -0
  75. skills/ppt-master/scripts/pptx_to_svg.py +115 -0
  76. skills/ppt-master/scripts/project_manager.py +906 -0
  77. skills/ppt-master/scripts/project_utils.py +482 -0
  78. skills/ppt-master/scripts/register_template.py +383 -0
  79. skills/ppt-master/scripts/rotate_images.py +588 -0
  80. skills/ppt-master/scripts/source_to_md/doc_to_md.py +984 -0
  81. skills/ppt-master/scripts/source_to_md/excel_to_md.py +378 -0
  82. skills/ppt-master/scripts/source_to_md/pdf_to_md.py +1114 -0
  83. skills/ppt-master/scripts/source_to_md/ppt_to_md.py +646 -0
  84. skills/ppt-master/scripts/source_to_md/web_to_md.py +806 -0
  85. skills/ppt-master/scripts/svg_editor/__init__.py +2 -0
  86. skills/ppt-master/scripts/svg_editor/annotations.py +338 -0
  87. skills/ppt-master/scripts/svg_editor/server.py +939 -0
  88. skills/ppt-master/scripts/svg_editor/static/app.js +2466 -0
  89. skills/ppt-master/scripts/svg_editor/static/index.html +67 -0
  90. skills/ppt-master/scripts/svg_editor/static/style.css +920 -0
  91. skills/ppt-master/scripts/svg_finalize/__init__.py +12 -0
  92. skills/ppt-master/scripts/svg_finalize/align_embed_images.py +447 -0
  93. skills/ppt-master/scripts/svg_finalize/crop_images.py +358 -0
  94. skills/ppt-master/scripts/svg_finalize/embed_icons.py +369 -0
  95. skills/ppt-master/scripts/svg_finalize/embed_images.py +265 -0
  96. skills/ppt-master/scripts/svg_finalize/fix_image_aspect.py +380 -0
  97. skills/ppt-master/scripts/svg_finalize/flatten_tspan.py +740 -0
  98. skills/ppt-master/scripts/svg_finalize/svg_rect_to_path.py +337 -0
  99. skills/ppt-master/scripts/svg_position_calculator.py +1524 -0
  100. skills/ppt-master/scripts/svg_quality_checker.py +1491 -0
  101. skills/ppt-master/scripts/svg_to_pptx/__init__.py +17 -0
  102. skills/ppt-master/scripts/svg_to_pptx/animation_config.py +275 -0
  103. skills/ppt-master/scripts/svg_to_pptx/drawingml_context.py +162 -0
  104. skills/ppt-master/scripts/svg_to_pptx/drawingml_converter.py +573 -0
  105. skills/ppt-master/scripts/svg_to_pptx/drawingml_elements.py +1942 -0
  106. skills/ppt-master/scripts/svg_to_pptx/drawingml_paths.py +429 -0
  107. skills/ppt-master/scripts/svg_to_pptx/drawingml_styles.py +656 -0
  108. skills/ppt-master/scripts/svg_to_pptx/drawingml_utils.py +475 -0
  109. skills/ppt-master/scripts/svg_to_pptx/pptx_builder.py +993 -0
  110. skills/ppt-master/scripts/svg_to_pptx/pptx_cli.py +603 -0
  111. skills/ppt-master/scripts/svg_to_pptx/pptx_dimensions.py +148 -0
  112. skills/ppt-master/scripts/svg_to_pptx/pptx_discovery.py +101 -0
  113. skills/ppt-master/scripts/svg_to_pptx/pptx_media.py +160 -0
  114. skills/ppt-master/scripts/svg_to_pptx/pptx_narration.py +221 -0
  115. skills/ppt-master/scripts/svg_to_pptx/pptx_notes.py +159 -0
  116. skills/ppt-master/scripts/svg_to_pptx/pptx_slide_xml.py +136 -0
  117. skills/ppt-master/scripts/svg_to_pptx/tspan_flattener.py +48 -0
  118. skills/ppt-master/scripts/svg_to_pptx/use_expander.py +127 -0
  119. skills/ppt-master/scripts/svg_to_pptx.py +17 -0
  120. skills/ppt-master/scripts/template_fill_pptx/__init__.py +26 -0
  121. skills/ppt-master/scripts/template_fill_pptx/analyzer.py +228 -0
  122. skills/ppt-master/scripts/template_fill_pptx/applier.py +178 -0
  123. skills/ppt-master/scripts/template_fill_pptx/chart_fill.py +366 -0
  124. skills/ppt-master/scripts/template_fill_pptx/chart_read.py +99 -0
  125. skills/ppt-master/scripts/template_fill_pptx/checker.py +450 -0
  126. skills/ppt-master/scripts/template_fill_pptx/cli.py +164 -0
  127. skills/ppt-master/scripts/template_fill_pptx/clone.py +176 -0
  128. skills/ppt-master/scripts/template_fill_pptx/notes.py +114 -0
  129. skills/ppt-master/scripts/template_fill_pptx/ooxml.py +229 -0
  130. skills/ppt-master/scripts/template_fill_pptx/package.py +155 -0
  131. skills/ppt-master/scripts/template_fill_pptx/scaffolder.py +75 -0
  132. skills/ppt-master/scripts/template_fill_pptx/selectors.py +65 -0
  133. skills/ppt-master/scripts/template_fill_pptx/table_fill.py +59 -0
  134. skills/ppt-master/scripts/template_fill_pptx/text_fill.py +117 -0
  135. skills/ppt-master/scripts/template_fill_pptx/transitions.py +108 -0
  136. skills/ppt-master/scripts/template_fill_pptx.py +26 -0
  137. skills/ppt-master/scripts/template_import/__init__.py +1 -0
  138. skills/ppt-master/scripts/template_import/manifest.py +750 -0
  139. skills/ppt-master/scripts/total_md_split.py +367 -0
  140. skills/ppt-master/scripts/tts_backends/__init__.py +2 -0
  141. skills/ppt-master/scripts/tts_backends/backend_common.py +70 -0
  142. skills/ppt-master/scripts/tts_backends/backend_cosyvoice.py +83 -0
  143. skills/ppt-master/scripts/tts_backends/backend_edge.py +86 -0
  144. skills/ppt-master/scripts/tts_backends/backend_elevenlabs.py +108 -0
  145. skills/ppt-master/scripts/tts_backends/backend_minimax.py +93 -0
  146. skills/ppt-master/scripts/tts_backends/backend_qwen.py +75 -0
  147. skills/ppt-master/scripts/update_repo.py +151 -0
  148. skills/ppt-master/scripts/update_spec.py +252 -0
  149. skills/ppt-master/scripts/visual_review.py +305 -0
  150. skills/ppt-master/templates/README.md +67 -0
  151. skills/ppt-master/templates/__init__.py +1 -0
  152. skills/ppt-master/templates/brands/README.md +56 -0
  153. skills/ppt-master/templates/brands/anthropic/anthropic_claude_lockup.svg +2 -0
  154. skills/ppt-master/templates/brands/anthropic/anthropic_mark.svg +2 -0
  155. skills/ppt-master/templates/brands/anthropic/claude_wordmark.svg +2 -0
  156. skills/ppt-master/templates/brands/anthropic/design_spec.md +71 -0
  157. skills/ppt-master/templates/brands/brands_index.json +10 -0
  158. skills/ppt-master/templates/brands/google/design_spec.md +66 -0
  159. skills/ppt-master/templates/brands/google/google_g_logo.svg +1 -0
  160. skills/ppt-master/templates/brands/google/google_wordmark.svg +2 -0
  161. skills/ppt-master/templates/charts/CHART_STYLE_GUIDE.md +643 -0
  162. skills/ppt-master/templates/charts/README.md +17 -0
  163. skills/ppt-master/templates/charts/agenda_list.svg +139 -0
  164. skills/ppt-master/templates/charts/arc_anchored_list.svg +90 -0
  165. skills/ppt-master/templates/charts/area_chart.svg +196 -0
  166. skills/ppt-master/templates/charts/bar_chart.svg +135 -0
  167. skills/ppt-master/templates/charts/basic_table.svg +78 -0
  168. skills/ppt-master/templates/charts/box_plot_chart.svg +245 -0
  169. skills/ppt-master/templates/charts/bubble_chart.svg +257 -0
  170. skills/ppt-master/templates/charts/bullet_chart.svg +164 -0
  171. skills/ppt-master/templates/charts/butterfly_chart.svg +192 -0
  172. skills/ppt-master/templates/charts/charts_index.json +226 -0
  173. skills/ppt-master/templates/charts/chevron_chain_with_tail.svg +221 -0
  174. skills/ppt-master/templates/charts/chevron_process.svg +218 -0
  175. skills/ppt-master/templates/charts/circular_stages.svg +157 -0
  176. skills/ppt-master/templates/charts/client_server_flow.svg +183 -0
  177. skills/ppt-master/templates/charts/comparison_columns.svg +131 -0
  178. skills/ppt-master/templates/charts/comparison_table.svg +147 -0
  179. skills/ppt-master/templates/charts/concentric_circles.svg +239 -0
  180. skills/ppt-master/templates/charts/consulting_table.svg +130 -0
  181. skills/ppt-master/templates/charts/donut_chart.svg +192 -0
  182. skills/ppt-master/templates/charts/dual_axis_line_chart.svg +203 -0
  183. skills/ppt-master/templates/charts/dumbbell_chart.svg +159 -0
  184. skills/ppt-master/templates/charts/feature_matrix_table.svg +86 -0
  185. skills/ppt-master/templates/charts/financial_statement_table.svg +103 -0
  186. skills/ppt-master/templates/charts/fishbone_diagram.svg +148 -0
  187. skills/ppt-master/templates/charts/funnel_chart.svg +141 -0
  188. skills/ppt-master/templates/charts/gantt_chart.svg +197 -0
  189. skills/ppt-master/templates/charts/gauge_chart.svg +196 -0
  190. skills/ppt-master/templates/charts/grouped_bar_chart.svg +161 -0
  191. skills/ppt-master/templates/charts/harvey_balls_table.svg +113 -0
  192. skills/ppt-master/templates/charts/heatmap_chart.svg +181 -0
  193. skills/ppt-master/templates/charts/horizontal_bar_chart.svg +129 -0
  194. skills/ppt-master/templates/charts/hub_inward_arrows.svg +165 -0
  195. skills/ppt-master/templates/charts/hub_spoke.svg +187 -0
  196. skills/ppt-master/templates/charts/icon_grid.svg +168 -0
  197. skills/ppt-master/templates/charts/isometric_stairs.svg +116 -0
  198. skills/ppt-master/templates/charts/journey_map.svg +99 -0
  199. skills/ppt-master/templates/charts/kpi_cards.svg +109 -0
  200. skills/ppt-master/templates/charts/labeled_card.svg +79 -0
  201. skills/ppt-master/templates/charts/layered_architecture.svg +201 -0
  202. skills/ppt-master/templates/charts/line_chart.svg +141 -0
  203. skills/ppt-master/templates/charts/matrix_2x2.svg +172 -0
  204. skills/ppt-master/templates/charts/mind_map.svg +173 -0
  205. skills/ppt-master/templates/charts/module_composition.svg +154 -0
  206. skills/ppt-master/templates/charts/numbered_steps.svg +148 -0
  207. skills/ppt-master/templates/charts/pareto_chart.svg +126 -0
  208. skills/ppt-master/templates/charts/pie_chart.svg +112 -0
  209. skills/ppt-master/templates/charts/pipeline_with_stages.svg +173 -0
  210. skills/ppt-master/templates/charts/process_flow.svg +119 -0
  211. skills/ppt-master/templates/charts/progress_bar_chart.svg +143 -0
  212. skills/ppt-master/templates/charts/project_schedule_table.svg +112 -0
  213. skills/ppt-master/templates/charts/pros_cons_chart.svg +118 -0
  214. skills/ppt-master/templates/charts/pyramid_chart.svg +118 -0
  215. skills/ppt-master/templates/charts/pyramid_isometric.svg +182 -0
  216. skills/ppt-master/templates/charts/quadrant_bubble_scatter.svg +75 -0
  217. skills/ppt-master/templates/charts/quadrant_text_bullets.svg +257 -0
  218. skills/ppt-master/templates/charts/radar_chart.svg +140 -0
  219. skills/ppt-master/templates/charts/roadmap_vertical.svg +145 -0
  220. skills/ppt-master/templates/charts/sankey_chart.svg +136 -0
  221. skills/ppt-master/templates/charts/scatter_chart.svg +146 -0
  222. skills/ppt-master/templates/charts/segmented_wheel.svg +148 -0
  223. skills/ppt-master/templates/charts/snake_flow.svg +170 -0
  224. skills/ppt-master/templates/charts/stacked_area_chart.svg +163 -0
  225. skills/ppt-master/templates/charts/stacked_bar_chart.svg +163 -0
  226. skills/ppt-master/templates/charts/team_roster.svg +106 -0
  227. skills/ppt-master/templates/charts/timeline.svg +299 -0
  228. skills/ppt-master/templates/charts/top_down_tree.svg +174 -0
  229. skills/ppt-master/templates/charts/treemap_chart.svg +132 -0
  230. skills/ppt-master/templates/charts/venn_diagram.svg +106 -0
  231. skills/ppt-master/templates/charts/vertical_list.svg +122 -0
  232. skills/ppt-master/templates/charts/vertical_pillars.svg +110 -0
  233. skills/ppt-master/templates/charts/waterfall_chart.svg +132 -0
  234. skills/ppt-master/templates/charts/word_cloud.svg +99 -0
  235. skills/ppt-master/templates/decks/README.md +72 -0
  236. skills/ppt-master/templates/decks/decks_index.json +50 -0
  237. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/01_cover.svg +24 -0
  238. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/02_chapter.svg +29 -0
  239. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/02_toc.svg +49 -0
  240. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/03_content.svg +22 -0
  241. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/04_ending.svg +18 -0
  242. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/design_spec.md +220 -0
  243. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/footer_ribbon.png +0 -0
  244. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/header_brand.png +0 -0
  245. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/logo.png +0 -0
  246. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/skyline_bg.png +0 -0
  247. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/slogan_red.png +0 -0
  248. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/top_emblem.png +0 -0
  249. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/01_cover.svg +100 -0
  250. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/02_chapter.svg +81 -0
  251. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/02_toc.svg +112 -0
  252. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/03_content.svg +57 -0
  253. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/04_ending.svg +92 -0
  254. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/design_spec.md +228 -0
  255. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//344/270/255/345/233/275/346/260/264/345/212/241logo.png +0 -0
  256. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//345/215/216/344/270/234/351/231/242logo.png +0 -0
  257. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//346/260/264/347/224/265/344/270/211/345/261/200logo.png +0 -0
  258. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//347/224/265/345/273/272logo.png +0 -0
  259. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/01_cover.svg +90 -0
  260. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/02_chapter.svg +61 -0
  261. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/02_toc.svg +131 -0
  262. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/03_content.svg +77 -0
  263. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/04_ending.svg +78 -0
  264. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/design_spec.md +196 -0
  265. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//344/270/255/345/233/275/346/260/264/345/212/241logo.png +0 -0
  266. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//345/215/216/344/270/234/351/231/242logo.png +0 -0
  267. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//346/260/264/347/224/265/344/270/211/345/261/200logo.png +0 -0
  268. skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//347/224/265/345/273/272logo.png +0 -0
  269. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/01_cover.svg +83 -0
  270. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/02_chapter.svg +55 -0
  271. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/02_toc.svg +110 -0
  272. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/03_content.svg +62 -0
  273. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/04_ending.svg +60 -0
  274. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/design_spec.md +185 -0
  275. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241//345/217/263/344/270/212/350/247/222 logo.png +0 -0
  276. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241//345/244/247/345/236/213 logo.png +0 -0
  277. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/01_cover.svg +49 -0
  278. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/02_chapter.svg +47 -0
  279. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/02_toc.svg +73 -0
  280. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/03_content.svg +57 -0
  281. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/04_ending.svg +62 -0
  282. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/design_spec.md +233 -0
  283. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204//345/217/263/344/270/212/350/247/222 logo.png +0 -0
  284. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204//345/244/247/345/236/213 logo.png +0 -0
  285. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/01_cover.svg +89 -0
  286. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/02_chapter.svg +55 -0
  287. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/02_toc.svg +92 -0
  288. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/03_content.svg +56 -0
  289. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/04_ending.svg +64 -0
  290. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/design_spec.md +189 -0
  291. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243//345/217/263/344/270/212/350/247/222 logo.png +0 -0
  292. skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243//345/244/247/345/236/213 logo.png +0 -0
  293. skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/01_cover.svg +32 -0
  294. skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/02_chapter.svg +29 -0
  295. skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/02_toc.svg +47 -0
  296. skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/03_content.svg +71 -0
  297. skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/04_ending.svg +38 -0
  298. skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/cover_bg.png +0 -0
  299. skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/design_spec.md +238 -0
  300. skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/logo_crm_banner.png +0 -0
  301. skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/logo_dark.png +0 -0
  302. skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/logo_white.png +0 -0
  303. skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/page_header_bg.png +0 -0
  304. skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/ref_content_bg.png +0 -0
  305. skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/01_cover.svg +74 -0
  306. skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/02_chapter.svg +52 -0
  307. skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/02_toc.svg +80 -0
  308. skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/03_content.svg +56 -0
  309. skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/04_ending.svg +62 -0
  310. skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/design_spec.md +251 -0
  311. skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246//351/207/215/345/272/206/345/244/247/345/255/246logo.png +0 -0
  312. skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246//351/207/215/345/272/206/345/244/247/345/255/246logo2.png +0 -0
  313. skills/ppt-master/templates/design_spec_reference.md +348 -0
  314. skills/ppt-master/templates/icons/README.md +89 -0
  315. skills/ppt-master/templates/icons/__init__.py +1 -0
  316. skills/ppt-master/templates/icons/chunk-filled/a.svg +3 -0
  317. skills/ppt-master/templates/icons/chunk-filled/accessibility.svg +3 -0
  318. skills/ppt-master/templates/icons/chunk-filled/activity.svg +4 -0
  319. skills/ppt-master/templates/icons/chunk-filled/address-card.svg +3 -0
  320. skills/ppt-master/templates/icons/chunk-filled/alarm-clock.svg +5 -0
  321. skills/ppt-master/templates/icons/chunk-filled/alien.svg +3 -0
  322. skills/ppt-master/templates/icons/chunk-filled/align-bottom.svg +5 -0
  323. skills/ppt-master/templates/icons/chunk-filled/align-center-horizontal.svg +4 -0
  324. skills/ppt-master/templates/icons/chunk-filled/align-center-vertical.svg +4 -0
  325. skills/ppt-master/templates/icons/chunk-filled/align-left.svg +5 -0
  326. skills/ppt-master/templates/icons/chunk-filled/align-right.svg +5 -0
  327. skills/ppt-master/templates/icons/chunk-filled/align-text-center.svg +6 -0
  328. skills/ppt-master/templates/icons/chunk-filled/align-text-justify.svg +6 -0
  329. skills/ppt-master/templates/icons/chunk-filled/align-text-left.svg +6 -0
  330. skills/ppt-master/templates/icons/chunk-filled/align-text-right.svg +6 -0
  331. skills/ppt-master/templates/icons/chunk-filled/align-top.svg +5 -0
  332. skills/ppt-master/templates/icons/chunk-filled/anchor.svg +3 -0
  333. skills/ppt-master/templates/icons/chunk-filled/angle-down.svg +3 -0
  334. skills/ppt-master/templates/icons/chunk-filled/angle-left.svg +3 -0
  335. skills/ppt-master/templates/icons/chunk-filled/angle-right.svg +3 -0
  336. skills/ppt-master/templates/icons/chunk-filled/angle-up.svg +3 -0
  337. skills/ppt-master/templates/icons/chunk-filled/angles-down.svg +4 -0
  338. skills/ppt-master/templates/icons/chunk-filled/angles-left.svg +4 -0
  339. skills/ppt-master/templates/icons/chunk-filled/angles-right.svg +4 -0
  340. skills/ppt-master/templates/icons/chunk-filled/angles-up.svg +4 -0
  341. skills/ppt-master/templates/icons/chunk-filled/aperture.svg +8 -0
  342. skills/ppt-master/templates/icons/chunk-filled/aquarius.svg +5 -0
  343. skills/ppt-master/templates/icons/chunk-filled/archive-box.svg +4 -0
  344. skills/ppt-master/templates/icons/chunk-filled/aries.svg +3 -0
  345. skills/ppt-master/templates/icons/chunk-filled/arrow-down-from-line.svg +4 -0
  346. skills/ppt-master/templates/icons/chunk-filled/arrow-down-left.svg +3 -0
  347. skills/ppt-master/templates/icons/chunk-filled/arrow-down-right.svg +3 -0
  348. skills/ppt-master/templates/icons/chunk-filled/arrow-down-short-wide.svg +6 -0
  349. skills/ppt-master/templates/icons/chunk-filled/arrow-down-to-bracket.svg +4 -0
  350. skills/ppt-master/templates/icons/chunk-filled/arrow-down-to-line.svg +4 -0
  351. skills/ppt-master/templates/icons/chunk-filled/arrow-down-wide-short.svg +6 -0
  352. skills/ppt-master/templates/icons/chunk-filled/arrow-down.svg +3 -0
  353. skills/ppt-master/templates/icons/chunk-filled/arrow-left-arrow-right.svg +4 -0
  354. skills/ppt-master/templates/icons/chunk-filled/arrow-left-from-line.svg +4 -0
  355. skills/ppt-master/templates/icons/chunk-filled/arrow-left-to-line.svg +4 -0
  356. skills/ppt-master/templates/icons/chunk-filled/arrow-left.svg +3 -0
  357. skills/ppt-master/templates/icons/chunk-filled/arrow-right-from-bracket.svg +4 -0
  358. skills/ppt-master/templates/icons/chunk-filled/arrow-right-from-line.svg +4 -0
  359. skills/ppt-master/templates/icons/chunk-filled/arrow-right-to-bracket.svg +4 -0
  360. skills/ppt-master/templates/icons/chunk-filled/arrow-right-to-line.svg +4 -0
  361. skills/ppt-master/templates/icons/chunk-filled/arrow-right.svg +3 -0
  362. skills/ppt-master/templates/icons/chunk-filled/arrow-rotate-left.svg +3 -0
  363. skills/ppt-master/templates/icons/chunk-filled/arrow-rotate-right.svg +3 -0
  364. skills/ppt-master/templates/icons/chunk-filled/arrow-trend-down.svg +3 -0
  365. skills/ppt-master/templates/icons/chunk-filled/arrow-trend-up.svg +3 -0
  366. skills/ppt-master/templates/icons/chunk-filled/arrow-turn-down-left.svg +3 -0
  367. skills/ppt-master/templates/icons/chunk-filled/arrow-turn-down-right.svg +3 -0
  368. skills/ppt-master/templates/icons/chunk-filled/arrow-turn-left-down.svg +3 -0
  369. skills/ppt-master/templates/icons/chunk-filled/arrow-turn-left-up.svg +3 -0
  370. skills/ppt-master/templates/icons/chunk-filled/arrow-turn-right-down.svg +3 -0
  371. skills/ppt-master/templates/icons/chunk-filled/arrow-turn-right-up.svg +3 -0
  372. skills/ppt-master/templates/icons/chunk-filled/arrow-turn-up-left.svg +3 -0
  373. skills/ppt-master/templates/icons/chunk-filled/arrow-turn-up-right.svg +3 -0
  374. skills/ppt-master/templates/icons/chunk-filled/arrow-u-down-left.svg +3 -0
  375. skills/ppt-master/templates/icons/chunk-filled/arrow-u-down-right.svg +3 -0
  376. skills/ppt-master/templates/icons/chunk-filled/arrow-u-left-down.svg +3 -0
  377. skills/ppt-master/templates/icons/chunk-filled/arrow-u-left-up.svg +3 -0
  378. skills/ppt-master/templates/icons/chunk-filled/arrow-u-right-down.svg +3 -0
  379. skills/ppt-master/templates/icons/chunk-filled/arrow-u-right-up.svg +3 -0
  380. skills/ppt-master/templates/icons/chunk-filled/arrow-u-up-left.svg +3 -0
  381. skills/ppt-master/templates/icons/chunk-filled/arrow-u-up-right.svg +3 -0
  382. skills/ppt-master/templates/icons/chunk-filled/arrow-up-arrow-down.svg +4 -0
  383. skills/ppt-master/templates/icons/chunk-filled/arrow-up-from-bracket.svg +4 -0
  384. skills/ppt-master/templates/icons/chunk-filled/arrow-up-from-line.svg +4 -0
  385. skills/ppt-master/templates/icons/chunk-filled/arrow-up-left.svg +3 -0
  386. skills/ppt-master/templates/icons/chunk-filled/arrow-up-right-from-square.svg +4 -0
  387. skills/ppt-master/templates/icons/chunk-filled/arrow-up-right.svg +3 -0
  388. skills/ppt-master/templates/icons/chunk-filled/arrow-up-short-wide.svg +6 -0
  389. skills/ppt-master/templates/icons/chunk-filled/arrow-up-to-line.svg +4 -0
  390. skills/ppt-master/templates/icons/chunk-filled/arrow-up-wide-short.svg +6 -0
  391. skills/ppt-master/templates/icons/chunk-filled/arrow-up.svg +3 -0
  392. skills/ppt-master/templates/icons/chunk-filled/arrows-left-right.svg +3 -0
  393. skills/ppt-master/templates/icons/chunk-filled/arrows-repeat.svg +4 -0
  394. skills/ppt-master/templates/icons/chunk-filled/arrows-rotate-clockwise.svg +4 -0
  395. skills/ppt-master/templates/icons/chunk-filled/arrows-rotate-counter-clockwise.svg +4 -0
  396. skills/ppt-master/templates/icons/chunk-filled/arrows-up-down.svg +3 -0
  397. skills/ppt-master/templates/icons/chunk-filled/at.svg +3 -0
  398. skills/ppt-master/templates/icons/chunk-filled/axe.svg +3 -0
  399. skills/ppt-master/templates/icons/chunk-filled/b.svg +3 -0
  400. skills/ppt-master/templates/icons/chunk-filled/badge-check.svg +3 -0
  401. skills/ppt-master/templates/icons/chunk-filled/badge.svg +3 -0
  402. skills/ppt-master/templates/icons/chunk-filled/ban.svg +3 -0
  403. skills/ppt-master/templates/icons/chunk-filled/baseball-bat.svg +4 -0
  404. skills/ppt-master/templates/icons/chunk-filled/baseball.svg +5 -0
  405. skills/ppt-master/templates/icons/chunk-filled/basketball.svg +8 -0
  406. skills/ppt-master/templates/icons/chunk-filled/battery-charge.svg +4 -0
  407. skills/ppt-master/templates/icons/chunk-filled/battery-empty.svg +3 -0
  408. skills/ppt-master/templates/icons/chunk-filled/battery-full.svg +3 -0
  409. skills/ppt-master/templates/icons/chunk-filled/battery-half.svg +3 -0
  410. skills/ppt-master/templates/icons/chunk-filled/battery-slash.svg +4 -0
  411. skills/ppt-master/templates/icons/chunk-filled/bed.svg +3 -0
  412. skills/ppt-master/templates/icons/chunk-filled/bee.svg +4 -0
  413. skills/ppt-master/templates/icons/chunk-filled/bell-slash.svg +5 -0
  414. skills/ppt-master/templates/icons/chunk-filled/bell.svg +4 -0
  415. skills/ppt-master/templates/icons/chunk-filled/bicycle.svg +6 -0
  416. skills/ppt-master/templates/icons/chunk-filled/bishop.svg +3 -0
  417. skills/ppt-master/templates/icons/chunk-filled/block-quote.svg +7 -0
  418. skills/ppt-master/templates/icons/chunk-filled/bluetooth.svg +3 -0
  419. skills/ppt-master/templates/icons/chunk-filled/bold.svg +3 -0
  420. skills/ppt-master/templates/icons/chunk-filled/bolt.svg +3 -0
  421. skills/ppt-master/templates/icons/chunk-filled/bomb.svg +5 -0
  422. skills/ppt-master/templates/icons/chunk-filled/bone.svg +3 -0
  423. skills/ppt-master/templates/icons/chunk-filled/book-open.svg +3 -0
  424. skills/ppt-master/templates/icons/chunk-filled/book.svg +3 -0
  425. skills/ppt-master/templates/icons/chunk-filled/bookmark-plus.svg +3 -0
  426. skills/ppt-master/templates/icons/chunk-filled/bookmark.svg +3 -0
  427. skills/ppt-master/templates/icons/chunk-filled/books.svg +5 -0
  428. skills/ppt-master/templates/icons/chunk-filled/bottle.svg +4 -0
  429. skills/ppt-master/templates/icons/chunk-filled/bow-and-arrow.svg +3 -0
  430. skills/ppt-master/templates/icons/chunk-filled/bowl.svg +4 -0
  431. skills/ppt-master/templates/icons/chunk-filled/box.svg +3 -0
  432. skills/ppt-master/templates/icons/chunk-filled/bridge.svg +3 -0
  433. skills/ppt-master/templates/icons/chunk-filled/british-pound.svg +3 -0
  434. skills/ppt-master/templates/icons/chunk-filled/browser.svg +3 -0
  435. skills/ppt-master/templates/icons/chunk-filled/brush.svg +4 -0
  436. skills/ppt-master/templates/icons/chunk-filled/bug.svg +4 -0
  437. skills/ppt-master/templates/icons/chunk-filled/building.svg +3 -0
  438. skills/ppt-master/templates/icons/chunk-filled/bullhorn.svg +4 -0
  439. skills/ppt-master/templates/icons/chunk-filled/burger.svg +5 -0
  440. skills/ppt-master/templates/icons/chunk-filled/bus.svg +3 -0
  441. skills/ppt-master/templates/icons/chunk-filled/butterfly.svg +3 -0
  442. skills/ppt-master/templates/icons/chunk-filled/c.svg +3 -0
  443. skills/ppt-master/templates/icons/chunk-filled/cake-slice.svg +4 -0
  444. skills/ppt-master/templates/icons/chunk-filled/cake.svg +7 -0
  445. skills/ppt-master/templates/icons/chunk-filled/calculator.svg +3 -0
  446. skills/ppt-master/templates/icons/chunk-filled/calendar.svg +4 -0
  447. skills/ppt-master/templates/icons/chunk-filled/camera-slash.svg +4 -0
  448. skills/ppt-master/templates/icons/chunk-filled/camera.svg +3 -0
  449. skills/ppt-master/templates/icons/chunk-filled/cancer.svg +4 -0
  450. skills/ppt-master/templates/icons/chunk-filled/capricorn.svg +3 -0
  451. skills/ppt-master/templates/icons/chunk-filled/car.svg +3 -0
  452. skills/ppt-master/templates/icons/chunk-filled/card-stack.svg +5 -0
  453. skills/ppt-master/templates/icons/chunk-filled/caret-down.svg +3 -0
  454. skills/ppt-master/templates/icons/chunk-filled/caret-left.svg +3 -0
  455. skills/ppt-master/templates/icons/chunk-filled/caret-right.svg +3 -0
  456. skills/ppt-master/templates/icons/chunk-filled/caret-up.svg +3 -0
  457. skills/ppt-master/templates/icons/chunk-filled/castle.svg +3 -0
  458. skills/ppt-master/templates/icons/chunk-filled/cat.svg +4 -0
  459. skills/ppt-master/templates/icons/chunk-filled/chair.svg +4 -0
  460. skills/ppt-master/templates/icons/chunk-filled/chart-bar.svg +5 -0
  461. skills/ppt-master/templates/icons/chunk-filled/chart-line.svg +4 -0
  462. skills/ppt-master/templates/icons/chunk-filled/chart-pie.svg +4 -0
  463. skills/ppt-master/templates/icons/chunk-filled/checkmark.svg +3 -0
  464. skills/ppt-master/templates/icons/chunk-filled/circle-3-dots-horizontal.svg +3 -0
  465. skills/ppt-master/templates/icons/chunk-filled/circle-3-dots-vertical.svg +3 -0
  466. skills/ppt-master/templates/icons/chunk-filled/circle-arrow-down-left.svg +3 -0
  467. skills/ppt-master/templates/icons/chunk-filled/circle-arrow-down-right.svg +3 -0
  468. skills/ppt-master/templates/icons/chunk-filled/circle-arrow-down.svg +3 -0
  469. skills/ppt-master/templates/icons/chunk-filled/circle-arrow-left.svg +3 -0
  470. skills/ppt-master/templates/icons/chunk-filled/circle-arrow-right.svg +3 -0
  471. skills/ppt-master/templates/icons/chunk-filled/circle-arrow-up-left.svg +3 -0
  472. skills/ppt-master/templates/icons/chunk-filled/circle-arrow-up-right.svg +3 -0
  473. skills/ppt-master/templates/icons/chunk-filled/circle-arrow-up.svg +3 -0
  474. skills/ppt-master/templates/icons/chunk-filled/circle-checkmark.svg +3 -0
  475. skills/ppt-master/templates/icons/chunk-filled/circle-divide.svg +3 -0
  476. skills/ppt-master/templates/icons/chunk-filled/circle-equals.svg +3 -0
  477. skills/ppt-master/templates/icons/chunk-filled/circle-exclamation.svg +3 -0
  478. skills/ppt-master/templates/icons/chunk-filled/circle-half.svg +3 -0
  479. skills/ppt-master/templates/icons/chunk-filled/circle-info.svg +3 -0
  480. skills/ppt-master/templates/icons/chunk-filled/circle-minus.svg +3 -0
  481. skills/ppt-master/templates/icons/chunk-filled/circle-number-0.svg +4 -0
  482. skills/ppt-master/templates/icons/chunk-filled/circle-number-1.svg +3 -0
  483. skills/ppt-master/templates/icons/chunk-filled/circle-number-2.svg +3 -0
  484. skills/ppt-master/templates/icons/chunk-filled/circle-number-3.svg +3 -0
  485. skills/ppt-master/templates/icons/chunk-filled/circle-number-4.svg +3 -0
  486. skills/ppt-master/templates/icons/chunk-filled/circle-number-5.svg +3 -0
  487. skills/ppt-master/templates/icons/chunk-filled/circle-number-6.svg +4 -0
  488. skills/ppt-master/templates/icons/chunk-filled/circle-number-7.svg +3 -0
  489. skills/ppt-master/templates/icons/chunk-filled/circle-number-8.svg +5 -0
  490. skills/ppt-master/templates/icons/chunk-filled/circle-number-9.svg +4 -0
  491. skills/ppt-master/templates/icons/chunk-filled/circle-pause.svg +3 -0
  492. skills/ppt-master/templates/icons/chunk-filled/circle-play.svg +3 -0
  493. skills/ppt-master/templates/icons/chunk-filled/circle-plus.svg +3 -0
  494. skills/ppt-master/templates/icons/chunk-filled/circle-question.svg +3 -0
  495. skills/ppt-master/templates/icons/chunk-filled/circle-stop.svg +3 -0
  496. skills/ppt-master/templates/icons/chunk-filled/circle-user.svg +4 -0
  497. skills/ppt-master/templates/icons/chunk-filled/circle-x.svg +3 -0
  498. skills/ppt-master/templates/icons/chunk-filled/circle.svg +3 -0
  499. skills/ppt-master/templates/icons/chunk-filled/citrus-slice.svg +6 -0
  500. skills/ppt-master/templates/icons/chunk-filled/city.svg +3 -0
  501. skills/ppt-master/templates/icons/chunk-filled/clipboard.svg +4 -0
  502. skills/ppt-master/templates/icons/chunk-filled/clock.svg +3 -0
  503. skills/ppt-master/templates/icons/chunk-filled/closed-captioning.svg +3 -0
  504. skills/ppt-master/templates/icons/chunk-filled/clothes-hanger.svg +3 -0
  505. skills/ppt-master/templates/icons/chunk-filled/cloud-arrow-down.svg +3 -0
  506. skills/ppt-master/templates/icons/chunk-filled/cloud-arrow-up.svg +3 -0
  507. skills/ppt-master/templates/icons/chunk-filled/cloud-fog.svg +6 -0
  508. skills/ppt-master/templates/icons/chunk-filled/cloud-lightning.svg +4 -0
  509. skills/ppt-master/templates/icons/chunk-filled/cloud-rain.svg +6 -0
  510. skills/ppt-master/templates/icons/chunk-filled/cloud-snow.svg +8 -0
  511. skills/ppt-master/templates/icons/chunk-filled/cloud.svg +3 -0
  512. skills/ppt-master/templates/icons/chunk-filled/club.svg +3 -0
  513. skills/ppt-master/templates/icons/chunk-filled/cocktail.svg +3 -0
  514. skills/ppt-master/templates/icons/chunk-filled/code-block.svg +3 -0
  515. skills/ppt-master/templates/icons/chunk-filled/code.svg +5 -0
  516. skills/ppt-master/templates/icons/chunk-filled/cog.svg +3 -0
  517. skills/ppt-master/templates/icons/chunk-filled/coin.svg +3 -0
  518. skills/ppt-master/templates/icons/chunk-filled/columns.svg +4 -0
  519. skills/ppt-master/templates/icons/chunk-filled/command.svg +3 -0
  520. skills/ppt-master/templates/icons/chunk-filled/comment-dots.svg +3 -0
  521. skills/ppt-master/templates/icons/chunk-filled/comment.svg +3 -0
  522. skills/ppt-master/templates/icons/chunk-filled/comments-slash.svg +4 -0
  523. skills/ppt-master/templates/icons/chunk-filled/comments.svg +4 -0
  524. skills/ppt-master/templates/icons/chunk-filled/compact-disc.svg +3 -0
  525. skills/ppt-master/templates/icons/chunk-filled/compass-drafting.svg +4 -0
  526. skills/ppt-master/templates/icons/chunk-filled/compass.svg +4 -0
  527. skills/ppt-master/templates/icons/chunk-filled/component.svg +6 -0
  528. skills/ppt-master/templates/icons/chunk-filled/copy.svg +4 -0
  529. skills/ppt-master/templates/icons/chunk-filled/copyright.svg +3 -0
  530. skills/ppt-master/templates/icons/chunk-filled/credit-card.svg +4 -0
  531. skills/ppt-master/templates/icons/chunk-filled/crop.svg +4 -0
  532. skills/ppt-master/templates/icons/chunk-filled/crosshairs.svg +4 -0
  533. skills/ppt-master/templates/icons/chunk-filled/crown.svg +3 -0
  534. skills/ppt-master/templates/icons/chunk-filled/crystal-ball.svg +4 -0
  535. skills/ppt-master/templates/icons/chunk-filled/cube.svg +3 -0
  536. skills/ppt-master/templates/icons/chunk-filled/cupcake.svg +4 -0
  537. skills/ppt-master/templates/icons/chunk-filled/curling-stone.svg +4 -0
  538. skills/ppt-master/templates/icons/chunk-filled/cursor-click.svg +6 -0
  539. skills/ppt-master/templates/icons/chunk-filled/cursor.svg +3 -0
  540. skills/ppt-master/templates/icons/chunk-filled/d-pad.svg +6 -0
  541. skills/ppt-master/templates/icons/chunk-filled/d.svg +3 -0
  542. skills/ppt-master/templates/icons/chunk-filled/database.svg +5 -0
  543. skills/ppt-master/templates/icons/chunk-filled/delete.svg +3 -0
  544. skills/ppt-master/templates/icons/chunk-filled/desktop.svg +3 -0
  545. skills/ppt-master/templates/icons/chunk-filled/diamond-exclamation.svg +3 -0
  546. skills/ppt-master/templates/icons/chunk-filled/diamond-half.svg +3 -0
  547. skills/ppt-master/templates/icons/chunk-filled/diamond-shape.svg +3 -0
  548. skills/ppt-master/templates/icons/chunk-filled/diamond.svg +3 -0
  549. skills/ppt-master/templates/icons/chunk-filled/dice.svg +4 -0
  550. skills/ppt-master/templates/icons/chunk-filled/die-1.svg +3 -0
  551. skills/ppt-master/templates/icons/chunk-filled/die-2.svg +3 -0
  552. skills/ppt-master/templates/icons/chunk-filled/die-3.svg +3 -0
  553. skills/ppt-master/templates/icons/chunk-filled/die-4.svg +3 -0
  554. skills/ppt-master/templates/icons/chunk-filled/die-5.svg +3 -0
  555. skills/ppt-master/templates/icons/chunk-filled/die-6.svg +3 -0
  556. skills/ppt-master/templates/icons/chunk-filled/distribute-horizontal.svg +5 -0
  557. skills/ppt-master/templates/icons/chunk-filled/distribute-vertical.svg +5 -0
  558. skills/ppt-master/templates/icons/chunk-filled/divide.svg +5 -0
  559. skills/ppt-master/templates/icons/chunk-filled/dna.svg +3 -0
  560. skills/ppt-master/templates/icons/chunk-filled/dog.svg +3 -0
  561. skills/ppt-master/templates/icons/chunk-filled/dollar.svg +3 -0
  562. skills/ppt-master/templates/icons/chunk-filled/door-open.svg +3 -0
  563. skills/ppt-master/templates/icons/chunk-filled/door.svg +3 -0
  564. skills/ppt-master/templates/icons/chunk-filled/dots-horizontal.svg +5 -0
  565. skills/ppt-master/templates/icons/chunk-filled/dots-vertical.svg +5 -0
  566. skills/ppt-master/templates/icons/chunk-filled/droplet.svg +3 -0
  567. skills/ppt-master/templates/icons/chunk-filled/e.svg +3 -0
  568. skills/ppt-master/templates/icons/chunk-filled/ear-slash.svg +4 -0
  569. skills/ppt-master/templates/icons/chunk-filled/ear.svg +3 -0
  570. skills/ppt-master/templates/icons/chunk-filled/eject.svg +4 -0
  571. skills/ppt-master/templates/icons/chunk-filled/envelope.svg +4 -0
  572. skills/ppt-master/templates/icons/chunk-filled/equals.svg +4 -0
  573. skills/ppt-master/templates/icons/chunk-filled/euro.svg +3 -0
  574. skills/ppt-master/templates/icons/chunk-filled/exclude.svg +3 -0
  575. skills/ppt-master/templates/icons/chunk-filled/eye-slash.svg +4 -0
  576. skills/ppt-master/templates/icons/chunk-filled/eye.svg +3 -0
  577. skills/ppt-master/templates/icons/chunk-filled/eyedropper.svg +4 -0
  578. skills/ppt-master/templates/icons/chunk-filled/f.svg +3 -0
  579. skills/ppt-master/templates/icons/chunk-filled/face-angry.svg +3 -0
  580. skills/ppt-master/templates/icons/chunk-filled/face-cry.svg +3 -0
  581. skills/ppt-master/templates/icons/chunk-filled/face-id.svg +9 -0
  582. skills/ppt-master/templates/icons/chunk-filled/face-laugh.svg +3 -0
  583. skills/ppt-master/templates/icons/chunk-filled/face-meh.svg +3 -0
  584. skills/ppt-master/templates/icons/chunk-filled/face-melt.svg +3 -0
  585. skills/ppt-master/templates/icons/chunk-filled/face-no-mouth.svg +3 -0
  586. skills/ppt-master/templates/icons/chunk-filled/face-open-mouth.svg +3 -0
  587. skills/ppt-master/templates/icons/chunk-filled/face-sad.svg +3 -0
  588. skills/ppt-master/templates/icons/chunk-filled/face-smile.svg +3 -0
  589. skills/ppt-master/templates/icons/chunk-filled/factory.svg +3 -0
  590. skills/ppt-master/templates/icons/chunk-filled/fast-forward.svg +3 -0
  591. skills/ppt-master/templates/icons/chunk-filled/file-plus.svg +3 -0
  592. skills/ppt-master/templates/icons/chunk-filled/file.svg +4 -0
  593. skills/ppt-master/templates/icons/chunk-filled/files.svg +4 -0
  594. skills/ppt-master/templates/icons/chunk-filled/film.svg +3 -0
  595. skills/ppt-master/templates/icons/chunk-filled/filter.svg +6 -0
  596. skills/ppt-master/templates/icons/chunk-filled/fire.svg +3 -0
  597. skills/ppt-master/templates/icons/chunk-filled/fireplace.svg +4 -0
  598. skills/ppt-master/templates/icons/chunk-filled/fish.svg +3 -0
  599. skills/ppt-master/templates/icons/chunk-filled/flag.svg +3 -0
  600. skills/ppt-master/templates/icons/chunk-filled/floppy-disk.svg +4 -0
  601. skills/ppt-master/templates/icons/chunk-filled/flower.svg +5 -0
  602. skills/ppt-master/templates/icons/chunk-filled/folder-open.svg +3 -0
  603. skills/ppt-master/templates/icons/chunk-filled/folder.svg +3 -0
  604. skills/ppt-master/templates/icons/chunk-filled/folders.svg +4 -0
  605. skills/ppt-master/templates/icons/chunk-filled/font-case.svg +4 -0
  606. skills/ppt-master/templates/icons/chunk-filled/football.svg +3 -0
  607. skills/ppt-master/templates/icons/chunk-filled/frame.svg +3 -0
  608. skills/ppt-master/templates/icons/chunk-filled/funnel.svg +3 -0
  609. skills/ppt-master/templates/icons/chunk-filled/g.svg +3 -0
  610. skills/ppt-master/templates/icons/chunk-filled/game-controller.svg +3 -0
  611. skills/ppt-master/templates/icons/chunk-filled/gauge-high.svg +3 -0
  612. skills/ppt-master/templates/icons/chunk-filled/gauge-low.svg +3 -0
  613. skills/ppt-master/templates/icons/chunk-filled/gauge-medium.svg +3 -0
  614. skills/ppt-master/templates/icons/chunk-filled/gem.svg +3 -0
  615. skills/ppt-master/templates/icons/chunk-filled/gemini.svg +3 -0
  616. skills/ppt-master/templates/icons/chunk-filled/ghost.svg +3 -0
  617. skills/ppt-master/templates/icons/chunk-filled/gift.svg +5 -0
  618. skills/ppt-master/templates/icons/chunk-filled/git-branch.svg +3 -0
  619. skills/ppt-master/templates/icons/chunk-filled/git-commit.svg +3 -0
  620. skills/ppt-master/templates/icons/chunk-filled/git-compare.svg +4 -0
  621. skills/ppt-master/templates/icons/chunk-filled/git-fork.svg +3 -0
  622. skills/ppt-master/templates/icons/chunk-filled/git-merge.svg +3 -0
  623. skills/ppt-master/templates/icons/chunk-filled/glasses.svg +3 -0
  624. skills/ppt-master/templates/icons/chunk-filled/globe.svg +6 -0
  625. skills/ppt-master/templates/icons/chunk-filled/grid-masonry.svg +6 -0
  626. skills/ppt-master/templates/icons/chunk-filled/grid.svg +3 -0
  627. skills/ppt-master/templates/icons/chunk-filled/grip-horizontal.svg +8 -0
  628. skills/ppt-master/templates/icons/chunk-filled/grip-vertical.svg +8 -0
  629. skills/ppt-master/templates/icons/chunk-filled/group.svg +14 -0
  630. skills/ppt-master/templates/icons/chunk-filled/h.svg +3 -0
  631. skills/ppt-master/templates/icons/chunk-filled/hammer.svg +4 -0
  632. skills/ppt-master/templates/icons/chunk-filled/hand-tap.svg +6 -0
  633. skills/ppt-master/templates/icons/chunk-filled/hand.svg +3 -0
  634. skills/ppt-master/templates/icons/chunk-filled/hashtag.svg +3 -0
  635. skills/ppt-master/templates/icons/chunk-filled/head-side.svg +3 -0
  636. skills/ppt-master/templates/icons/chunk-filled/headlights.svg +6 -0
  637. skills/ppt-master/templates/icons/chunk-filled/headphones.svg +3 -0
  638. skills/ppt-master/templates/icons/chunk-filled/heart-broken.svg +3 -0
  639. skills/ppt-master/templates/icons/chunk-filled/heart-half.svg +3 -0
  640. skills/ppt-master/templates/icons/chunk-filled/heart.svg +3 -0
  641. skills/ppt-master/templates/icons/chunk-filled/hexagon.svg +3 -0
  642. skills/ppt-master/templates/icons/chunk-filled/hockey.svg +5 -0
  643. skills/ppt-master/templates/icons/chunk-filled/home-1.svg +3 -0
  644. skills/ppt-master/templates/icons/chunk-filled/home.svg +3 -0
  645. skills/ppt-master/templates/icons/chunk-filled/hospital.svg +3 -0
  646. skills/ppt-master/templates/icons/chunk-filled/hourglass-empty.svg +3 -0
  647. skills/ppt-master/templates/icons/chunk-filled/hourglass-half-bottom.svg +3 -0
  648. skills/ppt-master/templates/icons/chunk-filled/hourglass-half-top.svg +3 -0
  649. skills/ppt-master/templates/icons/chunk-filled/i-cursor.svg +3 -0
  650. skills/ppt-master/templates/icons/chunk-filled/i.svg +3 -0
  651. skills/ppt-master/templates/icons/chunk-filled/ice-cream.svg +4 -0
  652. skills/ppt-master/templates/icons/chunk-filled/image.svg +3 -0
  653. skills/ppt-master/templates/icons/chunk-filled/images.svg +4 -0
  654. skills/ppt-master/templates/icons/chunk-filled/inbox.svg +3 -0
  655. skills/ppt-master/templates/icons/chunk-filled/indent.svg +7 -0
  656. skills/ppt-master/templates/icons/chunk-filled/intersect.svg +3 -0
  657. skills/ppt-master/templates/icons/chunk-filled/italic.svg +3 -0
  658. skills/ppt-master/templates/icons/chunk-filled/j.svg +3 -0
  659. skills/ppt-master/templates/icons/chunk-filled/jersey.svg +4 -0
  660. skills/ppt-master/templates/icons/chunk-filled/joystick.svg +3 -0
  661. skills/ppt-master/templates/icons/chunk-filled/k.svg +3 -0
  662. skills/ppt-master/templates/icons/chunk-filled/key-skeleton.svg +3 -0
  663. skills/ppt-master/templates/icons/chunk-filled/key.svg +3 -0
  664. skills/ppt-master/templates/icons/chunk-filled/keyboard.svg +13 -0
  665. skills/ppt-master/templates/icons/chunk-filled/keyhole.svg +3 -0
  666. skills/ppt-master/templates/icons/chunk-filled/king.svg +3 -0
  667. skills/ppt-master/templates/icons/chunk-filled/knight.svg +3 -0
  668. skills/ppt-master/templates/icons/chunk-filled/l.svg +3 -0
  669. skills/ppt-master/templates/icons/chunk-filled/label.svg +3 -0
  670. skills/ppt-master/templates/icons/chunk-filled/ladder.svg +3 -0
  671. skills/ppt-master/templates/icons/chunk-filled/lamp.svg +4 -0
  672. skills/ppt-master/templates/icons/chunk-filled/language.svg +3 -0
  673. skills/ppt-master/templates/icons/chunk-filled/laptop.svg +4 -0
  674. skills/ppt-master/templates/icons/chunk-filled/laundry-machine.svg +3 -0
  675. skills/ppt-master/templates/icons/chunk-filled/layers.svg +5 -0
  676. skills/ppt-master/templates/icons/chunk-filled/leaf.svg +3 -0
  677. skills/ppt-master/templates/icons/chunk-filled/leo.svg +3 -0
  678. skills/ppt-master/templates/icons/chunk-filled/libra.svg +4 -0
  679. skills/ppt-master/templates/icons/chunk-filled/life-ring.svg +3 -0
  680. skills/ppt-master/templates/icons/chunk-filled/lightbulb.svg +3 -0
  681. skills/ppt-master/templates/icons/chunk-filled/lines-magnifying-glass.svg +7 -0
  682. skills/ppt-master/templates/icons/chunk-filled/lines-plus.svg +7 -0
  683. skills/ppt-master/templates/icons/chunk-filled/lines.svg +6 -0
  684. skills/ppt-master/templates/icons/chunk-filled/link.svg +5 -0
  685. skills/ppt-master/templates/icons/chunk-filled/list-ordered.svg +8 -0
  686. skills/ppt-master/templates/icons/chunk-filled/list.svg +10 -0
  687. skills/ppt-master/templates/icons/chunk-filled/location-arrow-slash.svg +4 -0
  688. skills/ppt-master/templates/icons/chunk-filled/location-arrow.svg +3 -0
  689. skills/ppt-master/templates/icons/chunk-filled/location-target.svg +4 -0
  690. skills/ppt-master/templates/icons/chunk-filled/lock-closed.svg +3 -0
  691. skills/ppt-master/templates/icons/chunk-filled/lock-open.svg +3 -0
  692. skills/ppt-master/templates/icons/chunk-filled/m.svg +3 -0
  693. skills/ppt-master/templates/icons/chunk-filled/magnet.svg +5 -0
  694. skills/ppt-master/templates/icons/chunk-filled/magnifying-glass.svg +3 -0
  695. skills/ppt-master/templates/icons/chunk-filled/mailbox.svg +3 -0
  696. skills/ppt-master/templates/icons/chunk-filled/map-pin.svg +3 -0
  697. skills/ppt-master/templates/icons/chunk-filled/map.svg +5 -0
  698. skills/ppt-master/templates/icons/chunk-filled/maximize.svg +4 -0
  699. skills/ppt-master/templates/icons/chunk-filled/meeple.svg +3 -0
  700. skills/ppt-master/templates/icons/chunk-filled/megaphone.svg +3 -0
  701. skills/ppt-master/templates/icons/chunk-filled/meteor.svg +3 -0
  702. skills/ppt-master/templates/icons/chunk-filled/microchip.svg +4 -0
  703. skills/ppt-master/templates/icons/chunk-filled/microphone-slash.svg +5 -0
  704. skills/ppt-master/templates/icons/chunk-filled/microphone.svg +4 -0
  705. skills/ppt-master/templates/icons/chunk-filled/minimize.svg +4 -0
  706. skills/ppt-master/templates/icons/chunk-filled/minus.svg +3 -0
  707. skills/ppt-master/templates/icons/chunk-filled/mobile.svg +3 -0
  708. skills/ppt-master/templates/icons/chunk-filled/money.svg +7 -0
  709. skills/ppt-master/templates/icons/chunk-filled/moon-cloud.svg +5 -0
  710. skills/ppt-master/templates/icons/chunk-filled/moon-fog.svg +6 -0
  711. skills/ppt-master/templates/icons/chunk-filled/moon.svg +4 -0
  712. skills/ppt-master/templates/icons/chunk-filled/mortarboard.svg +4 -0
  713. skills/ppt-master/templates/icons/chunk-filled/mountains.svg +3 -0
  714. skills/ppt-master/templates/icons/chunk-filled/mouse.svg +5 -0
  715. skills/ppt-master/templates/icons/chunk-filled/move-down.svg +5 -0
  716. skills/ppt-master/templates/icons/chunk-filled/move-up.svg +5 -0
  717. skills/ppt-master/templates/icons/chunk-filled/mug.svg +6 -0
  718. skills/ppt-master/templates/icons/chunk-filled/museum.svg +4 -0
  719. skills/ppt-master/templates/icons/chunk-filled/music.svg +3 -0
  720. skills/ppt-master/templates/icons/chunk-filled/n.svg +3 -0
  721. skills/ppt-master/templates/icons/chunk-filled/newspaper.svg +3 -0
  722. skills/ppt-master/templates/icons/chunk-filled/number-0-alt.svg +3 -0
  723. skills/ppt-master/templates/icons/chunk-filled/number-0.svg +3 -0
  724. skills/ppt-master/templates/icons/chunk-filled/number-1-alt.svg +3 -0
  725. skills/ppt-master/templates/icons/chunk-filled/number-1.svg +3 -0
  726. skills/ppt-master/templates/icons/chunk-filled/number-2-alt.svg +3 -0
  727. skills/ppt-master/templates/icons/chunk-filled/number-2.svg +3 -0
  728. skills/ppt-master/templates/icons/chunk-filled/number-3-alt.svg +3 -0
  729. skills/ppt-master/templates/icons/chunk-filled/number-3.svg +3 -0
  730. skills/ppt-master/templates/icons/chunk-filled/number-4-alt.svg +3 -0
  731. skills/ppt-master/templates/icons/chunk-filled/number-4.svg +3 -0
  732. skills/ppt-master/templates/icons/chunk-filled/number-5-alt.svg +3 -0
  733. skills/ppt-master/templates/icons/chunk-filled/number-5.svg +3 -0
  734. skills/ppt-master/templates/icons/chunk-filled/number-6-alt.svg +3 -0
  735. skills/ppt-master/templates/icons/chunk-filled/number-6.svg +3 -0
  736. skills/ppt-master/templates/icons/chunk-filled/number-7-alt.svg +3 -0
  737. skills/ppt-master/templates/icons/chunk-filled/number-7.svg +3 -0
  738. skills/ppt-master/templates/icons/chunk-filled/number-8-alt.svg +3 -0
  739. skills/ppt-master/templates/icons/chunk-filled/number-8.svg +3 -0
  740. skills/ppt-master/templates/icons/chunk-filled/number-9-alt.svg +3 -0
  741. skills/ppt-master/templates/icons/chunk-filled/number-9.svg +3 -0
  742. skills/ppt-master/templates/icons/chunk-filled/nut.svg +3 -0
  743. skills/ppt-master/templates/icons/chunk-filled/o.svg +3 -0
  744. skills/ppt-master/templates/icons/chunk-filled/octagon-exclamation.svg +3 -0
  745. skills/ppt-master/templates/icons/chunk-filled/octagon.svg +3 -0
  746. skills/ppt-master/templates/icons/chunk-filled/option.svg +4 -0
  747. skills/ppt-master/templates/icons/chunk-filled/outdent.svg +7 -0
  748. skills/ppt-master/templates/icons/chunk-filled/outlet.svg +3 -0
  749. skills/ppt-master/templates/icons/chunk-filled/p.svg +3 -0
  750. skills/ppt-master/templates/icons/chunk-filled/paint-bucket.svg +4 -0
  751. skills/ppt-master/templates/icons/chunk-filled/paint-roller.svg +3 -0
  752. skills/ppt-master/templates/icons/chunk-filled/painting.svg +4 -0
  753. skills/ppt-master/templates/icons/chunk-filled/palette.svg +3 -0
  754. skills/ppt-master/templates/icons/chunk-filled/pants.svg +3 -0
  755. skills/ppt-master/templates/icons/chunk-filled/paper-plane.svg +3 -0
  756. skills/ppt-master/templates/icons/chunk-filled/paperclip.svg +3 -0
  757. skills/ppt-master/templates/icons/chunk-filled/pause.svg +4 -0
  758. skills/ppt-master/templates/icons/chunk-filled/paw.svg +7 -0
  759. skills/ppt-master/templates/icons/chunk-filled/pawn.svg +3 -0
  760. skills/ppt-master/templates/icons/chunk-filled/pen-nib.svg +3 -0
  761. skills/ppt-master/templates/icons/chunk-filled/pencil-square.svg +4 -0
  762. skills/ppt-master/templates/icons/chunk-filled/pencil.svg +4 -0
  763. skills/ppt-master/templates/icons/chunk-filled/percent.svg +5 -0
  764. skills/ppt-master/templates/icons/chunk-filled/person-walking.svg +4 -0
  765. skills/ppt-master/templates/icons/chunk-filled/person-wave.svg +4 -0
  766. skills/ppt-master/templates/icons/chunk-filled/person.svg +4 -0
  767. skills/ppt-master/templates/icons/chunk-filled/phone-slash.svg +4 -0
  768. skills/ppt-master/templates/icons/chunk-filled/phone.svg +3 -0
  769. skills/ppt-master/templates/icons/chunk-filled/pills.svg +5 -0
  770. skills/ppt-master/templates/icons/chunk-filled/pisces.svg +3 -0
  771. skills/ppt-master/templates/icons/chunk-filled/pizza.svg +4 -0
  772. skills/ppt-master/templates/icons/chunk-filled/plane.svg +3 -0
  773. skills/ppt-master/templates/icons/chunk-filled/planet.svg +4 -0
  774. skills/ppt-master/templates/icons/chunk-filled/play-pause.svg +5 -0
  775. skills/ppt-master/templates/icons/chunk-filled/play.svg +3 -0
  776. skills/ppt-master/templates/icons/chunk-filled/playing-card.svg +3 -0
  777. skills/ppt-master/templates/icons/chunk-filled/plug.svg +3 -0
  778. skills/ppt-master/templates/icons/chunk-filled/plus.svg +3 -0
  779. skills/ppt-master/templates/icons/chunk-filled/point-down.svg +3 -0
  780. skills/ppt-master/templates/icons/chunk-filled/point-left.svg +3 -0
  781. skills/ppt-master/templates/icons/chunk-filled/point-right.svg +3 -0
  782. skills/ppt-master/templates/icons/chunk-filled/point-up.svg +3 -0
  783. skills/ppt-master/templates/icons/chunk-filled/poop.svg +3 -0
  784. skills/ppt-master/templates/icons/chunk-filled/potion-empty.svg +3 -0
  785. skills/ppt-master/templates/icons/chunk-filled/potion-full.svg +3 -0
  786. skills/ppt-master/templates/icons/chunk-filled/potion-half.svg +3 -0
  787. skills/ppt-master/templates/icons/chunk-filled/power.svg +4 -0
  788. skills/ppt-master/templates/icons/chunk-filled/printer.svg +4 -0
  789. skills/ppt-master/templates/icons/chunk-filled/q.svg +3 -0
  790. skills/ppt-master/templates/icons/chunk-filled/queen.svg +4 -0
  791. skills/ppt-master/templates/icons/chunk-filled/question-mark.svg +4 -0
  792. skills/ppt-master/templates/icons/chunk-filled/quote-left.svg +4 -0
  793. skills/ppt-master/templates/icons/chunk-filled/quote-right.svg +4 -0
  794. skills/ppt-master/templates/icons/chunk-filled/radar.svg +3 -0
  795. skills/ppt-master/templates/icons/chunk-filled/radioactive.svg +3 -0
  796. skills/ppt-master/templates/icons/chunk-filled/rainbow-cloud.svg +5 -0
  797. skills/ppt-master/templates/icons/chunk-filled/rainbow.svg +4 -0
  798. skills/ppt-master/templates/icons/chunk-filled/receipt.svg +3 -0
  799. skills/ppt-master/templates/icons/chunk-filled/recycle.svg +5 -0
  800. skills/ppt-master/templates/icons/chunk-filled/reflect-horizontal.svg +5 -0
  801. skills/ppt-master/templates/icons/chunk-filled/reflect-vertical.svg +5 -0
  802. skills/ppt-master/templates/icons/chunk-filled/rewind.svg +3 -0
  803. skills/ppt-master/templates/icons/chunk-filled/robot.svg +3 -0
  804. skills/ppt-master/templates/icons/chunk-filled/rocket.svg +4 -0
  805. skills/ppt-master/templates/icons/chunk-filled/rook.svg +3 -0
  806. skills/ppt-master/templates/icons/chunk-filled/route.svg +5 -0
  807. skills/ppt-master/templates/icons/chunk-filled/rows.svg +4 -0
  808. skills/ppt-master/templates/icons/chunk-filled/rss.svg +5 -0
  809. skills/ppt-master/templates/icons/chunk-filled/ruler.svg +3 -0
  810. skills/ppt-master/templates/icons/chunk-filled/s.svg +3 -0
  811. skills/ppt-master/templates/icons/chunk-filled/sagittarius.svg +3 -0
  812. skills/ppt-master/templates/icons/chunk-filled/scissors.svg +4 -0
  813. skills/ppt-master/templates/icons/chunk-filled/scooter.svg +3 -0
  814. skills/ppt-master/templates/icons/chunk-filled/scorpio.svg +3 -0
  815. skills/ppt-master/templates/icons/chunk-filled/screencast.svg +5 -0
  816. skills/ppt-master/templates/icons/chunk-filled/screw.svg +5 -0
  817. skills/ppt-master/templates/icons/chunk-filled/screwdriver.svg +4 -0
  818. skills/ppt-master/templates/icons/chunk-filled/scribble.svg +4 -0
  819. skills/ppt-master/templates/icons/chunk-filled/seedling.svg +3 -0
  820. skills/ppt-master/templates/icons/chunk-filled/server.svg +4 -0
  821. skills/ppt-master/templates/icons/chunk-filled/service-bell.svg +4 -0
  822. skills/ppt-master/templates/icons/chunk-filled/share-nodes.svg +3 -0
  823. skills/ppt-master/templates/icons/chunk-filled/shield-check.svg +3 -0
  824. skills/ppt-master/templates/icons/chunk-filled/shield-half.svg +3 -0
  825. skills/ppt-master/templates/icons/chunk-filled/shield.svg +3 -0
  826. skills/ppt-master/templates/icons/chunk-filled/shift.svg +3 -0
  827. skills/ppt-master/templates/icons/chunk-filled/ship.svg +4 -0
  828. skills/ppt-master/templates/icons/chunk-filled/shirt.svg +3 -0
  829. skills/ppt-master/templates/icons/chunk-filled/shoe.svg +4 -0
  830. skills/ppt-master/templates/icons/chunk-filled/shop.svg +4 -0
  831. skills/ppt-master/templates/icons/chunk-filled/shopping-bag.svg +4 -0
  832. skills/ppt-master/templates/icons/chunk-filled/shopping-basket.svg +3 -0
  833. skills/ppt-master/templates/icons/chunk-filled/shopping-cart.svg +3 -0
  834. skills/ppt-master/templates/icons/chunk-filled/shuffle.svg +4 -0
  835. skills/ppt-master/templates/icons/chunk-filled/sidebar-left.svg +4 -0
  836. skills/ppt-master/templates/icons/chunk-filled/sidebar-right.svg +4 -0
  837. skills/ppt-master/templates/icons/chunk-filled/signal-fair.svg +4 -0
  838. skills/ppt-master/templates/icons/chunk-filled/signal-good.svg +5 -0
  839. skills/ppt-master/templates/icons/chunk-filled/signal-slash.svg +6 -0
  840. skills/ppt-master/templates/icons/chunk-filled/signal-weak.svg +3 -0
  841. skills/ppt-master/templates/icons/chunk-filled/signal.svg +6 -0
  842. skills/ppt-master/templates/icons/chunk-filled/signpost.svg +4 -0
  843. skills/ppt-master/templates/icons/chunk-filled/sink.svg +4 -0
  844. skills/ppt-master/templates/icons/chunk-filled/skip-backward.svg +3 -0
  845. skills/ppt-master/templates/icons/chunk-filled/skip-forward.svg +3 -0
  846. skills/ppt-master/templates/icons/chunk-filled/skull.svg +3 -0
  847. skills/ppt-master/templates/icons/chunk-filled/sliders.svg +4 -0
  848. skills/ppt-master/templates/icons/chunk-filled/smartwatch.svg +3 -0
  849. skills/ppt-master/templates/icons/chunk-filled/snow.svg +3 -0
  850. skills/ppt-master/templates/icons/chunk-filled/soccer.svg +8 -0
  851. skills/ppt-master/templates/icons/chunk-filled/soda.svg +4 -0
  852. skills/ppt-master/templates/icons/chunk-filled/sort.svg +4 -0
  853. skills/ppt-master/templates/icons/chunk-filled/spade.svg +3 -0
  854. skills/ppt-master/templates/icons/chunk-filled/sparkles.svg +7 -0
  855. skills/ppt-master/templates/icons/chunk-filled/square-checkmark.svg +3 -0
  856. skills/ppt-master/templates/icons/chunk-filled/square-divide.svg +3 -0
  857. skills/ppt-master/templates/icons/chunk-filled/square-equals.svg +3 -0
  858. skills/ppt-master/templates/icons/chunk-filled/square-minus.svg +3 -0
  859. skills/ppt-master/templates/icons/chunk-filled/square-plus.svg +3 -0
  860. skills/ppt-master/templates/icons/chunk-filled/square-user.svg +4 -0
  861. skills/ppt-master/templates/icons/chunk-filled/square-x.svg +3 -0
  862. skills/ppt-master/templates/icons/chunk-filled/square.svg +3 -0
  863. skills/ppt-master/templates/icons/chunk-filled/squares-horizontal.svg +5 -0
  864. skills/ppt-master/templates/icons/chunk-filled/squares-vertical.svg +5 -0
  865. skills/ppt-master/templates/icons/chunk-filled/star-half.svg +3 -0
  866. skills/ppt-master/templates/icons/chunk-filled/star.svg +3 -0
  867. skills/ppt-master/templates/icons/chunk-filled/sticky-note.svg +4 -0
  868. skills/ppt-master/templates/icons/chunk-filled/stop.svg +3 -0
  869. skills/ppt-master/templates/icons/chunk-filled/stopwatch.svg +3 -0
  870. skills/ppt-master/templates/icons/chunk-filled/strikethrough.svg +4 -0
  871. skills/ppt-master/templates/icons/chunk-filled/subtract.svg +3 -0
  872. skills/ppt-master/templates/icons/chunk-filled/suitcase.svg +5 -0
  873. skills/ppt-master/templates/icons/chunk-filled/sun-cloud.svg +8 -0
  874. skills/ppt-master/templates/icons/chunk-filled/sun-fog.svg +11 -0
  875. skills/ppt-master/templates/icons/chunk-filled/sun.svg +11 -0
  876. skills/ppt-master/templates/icons/chunk-filled/sunglasses.svg +3 -0
  877. skills/ppt-master/templates/icons/chunk-filled/swatches.svg +5 -0
  878. skills/ppt-master/templates/icons/chunk-filled/sword.svg +3 -0
  879. skills/ppt-master/templates/icons/chunk-filled/swords-crossed.svg +5 -0
  880. skills/ppt-master/templates/icons/chunk-filled/t.svg +3 -0
  881. skills/ppt-master/templates/icons/chunk-filled/table.svg +7 -0
  882. skills/ppt-master/templates/icons/chunk-filled/tag.svg +3 -0
  883. skills/ppt-master/templates/icons/chunk-filled/target-arrow.svg +5 -0
  884. skills/ppt-master/templates/icons/chunk-filled/target.svg +4 -0
  885. skills/ppt-master/templates/icons/chunk-filled/taurus.svg +3 -0
  886. skills/ppt-master/templates/icons/chunk-filled/temperature-high.svg +7 -0
  887. skills/ppt-master/templates/icons/chunk-filled/temperature-low.svg +7 -0
  888. skills/ppt-master/templates/icons/chunk-filled/temperature-medium.svg +7 -0
  889. skills/ppt-master/templates/icons/chunk-filled/tennis-ball.svg +5 -0
  890. skills/ppt-master/templates/icons/chunk-filled/terminal.svg +4 -0
  891. skills/ppt-master/templates/icons/chunk-filled/text.svg +3 -0
  892. skills/ppt-master/templates/icons/chunk-filled/thumbs-down.svg +4 -0
  893. skills/ppt-master/templates/icons/chunk-filled/thumbs-up.svg +4 -0
  894. skills/ppt-master/templates/icons/chunk-filled/thumbtack.svg +4 -0
  895. skills/ppt-master/templates/icons/chunk-filled/ticket.svg +3 -0
  896. skills/ppt-master/templates/icons/chunk-filled/toggle-circle-left.svg +3 -0
  897. skills/ppt-master/templates/icons/chunk-filled/toggle-circle-right.svg +3 -0
  898. skills/ppt-master/templates/icons/chunk-filled/toolbox.svg +4 -0
  899. skills/ppt-master/templates/icons/chunk-filled/traffic-cone.svg +5 -0
  900. skills/ppt-master/templates/icons/chunk-filled/traffic-light.svg +3 -0
  901. skills/ppt-master/templates/icons/chunk-filled/train.svg +3 -0
  902. skills/ppt-master/templates/icons/chunk-filled/trash.svg +4 -0
  903. skills/ppt-master/templates/icons/chunk-filled/tree-evergreen.svg +3 -0
  904. skills/ppt-master/templates/icons/chunk-filled/tree.svg +3 -0
  905. skills/ppt-master/templates/icons/chunk-filled/triangle-exclamation.svg +3 -0
  906. skills/ppt-master/templates/icons/chunk-filled/triangle.svg +3 -0
  907. skills/ppt-master/templates/icons/chunk-filled/trophy.svg +3 -0
  908. skills/ppt-master/templates/icons/chunk-filled/truck.svg +3 -0
  909. skills/ppt-master/templates/icons/chunk-filled/tv-retro.svg +3 -0
  910. skills/ppt-master/templates/icons/chunk-filled/tv.svg +4 -0
  911. skills/ppt-master/templates/icons/chunk-filled/u.svg +3 -0
  912. skills/ppt-master/templates/icons/chunk-filled/ufo.svg +4 -0
  913. skills/ppt-master/templates/icons/chunk-filled/umbrella.svg +3 -0
  914. skills/ppt-master/templates/icons/chunk-filled/underline.svg +4 -0
  915. skills/ppt-master/templates/icons/chunk-filled/unite.svg +3 -0
  916. skills/ppt-master/templates/icons/chunk-filled/user.svg +4 -0
  917. skills/ppt-master/templates/icons/chunk-filled/users.svg +6 -0
  918. skills/ppt-master/templates/icons/chunk-filled/utensils.svg +4 -0
  919. skills/ppt-master/templates/icons/chunk-filled/v.svg +3 -0
  920. skills/ppt-master/templates/icons/chunk-filled/vector-circle.svg +3 -0
  921. skills/ppt-master/templates/icons/chunk-filled/vector-curve.svg +3 -0
  922. skills/ppt-master/templates/icons/chunk-filled/vector-line.svg +3 -0
  923. skills/ppt-master/templates/icons/chunk-filled/vector-square.svg +3 -0
  924. skills/ppt-master/templates/icons/chunk-filled/video-camera-slash.svg +4 -0
  925. skills/ppt-master/templates/icons/chunk-filled/video-camera.svg +4 -0
  926. skills/ppt-master/templates/icons/chunk-filled/video.svg +3 -0
  927. skills/ppt-master/templates/icons/chunk-filled/virgo.svg +3 -0
  928. skills/ppt-master/templates/icons/chunk-filled/volume-high.svg +5 -0
  929. skills/ppt-master/templates/icons/chunk-filled/volume-low.svg +4 -0
  930. skills/ppt-master/templates/icons/chunk-filled/volume-none.svg +3 -0
  931. skills/ppt-master/templates/icons/chunk-filled/volume-slash.svg +4 -0
  932. skills/ppt-master/templates/icons/chunk-filled/volume-x.svg +4 -0
  933. skills/ppt-master/templates/icons/chunk-filled/vr.svg +3 -0
  934. skills/ppt-master/templates/icons/chunk-filled/w.svg +3 -0
  935. skills/ppt-master/templates/icons/chunk-filled/wallet.svg +3 -0
  936. skills/ppt-master/templates/icons/chunk-filled/wand-with-sparkles.svg +6 -0
  937. skills/ppt-master/templates/icons/chunk-filled/watch.svg +3 -0
  938. skills/ppt-master/templates/icons/chunk-filled/water.svg +4 -0
  939. skills/ppt-master/templates/icons/chunk-filled/waveform.svg +6 -0
  940. skills/ppt-master/templates/icons/chunk-filled/wheelchair.svg +4 -0
  941. skills/ppt-master/templates/icons/chunk-filled/wifi-low.svg +3 -0
  942. skills/ppt-master/templates/icons/chunk-filled/wifi-medium.svg +4 -0
  943. skills/ppt-master/templates/icons/chunk-filled/wifi-slash.svg +4 -0
  944. skills/ppt-master/templates/icons/chunk-filled/wifi.svg +5 -0
  945. skills/ppt-master/templates/icons/chunk-filled/wind.svg +4 -0
  946. skills/ppt-master/templates/icons/chunk-filled/window.svg +5 -0
  947. skills/ppt-master/templates/icons/chunk-filled/wine-glass.svg +3 -0
  948. skills/ppt-master/templates/icons/chunk-filled/wrench.svg +3 -0
  949. skills/ppt-master/templates/icons/chunk-filled/x-1.svg +3 -0
  950. skills/ppt-master/templates/icons/chunk-filled/x.svg +3 -0
  951. skills/ppt-master/templates/icons/chunk-filled/y.svg +3 -0
  952. skills/ppt-master/templates/icons/chunk-filled/yen.svg +3 -0
  953. skills/ppt-master/templates/icons/chunk-filled/z.svg +3 -0
  954. skills/ppt-master/templates/icons/chunk-filled/zoom-in.svg +3 -0
  955. skills/ppt-master/templates/icons/chunk-filled/zoom-out.svg +3 -0
  956. skills/ppt-master/templates/icons/phosphor-duotone/address-book.svg +1 -0
  957. skills/ppt-master/templates/icons/phosphor-duotone/air-traffic-control.svg +1 -0
  958. skills/ppt-master/templates/icons/phosphor-duotone/airplane-in-flight.svg +1 -0
  959. skills/ppt-master/templates/icons/phosphor-duotone/airplane-landing.svg +1 -0
  960. skills/ppt-master/templates/icons/phosphor-duotone/airplane-takeoff.svg +1 -0
  961. skills/ppt-master/templates/icons/phosphor-duotone/airplane-tilt.svg +1 -0
  962. skills/ppt-master/templates/icons/phosphor-duotone/airplane.svg +1 -0
  963. skills/ppt-master/templates/icons/phosphor-duotone/airplay.svg +1 -0
  964. skills/ppt-master/templates/icons/phosphor-duotone/alarm.svg +1 -0
  965. skills/ppt-master/templates/icons/phosphor-duotone/alien.svg +1 -0
  966. skills/ppt-master/templates/icons/phosphor-duotone/align-bottom-simple.svg +1 -0
  967. skills/ppt-master/templates/icons/phosphor-duotone/align-bottom.svg +1 -0
  968. skills/ppt-master/templates/icons/phosphor-duotone/align-center-horizontal-simple.svg +1 -0
  969. skills/ppt-master/templates/icons/phosphor-duotone/align-center-horizontal.svg +1 -0
  970. skills/ppt-master/templates/icons/phosphor-duotone/align-center-vertical-simple.svg +1 -0
  971. skills/ppt-master/templates/icons/phosphor-duotone/align-center-vertical.svg +1 -0
  972. skills/ppt-master/templates/icons/phosphor-duotone/align-left-simple.svg +1 -0
  973. skills/ppt-master/templates/icons/phosphor-duotone/align-left.svg +1 -0
  974. skills/ppt-master/templates/icons/phosphor-duotone/align-right-simple.svg +1 -0
  975. skills/ppt-master/templates/icons/phosphor-duotone/align-right.svg +1 -0
  976. skills/ppt-master/templates/icons/phosphor-duotone/align-top-simple.svg +1 -0
  977. skills/ppt-master/templates/icons/phosphor-duotone/align-top.svg +1 -0
  978. skills/ppt-master/templates/icons/phosphor-duotone/amazon-logo.svg +1 -0
  979. skills/ppt-master/templates/icons/phosphor-duotone/anchor-simple.svg +1 -0
  980. skills/ppt-master/templates/icons/phosphor-duotone/anchor.svg +1 -0
  981. skills/ppt-master/templates/icons/phosphor-duotone/android-logo.svg +1 -0
  982. skills/ppt-master/templates/icons/phosphor-duotone/angular-logo.svg +1 -0
  983. skills/ppt-master/templates/icons/phosphor-duotone/aperture.svg +1 -0
  984. skills/ppt-master/templates/icons/phosphor-duotone/app-store-logo.svg +1 -0
  985. skills/ppt-master/templates/icons/phosphor-duotone/app-window.svg +1 -0
  986. skills/ppt-master/templates/icons/phosphor-duotone/apple-logo.svg +1 -0
  987. skills/ppt-master/templates/icons/phosphor-duotone/apple-podcasts-logo.svg +1 -0
  988. skills/ppt-master/templates/icons/phosphor-duotone/archive-box.svg +1 -0
  989. skills/ppt-master/templates/icons/phosphor-duotone/archive-tray.svg +1 -0
  990. skills/ppt-master/templates/icons/phosphor-duotone/archive.svg +1 -0
  991. skills/ppt-master/templates/icons/phosphor-duotone/armchair.svg +1 -0
  992. skills/ppt-master/templates/icons/phosphor-duotone/arrow-arc-left.svg +1 -0
  993. skills/ppt-master/templates/icons/phosphor-duotone/arrow-arc-right.svg +1 -0
  994. skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-double-up-left.svg +1 -0
  995. skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-double-up-right.svg +1 -0
  996. skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-down-left.svg +1 -0
  997. skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-down-right.svg +1 -0
  998. skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-left-down.svg +1 -0
  999. skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-left-up.svg +1 -0
  1000. skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-right-down.svg +1 -0
  1001. skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-right-up.svg +1 -0
  1002. skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-up-left.svg +1 -0
  1003. skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-up-right.svg +1 -0
  1004. skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-down-left.svg +1 -0
  1005. skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-down-right.svg +1 -0
  1006. skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-down.svg +1 -0
  1007. skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-left.svg +1 -0
  1008. skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-right.svg +1 -0
  1009. skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-up-left.svg +1 -0
  1010. skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-up-right.svg +1 -0
  1011. skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-up.svg +1 -0
  1012. skills/ppt-master/templates/icons/phosphor-duotone/arrow-clockwise.svg +1 -0
  1013. skills/ppt-master/templates/icons/phosphor-duotone/arrow-counter-clockwise.svg +1 -0
  1014. skills/ppt-master/templates/icons/phosphor-duotone/arrow-down-left.svg +1 -0
  1015. skills/ppt-master/templates/icons/phosphor-duotone/arrow-down-right.svg +1 -0
  1016. skills/ppt-master/templates/icons/phosphor-duotone/arrow-down.svg +1 -0
  1017. skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-down-left.svg +1 -0
  1018. skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-down-right.svg +1 -0
  1019. skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-left-down.svg +1 -0
  1020. skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-left-up.svg +1 -0
  1021. skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-left.svg +1 -0
  1022. skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-right-down.svg +1 -0
  1023. skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-right-up.svg +1 -0
  1024. skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-right.svg +1 -0
  1025. skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-up-left.svg +1 -0
  1026. skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-up-right.svg +1 -0
  1027. skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-down.svg +1 -0
  1028. skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-left.svg +1 -0
  1029. skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-line-down.svg +1 -0
  1030. skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-line-left.svg +1 -0
  1031. skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-line-right.svg +1 -0
  1032. skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-line-up.svg +1 -0
  1033. skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-lines-down.svg +1 -0
  1034. skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-lines-left.svg +1 -0
  1035. skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-lines-right.svg +1 -0
  1036. skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-lines-up.svg +1 -0
  1037. skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-right.svg +1 -0
  1038. skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-up.svg +1 -0
  1039. skills/ppt-master/templates/icons/phosphor-duotone/arrow-left.svg +1 -0
  1040. skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-down-left.svg +1 -0
  1041. skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-down-right.svg +1 -0
  1042. skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-down.svg +1 -0
  1043. skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-left.svg +1 -0
  1044. skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-right.svg +1 -0
  1045. skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-up-left.svg +1 -0
  1046. skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-up-right.svg +1 -0
  1047. skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-up.svg +1 -0
  1048. skills/ppt-master/templates/icons/phosphor-duotone/arrow-right.svg +1 -0
  1049. skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-down-left.svg +1 -0
  1050. skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-down-right.svg +1 -0
  1051. skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-down.svg +1 -0
  1052. skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-in.svg +1 -0
  1053. skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-left.svg +1 -0
  1054. skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-out.svg +1 -0
  1055. skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-right.svg +1 -0
  1056. skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-up-left.svg +1 -0
  1057. skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-up-right.svg +1 -0
  1058. skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-up.svg +1 -0
  1059. skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-down-left.svg +1 -0
  1060. skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-down-right.svg +1 -0
  1061. skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-left-down.svg +1 -0
  1062. skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-left-up.svg +1 -0
  1063. skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-right-down.svg +1 -0
  1064. skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-right-up.svg +1 -0
  1065. skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-up-left.svg +1 -0
  1066. skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-up-right.svg +1 -0
  1067. skills/ppt-master/templates/icons/phosphor-duotone/arrow-up-left.svg +1 -0
  1068. skills/ppt-master/templates/icons/phosphor-duotone/arrow-up-right.svg +1 -0
  1069. skills/ppt-master/templates/icons/phosphor-duotone/arrow-up.svg +1 -0
  1070. skills/ppt-master/templates/icons/phosphor-duotone/arrows-clockwise.svg +1 -0
  1071. skills/ppt-master/templates/icons/phosphor-duotone/arrows-counter-clockwise.svg +1 -0
  1072. skills/ppt-master/templates/icons/phosphor-duotone/arrows-down-up.svg +1 -0
  1073. skills/ppt-master/templates/icons/phosphor-duotone/arrows-horizontal.svg +1 -0
  1074. skills/ppt-master/templates/icons/phosphor-duotone/arrows-in-cardinal.svg +1 -0
  1075. skills/ppt-master/templates/icons/phosphor-duotone/arrows-in-line-horizontal.svg +1 -0
  1076. skills/ppt-master/templates/icons/phosphor-duotone/arrows-in-line-vertical.svg +1 -0
  1077. skills/ppt-master/templates/icons/phosphor-duotone/arrows-in-simple.svg +1 -0
  1078. skills/ppt-master/templates/icons/phosphor-duotone/arrows-in.svg +1 -0
  1079. skills/ppt-master/templates/icons/phosphor-duotone/arrows-left-right.svg +1 -0
  1080. skills/ppt-master/templates/icons/phosphor-duotone/arrows-merge.svg +1 -0
  1081. skills/ppt-master/templates/icons/phosphor-duotone/arrows-out-cardinal.svg +1 -0
  1082. skills/ppt-master/templates/icons/phosphor-duotone/arrows-out-line-horizontal.svg +1 -0
  1083. skills/ppt-master/templates/icons/phosphor-duotone/arrows-out-line-vertical.svg +1 -0
  1084. skills/ppt-master/templates/icons/phosphor-duotone/arrows-out-simple.svg +1 -0
  1085. skills/ppt-master/templates/icons/phosphor-duotone/arrows-out.svg +1 -0
  1086. skills/ppt-master/templates/icons/phosphor-duotone/arrows-split.svg +1 -0
  1087. skills/ppt-master/templates/icons/phosphor-duotone/arrows-vertical.svg +1 -0
  1088. skills/ppt-master/templates/icons/phosphor-duotone/article-medium.svg +1 -0
  1089. skills/ppt-master/templates/icons/phosphor-duotone/article-ny-times.svg +1 -0
  1090. skills/ppt-master/templates/icons/phosphor-duotone/article.svg +1 -0
  1091. skills/ppt-master/templates/icons/phosphor-duotone/asterisk-simple.svg +1 -0
  1092. skills/ppt-master/templates/icons/phosphor-duotone/asterisk.svg +1 -0
  1093. skills/ppt-master/templates/icons/phosphor-duotone/at.svg +1 -0
  1094. skills/ppt-master/templates/icons/phosphor-duotone/atom.svg +1 -0
  1095. skills/ppt-master/templates/icons/phosphor-duotone/baby.svg +1 -0
  1096. skills/ppt-master/templates/icons/phosphor-duotone/backpack.svg +1 -0
  1097. skills/ppt-master/templates/icons/phosphor-duotone/backspace.svg +1 -0
  1098. skills/ppt-master/templates/icons/phosphor-duotone/bag-simple.svg +1 -0
  1099. skills/ppt-master/templates/icons/phosphor-duotone/bag.svg +1 -0
  1100. skills/ppt-master/templates/icons/phosphor-duotone/balloon.svg +1 -0
  1101. skills/ppt-master/templates/icons/phosphor-duotone/bandaids.svg +1 -0
  1102. skills/ppt-master/templates/icons/phosphor-duotone/bank.svg +1 -0
  1103. skills/ppt-master/templates/icons/phosphor-duotone/barbell.svg +1 -0
  1104. skills/ppt-master/templates/icons/phosphor-duotone/barcode.svg +1 -0
  1105. skills/ppt-master/templates/icons/phosphor-duotone/barricade.svg +1 -0
  1106. skills/ppt-master/templates/icons/phosphor-duotone/baseball-cap.svg +1 -0
  1107. skills/ppt-master/templates/icons/phosphor-duotone/baseball.svg +1 -0
  1108. skills/ppt-master/templates/icons/phosphor-duotone/basket.svg +1 -0
  1109. skills/ppt-master/templates/icons/phosphor-duotone/basketball.svg +1 -0
  1110. skills/ppt-master/templates/icons/phosphor-duotone/bathtub.svg +1 -0
  1111. skills/ppt-master/templates/icons/phosphor-duotone/battery-charging-vertical.svg +1 -0
  1112. skills/ppt-master/templates/icons/phosphor-duotone/battery-charging.svg +1 -0
  1113. skills/ppt-master/templates/icons/phosphor-duotone/battery-empty.svg +1 -0
  1114. skills/ppt-master/templates/icons/phosphor-duotone/battery-full.svg +1 -0
  1115. skills/ppt-master/templates/icons/phosphor-duotone/battery-high.svg +1 -0
  1116. skills/ppt-master/templates/icons/phosphor-duotone/battery-low.svg +1 -0
  1117. skills/ppt-master/templates/icons/phosphor-duotone/battery-medium.svg +1 -0
  1118. skills/ppt-master/templates/icons/phosphor-duotone/battery-plus-vertical.svg +1 -0
  1119. skills/ppt-master/templates/icons/phosphor-duotone/battery-plus.svg +1 -0
  1120. skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-empty.svg +1 -0
  1121. skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-full.svg +1 -0
  1122. skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-high.svg +1 -0
  1123. skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-low.svg +1 -0
  1124. skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-medium.svg +1 -0
  1125. skills/ppt-master/templates/icons/phosphor-duotone/battery-warning-vertical.svg +1 -0
  1126. skills/ppt-master/templates/icons/phosphor-duotone/battery-warning.svg +1 -0
  1127. skills/ppt-master/templates/icons/phosphor-duotone/bed.svg +1 -0
  1128. skills/ppt-master/templates/icons/phosphor-duotone/beer-bottle.svg +1 -0
  1129. skills/ppt-master/templates/icons/phosphor-duotone/beer-stein.svg +1 -0
  1130. skills/ppt-master/templates/icons/phosphor-duotone/behance-logo.svg +1 -0
  1131. skills/ppt-master/templates/icons/phosphor-duotone/bell-ringing.svg +1 -0
  1132. skills/ppt-master/templates/icons/phosphor-duotone/bell-simple-ringing.svg +1 -0
  1133. skills/ppt-master/templates/icons/phosphor-duotone/bell-simple-slash.svg +1 -0
  1134. skills/ppt-master/templates/icons/phosphor-duotone/bell-simple-z.svg +1 -0
  1135. skills/ppt-master/templates/icons/phosphor-duotone/bell-simple.svg +1 -0
  1136. skills/ppt-master/templates/icons/phosphor-duotone/bell-slash.svg +1 -0
  1137. skills/ppt-master/templates/icons/phosphor-duotone/bell-z.svg +1 -0
  1138. skills/ppt-master/templates/icons/phosphor-duotone/bell.svg +1 -0
  1139. skills/ppt-master/templates/icons/phosphor-duotone/bezier-curve.svg +1 -0
  1140. skills/ppt-master/templates/icons/phosphor-duotone/bicycle.svg +1 -0
  1141. skills/ppt-master/templates/icons/phosphor-duotone/binoculars.svg +1 -0
  1142. skills/ppt-master/templates/icons/phosphor-duotone/bird.svg +1 -0
  1143. skills/ppt-master/templates/icons/phosphor-duotone/bluetooth-connected.svg +1 -0
  1144. skills/ppt-master/templates/icons/phosphor-duotone/bluetooth-slash.svg +1 -0
  1145. skills/ppt-master/templates/icons/phosphor-duotone/bluetooth-x.svg +1 -0
  1146. skills/ppt-master/templates/icons/phosphor-duotone/bluetooth.svg +1 -0
  1147. skills/ppt-master/templates/icons/phosphor-duotone/boat.svg +1 -0
  1148. skills/ppt-master/templates/icons/phosphor-duotone/bone.svg +1 -0
  1149. skills/ppt-master/templates/icons/phosphor-duotone/book-bookmark.svg +1 -0
  1150. skills/ppt-master/templates/icons/phosphor-duotone/book-open-text.svg +1 -0
  1151. skills/ppt-master/templates/icons/phosphor-duotone/book-open.svg +1 -0
  1152. skills/ppt-master/templates/icons/phosphor-duotone/book.svg +1 -0
  1153. skills/ppt-master/templates/icons/phosphor-duotone/bookmark-simple.svg +1 -0
  1154. skills/ppt-master/templates/icons/phosphor-duotone/bookmark.svg +1 -0
  1155. skills/ppt-master/templates/icons/phosphor-duotone/bookmarks-simple.svg +1 -0
  1156. skills/ppt-master/templates/icons/phosphor-duotone/bookmarks.svg +1 -0
  1157. skills/ppt-master/templates/icons/phosphor-duotone/books.svg +1 -0
  1158. skills/ppt-master/templates/icons/phosphor-duotone/boot.svg +1 -0
  1159. skills/ppt-master/templates/icons/phosphor-duotone/bounding-box.svg +1 -0
  1160. skills/ppt-master/templates/icons/phosphor-duotone/bowl-food.svg +1 -0
  1161. skills/ppt-master/templates/icons/phosphor-duotone/brackets-angle.svg +1 -0
  1162. skills/ppt-master/templates/icons/phosphor-duotone/brackets-curly.svg +1 -0
  1163. skills/ppt-master/templates/icons/phosphor-duotone/brackets-round.svg +1 -0
  1164. skills/ppt-master/templates/icons/phosphor-duotone/brackets-square.svg +1 -0
  1165. skills/ppt-master/templates/icons/phosphor-duotone/brain.svg +1 -0
  1166. skills/ppt-master/templates/icons/phosphor-duotone/brandy.svg +1 -0
  1167. skills/ppt-master/templates/icons/phosphor-duotone/bridge.svg +1 -0
  1168. skills/ppt-master/templates/icons/phosphor-duotone/briefcase-metal.svg +1 -0
  1169. skills/ppt-master/templates/icons/phosphor-duotone/briefcase.svg +1 -0
  1170. skills/ppt-master/templates/icons/phosphor-duotone/broadcast.svg +1 -0
  1171. skills/ppt-master/templates/icons/phosphor-duotone/broom.svg +1 -0
  1172. skills/ppt-master/templates/icons/phosphor-duotone/browser.svg +1 -0
  1173. skills/ppt-master/templates/icons/phosphor-duotone/browsers.svg +1 -0
  1174. skills/ppt-master/templates/icons/phosphor-duotone/bug-beetle.svg +1 -0
  1175. skills/ppt-master/templates/icons/phosphor-duotone/bug-droid.svg +1 -0
  1176. skills/ppt-master/templates/icons/phosphor-duotone/bug.svg +1 -0
  1177. skills/ppt-master/templates/icons/phosphor-duotone/buildings.svg +1 -0
  1178. skills/ppt-master/templates/icons/phosphor-duotone/bus.svg +1 -0
  1179. skills/ppt-master/templates/icons/phosphor-duotone/butterfly.svg +1 -0
  1180. skills/ppt-master/templates/icons/phosphor-duotone/cactus.svg +1 -0
  1181. skills/ppt-master/templates/icons/phosphor-duotone/cake.svg +1 -0
  1182. skills/ppt-master/templates/icons/phosphor-duotone/calculator.svg +1 -0
  1183. skills/ppt-master/templates/icons/phosphor-duotone/calendar-blank.svg +1 -0
  1184. skills/ppt-master/templates/icons/phosphor-duotone/calendar-check.svg +1 -0
  1185. skills/ppt-master/templates/icons/phosphor-duotone/calendar-plus.svg +1 -0
  1186. skills/ppt-master/templates/icons/phosphor-duotone/calendar-x.svg +1 -0
  1187. skills/ppt-master/templates/icons/phosphor-duotone/calendar.svg +1 -0
  1188. skills/ppt-master/templates/icons/phosphor-duotone/call-bell.svg +1 -0
  1189. skills/ppt-master/templates/icons/phosphor-duotone/camera-plus.svg +1 -0
  1190. skills/ppt-master/templates/icons/phosphor-duotone/camera-rotate.svg +1 -0
  1191. skills/ppt-master/templates/icons/phosphor-duotone/camera-slash.svg +1 -0
  1192. skills/ppt-master/templates/icons/phosphor-duotone/camera.svg +1 -0
  1193. skills/ppt-master/templates/icons/phosphor-duotone/campfire.svg +1 -0
  1194. skills/ppt-master/templates/icons/phosphor-duotone/car-profile.svg +1 -0
  1195. skills/ppt-master/templates/icons/phosphor-duotone/car-simple.svg +1 -0
  1196. skills/ppt-master/templates/icons/phosphor-duotone/car.svg +1 -0
  1197. skills/ppt-master/templates/icons/phosphor-duotone/cardholder.svg +1 -0
  1198. skills/ppt-master/templates/icons/phosphor-duotone/cards.svg +1 -0
  1199. skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-double-down.svg +1 -0
  1200. skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-double-left.svg +1 -0
  1201. skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-double-right.svg +1 -0
  1202. skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-double-up.svg +1 -0
  1203. skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-down.svg +1 -0
  1204. skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-left.svg +1 -0
  1205. skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-right.svg +1 -0
  1206. skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-up-down.svg +1 -0
  1207. skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-up.svg +1 -0
  1208. skills/ppt-master/templates/icons/phosphor-duotone/caret-double-down.svg +1 -0
  1209. skills/ppt-master/templates/icons/phosphor-duotone/caret-double-left.svg +1 -0
  1210. skills/ppt-master/templates/icons/phosphor-duotone/caret-double-right.svg +1 -0
  1211. skills/ppt-master/templates/icons/phosphor-duotone/caret-double-up.svg +1 -0
  1212. skills/ppt-master/templates/icons/phosphor-duotone/caret-down.svg +1 -0
  1213. skills/ppt-master/templates/icons/phosphor-duotone/caret-left.svg +1 -0
  1214. skills/ppt-master/templates/icons/phosphor-duotone/caret-right.svg +1 -0
  1215. skills/ppt-master/templates/icons/phosphor-duotone/caret-up-down.svg +1 -0
  1216. skills/ppt-master/templates/icons/phosphor-duotone/caret-up.svg +1 -0
  1217. skills/ppt-master/templates/icons/phosphor-duotone/carrot.svg +1 -0
  1218. skills/ppt-master/templates/icons/phosphor-duotone/cassette-tape.svg +1 -0
  1219. skills/ppt-master/templates/icons/phosphor-duotone/castle-turret.svg +1 -0
  1220. skills/ppt-master/templates/icons/phosphor-duotone/cat.svg +1 -0
  1221. skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-full.svg +1 -0
  1222. skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-high.svg +1 -0
  1223. skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-low.svg +1 -0
  1224. skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-medium.svg +1 -0
  1225. skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-none.svg +1 -0
  1226. skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-slash.svg +1 -0
  1227. skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-x.svg +1 -0
  1228. skills/ppt-master/templates/icons/phosphor-duotone/certificate.svg +1 -0
  1229. skills/ppt-master/templates/icons/phosphor-duotone/chair.svg +1 -0
  1230. skills/ppt-master/templates/icons/phosphor-duotone/chalkboard-simple.svg +1 -0
  1231. skills/ppt-master/templates/icons/phosphor-duotone/chalkboard-teacher.svg +1 -0
  1232. skills/ppt-master/templates/icons/phosphor-duotone/chalkboard.svg +1 -0
  1233. skills/ppt-master/templates/icons/phosphor-duotone/champagne.svg +1 -0
  1234. skills/ppt-master/templates/icons/phosphor-duotone/charging-station.svg +1 -0
  1235. skills/ppt-master/templates/icons/phosphor-duotone/chart-bar-horizontal.svg +1 -0
  1236. skills/ppt-master/templates/icons/phosphor-duotone/chart-bar.svg +1 -0
  1237. skills/ppt-master/templates/icons/phosphor-duotone/chart-donut.svg +1 -0
  1238. skills/ppt-master/templates/icons/phosphor-duotone/chart-line-down.svg +1 -0
  1239. skills/ppt-master/templates/icons/phosphor-duotone/chart-line-up.svg +1 -0
  1240. skills/ppt-master/templates/icons/phosphor-duotone/chart-line.svg +1 -0
  1241. skills/ppt-master/templates/icons/phosphor-duotone/chart-pie-slice.svg +1 -0
  1242. skills/ppt-master/templates/icons/phosphor-duotone/chart-pie.svg +1 -0
  1243. skills/ppt-master/templates/icons/phosphor-duotone/chart-polar.svg +1 -0
  1244. skills/ppt-master/templates/icons/phosphor-duotone/chart-scatter.svg +1 -0
  1245. skills/ppt-master/templates/icons/phosphor-duotone/chat-centered-dots.svg +1 -0
  1246. skills/ppt-master/templates/icons/phosphor-duotone/chat-centered-text.svg +1 -0
  1247. skills/ppt-master/templates/icons/phosphor-duotone/chat-centered.svg +1 -0
  1248. skills/ppt-master/templates/icons/phosphor-duotone/chat-circle-dots.svg +1 -0
  1249. skills/ppt-master/templates/icons/phosphor-duotone/chat-circle-text.svg +1 -0
  1250. skills/ppt-master/templates/icons/phosphor-duotone/chat-circle.svg +1 -0
  1251. skills/ppt-master/templates/icons/phosphor-duotone/chat-dots.svg +1 -0
  1252. skills/ppt-master/templates/icons/phosphor-duotone/chat-teardrop-dots.svg +1 -0
  1253. skills/ppt-master/templates/icons/phosphor-duotone/chat-teardrop-text.svg +1 -0
  1254. skills/ppt-master/templates/icons/phosphor-duotone/chat-teardrop.svg +1 -0
  1255. skills/ppt-master/templates/icons/phosphor-duotone/chat-text.svg +1 -0
  1256. skills/ppt-master/templates/icons/phosphor-duotone/chat.svg +1 -0
  1257. skills/ppt-master/templates/icons/phosphor-duotone/chats-circle.svg +1 -0
  1258. skills/ppt-master/templates/icons/phosphor-duotone/chats-teardrop.svg +1 -0
  1259. skills/ppt-master/templates/icons/phosphor-duotone/chats.svg +1 -0
  1260. skills/ppt-master/templates/icons/phosphor-duotone/check-circle.svg +1 -0
  1261. skills/ppt-master/templates/icons/phosphor-duotone/check-fat.svg +1 -0
  1262. skills/ppt-master/templates/icons/phosphor-duotone/check-square-offset.svg +1 -0
  1263. skills/ppt-master/templates/icons/phosphor-duotone/check-square.svg +1 -0
  1264. skills/ppt-master/templates/icons/phosphor-duotone/check.svg +1 -0
  1265. skills/ppt-master/templates/icons/phosphor-duotone/checks.svg +1 -0
  1266. skills/ppt-master/templates/icons/phosphor-duotone/church.svg +1 -0
  1267. skills/ppt-master/templates/icons/phosphor-duotone/circle-dashed.svg +1 -0
  1268. skills/ppt-master/templates/icons/phosphor-duotone/circle-half-tilt.svg +1 -0
  1269. skills/ppt-master/templates/icons/phosphor-duotone/circle-half.svg +1 -0
  1270. skills/ppt-master/templates/icons/phosphor-duotone/circle-notch.svg +1 -0
  1271. skills/ppt-master/templates/icons/phosphor-duotone/circle.svg +1 -0
  1272. skills/ppt-master/templates/icons/phosphor-duotone/circles-four.svg +1 -0
  1273. skills/ppt-master/templates/icons/phosphor-duotone/circles-three-plus.svg +1 -0
  1274. skills/ppt-master/templates/icons/phosphor-duotone/circles-three.svg +1 -0
  1275. skills/ppt-master/templates/icons/phosphor-duotone/circuitry.svg +1 -0
  1276. skills/ppt-master/templates/icons/phosphor-duotone/clipboard-text.svg +1 -0
  1277. skills/ppt-master/templates/icons/phosphor-duotone/clipboard.svg +1 -0
  1278. skills/ppt-master/templates/icons/phosphor-duotone/clock-afternoon.svg +1 -0
  1279. skills/ppt-master/templates/icons/phosphor-duotone/clock-clockwise.svg +1 -0
  1280. skills/ppt-master/templates/icons/phosphor-duotone/clock-countdown.svg +1 -0
  1281. skills/ppt-master/templates/icons/phosphor-duotone/clock-counter-clockwise.svg +1 -0
  1282. skills/ppt-master/templates/icons/phosphor-duotone/clock.svg +1 -0
  1283. skills/ppt-master/templates/icons/phosphor-duotone/closed-captioning.svg +1 -0
  1284. skills/ppt-master/templates/icons/phosphor-duotone/cloud-arrow-down.svg +1 -0
  1285. skills/ppt-master/templates/icons/phosphor-duotone/cloud-arrow-up.svg +1 -0
  1286. skills/ppt-master/templates/icons/phosphor-duotone/cloud-check.svg +1 -0
  1287. skills/ppt-master/templates/icons/phosphor-duotone/cloud-fog.svg +1 -0
  1288. skills/ppt-master/templates/icons/phosphor-duotone/cloud-lightning.svg +1 -0
  1289. skills/ppt-master/templates/icons/phosphor-duotone/cloud-moon.svg +1 -0
  1290. skills/ppt-master/templates/icons/phosphor-duotone/cloud-rain.svg +1 -0
  1291. skills/ppt-master/templates/icons/phosphor-duotone/cloud-slash.svg +1 -0
  1292. skills/ppt-master/templates/icons/phosphor-duotone/cloud-snow.svg +1 -0
  1293. skills/ppt-master/templates/icons/phosphor-duotone/cloud-sun.svg +1 -0
  1294. skills/ppt-master/templates/icons/phosphor-duotone/cloud-warning.svg +1 -0
  1295. skills/ppt-master/templates/icons/phosphor-duotone/cloud-x.svg +1 -0
  1296. skills/ppt-master/templates/icons/phosphor-duotone/cloud.svg +1 -0
  1297. skills/ppt-master/templates/icons/phosphor-duotone/club.svg +1 -0
  1298. skills/ppt-master/templates/icons/phosphor-duotone/coat-hanger.svg +1 -0
  1299. skills/ppt-master/templates/icons/phosphor-duotone/coda-logo.svg +1 -0
  1300. skills/ppt-master/templates/icons/phosphor-duotone/code-block.svg +1 -0
  1301. skills/ppt-master/templates/icons/phosphor-duotone/code-simple.svg +1 -0
  1302. skills/ppt-master/templates/icons/phosphor-duotone/code.svg +1 -0
  1303. skills/ppt-master/templates/icons/phosphor-duotone/codepen-logo.svg +1 -0
  1304. skills/ppt-master/templates/icons/phosphor-duotone/codesandbox-logo.svg +1 -0
  1305. skills/ppt-master/templates/icons/phosphor-duotone/coffee.svg +1 -0
  1306. skills/ppt-master/templates/icons/phosphor-duotone/coin-vertical.svg +1 -0
  1307. skills/ppt-master/templates/icons/phosphor-duotone/coin.svg +1 -0
  1308. skills/ppt-master/templates/icons/phosphor-duotone/coins.svg +1 -0
  1309. skills/ppt-master/templates/icons/phosphor-duotone/columns.svg +1 -0
  1310. skills/ppt-master/templates/icons/phosphor-duotone/command.svg +1 -0
  1311. skills/ppt-master/templates/icons/phosphor-duotone/compass-tool.svg +1 -0
  1312. skills/ppt-master/templates/icons/phosphor-duotone/compass.svg +1 -0
  1313. skills/ppt-master/templates/icons/phosphor-duotone/computer-tower.svg +1 -0
  1314. skills/ppt-master/templates/icons/phosphor-duotone/confetti.svg +1 -0
  1315. skills/ppt-master/templates/icons/phosphor-duotone/contactless-payment.svg +1 -0
  1316. skills/ppt-master/templates/icons/phosphor-duotone/control.svg +1 -0
  1317. skills/ppt-master/templates/icons/phosphor-duotone/cookie.svg +1 -0
  1318. skills/ppt-master/templates/icons/phosphor-duotone/cooking-pot.svg +1 -0
  1319. skills/ppt-master/templates/icons/phosphor-duotone/copy-simple.svg +1 -0
  1320. skills/ppt-master/templates/icons/phosphor-duotone/copy.svg +1 -0
  1321. skills/ppt-master/templates/icons/phosphor-duotone/copyleft.svg +1 -0
  1322. skills/ppt-master/templates/icons/phosphor-duotone/copyright.svg +1 -0
  1323. skills/ppt-master/templates/icons/phosphor-duotone/corners-in.svg +1 -0
  1324. skills/ppt-master/templates/icons/phosphor-duotone/corners-out.svg +1 -0
  1325. skills/ppt-master/templates/icons/phosphor-duotone/couch.svg +1 -0
  1326. skills/ppt-master/templates/icons/phosphor-duotone/cpu.svg +1 -0
  1327. skills/ppt-master/templates/icons/phosphor-duotone/credit-card.svg +1 -0
  1328. skills/ppt-master/templates/icons/phosphor-duotone/crop.svg +1 -0
  1329. skills/ppt-master/templates/icons/phosphor-duotone/cross.svg +1 -0
  1330. skills/ppt-master/templates/icons/phosphor-duotone/crosshair-simple.svg +1 -0
  1331. skills/ppt-master/templates/icons/phosphor-duotone/crosshair.svg +1 -0
  1332. skills/ppt-master/templates/icons/phosphor-duotone/crown-simple.svg +1 -0
  1333. skills/ppt-master/templates/icons/phosphor-duotone/crown.svg +1 -0
  1334. skills/ppt-master/templates/icons/phosphor-duotone/cube-focus.svg +1 -0
  1335. skills/ppt-master/templates/icons/phosphor-duotone/cube-transparent.svg +1 -0
  1336. skills/ppt-master/templates/icons/phosphor-duotone/cube.svg +1 -0
  1337. skills/ppt-master/templates/icons/phosphor-duotone/currency-btc.svg +1 -0
  1338. skills/ppt-master/templates/icons/phosphor-duotone/currency-circle-dollar.svg +1 -0
  1339. skills/ppt-master/templates/icons/phosphor-duotone/currency-cny.svg +1 -0
  1340. skills/ppt-master/templates/icons/phosphor-duotone/currency-dollar-simple.svg +1 -0
  1341. skills/ppt-master/templates/icons/phosphor-duotone/currency-dollar.svg +1 -0
  1342. skills/ppt-master/templates/icons/phosphor-duotone/currency-eth.svg +1 -0
  1343. skills/ppt-master/templates/icons/phosphor-duotone/currency-eur.svg +1 -0
  1344. skills/ppt-master/templates/icons/phosphor-duotone/currency-gbp.svg +1 -0
  1345. skills/ppt-master/templates/icons/phosphor-duotone/currency-inr.svg +1 -0
  1346. skills/ppt-master/templates/icons/phosphor-duotone/currency-jpy.svg +1 -0
  1347. skills/ppt-master/templates/icons/phosphor-duotone/currency-krw.svg +1 -0
  1348. skills/ppt-master/templates/icons/phosphor-duotone/currency-kzt.svg +1 -0
  1349. skills/ppt-master/templates/icons/phosphor-duotone/currency-ngn.svg +1 -0
  1350. skills/ppt-master/templates/icons/phosphor-duotone/currency-rub.svg +1 -0
  1351. skills/ppt-master/templates/icons/phosphor-duotone/cursor-click.svg +1 -0
  1352. skills/ppt-master/templates/icons/phosphor-duotone/cursor-text.svg +1 -0
  1353. skills/ppt-master/templates/icons/phosphor-duotone/cursor.svg +1 -0
  1354. skills/ppt-master/templates/icons/phosphor-duotone/cylinder.svg +1 -0
  1355. skills/ppt-master/templates/icons/phosphor-duotone/database.svg +1 -0
  1356. skills/ppt-master/templates/icons/phosphor-duotone/desktop-tower.svg +1 -0
  1357. skills/ppt-master/templates/icons/phosphor-duotone/desktop.svg +1 -0
  1358. skills/ppt-master/templates/icons/phosphor-duotone/detective.svg +1 -0
  1359. skills/ppt-master/templates/icons/phosphor-duotone/dev-to-logo.svg +1 -0
  1360. skills/ppt-master/templates/icons/phosphor-duotone/device-mobile-camera.svg +1 -0
  1361. skills/ppt-master/templates/icons/phosphor-duotone/device-mobile-speaker.svg +1 -0
  1362. skills/ppt-master/templates/icons/phosphor-duotone/device-mobile.svg +1 -0
  1363. skills/ppt-master/templates/icons/phosphor-duotone/device-tablet-camera.svg +1 -0
  1364. skills/ppt-master/templates/icons/phosphor-duotone/device-tablet-speaker.svg +1 -0
  1365. skills/ppt-master/templates/icons/phosphor-duotone/device-tablet.svg +1 -0
  1366. skills/ppt-master/templates/icons/phosphor-duotone/devices.svg +1 -0
  1367. skills/ppt-master/templates/icons/phosphor-duotone/diamond.svg +1 -0
  1368. skills/ppt-master/templates/icons/phosphor-duotone/diamonds-four.svg +1 -0
  1369. skills/ppt-master/templates/icons/phosphor-duotone/dice-five.svg +1 -0
  1370. skills/ppt-master/templates/icons/phosphor-duotone/dice-four.svg +1 -0
  1371. skills/ppt-master/templates/icons/phosphor-duotone/dice-one.svg +1 -0
  1372. skills/ppt-master/templates/icons/phosphor-duotone/dice-six.svg +1 -0
  1373. skills/ppt-master/templates/icons/phosphor-duotone/dice-three.svg +1 -0
  1374. skills/ppt-master/templates/icons/phosphor-duotone/dice-two.svg +1 -0
  1375. skills/ppt-master/templates/icons/phosphor-duotone/disc.svg +1 -0
  1376. skills/ppt-master/templates/icons/phosphor-duotone/discord-logo.svg +1 -0
  1377. skills/ppt-master/templates/icons/phosphor-duotone/divide.svg +1 -0
  1378. skills/ppt-master/templates/icons/phosphor-duotone/dna.svg +1 -0
  1379. skills/ppt-master/templates/icons/phosphor-duotone/dog.svg +1 -0
  1380. skills/ppt-master/templates/icons/phosphor-duotone/door-open.svg +1 -0
  1381. skills/ppt-master/templates/icons/phosphor-duotone/door.svg +1 -0
  1382. skills/ppt-master/templates/icons/phosphor-duotone/dot-outline.svg +1 -0
  1383. skills/ppt-master/templates/icons/phosphor-duotone/dot.svg +1 -0
  1384. skills/ppt-master/templates/icons/phosphor-duotone/dots-nine.svg +1 -0
  1385. skills/ppt-master/templates/icons/phosphor-duotone/dots-six-vertical.svg +1 -0
  1386. skills/ppt-master/templates/icons/phosphor-duotone/dots-six.svg +1 -0
  1387. skills/ppt-master/templates/icons/phosphor-duotone/dots-three-circle-vertical.svg +1 -0
  1388. skills/ppt-master/templates/icons/phosphor-duotone/dots-three-circle.svg +1 -0
  1389. skills/ppt-master/templates/icons/phosphor-duotone/dots-three-outline-vertical.svg +1 -0
  1390. skills/ppt-master/templates/icons/phosphor-duotone/dots-three-outline.svg +1 -0
  1391. skills/ppt-master/templates/icons/phosphor-duotone/dots-three-vertical.svg +1 -0
  1392. skills/ppt-master/templates/icons/phosphor-duotone/dots-three.svg +1 -0
  1393. skills/ppt-master/templates/icons/phosphor-duotone/download-simple.svg +1 -0
  1394. skills/ppt-master/templates/icons/phosphor-duotone/download.svg +1 -0
  1395. skills/ppt-master/templates/icons/phosphor-duotone/dress.svg +1 -0
  1396. skills/ppt-master/templates/icons/phosphor-duotone/dribbble-logo.svg +1 -0
  1397. skills/ppt-master/templates/icons/phosphor-duotone/drop-half-bottom.svg +1 -0
  1398. skills/ppt-master/templates/icons/phosphor-duotone/drop-half.svg +1 -0
  1399. skills/ppt-master/templates/icons/phosphor-duotone/drop.svg +1 -0
  1400. skills/ppt-master/templates/icons/phosphor-duotone/dropbox-logo.svg +1 -0
  1401. skills/ppt-master/templates/icons/phosphor-duotone/ear-slash.svg +1 -0
  1402. skills/ppt-master/templates/icons/phosphor-duotone/ear.svg +1 -0
  1403. skills/ppt-master/templates/icons/phosphor-duotone/egg-crack.svg +1 -0
  1404. skills/ppt-master/templates/icons/phosphor-duotone/egg.svg +1 -0
  1405. skills/ppt-master/templates/icons/phosphor-duotone/eject-simple.svg +1 -0
  1406. skills/ppt-master/templates/icons/phosphor-duotone/eject.svg +1 -0
  1407. skills/ppt-master/templates/icons/phosphor-duotone/elevator.svg +1 -0
  1408. skills/ppt-master/templates/icons/phosphor-duotone/engine.svg +1 -0
  1409. skills/ppt-master/templates/icons/phosphor-duotone/envelope-open.svg +1 -0
  1410. skills/ppt-master/templates/icons/phosphor-duotone/envelope-simple-open.svg +1 -0
  1411. skills/ppt-master/templates/icons/phosphor-duotone/envelope-simple.svg +1 -0
  1412. skills/ppt-master/templates/icons/phosphor-duotone/envelope.svg +1 -0
  1413. skills/ppt-master/templates/icons/phosphor-duotone/equalizer.svg +1 -0
  1414. skills/ppt-master/templates/icons/phosphor-duotone/equals.svg +1 -0
  1415. skills/ppt-master/templates/icons/phosphor-duotone/eraser.svg +1 -0
  1416. skills/ppt-master/templates/icons/phosphor-duotone/escalator-down.svg +1 -0
  1417. skills/ppt-master/templates/icons/phosphor-duotone/escalator-up.svg +1 -0
  1418. skills/ppt-master/templates/icons/phosphor-duotone/exam.svg +1 -0
  1419. skills/ppt-master/templates/icons/phosphor-duotone/exclude-square.svg +1 -0
  1420. skills/ppt-master/templates/icons/phosphor-duotone/exclude.svg +1 -0
  1421. skills/ppt-master/templates/icons/phosphor-duotone/export.svg +1 -0
  1422. skills/ppt-master/templates/icons/phosphor-duotone/eye-closed.svg +1 -0
  1423. skills/ppt-master/templates/icons/phosphor-duotone/eye-slash.svg +1 -0
  1424. skills/ppt-master/templates/icons/phosphor-duotone/eye.svg +1 -0
  1425. skills/ppt-master/templates/icons/phosphor-duotone/eyedropper-sample.svg +1 -0
  1426. skills/ppt-master/templates/icons/phosphor-duotone/eyedropper.svg +1 -0
  1427. skills/ppt-master/templates/icons/phosphor-duotone/eyeglasses.svg +1 -0
  1428. skills/ppt-master/templates/icons/phosphor-duotone/face-mask.svg +1 -0
  1429. skills/ppt-master/templates/icons/phosphor-duotone/facebook-logo.svg +1 -0
  1430. skills/ppt-master/templates/icons/phosphor-duotone/factory.svg +1 -0
  1431. skills/ppt-master/templates/icons/phosphor-duotone/faders-horizontal.svg +1 -0
  1432. skills/ppt-master/templates/icons/phosphor-duotone/faders.svg +1 -0
  1433. skills/ppt-master/templates/icons/phosphor-duotone/fan.svg +1 -0
  1434. skills/ppt-master/templates/icons/phosphor-duotone/fast-forward-circle.svg +1 -0
  1435. skills/ppt-master/templates/icons/phosphor-duotone/fast-forward.svg +1 -0
  1436. skills/ppt-master/templates/icons/phosphor-duotone/feather.svg +1 -0
  1437. skills/ppt-master/templates/icons/phosphor-duotone/figma-logo.svg +1 -0
  1438. skills/ppt-master/templates/icons/phosphor-duotone/file-archive.svg +1 -0
  1439. skills/ppt-master/templates/icons/phosphor-duotone/file-arrow-down.svg +1 -0
  1440. skills/ppt-master/templates/icons/phosphor-duotone/file-arrow-up.svg +1 -0
  1441. skills/ppt-master/templates/icons/phosphor-duotone/file-audio.svg +1 -0
  1442. skills/ppt-master/templates/icons/phosphor-duotone/file-cloud.svg +1 -0
  1443. skills/ppt-master/templates/icons/phosphor-duotone/file-code.svg +1 -0
  1444. skills/ppt-master/templates/icons/phosphor-duotone/file-css.svg +1 -0
  1445. skills/ppt-master/templates/icons/phosphor-duotone/file-csv.svg +1 -0
  1446. skills/ppt-master/templates/icons/phosphor-duotone/file-dashed.svg +1 -0
  1447. skills/ppt-master/templates/icons/phosphor-duotone/file-doc.svg +1 -0
  1448. skills/ppt-master/templates/icons/phosphor-duotone/file-html.svg +1 -0
  1449. skills/ppt-master/templates/icons/phosphor-duotone/file-image.svg +1 -0
  1450. skills/ppt-master/templates/icons/phosphor-duotone/file-jpg.svg +1 -0
  1451. skills/ppt-master/templates/icons/phosphor-duotone/file-js.svg +1 -0
  1452. skills/ppt-master/templates/icons/phosphor-duotone/file-jsx.svg +1 -0
  1453. skills/ppt-master/templates/icons/phosphor-duotone/file-lock.svg +1 -0
  1454. skills/ppt-master/templates/icons/phosphor-duotone/file-magnifying-glass.svg +1 -0
  1455. skills/ppt-master/templates/icons/phosphor-duotone/file-minus.svg +1 -0
  1456. skills/ppt-master/templates/icons/phosphor-duotone/file-pdf.svg +1 -0
  1457. skills/ppt-master/templates/icons/phosphor-duotone/file-plus.svg +1 -0
  1458. skills/ppt-master/templates/icons/phosphor-duotone/file-png.svg +1 -0
  1459. skills/ppt-master/templates/icons/phosphor-duotone/file-ppt.svg +1 -0
  1460. skills/ppt-master/templates/icons/phosphor-duotone/file-rs.svg +1 -0
  1461. skills/ppt-master/templates/icons/phosphor-duotone/file-sql.svg +1 -0
  1462. skills/ppt-master/templates/icons/phosphor-duotone/file-svg.svg +1 -0
  1463. skills/ppt-master/templates/icons/phosphor-duotone/file-text.svg +1 -0
  1464. skills/ppt-master/templates/icons/phosphor-duotone/file-ts.svg +1 -0
  1465. skills/ppt-master/templates/icons/phosphor-duotone/file-tsx.svg +1 -0
  1466. skills/ppt-master/templates/icons/phosphor-duotone/file-video.svg +1 -0
  1467. skills/ppt-master/templates/icons/phosphor-duotone/file-vue.svg +1 -0
  1468. skills/ppt-master/templates/icons/phosphor-duotone/file-x.svg +1 -0
  1469. skills/ppt-master/templates/icons/phosphor-duotone/file-xls.svg +1 -0
  1470. skills/ppt-master/templates/icons/phosphor-duotone/file-zip.svg +1 -0
  1471. skills/ppt-master/templates/icons/phosphor-duotone/file.svg +1 -0
  1472. skills/ppt-master/templates/icons/phosphor-duotone/files.svg +1 -0
  1473. skills/ppt-master/templates/icons/phosphor-duotone/film-reel.svg +1 -0
  1474. skills/ppt-master/templates/icons/phosphor-duotone/film-script.svg +1 -0
  1475. skills/ppt-master/templates/icons/phosphor-duotone/film-slate.svg +1 -0
  1476. skills/ppt-master/templates/icons/phosphor-duotone/film-strip.svg +1 -0
  1477. skills/ppt-master/templates/icons/phosphor-duotone/fingerprint-simple.svg +1 -0
  1478. skills/ppt-master/templates/icons/phosphor-duotone/fingerprint.svg +1 -0
  1479. skills/ppt-master/templates/icons/phosphor-duotone/finn-the-human.svg +1 -0
  1480. skills/ppt-master/templates/icons/phosphor-duotone/fire-extinguisher.svg +1 -0
  1481. skills/ppt-master/templates/icons/phosphor-duotone/fire-simple.svg +1 -0
  1482. skills/ppt-master/templates/icons/phosphor-duotone/fire.svg +1 -0
  1483. skills/ppt-master/templates/icons/phosphor-duotone/first-aid-kit.svg +1 -0
  1484. skills/ppt-master/templates/icons/phosphor-duotone/first-aid.svg +1 -0
  1485. skills/ppt-master/templates/icons/phosphor-duotone/fish-simple.svg +1 -0
  1486. skills/ppt-master/templates/icons/phosphor-duotone/fish.svg +1 -0
  1487. skills/ppt-master/templates/icons/phosphor-duotone/flag-banner.svg +1 -0
  1488. skills/ppt-master/templates/icons/phosphor-duotone/flag-checkered.svg +1 -0
  1489. skills/ppt-master/templates/icons/phosphor-duotone/flag-pennant.svg +1 -0
  1490. skills/ppt-master/templates/icons/phosphor-duotone/flag.svg +1 -0
  1491. skills/ppt-master/templates/icons/phosphor-duotone/flame.svg +1 -0
  1492. skills/ppt-master/templates/icons/phosphor-duotone/flashlight.svg +1 -0
  1493. skills/ppt-master/templates/icons/phosphor-duotone/flask.svg +1 -0
  1494. skills/ppt-master/templates/icons/phosphor-duotone/floppy-disk-back.svg +1 -0
  1495. skills/ppt-master/templates/icons/phosphor-duotone/floppy-disk.svg +1 -0
  1496. skills/ppt-master/templates/icons/phosphor-duotone/flow-arrow.svg +1 -0
  1497. skills/ppt-master/templates/icons/phosphor-duotone/flower-lotus.svg +1 -0
  1498. skills/ppt-master/templates/icons/phosphor-duotone/flower-tulip.svg +1 -0
  1499. skills/ppt-master/templates/icons/phosphor-duotone/flower.svg +1 -0
  1500. skills/ppt-master/templates/icons/phosphor-duotone/flying-saucer.svg +1 -0
  1501. skills/ppt-master/templates/icons/phosphor-duotone/folder-dashed.svg +1 -0
  1502. skills/ppt-master/templates/icons/phosphor-duotone/folder-lock.svg +1 -0
  1503. skills/ppt-master/templates/icons/phosphor-duotone/folder-minus.svg +1 -0
  1504. skills/ppt-master/templates/icons/phosphor-duotone/folder-notch-minus.svg +1 -0
  1505. skills/ppt-master/templates/icons/phosphor-duotone/folder-notch-open.svg +1 -0
  1506. skills/ppt-master/templates/icons/phosphor-duotone/folder-notch-plus.svg +1 -0
  1507. skills/ppt-master/templates/icons/phosphor-duotone/folder-notch.svg +1 -0
  1508. skills/ppt-master/templates/icons/phosphor-duotone/folder-open.svg +1 -0
  1509. skills/ppt-master/templates/icons/phosphor-duotone/folder-plus.svg +1 -0
  1510. skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-dashed.svg +1 -0
  1511. skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-lock.svg +1 -0
  1512. skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-minus.svg +1 -0
  1513. skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-plus.svg +1 -0
  1514. skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-star.svg +1 -0
  1515. skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-user.svg +1 -0
  1516. skills/ppt-master/templates/icons/phosphor-duotone/folder-simple.svg +1 -0
  1517. skills/ppt-master/templates/icons/phosphor-duotone/folder-star.svg +1 -0
  1518. skills/ppt-master/templates/icons/phosphor-duotone/folder-user.svg +1 -0
  1519. skills/ppt-master/templates/icons/phosphor-duotone/folder.svg +1 -0
  1520. skills/ppt-master/templates/icons/phosphor-duotone/folders.svg +1 -0
  1521. skills/ppt-master/templates/icons/phosphor-duotone/football.svg +1 -0
  1522. skills/ppt-master/templates/icons/phosphor-duotone/footprints.svg +1 -0
  1523. skills/ppt-master/templates/icons/phosphor-duotone/fork-knife.svg +1 -0
  1524. skills/ppt-master/templates/icons/phosphor-duotone/frame-corners.svg +1 -0
  1525. skills/ppt-master/templates/icons/phosphor-duotone/framer-logo.svg +1 -0
  1526. skills/ppt-master/templates/icons/phosphor-duotone/function.svg +1 -0
  1527. skills/ppt-master/templates/icons/phosphor-duotone/funnel-simple.svg +1 -0
  1528. skills/ppt-master/templates/icons/phosphor-duotone/funnel.svg +1 -0
  1529. skills/ppt-master/templates/icons/phosphor-duotone/game-controller.svg +1 -0
  1530. skills/ppt-master/templates/icons/phosphor-duotone/garage.svg +1 -0
  1531. skills/ppt-master/templates/icons/phosphor-duotone/gas-can.svg +1 -0
  1532. skills/ppt-master/templates/icons/phosphor-duotone/gas-pump.svg +1 -0
  1533. skills/ppt-master/templates/icons/phosphor-duotone/gauge.svg +1 -0
  1534. skills/ppt-master/templates/icons/phosphor-duotone/gavel.svg +1 -0
  1535. skills/ppt-master/templates/icons/phosphor-duotone/gear-fine.svg +1 -0
  1536. skills/ppt-master/templates/icons/phosphor-duotone/gear-six.svg +1 -0
  1537. skills/ppt-master/templates/icons/phosphor-duotone/gear.svg +1 -0
  1538. skills/ppt-master/templates/icons/phosphor-duotone/gender-female.svg +1 -0
  1539. skills/ppt-master/templates/icons/phosphor-duotone/gender-intersex.svg +1 -0
  1540. skills/ppt-master/templates/icons/phosphor-duotone/gender-male.svg +1 -0
  1541. skills/ppt-master/templates/icons/phosphor-duotone/gender-neuter.svg +1 -0
  1542. skills/ppt-master/templates/icons/phosphor-duotone/gender-nonbinary.svg +1 -0
  1543. skills/ppt-master/templates/icons/phosphor-duotone/gender-transgender.svg +1 -0
  1544. skills/ppt-master/templates/icons/phosphor-duotone/ghost.svg +1 -0
  1545. skills/ppt-master/templates/icons/phosphor-duotone/gif.svg +1 -0
  1546. skills/ppt-master/templates/icons/phosphor-duotone/gift.svg +1 -0
  1547. skills/ppt-master/templates/icons/phosphor-duotone/git-branch.svg +1 -0
  1548. skills/ppt-master/templates/icons/phosphor-duotone/git-commit.svg +1 -0
  1549. skills/ppt-master/templates/icons/phosphor-duotone/git-diff.svg +1 -0
  1550. skills/ppt-master/templates/icons/phosphor-duotone/git-fork.svg +1 -0
  1551. skills/ppt-master/templates/icons/phosphor-duotone/git-merge.svg +1 -0
  1552. skills/ppt-master/templates/icons/phosphor-duotone/git-pull-request.svg +1 -0
  1553. skills/ppt-master/templates/icons/phosphor-duotone/github-logo.svg +1 -0
  1554. skills/ppt-master/templates/icons/phosphor-duotone/gitlab-logo-simple.svg +1 -0
  1555. skills/ppt-master/templates/icons/phosphor-duotone/gitlab-logo.svg +1 -0
  1556. skills/ppt-master/templates/icons/phosphor-duotone/globe-hemisphere-east.svg +1 -0
  1557. skills/ppt-master/templates/icons/phosphor-duotone/globe-hemisphere-west.svg +1 -0
  1558. skills/ppt-master/templates/icons/phosphor-duotone/globe-simple.svg +1 -0
  1559. skills/ppt-master/templates/icons/phosphor-duotone/globe-stand.svg +1 -0
  1560. skills/ppt-master/templates/icons/phosphor-duotone/globe.svg +1 -0
  1561. skills/ppt-master/templates/icons/phosphor-duotone/goggles.svg +1 -0
  1562. skills/ppt-master/templates/icons/phosphor-duotone/goodreads-logo.svg +1 -0
  1563. skills/ppt-master/templates/icons/phosphor-duotone/google-cardboard-logo.svg +1 -0
  1564. skills/ppt-master/templates/icons/phosphor-duotone/google-chrome-logo.svg +1 -0
  1565. skills/ppt-master/templates/icons/phosphor-duotone/google-drive-logo.svg +1 -0
  1566. skills/ppt-master/templates/icons/phosphor-duotone/google-logo.svg +1 -0
  1567. skills/ppt-master/templates/icons/phosphor-duotone/google-photos-logo.svg +1 -0
  1568. skills/ppt-master/templates/icons/phosphor-duotone/google-play-logo.svg +1 -0
  1569. skills/ppt-master/templates/icons/phosphor-duotone/google-podcasts-logo.svg +1 -0
  1570. skills/ppt-master/templates/icons/phosphor-duotone/gradient.svg +1 -0
  1571. skills/ppt-master/templates/icons/phosphor-duotone/graduation-cap.svg +1 -0
  1572. skills/ppt-master/templates/icons/phosphor-duotone/grains-slash.svg +1 -0
  1573. skills/ppt-master/templates/icons/phosphor-duotone/grains.svg +1 -0
  1574. skills/ppt-master/templates/icons/phosphor-duotone/graph.svg +1 -0
  1575. skills/ppt-master/templates/icons/phosphor-duotone/grid-four.svg +1 -0
  1576. skills/ppt-master/templates/icons/phosphor-duotone/grid-nine.svg +1 -0
  1577. skills/ppt-master/templates/icons/phosphor-duotone/guitar.svg +1 -0
  1578. skills/ppt-master/templates/icons/phosphor-duotone/hamburger.svg +1 -0
  1579. skills/ppt-master/templates/icons/phosphor-duotone/hammer.svg +1 -0
  1580. skills/ppt-master/templates/icons/phosphor-duotone/hand-coins.svg +1 -0
  1581. skills/ppt-master/templates/icons/phosphor-duotone/hand-eye.svg +1 -0
  1582. skills/ppt-master/templates/icons/phosphor-duotone/hand-fist.svg +1 -0
  1583. skills/ppt-master/templates/icons/phosphor-duotone/hand-grabbing.svg +1 -0
  1584. skills/ppt-master/templates/icons/phosphor-duotone/hand-heart.svg +1 -0
  1585. skills/ppt-master/templates/icons/phosphor-duotone/hand-palm.svg +1 -0
  1586. skills/ppt-master/templates/icons/phosphor-duotone/hand-pointing.svg +1 -0
  1587. skills/ppt-master/templates/icons/phosphor-duotone/hand-soap.svg +1 -0
  1588. skills/ppt-master/templates/icons/phosphor-duotone/hand-swipe-left.svg +1 -0
  1589. skills/ppt-master/templates/icons/phosphor-duotone/hand-swipe-right.svg +1 -0
  1590. skills/ppt-master/templates/icons/phosphor-duotone/hand-tap.svg +1 -0
  1591. skills/ppt-master/templates/icons/phosphor-duotone/hand-waving.svg +1 -0
  1592. skills/ppt-master/templates/icons/phosphor-duotone/hand.svg +1 -0
  1593. skills/ppt-master/templates/icons/phosphor-duotone/handbag-simple.svg +1 -0
  1594. skills/ppt-master/templates/icons/phosphor-duotone/handbag.svg +1 -0
  1595. skills/ppt-master/templates/icons/phosphor-duotone/hands-clapping.svg +1 -0
  1596. skills/ppt-master/templates/icons/phosphor-duotone/hands-praying.svg +1 -0
  1597. skills/ppt-master/templates/icons/phosphor-duotone/handshake.svg +1 -0
  1598. skills/ppt-master/templates/icons/phosphor-duotone/hard-drive.svg +1 -0
  1599. skills/ppt-master/templates/icons/phosphor-duotone/hard-drives.svg +1 -0
  1600. skills/ppt-master/templates/icons/phosphor-duotone/hash-straight.svg +1 -0
  1601. skills/ppt-master/templates/icons/phosphor-duotone/hash.svg +1 -0
  1602. skills/ppt-master/templates/icons/phosphor-duotone/headlights.svg +1 -0
  1603. skills/ppt-master/templates/icons/phosphor-duotone/headphones.svg +1 -0
  1604. skills/ppt-master/templates/icons/phosphor-duotone/headset.svg +1 -0
  1605. skills/ppt-master/templates/icons/phosphor-duotone/heart-break.svg +1 -0
  1606. skills/ppt-master/templates/icons/phosphor-duotone/heart-half.svg +1 -0
  1607. skills/ppt-master/templates/icons/phosphor-duotone/heart-straight-break.svg +1 -0
  1608. skills/ppt-master/templates/icons/phosphor-duotone/heart-straight.svg +1 -0
  1609. skills/ppt-master/templates/icons/phosphor-duotone/heart.svg +1 -0
  1610. skills/ppt-master/templates/icons/phosphor-duotone/heartbeat.svg +1 -0
  1611. skills/ppt-master/templates/icons/phosphor-duotone/hexagon.svg +1 -0
  1612. skills/ppt-master/templates/icons/phosphor-duotone/high-heel.svg +1 -0
  1613. skills/ppt-master/templates/icons/phosphor-duotone/highlighter-circle.svg +1 -0
  1614. skills/ppt-master/templates/icons/phosphor-duotone/hoodie.svg +1 -0
  1615. skills/ppt-master/templates/icons/phosphor-duotone/horse.svg +1 -0
  1616. skills/ppt-master/templates/icons/phosphor-duotone/hourglass-high.svg +1 -0
  1617. skills/ppt-master/templates/icons/phosphor-duotone/hourglass-low.svg +1 -0
  1618. skills/ppt-master/templates/icons/phosphor-duotone/hourglass-medium.svg +1 -0
  1619. skills/ppt-master/templates/icons/phosphor-duotone/hourglass-simple-high.svg +1 -0
  1620. skills/ppt-master/templates/icons/phosphor-duotone/hourglass-simple-low.svg +1 -0
  1621. skills/ppt-master/templates/icons/phosphor-duotone/hourglass-simple-medium.svg +1 -0
  1622. skills/ppt-master/templates/icons/phosphor-duotone/hourglass-simple.svg +1 -0
  1623. skills/ppt-master/templates/icons/phosphor-duotone/hourglass.svg +1 -0
  1624. skills/ppt-master/templates/icons/phosphor-duotone/house-line.svg +1 -0
  1625. skills/ppt-master/templates/icons/phosphor-duotone/house-simple.svg +1 -0
  1626. skills/ppt-master/templates/icons/phosphor-duotone/house.svg +1 -0
  1627. skills/ppt-master/templates/icons/phosphor-duotone/ice-cream.svg +1 -0
  1628. skills/ppt-master/templates/icons/phosphor-duotone/identification-badge.svg +1 -0
  1629. skills/ppt-master/templates/icons/phosphor-duotone/identification-card.svg +1 -0
  1630. skills/ppt-master/templates/icons/phosphor-duotone/image-square.svg +1 -0
  1631. skills/ppt-master/templates/icons/phosphor-duotone/image.svg +1 -0
  1632. skills/ppt-master/templates/icons/phosphor-duotone/images-square.svg +1 -0
  1633. skills/ppt-master/templates/icons/phosphor-duotone/images.svg +1 -0
  1634. skills/ppt-master/templates/icons/phosphor-duotone/infinity.svg +1 -0
  1635. skills/ppt-master/templates/icons/phosphor-duotone/info.svg +1 -0
  1636. skills/ppt-master/templates/icons/phosphor-duotone/instagram-logo.svg +1 -0
  1637. skills/ppt-master/templates/icons/phosphor-duotone/intersect-square.svg +1 -0
  1638. skills/ppt-master/templates/icons/phosphor-duotone/intersect-three.svg +1 -0
  1639. skills/ppt-master/templates/icons/phosphor-duotone/intersect.svg +1 -0
  1640. skills/ppt-master/templates/icons/phosphor-duotone/jeep.svg +1 -0
  1641. skills/ppt-master/templates/icons/phosphor-duotone/kanban.svg +1 -0
  1642. skills/ppt-master/templates/icons/phosphor-duotone/key-return.svg +1 -0
  1643. skills/ppt-master/templates/icons/phosphor-duotone/key.svg +1 -0
  1644. skills/ppt-master/templates/icons/phosphor-duotone/keyboard.svg +1 -0
  1645. skills/ppt-master/templates/icons/phosphor-duotone/keyhole.svg +1 -0
  1646. skills/ppt-master/templates/icons/phosphor-duotone/knife.svg +1 -0
  1647. skills/ppt-master/templates/icons/phosphor-duotone/ladder-simple.svg +1 -0
  1648. skills/ppt-master/templates/icons/phosphor-duotone/ladder.svg +1 -0
  1649. skills/ppt-master/templates/icons/phosphor-duotone/lamp.svg +1 -0
  1650. skills/ppt-master/templates/icons/phosphor-duotone/laptop.svg +1 -0
  1651. skills/ppt-master/templates/icons/phosphor-duotone/layout.svg +1 -0
  1652. skills/ppt-master/templates/icons/phosphor-duotone/leaf.svg +1 -0
  1653. skills/ppt-master/templates/icons/phosphor-duotone/lifebuoy.svg +1 -0
  1654. skills/ppt-master/templates/icons/phosphor-duotone/lightbulb-filament.svg +1 -0
  1655. skills/ppt-master/templates/icons/phosphor-duotone/lightbulb.svg +1 -0
  1656. skills/ppt-master/templates/icons/phosphor-duotone/lighthouse.svg +1 -0
  1657. skills/ppt-master/templates/icons/phosphor-duotone/lightning-a.svg +1 -0
  1658. skills/ppt-master/templates/icons/phosphor-duotone/lightning-slash.svg +1 -0
  1659. skills/ppt-master/templates/icons/phosphor-duotone/lightning.svg +1 -0
  1660. skills/ppt-master/templates/icons/phosphor-duotone/line-segment.svg +1 -0
  1661. skills/ppt-master/templates/icons/phosphor-duotone/line-segments.svg +1 -0
  1662. skills/ppt-master/templates/icons/phosphor-duotone/link-break.svg +1 -0
  1663. skills/ppt-master/templates/icons/phosphor-duotone/link-simple-break.svg +1 -0
  1664. skills/ppt-master/templates/icons/phosphor-duotone/link-simple-horizontal-break.svg +1 -0
  1665. skills/ppt-master/templates/icons/phosphor-duotone/link-simple-horizontal.svg +1 -0
  1666. skills/ppt-master/templates/icons/phosphor-duotone/link-simple.svg +1 -0
  1667. skills/ppt-master/templates/icons/phosphor-duotone/link.svg +1 -0
  1668. skills/ppt-master/templates/icons/phosphor-duotone/linkedin-logo.svg +1 -0
  1669. skills/ppt-master/templates/icons/phosphor-duotone/linux-logo.svg +1 -0
  1670. skills/ppt-master/templates/icons/phosphor-duotone/list-bullets.svg +1 -0
  1671. skills/ppt-master/templates/icons/phosphor-duotone/list-checks.svg +1 -0
  1672. skills/ppt-master/templates/icons/phosphor-duotone/list-dashes.svg +1 -0
  1673. skills/ppt-master/templates/icons/phosphor-duotone/list-magnifying-glass.svg +1 -0
  1674. skills/ppt-master/templates/icons/phosphor-duotone/list-numbers.svg +1 -0
  1675. skills/ppt-master/templates/icons/phosphor-duotone/list-plus.svg +1 -0
  1676. skills/ppt-master/templates/icons/phosphor-duotone/list.svg +1 -0
  1677. skills/ppt-master/templates/icons/phosphor-duotone/lock-key-open.svg +1 -0
  1678. skills/ppt-master/templates/icons/phosphor-duotone/lock-key.svg +1 -0
  1679. skills/ppt-master/templates/icons/phosphor-duotone/lock-laminated-open.svg +1 -0
  1680. skills/ppt-master/templates/icons/phosphor-duotone/lock-laminated.svg +1 -0
  1681. skills/ppt-master/templates/icons/phosphor-duotone/lock-open.svg +1 -0
  1682. skills/ppt-master/templates/icons/phosphor-duotone/lock-simple-open.svg +1 -0
  1683. skills/ppt-master/templates/icons/phosphor-duotone/lock-simple.svg +1 -0
  1684. skills/ppt-master/templates/icons/phosphor-duotone/lock.svg +1 -0
  1685. skills/ppt-master/templates/icons/phosphor-duotone/lockers.svg +1 -0
  1686. skills/ppt-master/templates/icons/phosphor-duotone/magic-wand.svg +1 -0
  1687. skills/ppt-master/templates/icons/phosphor-duotone/magnet-straight.svg +1 -0
  1688. skills/ppt-master/templates/icons/phosphor-duotone/magnet.svg +1 -0
  1689. skills/ppt-master/templates/icons/phosphor-duotone/magnifying-glass-minus.svg +1 -0
  1690. skills/ppt-master/templates/icons/phosphor-duotone/magnifying-glass-plus.svg +1 -0
  1691. skills/ppt-master/templates/icons/phosphor-duotone/magnifying-glass.svg +1 -0
  1692. skills/ppt-master/templates/icons/phosphor-duotone/map-pin-line.svg +1 -0
  1693. skills/ppt-master/templates/icons/phosphor-duotone/map-pin.svg +1 -0
  1694. skills/ppt-master/templates/icons/phosphor-duotone/map-trifold.svg +1 -0
  1695. skills/ppt-master/templates/icons/phosphor-duotone/marker-circle.svg +1 -0
  1696. skills/ppt-master/templates/icons/phosphor-duotone/martini.svg +1 -0
  1697. skills/ppt-master/templates/icons/phosphor-duotone/mask-happy.svg +1 -0
  1698. skills/ppt-master/templates/icons/phosphor-duotone/mask-sad.svg +1 -0
  1699. skills/ppt-master/templates/icons/phosphor-duotone/math-operations.svg +1 -0
  1700. skills/ppt-master/templates/icons/phosphor-duotone/medal-military.svg +1 -0
  1701. skills/ppt-master/templates/icons/phosphor-duotone/medal.svg +1 -0
  1702. skills/ppt-master/templates/icons/phosphor-duotone/medium-logo.svg +1 -0
  1703. skills/ppt-master/templates/icons/phosphor-duotone/megaphone-simple.svg +1 -0
  1704. skills/ppt-master/templates/icons/phosphor-duotone/megaphone.svg +1 -0
  1705. skills/ppt-master/templates/icons/phosphor-duotone/messenger-logo.svg +1 -0
  1706. skills/ppt-master/templates/icons/phosphor-duotone/meta-logo.svg +1 -0
  1707. skills/ppt-master/templates/icons/phosphor-duotone/metronome.svg +1 -0
  1708. skills/ppt-master/templates/icons/phosphor-duotone/microphone-slash.svg +1 -0
  1709. skills/ppt-master/templates/icons/phosphor-duotone/microphone-stage.svg +1 -0
  1710. skills/ppt-master/templates/icons/phosphor-duotone/microphone.svg +1 -0
  1711. skills/ppt-master/templates/icons/phosphor-duotone/microsoft-excel-logo.svg +1 -0
  1712. skills/ppt-master/templates/icons/phosphor-duotone/microsoft-outlook-logo.svg +1 -0
  1713. skills/ppt-master/templates/icons/phosphor-duotone/microsoft-powerpoint-logo.svg +1 -0
  1714. skills/ppt-master/templates/icons/phosphor-duotone/microsoft-teams-logo.svg +1 -0
  1715. skills/ppt-master/templates/icons/phosphor-duotone/microsoft-word-logo.svg +1 -0
  1716. skills/ppt-master/templates/icons/phosphor-duotone/minus-circle.svg +1 -0
  1717. skills/ppt-master/templates/icons/phosphor-duotone/minus-square.svg +1 -0
  1718. skills/ppt-master/templates/icons/phosphor-duotone/minus.svg +1 -0
  1719. skills/ppt-master/templates/icons/phosphor-duotone/money.svg +1 -0
  1720. skills/ppt-master/templates/icons/phosphor-duotone/monitor-play.svg +1 -0
  1721. skills/ppt-master/templates/icons/phosphor-duotone/monitor.svg +1 -0
  1722. skills/ppt-master/templates/icons/phosphor-duotone/moon-stars.svg +1 -0
  1723. skills/ppt-master/templates/icons/phosphor-duotone/moon.svg +1 -0
  1724. skills/ppt-master/templates/icons/phosphor-duotone/moped-front.svg +1 -0
  1725. skills/ppt-master/templates/icons/phosphor-duotone/moped.svg +1 -0
  1726. skills/ppt-master/templates/icons/phosphor-duotone/mosque.svg +1 -0
  1727. skills/ppt-master/templates/icons/phosphor-duotone/motorcycle.svg +1 -0
  1728. skills/ppt-master/templates/icons/phosphor-duotone/mountains.svg +1 -0
  1729. skills/ppt-master/templates/icons/phosphor-duotone/mouse-simple.svg +1 -0
  1730. skills/ppt-master/templates/icons/phosphor-duotone/mouse.svg +1 -0
  1731. skills/ppt-master/templates/icons/phosphor-duotone/music-note-simple.svg +1 -0
  1732. skills/ppt-master/templates/icons/phosphor-duotone/music-note.svg +1 -0
  1733. skills/ppt-master/templates/icons/phosphor-duotone/music-notes-plus.svg +1 -0
  1734. skills/ppt-master/templates/icons/phosphor-duotone/music-notes-simple.svg +1 -0
  1735. skills/ppt-master/templates/icons/phosphor-duotone/music-notes.svg +1 -0
  1736. skills/ppt-master/templates/icons/phosphor-duotone/navigation-arrow.svg +1 -0
  1737. skills/ppt-master/templates/icons/phosphor-duotone/needle.svg +1 -0
  1738. skills/ppt-master/templates/icons/phosphor-duotone/newspaper-clipping.svg +1 -0
  1739. skills/ppt-master/templates/icons/phosphor-duotone/newspaper.svg +1 -0
  1740. skills/ppt-master/templates/icons/phosphor-duotone/notches.svg +1 -0
  1741. skills/ppt-master/templates/icons/phosphor-duotone/note-blank.svg +1 -0
  1742. skills/ppt-master/templates/icons/phosphor-duotone/note-pencil.svg +1 -0
  1743. skills/ppt-master/templates/icons/phosphor-duotone/note.svg +1 -0
  1744. skills/ppt-master/templates/icons/phosphor-duotone/notebook.svg +1 -0
  1745. skills/ppt-master/templates/icons/phosphor-duotone/notepad.svg +1 -0
  1746. skills/ppt-master/templates/icons/phosphor-duotone/notification.svg +1 -0
  1747. skills/ppt-master/templates/icons/phosphor-duotone/notion-logo.svg +1 -0
  1748. skills/ppt-master/templates/icons/phosphor-duotone/number-circle-eight.svg +1 -0
  1749. skills/ppt-master/templates/icons/phosphor-duotone/number-circle-five.svg +1 -0
  1750. skills/ppt-master/templates/icons/phosphor-duotone/number-circle-four.svg +1 -0
  1751. skills/ppt-master/templates/icons/phosphor-duotone/number-circle-nine.svg +1 -0
  1752. skills/ppt-master/templates/icons/phosphor-duotone/number-circle-one.svg +1 -0
  1753. skills/ppt-master/templates/icons/phosphor-duotone/number-circle-seven.svg +1 -0
  1754. skills/ppt-master/templates/icons/phosphor-duotone/number-circle-six.svg +1 -0
  1755. skills/ppt-master/templates/icons/phosphor-duotone/number-circle-three.svg +1 -0
  1756. skills/ppt-master/templates/icons/phosphor-duotone/number-circle-two.svg +1 -0
  1757. skills/ppt-master/templates/icons/phosphor-duotone/number-circle-zero.svg +1 -0
  1758. skills/ppt-master/templates/icons/phosphor-duotone/number-eight.svg +1 -0
  1759. skills/ppt-master/templates/icons/phosphor-duotone/number-five.svg +1 -0
  1760. skills/ppt-master/templates/icons/phosphor-duotone/number-four.svg +1 -0
  1761. skills/ppt-master/templates/icons/phosphor-duotone/number-nine.svg +1 -0
  1762. skills/ppt-master/templates/icons/phosphor-duotone/number-one.svg +1 -0
  1763. skills/ppt-master/templates/icons/phosphor-duotone/number-seven.svg +1 -0
  1764. skills/ppt-master/templates/icons/phosphor-duotone/number-six.svg +1 -0
  1765. skills/ppt-master/templates/icons/phosphor-duotone/number-square-eight.svg +1 -0
  1766. skills/ppt-master/templates/icons/phosphor-duotone/number-square-five.svg +1 -0
  1767. skills/ppt-master/templates/icons/phosphor-duotone/number-square-four.svg +1 -0
  1768. skills/ppt-master/templates/icons/phosphor-duotone/number-square-nine.svg +1 -0
  1769. skills/ppt-master/templates/icons/phosphor-duotone/number-square-one.svg +1 -0
  1770. skills/ppt-master/templates/icons/phosphor-duotone/number-square-seven.svg +1 -0
  1771. skills/ppt-master/templates/icons/phosphor-duotone/number-square-six.svg +1 -0
  1772. skills/ppt-master/templates/icons/phosphor-duotone/number-square-three.svg +1 -0
  1773. skills/ppt-master/templates/icons/phosphor-duotone/number-square-two.svg +1 -0
  1774. skills/ppt-master/templates/icons/phosphor-duotone/number-square-zero.svg +1 -0
  1775. skills/ppt-master/templates/icons/phosphor-duotone/number-three.svg +1 -0
  1776. skills/ppt-master/templates/icons/phosphor-duotone/number-two.svg +1 -0
  1777. skills/ppt-master/templates/icons/phosphor-duotone/number-zero.svg +1 -0
  1778. skills/ppt-master/templates/icons/phosphor-duotone/nut.svg +1 -0
  1779. skills/ppt-master/templates/icons/phosphor-duotone/ny-times-logo.svg +1 -0
  1780. skills/ppt-master/templates/icons/phosphor-duotone/octagon.svg +1 -0
  1781. skills/ppt-master/templates/icons/phosphor-duotone/office-chair.svg +1 -0
  1782. skills/ppt-master/templates/icons/phosphor-duotone/option.svg +1 -0
  1783. skills/ppt-master/templates/icons/phosphor-duotone/orange-slice.svg +1 -0
  1784. skills/ppt-master/templates/icons/phosphor-duotone/package.svg +1 -0
  1785. skills/ppt-master/templates/icons/phosphor-duotone/paint-brush-broad.svg +1 -0
  1786. skills/ppt-master/templates/icons/phosphor-duotone/paint-brush-household.svg +1 -0
  1787. skills/ppt-master/templates/icons/phosphor-duotone/paint-brush.svg +1 -0
  1788. skills/ppt-master/templates/icons/phosphor-duotone/paint-bucket.svg +1 -0
  1789. skills/ppt-master/templates/icons/phosphor-duotone/paint-roller.svg +1 -0
  1790. skills/ppt-master/templates/icons/phosphor-duotone/palette.svg +1 -0
  1791. skills/ppt-master/templates/icons/phosphor-duotone/pants.svg +1 -0
  1792. skills/ppt-master/templates/icons/phosphor-duotone/paper-plane-right.svg +1 -0
  1793. skills/ppt-master/templates/icons/phosphor-duotone/paper-plane-tilt.svg +1 -0
  1794. skills/ppt-master/templates/icons/phosphor-duotone/paper-plane.svg +1 -0
  1795. skills/ppt-master/templates/icons/phosphor-duotone/paperclip-horizontal.svg +1 -0
  1796. skills/ppt-master/templates/icons/phosphor-duotone/paperclip.svg +1 -0
  1797. skills/ppt-master/templates/icons/phosphor-duotone/parachute.svg +1 -0
  1798. skills/ppt-master/templates/icons/phosphor-duotone/paragraph.svg +1 -0
  1799. skills/ppt-master/templates/icons/phosphor-duotone/parallelogram.svg +1 -0
  1800. skills/ppt-master/templates/icons/phosphor-duotone/park.svg +1 -0
  1801. skills/ppt-master/templates/icons/phosphor-duotone/password.svg +1 -0
  1802. skills/ppt-master/templates/icons/phosphor-duotone/path.svg +1 -0
  1803. skills/ppt-master/templates/icons/phosphor-duotone/patreon-logo.svg +1 -0
  1804. skills/ppt-master/templates/icons/phosphor-duotone/pause-circle.svg +1 -0
  1805. skills/ppt-master/templates/icons/phosphor-duotone/pause.svg +1 -0
  1806. skills/ppt-master/templates/icons/phosphor-duotone/paw-print.svg +1 -0
  1807. skills/ppt-master/templates/icons/phosphor-duotone/paypal-logo.svg +1 -0
  1808. skills/ppt-master/templates/icons/phosphor-duotone/peace.svg +1 -0
  1809. skills/ppt-master/templates/icons/phosphor-duotone/pen-nib-straight.svg +1 -0
  1810. skills/ppt-master/templates/icons/phosphor-duotone/pen-nib.svg +1 -0
  1811. skills/ppt-master/templates/icons/phosphor-duotone/pen.svg +1 -0
  1812. skills/ppt-master/templates/icons/phosphor-duotone/pencil-circle.svg +1 -0
  1813. skills/ppt-master/templates/icons/phosphor-duotone/pencil-line.svg +1 -0
  1814. skills/ppt-master/templates/icons/phosphor-duotone/pencil-simple-line.svg +1 -0
  1815. skills/ppt-master/templates/icons/phosphor-duotone/pencil-simple-slash.svg +1 -0
  1816. skills/ppt-master/templates/icons/phosphor-duotone/pencil-simple.svg +1 -0
  1817. skills/ppt-master/templates/icons/phosphor-duotone/pencil-slash.svg +1 -0
  1818. skills/ppt-master/templates/icons/phosphor-duotone/pencil.svg +1 -0
  1819. skills/ppt-master/templates/icons/phosphor-duotone/pentagram.svg +1 -0
  1820. skills/ppt-master/templates/icons/phosphor-duotone/pepper.svg +1 -0
  1821. skills/ppt-master/templates/icons/phosphor-duotone/percent.svg +1 -0
  1822. skills/ppt-master/templates/icons/phosphor-duotone/person-arms-spread.svg +1 -0
  1823. skills/ppt-master/templates/icons/phosphor-duotone/person-simple-bike.svg +1 -0
  1824. skills/ppt-master/templates/icons/phosphor-duotone/person-simple-run.svg +1 -0
  1825. skills/ppt-master/templates/icons/phosphor-duotone/person-simple-throw.svg +1 -0
  1826. skills/ppt-master/templates/icons/phosphor-duotone/person-simple-walk.svg +1 -0
  1827. skills/ppt-master/templates/icons/phosphor-duotone/person-simple.svg +1 -0
  1828. skills/ppt-master/templates/icons/phosphor-duotone/person.svg +1 -0
  1829. skills/ppt-master/templates/icons/phosphor-duotone/perspective.svg +1 -0
  1830. skills/ppt-master/templates/icons/phosphor-duotone/phone-call.svg +1 -0
  1831. skills/ppt-master/templates/icons/phosphor-duotone/phone-disconnect.svg +1 -0
  1832. skills/ppt-master/templates/icons/phosphor-duotone/phone-incoming.svg +1 -0
  1833. skills/ppt-master/templates/icons/phosphor-duotone/phone-outgoing.svg +1 -0
  1834. skills/ppt-master/templates/icons/phosphor-duotone/phone-plus.svg +1 -0
  1835. skills/ppt-master/templates/icons/phosphor-duotone/phone-slash.svg +1 -0
  1836. skills/ppt-master/templates/icons/phosphor-duotone/phone-x.svg +1 -0
  1837. skills/ppt-master/templates/icons/phosphor-duotone/phone.svg +1 -0
  1838. skills/ppt-master/templates/icons/phosphor-duotone/phosphor-logo.svg +1 -0
  1839. skills/ppt-master/templates/icons/phosphor-duotone/pi.svg +1 -0
  1840. skills/ppt-master/templates/icons/phosphor-duotone/piano-keys.svg +1 -0
  1841. skills/ppt-master/templates/icons/phosphor-duotone/picture-in-picture.svg +1 -0
  1842. skills/ppt-master/templates/icons/phosphor-duotone/piggy-bank.svg +1 -0
  1843. skills/ppt-master/templates/icons/phosphor-duotone/pill.svg +1 -0
  1844. skills/ppt-master/templates/icons/phosphor-duotone/pinterest-logo.svg +1 -0
  1845. skills/ppt-master/templates/icons/phosphor-duotone/pinwheel.svg +1 -0
  1846. skills/ppt-master/templates/icons/phosphor-duotone/pizza.svg +1 -0
  1847. skills/ppt-master/templates/icons/phosphor-duotone/placeholder.svg +1 -0
  1848. skills/ppt-master/templates/icons/phosphor-duotone/planet.svg +1 -0
  1849. skills/ppt-master/templates/icons/phosphor-duotone/plant.svg +1 -0
  1850. skills/ppt-master/templates/icons/phosphor-duotone/play-circle.svg +1 -0
  1851. skills/ppt-master/templates/icons/phosphor-duotone/play-pause.svg +1 -0
  1852. skills/ppt-master/templates/icons/phosphor-duotone/play.svg +1 -0
  1853. skills/ppt-master/templates/icons/phosphor-duotone/playlist.svg +1 -0
  1854. skills/ppt-master/templates/icons/phosphor-duotone/plug-charging.svg +1 -0
  1855. skills/ppt-master/templates/icons/phosphor-duotone/plug.svg +1 -0
  1856. skills/ppt-master/templates/icons/phosphor-duotone/plugs-connected.svg +1 -0
  1857. skills/ppt-master/templates/icons/phosphor-duotone/plugs.svg +1 -0
  1858. skills/ppt-master/templates/icons/phosphor-duotone/plus-circle.svg +1 -0
  1859. skills/ppt-master/templates/icons/phosphor-duotone/plus-minus.svg +1 -0
  1860. skills/ppt-master/templates/icons/phosphor-duotone/plus-square.svg +1 -0
  1861. skills/ppt-master/templates/icons/phosphor-duotone/plus.svg +1 -0
  1862. skills/ppt-master/templates/icons/phosphor-duotone/poker-chip.svg +1 -0
  1863. skills/ppt-master/templates/icons/phosphor-duotone/police-car.svg +1 -0
  1864. skills/ppt-master/templates/icons/phosphor-duotone/polygon.svg +1 -0
  1865. skills/ppt-master/templates/icons/phosphor-duotone/popcorn.svg +1 -0
  1866. skills/ppt-master/templates/icons/phosphor-duotone/potted-plant.svg +1 -0
  1867. skills/ppt-master/templates/icons/phosphor-duotone/power.svg +1 -0
  1868. skills/ppt-master/templates/icons/phosphor-duotone/prescription.svg +1 -0
  1869. skills/ppt-master/templates/icons/phosphor-duotone/presentation-chart.svg +1 -0
  1870. skills/ppt-master/templates/icons/phosphor-duotone/presentation.svg +1 -0
  1871. skills/ppt-master/templates/icons/phosphor-duotone/printer.svg +1 -0
  1872. skills/ppt-master/templates/icons/phosphor-duotone/prohibit-inset.svg +1 -0
  1873. skills/ppt-master/templates/icons/phosphor-duotone/prohibit.svg +1 -0
  1874. skills/ppt-master/templates/icons/phosphor-duotone/projector-screen-chart.svg +1 -0
  1875. skills/ppt-master/templates/icons/phosphor-duotone/projector-screen.svg +1 -0
  1876. skills/ppt-master/templates/icons/phosphor-duotone/pulse.svg +1 -0
  1877. skills/ppt-master/templates/icons/phosphor-duotone/push-pin-simple-slash.svg +1 -0
  1878. skills/ppt-master/templates/icons/phosphor-duotone/push-pin-simple.svg +1 -0
  1879. skills/ppt-master/templates/icons/phosphor-duotone/push-pin-slash.svg +1 -0
  1880. skills/ppt-master/templates/icons/phosphor-duotone/push-pin.svg +1 -0
  1881. skills/ppt-master/templates/icons/phosphor-duotone/puzzle-piece.svg +1 -0
  1882. skills/ppt-master/templates/icons/phosphor-duotone/qr-code.svg +1 -0
  1883. skills/ppt-master/templates/icons/phosphor-duotone/question.svg +1 -0
  1884. skills/ppt-master/templates/icons/phosphor-duotone/queue.svg +1 -0
  1885. skills/ppt-master/templates/icons/phosphor-duotone/quotes.svg +1 -0
  1886. skills/ppt-master/templates/icons/phosphor-duotone/radical.svg +1 -0
  1887. skills/ppt-master/templates/icons/phosphor-duotone/radio-button.svg +1 -0
  1888. skills/ppt-master/templates/icons/phosphor-duotone/radio.svg +1 -0
  1889. skills/ppt-master/templates/icons/phosphor-duotone/radioactive.svg +1 -0
  1890. skills/ppt-master/templates/icons/phosphor-duotone/rainbow-cloud.svg +1 -0
  1891. skills/ppt-master/templates/icons/phosphor-duotone/rainbow.svg +1 -0
  1892. skills/ppt-master/templates/icons/phosphor-duotone/read-cv-logo.svg +1 -0
  1893. skills/ppt-master/templates/icons/phosphor-duotone/receipt-x.svg +1 -0
  1894. skills/ppt-master/templates/icons/phosphor-duotone/receipt.svg +1 -0
  1895. skills/ppt-master/templates/icons/phosphor-duotone/record.svg +1 -0
  1896. skills/ppt-master/templates/icons/phosphor-duotone/rectangle.svg +1 -0
  1897. skills/ppt-master/templates/icons/phosphor-duotone/recycle.svg +1 -0
  1898. skills/ppt-master/templates/icons/phosphor-duotone/reddit-logo.svg +1 -0
  1899. skills/ppt-master/templates/icons/phosphor-duotone/repeat-once.svg +1 -0
  1900. skills/ppt-master/templates/icons/phosphor-duotone/repeat.svg +1 -0
  1901. skills/ppt-master/templates/icons/phosphor-duotone/rewind-circle.svg +1 -0
  1902. skills/ppt-master/templates/icons/phosphor-duotone/rewind.svg +1 -0
  1903. skills/ppt-master/templates/icons/phosphor-duotone/road-horizon.svg +1 -0
  1904. skills/ppt-master/templates/icons/phosphor-duotone/robot.svg +1 -0
  1905. skills/ppt-master/templates/icons/phosphor-duotone/rocket-launch.svg +1 -0
  1906. skills/ppt-master/templates/icons/phosphor-duotone/rocket.svg +1 -0
  1907. skills/ppt-master/templates/icons/phosphor-duotone/rows.svg +1 -0
  1908. skills/ppt-master/templates/icons/phosphor-duotone/rss-simple.svg +1 -0
  1909. skills/ppt-master/templates/icons/phosphor-duotone/rss.svg +1 -0
  1910. skills/ppt-master/templates/icons/phosphor-duotone/rug.svg +1 -0
  1911. skills/ppt-master/templates/icons/phosphor-duotone/ruler.svg +1 -0
  1912. skills/ppt-master/templates/icons/phosphor-duotone/scales.svg +1 -0
  1913. skills/ppt-master/templates/icons/phosphor-duotone/scan.svg +1 -0
  1914. skills/ppt-master/templates/icons/phosphor-duotone/scissors.svg +1 -0
  1915. skills/ppt-master/templates/icons/phosphor-duotone/scooter.svg +1 -0
  1916. skills/ppt-master/templates/icons/phosphor-duotone/screencast.svg +1 -0
  1917. skills/ppt-master/templates/icons/phosphor-duotone/scribble-loop.svg +1 -0
  1918. skills/ppt-master/templates/icons/phosphor-duotone/scroll.svg +1 -0
  1919. skills/ppt-master/templates/icons/phosphor-duotone/seal-check.svg +1 -0
  1920. skills/ppt-master/templates/icons/phosphor-duotone/seal-question.svg +1 -0
  1921. skills/ppt-master/templates/icons/phosphor-duotone/seal-warning.svg +1 -0
  1922. skills/ppt-master/templates/icons/phosphor-duotone/seal.svg +1 -0
  1923. skills/ppt-master/templates/icons/phosphor-duotone/selection-all.svg +1 -0
  1924. skills/ppt-master/templates/icons/phosphor-duotone/selection-background.svg +1 -0
  1925. skills/ppt-master/templates/icons/phosphor-duotone/selection-foreground.svg +1 -0
  1926. skills/ppt-master/templates/icons/phosphor-duotone/selection-inverse.svg +1 -0
  1927. skills/ppt-master/templates/icons/phosphor-duotone/selection-plus.svg +1 -0
  1928. skills/ppt-master/templates/icons/phosphor-duotone/selection-slash.svg +1 -0
  1929. skills/ppt-master/templates/icons/phosphor-duotone/selection.svg +1 -0
  1930. skills/ppt-master/templates/icons/phosphor-duotone/shapes.svg +1 -0
  1931. skills/ppt-master/templates/icons/phosphor-duotone/share-fat.svg +1 -0
  1932. skills/ppt-master/templates/icons/phosphor-duotone/share-network.svg +1 -0
  1933. skills/ppt-master/templates/icons/phosphor-duotone/share.svg +1 -0
  1934. skills/ppt-master/templates/icons/phosphor-duotone/shield-check.svg +1 -0
  1935. skills/ppt-master/templates/icons/phosphor-duotone/shield-checkered.svg +1 -0
  1936. skills/ppt-master/templates/icons/phosphor-duotone/shield-chevron.svg +1 -0
  1937. skills/ppt-master/templates/icons/phosphor-duotone/shield-plus.svg +1 -0
  1938. skills/ppt-master/templates/icons/phosphor-duotone/shield-slash.svg +1 -0
  1939. skills/ppt-master/templates/icons/phosphor-duotone/shield-star.svg +1 -0
  1940. skills/ppt-master/templates/icons/phosphor-duotone/shield-warning.svg +1 -0
  1941. skills/ppt-master/templates/icons/phosphor-duotone/shield.svg +1 -0
  1942. skills/ppt-master/templates/icons/phosphor-duotone/shirt-folded.svg +1 -0
  1943. skills/ppt-master/templates/icons/phosphor-duotone/shooting-star.svg +1 -0
  1944. skills/ppt-master/templates/icons/phosphor-duotone/shopping-bag-open.svg +1 -0
  1945. skills/ppt-master/templates/icons/phosphor-duotone/shopping-bag.svg +1 -0
  1946. skills/ppt-master/templates/icons/phosphor-duotone/shopping-cart-simple.svg +1 -0
  1947. skills/ppt-master/templates/icons/phosphor-duotone/shopping-cart.svg +1 -0
  1948. skills/ppt-master/templates/icons/phosphor-duotone/shower.svg +1 -0
  1949. skills/ppt-master/templates/icons/phosphor-duotone/shrimp.svg +1 -0
  1950. skills/ppt-master/templates/icons/phosphor-duotone/shuffle-angular.svg +1 -0
  1951. skills/ppt-master/templates/icons/phosphor-duotone/shuffle-simple.svg +1 -0
  1952. skills/ppt-master/templates/icons/phosphor-duotone/shuffle.svg +1 -0
  1953. skills/ppt-master/templates/icons/phosphor-duotone/sidebar-simple.svg +1 -0
  1954. skills/ppt-master/templates/icons/phosphor-duotone/sidebar.svg +1 -0
  1955. skills/ppt-master/templates/icons/phosphor-duotone/sigma.svg +1 -0
  1956. skills/ppt-master/templates/icons/phosphor-duotone/sign-in.svg +1 -0
  1957. skills/ppt-master/templates/icons/phosphor-duotone/sign-out.svg +1 -0
  1958. skills/ppt-master/templates/icons/phosphor-duotone/signature.svg +1 -0
  1959. skills/ppt-master/templates/icons/phosphor-duotone/signpost.svg +1 -0
  1960. skills/ppt-master/templates/icons/phosphor-duotone/sim-card.svg +1 -0
  1961. skills/ppt-master/templates/icons/phosphor-duotone/siren.svg +1 -0
  1962. skills/ppt-master/templates/icons/phosphor-duotone/sketch-logo.svg +1 -0
  1963. skills/ppt-master/templates/icons/phosphor-duotone/skip-back-circle.svg +1 -0
  1964. skills/ppt-master/templates/icons/phosphor-duotone/skip-back.svg +1 -0
  1965. skills/ppt-master/templates/icons/phosphor-duotone/skip-forward-circle.svg +1 -0
  1966. skills/ppt-master/templates/icons/phosphor-duotone/skip-forward.svg +1 -0
  1967. skills/ppt-master/templates/icons/phosphor-duotone/skull.svg +1 -0
  1968. skills/ppt-master/templates/icons/phosphor-duotone/slack-logo.svg +1 -0
  1969. skills/ppt-master/templates/icons/phosphor-duotone/sliders-horizontal.svg +1 -0
  1970. skills/ppt-master/templates/icons/phosphor-duotone/sliders.svg +1 -0
  1971. skills/ppt-master/templates/icons/phosphor-duotone/slideshow.svg +1 -0
  1972. skills/ppt-master/templates/icons/phosphor-duotone/smiley-angry.svg +1 -0
  1973. skills/ppt-master/templates/icons/phosphor-duotone/smiley-blank.svg +1 -0
  1974. skills/ppt-master/templates/icons/phosphor-duotone/smiley-meh.svg +1 -0
  1975. skills/ppt-master/templates/icons/phosphor-duotone/smiley-nervous.svg +1 -0
  1976. skills/ppt-master/templates/icons/phosphor-duotone/smiley-sad.svg +1 -0
  1977. skills/ppt-master/templates/icons/phosphor-duotone/smiley-sticker.svg +1 -0
  1978. skills/ppt-master/templates/icons/phosphor-duotone/smiley-wink.svg +1 -0
  1979. skills/ppt-master/templates/icons/phosphor-duotone/smiley-x-eyes.svg +1 -0
  1980. skills/ppt-master/templates/icons/phosphor-duotone/smiley.svg +1 -0
  1981. skills/ppt-master/templates/icons/phosphor-duotone/snapchat-logo.svg +1 -0
  1982. skills/ppt-master/templates/icons/phosphor-duotone/sneaker-move.svg +1 -0
  1983. skills/ppt-master/templates/icons/phosphor-duotone/sneaker.svg +1 -0
  1984. skills/ppt-master/templates/icons/phosphor-duotone/snowflake.svg +1 -0
  1985. skills/ppt-master/templates/icons/phosphor-duotone/soccer-ball.svg +1 -0
  1986. skills/ppt-master/templates/icons/phosphor-duotone/sort-ascending.svg +1 -0
  1987. skills/ppt-master/templates/icons/phosphor-duotone/sort-descending.svg +1 -0
  1988. skills/ppt-master/templates/icons/phosphor-duotone/soundcloud-logo.svg +1 -0
  1989. skills/ppt-master/templates/icons/phosphor-duotone/spade.svg +1 -0
  1990. skills/ppt-master/templates/icons/phosphor-duotone/sparkle.svg +1 -0
  1991. skills/ppt-master/templates/icons/phosphor-duotone/speaker-hifi.svg +1 -0
  1992. skills/ppt-master/templates/icons/phosphor-duotone/speaker-high.svg +1 -0
  1993. skills/ppt-master/templates/icons/phosphor-duotone/speaker-low.svg +1 -0
  1994. skills/ppt-master/templates/icons/phosphor-duotone/speaker-none.svg +1 -0
  1995. skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-high.svg +1 -0
  1996. skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-low.svg +1 -0
  1997. skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-none.svg +1 -0
  1998. skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-slash.svg +1 -0
  1999. skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-x.svg +1 -0
  2000. skills/ppt-master/templates/icons/phosphor-duotone/speaker-slash.svg +1 -0
  2001. skills/ppt-master/templates/icons/phosphor-duotone/speaker-x.svg +1 -0
  2002. skills/ppt-master/templates/icons/phosphor-duotone/spinner-gap.svg +1 -0
  2003. skills/ppt-master/templates/icons/phosphor-duotone/spinner.svg +1 -0
  2004. skills/ppt-master/templates/icons/phosphor-duotone/spiral.svg +1 -0
  2005. skills/ppt-master/templates/icons/phosphor-duotone/split-horizontal.svg +1 -0
  2006. skills/ppt-master/templates/icons/phosphor-duotone/split-vertical.svg +1 -0
  2007. skills/ppt-master/templates/icons/phosphor-duotone/spotify-logo.svg +1 -0
  2008. skills/ppt-master/templates/icons/phosphor-duotone/square-half-bottom.svg +1 -0
  2009. skills/ppt-master/templates/icons/phosphor-duotone/square-half.svg +1 -0
  2010. skills/ppt-master/templates/icons/phosphor-duotone/square-logo.svg +1 -0
  2011. skills/ppt-master/templates/icons/phosphor-duotone/square-split-horizontal.svg +1 -0
  2012. skills/ppt-master/templates/icons/phosphor-duotone/square-split-vertical.svg +1 -0
  2013. skills/ppt-master/templates/icons/phosphor-duotone/square.svg +1 -0
  2014. skills/ppt-master/templates/icons/phosphor-duotone/squares-four.svg +1 -0
  2015. skills/ppt-master/templates/icons/phosphor-duotone/stack-overflow-logo.svg +1 -0
  2016. skills/ppt-master/templates/icons/phosphor-duotone/stack-simple.svg +1 -0
  2017. skills/ppt-master/templates/icons/phosphor-duotone/stack.svg +1 -0
  2018. skills/ppt-master/templates/icons/phosphor-duotone/stairs.svg +1 -0
  2019. skills/ppt-master/templates/icons/phosphor-duotone/stamp.svg +1 -0
  2020. skills/ppt-master/templates/icons/phosphor-duotone/star-and-crescent.svg +1 -0
  2021. skills/ppt-master/templates/icons/phosphor-duotone/star-four.svg +1 -0
  2022. skills/ppt-master/templates/icons/phosphor-duotone/star-half.svg +1 -0
  2023. skills/ppt-master/templates/icons/phosphor-duotone/star-of-david.svg +1 -0
  2024. skills/ppt-master/templates/icons/phosphor-duotone/star.svg +1 -0
  2025. skills/ppt-master/templates/icons/phosphor-duotone/steering-wheel.svg +1 -0
  2026. skills/ppt-master/templates/icons/phosphor-duotone/steps.svg +1 -0
  2027. skills/ppt-master/templates/icons/phosphor-duotone/stethoscope.svg +1 -0
  2028. skills/ppt-master/templates/icons/phosphor-duotone/sticker.svg +1 -0
  2029. skills/ppt-master/templates/icons/phosphor-duotone/stool.svg +1 -0
  2030. skills/ppt-master/templates/icons/phosphor-duotone/stop-circle.svg +1 -0
  2031. skills/ppt-master/templates/icons/phosphor-duotone/stop.svg +1 -0
  2032. skills/ppt-master/templates/icons/phosphor-duotone/storefront.svg +1 -0
  2033. skills/ppt-master/templates/icons/phosphor-duotone/strategy.svg +1 -0
  2034. skills/ppt-master/templates/icons/phosphor-duotone/stripe-logo.svg +1 -0
  2035. skills/ppt-master/templates/icons/phosphor-duotone/student.svg +1 -0
  2036. skills/ppt-master/templates/icons/phosphor-duotone/subtitles.svg +1 -0
  2037. skills/ppt-master/templates/icons/phosphor-duotone/subtract-square.svg +1 -0
  2038. skills/ppt-master/templates/icons/phosphor-duotone/subtract.svg +1 -0
  2039. skills/ppt-master/templates/icons/phosphor-duotone/suitcase-rolling.svg +1 -0
  2040. skills/ppt-master/templates/icons/phosphor-duotone/suitcase-simple.svg +1 -0
  2041. skills/ppt-master/templates/icons/phosphor-duotone/suitcase.svg +1 -0
  2042. skills/ppt-master/templates/icons/phosphor-duotone/sun-dim.svg +1 -0
  2043. skills/ppt-master/templates/icons/phosphor-duotone/sun-horizon.svg +1 -0
  2044. skills/ppt-master/templates/icons/phosphor-duotone/sun.svg +1 -0
  2045. skills/ppt-master/templates/icons/phosphor-duotone/sunglasses.svg +1 -0
  2046. skills/ppt-master/templates/icons/phosphor-duotone/swap.svg +1 -0
  2047. skills/ppt-master/templates/icons/phosphor-duotone/swatches.svg +1 -0
  2048. skills/ppt-master/templates/icons/phosphor-duotone/swimming-pool.svg +1 -0
  2049. skills/ppt-master/templates/icons/phosphor-duotone/sword.svg +1 -0
  2050. skills/ppt-master/templates/icons/phosphor-duotone/synagogue.svg +1 -0
  2051. skills/ppt-master/templates/icons/phosphor-duotone/syringe.svg +1 -0
  2052. skills/ppt-master/templates/icons/phosphor-duotone/t-shirt.svg +1 -0
  2053. skills/ppt-master/templates/icons/phosphor-duotone/table.svg +1 -0
  2054. skills/ppt-master/templates/icons/phosphor-duotone/tabs.svg +1 -0
  2055. skills/ppt-master/templates/icons/phosphor-duotone/tag-chevron.svg +1 -0
  2056. skills/ppt-master/templates/icons/phosphor-duotone/tag-simple.svg +1 -0
  2057. skills/ppt-master/templates/icons/phosphor-duotone/tag.svg +1 -0
  2058. skills/ppt-master/templates/icons/phosphor-duotone/target.svg +1 -0
  2059. skills/ppt-master/templates/icons/phosphor-duotone/taxi.svg +1 -0
  2060. skills/ppt-master/templates/icons/phosphor-duotone/telegram-logo.svg +1 -0
  2061. skills/ppt-master/templates/icons/phosphor-duotone/television-simple.svg +1 -0
  2062. skills/ppt-master/templates/icons/phosphor-duotone/television.svg +1 -0
  2063. skills/ppt-master/templates/icons/phosphor-duotone/tennis-ball.svg +1 -0
  2064. skills/ppt-master/templates/icons/phosphor-duotone/tent.svg +1 -0
  2065. skills/ppt-master/templates/icons/phosphor-duotone/terminal-window.svg +1 -0
  2066. skills/ppt-master/templates/icons/phosphor-duotone/terminal.svg +1 -0
  2067. skills/ppt-master/templates/icons/phosphor-duotone/test-tube.svg +1 -0
  2068. skills/ppt-master/templates/icons/phosphor-duotone/text-a-underline.svg +1 -0
  2069. skills/ppt-master/templates/icons/phosphor-duotone/text-aa.svg +1 -0
  2070. skills/ppt-master/templates/icons/phosphor-duotone/text-align-center.svg +1 -0
  2071. skills/ppt-master/templates/icons/phosphor-duotone/text-align-justify.svg +1 -0
  2072. skills/ppt-master/templates/icons/phosphor-duotone/text-align-left.svg +1 -0
  2073. skills/ppt-master/templates/icons/phosphor-duotone/text-align-right.svg +1 -0
  2074. skills/ppt-master/templates/icons/phosphor-duotone/text-b.svg +1 -0
  2075. skills/ppt-master/templates/icons/phosphor-duotone/text-columns.svg +1 -0
  2076. skills/ppt-master/templates/icons/phosphor-duotone/text-h-five.svg +1 -0
  2077. skills/ppt-master/templates/icons/phosphor-duotone/text-h-four.svg +1 -0
  2078. skills/ppt-master/templates/icons/phosphor-duotone/text-h-one.svg +1 -0
  2079. skills/ppt-master/templates/icons/phosphor-duotone/text-h-six.svg +1 -0
  2080. skills/ppt-master/templates/icons/phosphor-duotone/text-h-three.svg +1 -0
  2081. skills/ppt-master/templates/icons/phosphor-duotone/text-h-two.svg +1 -0
  2082. skills/ppt-master/templates/icons/phosphor-duotone/text-h.svg +1 -0
  2083. skills/ppt-master/templates/icons/phosphor-duotone/text-indent.svg +1 -0
  2084. skills/ppt-master/templates/icons/phosphor-duotone/text-italic.svg +1 -0
  2085. skills/ppt-master/templates/icons/phosphor-duotone/text-outdent.svg +1 -0
  2086. skills/ppt-master/templates/icons/phosphor-duotone/text-strikethrough.svg +1 -0
  2087. skills/ppt-master/templates/icons/phosphor-duotone/text-t.svg +1 -0
  2088. skills/ppt-master/templates/icons/phosphor-duotone/text-underline.svg +1 -0
  2089. skills/ppt-master/templates/icons/phosphor-duotone/textbox.svg +1 -0
  2090. skills/ppt-master/templates/icons/phosphor-duotone/thermometer-cold.svg +1 -0
  2091. skills/ppt-master/templates/icons/phosphor-duotone/thermometer-hot.svg +1 -0
  2092. skills/ppt-master/templates/icons/phosphor-duotone/thermometer-simple.svg +1 -0
  2093. skills/ppt-master/templates/icons/phosphor-duotone/thermometer.svg +1 -0
  2094. skills/ppt-master/templates/icons/phosphor-duotone/thumbs-down.svg +1 -0
  2095. skills/ppt-master/templates/icons/phosphor-duotone/thumbs-up.svg +1 -0
  2096. skills/ppt-master/templates/icons/phosphor-duotone/ticket.svg +1 -0
  2097. skills/ppt-master/templates/icons/phosphor-duotone/tidal-logo.svg +1 -0
  2098. skills/ppt-master/templates/icons/phosphor-duotone/tiktok-logo.svg +1 -0
  2099. skills/ppt-master/templates/icons/phosphor-duotone/timer.svg +1 -0
  2100. skills/ppt-master/templates/icons/phosphor-duotone/tipi.svg +1 -0
  2101. skills/ppt-master/templates/icons/phosphor-duotone/toggle-left.svg +1 -0
  2102. skills/ppt-master/templates/icons/phosphor-duotone/toggle-right.svg +1 -0
  2103. skills/ppt-master/templates/icons/phosphor-duotone/toilet-paper.svg +1 -0
  2104. skills/ppt-master/templates/icons/phosphor-duotone/toilet.svg +1 -0
  2105. skills/ppt-master/templates/icons/phosphor-duotone/toolbox.svg +1 -0
  2106. skills/ppt-master/templates/icons/phosphor-duotone/tooth.svg +1 -0
  2107. skills/ppt-master/templates/icons/phosphor-duotone/tote-simple.svg +1 -0
  2108. skills/ppt-master/templates/icons/phosphor-duotone/tote.svg +1 -0
  2109. skills/ppt-master/templates/icons/phosphor-duotone/trademark-registered.svg +1 -0
  2110. skills/ppt-master/templates/icons/phosphor-duotone/trademark.svg +1 -0
  2111. skills/ppt-master/templates/icons/phosphor-duotone/traffic-cone.svg +1 -0
  2112. skills/ppt-master/templates/icons/phosphor-duotone/traffic-sign.svg +1 -0
  2113. skills/ppt-master/templates/icons/phosphor-duotone/traffic-signal.svg +1 -0
  2114. skills/ppt-master/templates/icons/phosphor-duotone/train-regional.svg +1 -0
  2115. skills/ppt-master/templates/icons/phosphor-duotone/train-simple.svg +1 -0
  2116. skills/ppt-master/templates/icons/phosphor-duotone/train.svg +1 -0
  2117. skills/ppt-master/templates/icons/phosphor-duotone/tram.svg +1 -0
  2118. skills/ppt-master/templates/icons/phosphor-duotone/translate.svg +1 -0
  2119. skills/ppt-master/templates/icons/phosphor-duotone/trash-simple.svg +1 -0
  2120. skills/ppt-master/templates/icons/phosphor-duotone/trash.svg +1 -0
  2121. skills/ppt-master/templates/icons/phosphor-duotone/tray.svg +1 -0
  2122. skills/ppt-master/templates/icons/phosphor-duotone/tree-evergreen.svg +1 -0
  2123. skills/ppt-master/templates/icons/phosphor-duotone/tree-palm.svg +1 -0
  2124. skills/ppt-master/templates/icons/phosphor-duotone/tree-structure.svg +1 -0
  2125. skills/ppt-master/templates/icons/phosphor-duotone/tree.svg +1 -0
  2126. skills/ppt-master/templates/icons/phosphor-duotone/trend-down.svg +1 -0
  2127. skills/ppt-master/templates/icons/phosphor-duotone/trend-up.svg +1 -0
  2128. skills/ppt-master/templates/icons/phosphor-duotone/triangle.svg +1 -0
  2129. skills/ppt-master/templates/icons/phosphor-duotone/trophy.svg +1 -0
  2130. skills/ppt-master/templates/icons/phosphor-duotone/truck.svg +1 -0
  2131. skills/ppt-master/templates/icons/phosphor-duotone/twitch-logo.svg +1 -0
  2132. skills/ppt-master/templates/icons/phosphor-duotone/twitter-logo.svg +1 -0
  2133. skills/ppt-master/templates/icons/phosphor-duotone/umbrella-simple.svg +1 -0
  2134. skills/ppt-master/templates/icons/phosphor-duotone/umbrella.svg +1 -0
  2135. skills/ppt-master/templates/icons/phosphor-duotone/unite-square.svg +1 -0
  2136. skills/ppt-master/templates/icons/phosphor-duotone/unite.svg +1 -0
  2137. skills/ppt-master/templates/icons/phosphor-duotone/upload-simple.svg +1 -0
  2138. skills/ppt-master/templates/icons/phosphor-duotone/upload.svg +1 -0
  2139. skills/ppt-master/templates/icons/phosphor-duotone/usb.svg +1 -0
  2140. skills/ppt-master/templates/icons/phosphor-duotone/user-circle-gear.svg +1 -0
  2141. skills/ppt-master/templates/icons/phosphor-duotone/user-circle-minus.svg +1 -0
  2142. skills/ppt-master/templates/icons/phosphor-duotone/user-circle-plus.svg +1 -0
  2143. skills/ppt-master/templates/icons/phosphor-duotone/user-circle.svg +1 -0
  2144. skills/ppt-master/templates/icons/phosphor-duotone/user-focus.svg +1 -0
  2145. skills/ppt-master/templates/icons/phosphor-duotone/user-gear.svg +1 -0
  2146. skills/ppt-master/templates/icons/phosphor-duotone/user-list.svg +1 -0
  2147. skills/ppt-master/templates/icons/phosphor-duotone/user-minus.svg +1 -0
  2148. skills/ppt-master/templates/icons/phosphor-duotone/user-plus.svg +1 -0
  2149. skills/ppt-master/templates/icons/phosphor-duotone/user-rectangle.svg +1 -0
  2150. skills/ppt-master/templates/icons/phosphor-duotone/user-square.svg +1 -0
  2151. skills/ppt-master/templates/icons/phosphor-duotone/user-switch.svg +1 -0
  2152. skills/ppt-master/templates/icons/phosphor-duotone/user.svg +1 -0
  2153. skills/ppt-master/templates/icons/phosphor-duotone/users-four.svg +1 -0
  2154. skills/ppt-master/templates/icons/phosphor-duotone/users-three.svg +1 -0
  2155. skills/ppt-master/templates/icons/phosphor-duotone/users.svg +1 -0
  2156. skills/ppt-master/templates/icons/phosphor-duotone/van.svg +1 -0
  2157. skills/ppt-master/templates/icons/phosphor-duotone/vault.svg +1 -0
  2158. skills/ppt-master/templates/icons/phosphor-duotone/vibrate.svg +1 -0
  2159. skills/ppt-master/templates/icons/phosphor-duotone/video-camera-slash.svg +1 -0
  2160. skills/ppt-master/templates/icons/phosphor-duotone/video-camera.svg +1 -0
  2161. skills/ppt-master/templates/icons/phosphor-duotone/video.svg +1 -0
  2162. skills/ppt-master/templates/icons/phosphor-duotone/vignette.svg +1 -0
  2163. skills/ppt-master/templates/icons/phosphor-duotone/vinyl-record.svg +1 -0
  2164. skills/ppt-master/templates/icons/phosphor-duotone/virtual-reality.svg +1 -0
  2165. skills/ppt-master/templates/icons/phosphor-duotone/virus.svg +1 -0
  2166. skills/ppt-master/templates/icons/phosphor-duotone/voicemail.svg +1 -0
  2167. skills/ppt-master/templates/icons/phosphor-duotone/volleyball.svg +1 -0
  2168. skills/ppt-master/templates/icons/phosphor-duotone/wall.svg +1 -0
  2169. skills/ppt-master/templates/icons/phosphor-duotone/wallet.svg +1 -0
  2170. skills/ppt-master/templates/icons/phosphor-duotone/warehouse.svg +1 -0
  2171. skills/ppt-master/templates/icons/phosphor-duotone/warning-circle.svg +1 -0
  2172. skills/ppt-master/templates/icons/phosphor-duotone/warning-diamond.svg +1 -0
  2173. skills/ppt-master/templates/icons/phosphor-duotone/warning-octagon.svg +1 -0
  2174. skills/ppt-master/templates/icons/phosphor-duotone/warning.svg +1 -0
  2175. skills/ppt-master/templates/icons/phosphor-duotone/watch.svg +1 -0
  2176. skills/ppt-master/templates/icons/phosphor-duotone/wave-sawtooth.svg +1 -0
  2177. skills/ppt-master/templates/icons/phosphor-duotone/wave-sine.svg +1 -0
  2178. skills/ppt-master/templates/icons/phosphor-duotone/wave-square.svg +1 -0
  2179. skills/ppt-master/templates/icons/phosphor-duotone/wave-triangle.svg +1 -0
  2180. skills/ppt-master/templates/icons/phosphor-duotone/waveform.svg +1 -0
  2181. skills/ppt-master/templates/icons/phosphor-duotone/waves.svg +1 -0
  2182. skills/ppt-master/templates/icons/phosphor-duotone/webcam-slash.svg +1 -0
  2183. skills/ppt-master/templates/icons/phosphor-duotone/webcam.svg +1 -0
  2184. skills/ppt-master/templates/icons/phosphor-duotone/webhooks-logo.svg +1 -0
  2185. skills/ppt-master/templates/icons/phosphor-duotone/wechat-logo.svg +1 -0
  2186. skills/ppt-master/templates/icons/phosphor-duotone/whatsapp-logo.svg +1 -0
  2187. skills/ppt-master/templates/icons/phosphor-duotone/wheelchair-motion.svg +1 -0
  2188. skills/ppt-master/templates/icons/phosphor-duotone/wheelchair.svg +1 -0
  2189. skills/ppt-master/templates/icons/phosphor-duotone/wifi-high.svg +1 -0
  2190. skills/ppt-master/templates/icons/phosphor-duotone/wifi-low.svg +1 -0
  2191. skills/ppt-master/templates/icons/phosphor-duotone/wifi-medium.svg +1 -0
  2192. skills/ppt-master/templates/icons/phosphor-duotone/wifi-none.svg +1 -0
  2193. skills/ppt-master/templates/icons/phosphor-duotone/wifi-slash.svg +1 -0
  2194. skills/ppt-master/templates/icons/phosphor-duotone/wifi-x.svg +1 -0
  2195. skills/ppt-master/templates/icons/phosphor-duotone/wind.svg +1 -0
  2196. skills/ppt-master/templates/icons/phosphor-duotone/windows-logo.svg +1 -0
  2197. skills/ppt-master/templates/icons/phosphor-duotone/wine.svg +1 -0
  2198. skills/ppt-master/templates/icons/phosphor-duotone/wrench.svg +1 -0
  2199. skills/ppt-master/templates/icons/phosphor-duotone/x-circle.svg +1 -0
  2200. skills/ppt-master/templates/icons/phosphor-duotone/x-square.svg +1 -0
  2201. skills/ppt-master/templates/icons/phosphor-duotone/x.svg +1 -0
  2202. skills/ppt-master/templates/icons/phosphor-duotone/yin-yang.svg +1 -0
  2203. skills/ppt-master/templates/icons/phosphor-duotone/youtube-logo.svg +1 -0
  2204. skills/ppt-master/templates/icons/simple-icons/1001tracklists.svg +1 -0
  2205. skills/ppt-master/templates/icons/simple-icons/1and1.svg +1 -0
  2206. skills/ppt-master/templates/icons/simple-icons/1dot1dot1dot1.svg +1 -0
  2207. skills/ppt-master/templates/icons/simple-icons/1panel.svg +1 -0
  2208. skills/ppt-master/templates/icons/simple-icons/1password.svg +1 -0
  2209. skills/ppt-master/templates/icons/simple-icons/2fas.svg +1 -0
  2210. skills/ppt-master/templates/icons/simple-icons/2k.svg +1 -0
  2211. skills/ppt-master/templates/icons/simple-icons/30secondsofcode.svg +1 -0
  2212. skills/ppt-master/templates/icons/simple-icons/365datascience.svg +1 -0
  2213. skills/ppt-master/templates/icons/simple-icons/3m.svg +1 -0
  2214. skills/ppt-master/templates/icons/simple-icons/42.svg +1 -0
  2215. skills/ppt-master/templates/icons/simple-icons/4chan.svg +1 -0
  2216. skills/ppt-master/templates/icons/simple-icons/4d.svg +1 -0
  2217. skills/ppt-master/templates/icons/simple-icons/500px.svg +1 -0
  2218. skills/ppt-master/templates/icons/simple-icons/7zip.svg +1 -0
  2219. skills/ppt-master/templates/icons/simple-icons/99designs.svg +1 -0
  2220. skills/ppt-master/templates/icons/simple-icons/9gag.svg +1 -0
  2221. skills/ppt-master/templates/icons/simple-icons/abb.svg +1 -0
  2222. skills/ppt-master/templates/icons/simple-icons/abbott.svg +1 -0
  2223. skills/ppt-master/templates/icons/simple-icons/abbrobotstudio.svg +1 -0
  2224. skills/ppt-master/templates/icons/simple-icons/abbvie.svg +1 -0
  2225. skills/ppt-master/templates/icons/simple-icons/abdownloadmanager.svg +1 -0
  2226. skills/ppt-master/templates/icons/simple-icons/aboutdotme.svg +1 -0
  2227. skills/ppt-master/templates/icons/simple-icons/abstract.svg +1 -0
  2228. skills/ppt-master/templates/icons/simple-icons/abusedotch.svg +1 -0
  2229. skills/ppt-master/templates/icons/simple-icons/academia.svg +1 -0
  2230. skills/ppt-master/templates/icons/simple-icons/accenture.svg +1 -0
  2231. skills/ppt-master/templates/icons/simple-icons/accusoft.svg +1 -0
  2232. skills/ppt-master/templates/icons/simple-icons/accuweather.svg +1 -0
  2233. skills/ppt-master/templates/icons/simple-icons/acer.svg +1 -0
  2234. skills/ppt-master/templates/icons/simple-icons/acm.svg +1 -0
  2235. skills/ppt-master/templates/icons/simple-icons/acode.svg +1 -0
  2236. skills/ppt-master/templates/icons/simple-icons/actigraph.svg +1 -0
  2237. skills/ppt-master/templates/icons/simple-icons/activeloop.svg +1 -0
  2238. skills/ppt-master/templates/icons/simple-icons/activision.svg +1 -0
  2239. skills/ppt-master/templates/icons/simple-icons/activitypub.svg +1 -0
  2240. skills/ppt-master/templates/icons/simple-icons/actix.svg +1 -0
  2241. skills/ppt-master/templates/icons/simple-icons/actualbudget.svg +1 -0
  2242. skills/ppt-master/templates/icons/simple-icons/acura.svg +1 -0
  2243. skills/ppt-master/templates/icons/simple-icons/ada.svg +1 -0
  2244. skills/ppt-master/templates/icons/simple-icons/adafruit.svg +1 -0
  2245. skills/ppt-master/templates/icons/simple-icons/adaway.svg +1 -0
  2246. skills/ppt-master/templates/icons/simple-icons/adblock.svg +1 -0
  2247. skills/ppt-master/templates/icons/simple-icons/adblockplus.svg +1 -0
  2248. skills/ppt-master/templates/icons/simple-icons/addydotio.svg +1 -0
  2249. skills/ppt-master/templates/icons/simple-icons/adguard.svg +1 -0
  2250. skills/ppt-master/templates/icons/simple-icons/adidas.svg +1 -0
  2251. skills/ppt-master/templates/icons/simple-icons/adminer.svg +1 -0
  2252. skills/ppt-master/templates/icons/simple-icons/adobe.svg +1 -0
  2253. skills/ppt-master/templates/icons/simple-icons/adobeacrobatreader.svg +1 -0
  2254. skills/ppt-master/templates/icons/simple-icons/adobeaftereffects.svg +1 -0
  2255. skills/ppt-master/templates/icons/simple-icons/adobeaudition.svg +1 -0
  2256. skills/ppt-master/templates/icons/simple-icons/adobecreativecloud.svg +1 -0
  2257. skills/ppt-master/templates/icons/simple-icons/adobedreamweaver.svg +1 -0
  2258. skills/ppt-master/templates/icons/simple-icons/adobefonts.svg +1 -0
  2259. skills/ppt-master/templates/icons/simple-icons/adobeillustrator.svg +1 -0
  2260. skills/ppt-master/templates/icons/simple-icons/adobeindesign.svg +1 -0
  2261. skills/ppt-master/templates/icons/simple-icons/adobelightroom.svg +1 -0
  2262. skills/ppt-master/templates/icons/simple-icons/adobelightroomclassic.svg +1 -0
  2263. skills/ppt-master/templates/icons/simple-icons/adobephotoshop.svg +1 -0
  2264. skills/ppt-master/templates/icons/simple-icons/adobepremierepro.svg +1 -0
  2265. skills/ppt-master/templates/icons/simple-icons/adobexd.svg +1 -0
  2266. skills/ppt-master/templates/icons/simple-icons/adonisjs.svg +1 -0
  2267. skills/ppt-master/templates/icons/simple-icons/adp.svg +1 -0
  2268. skills/ppt-master/templates/icons/simple-icons/adroll.svg +1 -0
  2269. skills/ppt-master/templates/icons/simple-icons/adventofcode.svg +1 -0
  2270. skills/ppt-master/templates/icons/simple-icons/adyen.svg +1 -0
  2271. skills/ppt-master/templates/icons/simple-icons/aegisauthenticator.svg +1 -0
  2272. skills/ppt-master/templates/icons/simple-icons/aerlingus.svg +1 -0
  2273. skills/ppt-master/templates/icons/simple-icons/aeroflot.svg +1 -0
  2274. skills/ppt-master/templates/icons/simple-icons/aeromexico.svg +1 -0
  2275. skills/ppt-master/templates/icons/simple-icons/aerospike.svg +1 -0
  2276. skills/ppt-master/templates/icons/simple-icons/aew.svg +1 -0
  2277. skills/ppt-master/templates/icons/simple-icons/afdian.svg +1 -0
  2278. skills/ppt-master/templates/icons/simple-icons/affine.svg +1 -0
  2279. skills/ppt-master/templates/icons/simple-icons/affinity.svg +1 -0
  2280. skills/ppt-master/templates/icons/simple-icons/affinitydesigner.svg +1 -0
  2281. skills/ppt-master/templates/icons/simple-icons/affinityphoto.svg +1 -0
  2282. skills/ppt-master/templates/icons/simple-icons/affinitypublisher.svg +1 -0
  2283. skills/ppt-master/templates/icons/simple-icons/aframe.svg +1 -0
  2284. skills/ppt-master/templates/icons/simple-icons/afterpay.svg +1 -0
  2285. skills/ppt-master/templates/icons/simple-icons/aftership.svg +1 -0
  2286. skills/ppt-master/templates/icons/simple-icons/agora.svg +1 -0
  2287. skills/ppt-master/templates/icons/simple-icons/aib.svg +1 -0
  2288. skills/ppt-master/templates/icons/simple-icons/aidungeon.svg +1 -0
  2289. skills/ppt-master/templates/icons/simple-icons/aiohttp.svg +1 -0
  2290. skills/ppt-master/templates/icons/simple-icons/aiqfome.svg +1 -0
  2291. skills/ppt-master/templates/icons/simple-icons/airasia.svg +1 -0
  2292. skills/ppt-master/templates/icons/simple-icons/airbnb.svg +1 -0
  2293. skills/ppt-master/templates/icons/simple-icons/airbrake.svg +1 -0
  2294. skills/ppt-master/templates/icons/simple-icons/airbus.svg +1 -0
  2295. skills/ppt-master/templates/icons/simple-icons/airbyte.svg +1 -0
  2296. skills/ppt-master/templates/icons/simple-icons/aircall.svg +1 -0
  2297. skills/ppt-master/templates/icons/simple-icons/aircanada.svg +1 -0
  2298. skills/ppt-master/templates/icons/simple-icons/airchina.svg +1 -0
  2299. skills/ppt-master/templates/icons/simple-icons/airfrance.svg +1 -0
  2300. skills/ppt-master/templates/icons/simple-icons/airindia.svg +1 -0
  2301. skills/ppt-master/templates/icons/simple-icons/airplayaudio.svg +1 -0
  2302. skills/ppt-master/templates/icons/simple-icons/airplayvideo.svg +1 -0
  2303. skills/ppt-master/templates/icons/simple-icons/airserbia.svg +1 -0
  2304. skills/ppt-master/templates/icons/simple-icons/airtable.svg +1 -0
  2305. skills/ppt-master/templates/icons/simple-icons/airtel.svg +1 -0
  2306. skills/ppt-master/templates/icons/simple-icons/airtransat.svg +1 -0
  2307. skills/ppt-master/templates/icons/simple-icons/ajv.svg +1 -0
  2308. skills/ppt-master/templates/icons/simple-icons/akamai.svg +1 -0
  2309. skills/ppt-master/templates/icons/simple-icons/akasaair.svg +1 -0
  2310. skills/ppt-master/templates/icons/simple-icons/akaunting.svg +1 -0
  2311. skills/ppt-master/templates/icons/simple-icons/akiflow.svg +1 -0
  2312. skills/ppt-master/templates/icons/simple-icons/alacritty.svg +1 -0
  2313. skills/ppt-master/templates/icons/simple-icons/alamy.svg +1 -0
  2314. skills/ppt-master/templates/icons/simple-icons/albertheijn.svg +1 -0
  2315. skills/ppt-master/templates/icons/simple-icons/alby.svg +1 -0
  2316. skills/ppt-master/templates/icons/simple-icons/alchemy.svg +1 -0
  2317. skills/ppt-master/templates/icons/simple-icons/aldinord.svg +1 -0
  2318. skills/ppt-master/templates/icons/simple-icons/aldisud.svg +1 -0
  2319. skills/ppt-master/templates/icons/simple-icons/alfaromeo.svg +1 -0
  2320. skills/ppt-master/templates/icons/simple-icons/alfred.svg +1 -0
  2321. skills/ppt-master/templates/icons/simple-icons/algolia.svg +1 -0
  2322. skills/ppt-master/templates/icons/simple-icons/algorand.svg +1 -0
  2323. skills/ppt-master/templates/icons/simple-icons/alibabacloud.svg +1 -0
  2324. skills/ppt-master/templates/icons/simple-icons/alibabadotcom.svg +1 -0
  2325. skills/ppt-master/templates/icons/simple-icons/alienware.svg +1 -0
  2326. skills/ppt-master/templates/icons/simple-icons/aliexpress.svg +1 -0
  2327. skills/ppt-master/templates/icons/simple-icons/alipay.svg +1 -0
  2328. skills/ppt-master/templates/icons/simple-icons/alist.svg +1 -0
  2329. skills/ppt-master/templates/icons/simple-icons/allegro.svg +1 -0
  2330. skills/ppt-master/templates/icons/simple-icons/alliedmodders.svg +1 -0
  2331. skills/ppt-master/templates/icons/simple-icons/allocine.svg +1 -0
  2332. skills/ppt-master/templates/icons/simple-icons/alltrails.svg +1 -0
  2333. skills/ppt-master/templates/icons/simple-icons/almalinux.svg +1 -0
  2334. skills/ppt-master/templates/icons/simple-icons/alpinedotjs.svg +1 -0
  2335. skills/ppt-master/templates/icons/simple-icons/alpinelinux.svg +1 -0
  2336. skills/ppt-master/templates/icons/simple-icons/alternativeto.svg +1 -0
  2337. skills/ppt-master/templates/icons/simple-icons/alteryx.svg +1 -0
  2338. skills/ppt-master/templates/icons/simple-icons/altiumdesigner.svg +1 -0
  2339. skills/ppt-master/templates/icons/simple-icons/alwaysdata.svg +1 -0
  2340. skills/ppt-master/templates/icons/simple-icons/alx.svg +1 -0
  2341. skills/ppt-master/templates/icons/simple-icons/amazon.svg +1 -0
  2342. skills/ppt-master/templates/icons/simple-icons/amazonalexa.svg +1 -0
  2343. skills/ppt-master/templates/icons/simple-icons/amazonapigateway.svg +1 -0
  2344. skills/ppt-master/templates/icons/simple-icons/amazoncloudwatch.svg +1 -0
  2345. skills/ppt-master/templates/icons/simple-icons/amazoncognito.svg +1 -0
  2346. skills/ppt-master/templates/icons/simple-icons/amazondocumentdb.svg +1 -0
  2347. skills/ppt-master/templates/icons/simple-icons/amazondynamodb.svg +1 -0
  2348. skills/ppt-master/templates/icons/simple-icons/amazonec2.svg +1 -0
  2349. skills/ppt-master/templates/icons/simple-icons/amazonecs.svg +1 -0
  2350. skills/ppt-master/templates/icons/simple-icons/amazoneks.svg +1 -0
  2351. skills/ppt-master/templates/icons/simple-icons/amazonelasticache.svg +1 -0
  2352. skills/ppt-master/templates/icons/simple-icons/amazonfiretv.svg +1 -0
  2353. skills/ppt-master/templates/icons/simple-icons/amazongames.svg +1 -0
  2354. skills/ppt-master/templates/icons/simple-icons/amazoniam.svg +1 -0
  2355. skills/ppt-master/templates/icons/simple-icons/amazonlumberyard.svg +1 -0
  2356. skills/ppt-master/templates/icons/simple-icons/amazonluna.svg +1 -0
  2357. skills/ppt-master/templates/icons/simple-icons/amazonmusic.svg +1 -0
  2358. skills/ppt-master/templates/icons/simple-icons/amazonpay.svg +1 -0
  2359. skills/ppt-master/templates/icons/simple-icons/amazonprime.svg +1 -0
  2360. skills/ppt-master/templates/icons/simple-icons/amazonrds.svg +1 -0
  2361. skills/ppt-master/templates/icons/simple-icons/amazonredshift.svg +1 -0
  2362. skills/ppt-master/templates/icons/simple-icons/amazonroute53.svg +1 -0
  2363. skills/ppt-master/templates/icons/simple-icons/amazons3.svg +1 -0
  2364. skills/ppt-master/templates/icons/simple-icons/amazonsimpleemailservice.svg +1 -0
  2365. skills/ppt-master/templates/icons/simple-icons/amazonsqs.svg +1 -0
  2366. skills/ppt-master/templates/icons/simple-icons/amazonwebservices.svg +1 -0
  2367. skills/ppt-master/templates/icons/simple-icons/amd.svg +1 -0
  2368. skills/ppt-master/templates/icons/simple-icons/ameba.svg +1 -0
  2369. skills/ppt-master/templates/icons/simple-icons/americanairlines.svg +1 -0
  2370. skills/ppt-master/templates/icons/simple-icons/americanexpress.svg +1 -0
  2371. skills/ppt-master/templates/icons/simple-icons/amg.svg +1 -0
  2372. skills/ppt-master/templates/icons/simple-icons/amp.svg +1 -0
  2373. skills/ppt-master/templates/icons/simple-icons/amul.svg +1 -0
  2374. skills/ppt-master/templates/icons/simple-icons/ana.svg +1 -0
  2375. skills/ppt-master/templates/icons/simple-icons/anaconda.svg +1 -0
  2376. skills/ppt-master/templates/icons/simple-icons/analogue.svg +1 -0
  2377. skills/ppt-master/templates/icons/simple-icons/andela.svg +1 -0
  2378. skills/ppt-master/templates/icons/simple-icons/android.svg +1 -0
  2379. skills/ppt-master/templates/icons/simple-icons/androidauto.svg +1 -0
  2380. skills/ppt-master/templates/icons/simple-icons/androidstudio.svg +1 -0
  2381. skills/ppt-master/templates/icons/simple-icons/angular.svg +1 -0
  2382. skills/ppt-master/templates/icons/simple-icons/anichart.svg +1 -0
  2383. skills/ppt-master/templates/icons/simple-icons/anilist.svg +1 -0
  2384. skills/ppt-master/templates/icons/simple-icons/animalplanet.svg +1 -0
  2385. skills/ppt-master/templates/icons/simple-icons/animedotjs.svg +1 -0
  2386. skills/ppt-master/templates/icons/simple-icons/ankermake.svg +1 -0
  2387. skills/ppt-master/templates/icons/simple-icons/anki.svg +1 -0
  2388. skills/ppt-master/templates/icons/simple-icons/ansible.svg +1 -0
  2389. skills/ppt-master/templates/icons/simple-icons/answer.svg +1 -0
  2390. skills/ppt-master/templates/icons/simple-icons/ansys.svg +1 -0
  2391. skills/ppt-master/templates/icons/simple-icons/anta.svg +1 -0
  2392. skills/ppt-master/templates/icons/simple-icons/antdesign.svg +1 -0
  2393. skills/ppt-master/templates/icons/simple-icons/antena3.svg +1 -0
  2394. skills/ppt-master/templates/icons/simple-icons/antennapod.svg +1 -0
  2395. skills/ppt-master/templates/icons/simple-icons/anthropic.svg +1 -0
  2396. skills/ppt-master/templates/icons/simple-icons/antv.svg +1 -0
  2397. skills/ppt-master/templates/icons/simple-icons/anycubic.svg +1 -0
  2398. skills/ppt-master/templates/icons/simple-icons/anydesk.svg +1 -0
  2399. skills/ppt-master/templates/icons/simple-icons/anytype.svg +1 -0
  2400. skills/ppt-master/templates/icons/simple-icons/aol.svg +1 -0
  2401. skills/ppt-master/templates/icons/simple-icons/apache.svg +1 -0
  2402. skills/ppt-master/templates/icons/simple-icons/apacheairflow.svg +1 -0
  2403. skills/ppt-master/templates/icons/simple-icons/apacheant.svg +1 -0
  2404. skills/ppt-master/templates/icons/simple-icons/apacheavro.svg +1 -0
  2405. skills/ppt-master/templates/icons/simple-icons/apachecassandra.svg +1 -0
  2406. skills/ppt-master/templates/icons/simple-icons/apachecloudstack.svg +1 -0
  2407. skills/ppt-master/templates/icons/simple-icons/apachecordova.svg +1 -0
  2408. skills/ppt-master/templates/icons/simple-icons/apachecouchdb.svg +1 -0
  2409. skills/ppt-master/templates/icons/simple-icons/apachedolphinscheduler.svg +1 -0
  2410. skills/ppt-master/templates/icons/simple-icons/apachedoris.svg +1 -0
  2411. skills/ppt-master/templates/icons/simple-icons/apachedruid.svg +1 -0
  2412. skills/ppt-master/templates/icons/simple-icons/apacheecharts.svg +1 -0
  2413. skills/ppt-master/templates/icons/simple-icons/apacheflink.svg +1 -0
  2414. skills/ppt-master/templates/icons/simple-icons/apachefreemarker.svg +1 -0
  2415. skills/ppt-master/templates/icons/simple-icons/apachegroovy.svg +1 -0
  2416. skills/ppt-master/templates/icons/simple-icons/apacheguacamole.svg +1 -0
  2417. skills/ppt-master/templates/icons/simple-icons/apachehadoop.svg +1 -0
  2418. skills/ppt-master/templates/icons/simple-icons/apachehbase.svg +1 -0
  2419. skills/ppt-master/templates/icons/simple-icons/apachehive.svg +1 -0
  2420. skills/ppt-master/templates/icons/simple-icons/apachejmeter.svg +1 -0
  2421. skills/ppt-master/templates/icons/simple-icons/apachekafka.svg +1 -0
  2422. skills/ppt-master/templates/icons/simple-icons/apachekylin.svg +1 -0
  2423. skills/ppt-master/templates/icons/simple-icons/apachelucene.svg +1 -0
  2424. skills/ppt-master/templates/icons/simple-icons/apachemaven.svg +1 -0
  2425. skills/ppt-master/templates/icons/simple-icons/apachenetbeanside.svg +1 -0
  2426. skills/ppt-master/templates/icons/simple-icons/apachenifi.svg +1 -0
  2427. skills/ppt-master/templates/icons/simple-icons/apacheopenoffice.svg +1 -0
  2428. skills/ppt-master/templates/icons/simple-icons/apacheparquet.svg +1 -0
  2429. skills/ppt-master/templates/icons/simple-icons/apachepdfbox.svg +1 -0
  2430. skills/ppt-master/templates/icons/simple-icons/apachepulsar.svg +1 -0
  2431. skills/ppt-master/templates/icons/simple-icons/apacherocketmq.svg +1 -0
  2432. skills/ppt-master/templates/icons/simple-icons/apachesolr.svg +1 -0
  2433. skills/ppt-master/templates/icons/simple-icons/apachespark.svg +1 -0
  2434. skills/ppt-master/templates/icons/simple-icons/apachestorm.svg +1 -0
  2435. skills/ppt-master/templates/icons/simple-icons/apachesuperset.svg +1 -0
  2436. skills/ppt-master/templates/icons/simple-icons/apachetomcat.svg +1 -0
  2437. skills/ppt-master/templates/icons/simple-icons/aparat.svg +1 -0
  2438. skills/ppt-master/templates/icons/simple-icons/apifox.svg +1 -0
  2439. skills/ppt-master/templates/icons/simple-icons/apmterminals.svg +1 -0
  2440. skills/ppt-master/templates/icons/simple-icons/apollographql.svg +1 -0
  2441. skills/ppt-master/templates/icons/simple-icons/apostrophe.svg +1 -0
  2442. skills/ppt-master/templates/icons/simple-icons/appgallery.svg +1 -0
  2443. skills/ppt-master/templates/icons/simple-icons/appian.svg +1 -0
  2444. skills/ppt-master/templates/icons/simple-icons/appimage.svg +1 -0
  2445. skills/ppt-master/templates/icons/simple-icons/appium.svg +1 -0
  2446. skills/ppt-master/templates/icons/simple-icons/apple.svg +1 -0
  2447. skills/ppt-master/templates/icons/simple-icons/applearcade.svg +1 -0
  2448. skills/ppt-master/templates/icons/simple-icons/applemusic.svg +1 -0
  2449. skills/ppt-master/templates/icons/simple-icons/applenews.svg +1 -0
  2450. skills/ppt-master/templates/icons/simple-icons/applepay.svg +1 -0
  2451. skills/ppt-master/templates/icons/simple-icons/applepodcasts.svg +1 -0
  2452. skills/ppt-master/templates/icons/simple-icons/appletv.svg +1 -0
  2453. skills/ppt-master/templates/icons/simple-icons/appmanager.svg +1 -0
  2454. skills/ppt-master/templates/icons/simple-icons/appsignal.svg +1 -0
  2455. skills/ppt-master/templates/icons/simple-icons/appsmith.svg +1 -0
  2456. skills/ppt-master/templates/icons/simple-icons/appstore.svg +1 -0
  2457. skills/ppt-master/templates/icons/simple-icons/appveyor.svg +1 -0
  2458. skills/ppt-master/templates/icons/simple-icons/appwrite.svg +1 -0
  2459. skills/ppt-master/templates/icons/simple-icons/aqua.svg +1 -0
  2460. skills/ppt-master/templates/icons/simple-icons/aral.svg +1 -0
  2461. skills/ppt-master/templates/icons/simple-icons/arangodb.svg +1 -0
  2462. skills/ppt-master/templates/icons/simple-icons/arc.svg +1 -0
  2463. skills/ppt-master/templates/icons/simple-icons/arcgis.svg +1 -0
  2464. skills/ppt-master/templates/icons/simple-icons/archicad.svg +1 -0
  2465. skills/ppt-master/templates/icons/simple-icons/archiveofourown.svg +1 -0
  2466. skills/ppt-master/templates/icons/simple-icons/archlinux.svg +1 -0
  2467. skills/ppt-master/templates/icons/simple-icons/ardour.svg +1 -0
  2468. skills/ppt-master/templates/icons/simple-icons/arduino.svg +1 -0
  2469. skills/ppt-master/templates/icons/simple-icons/argo.svg +1 -0
  2470. skills/ppt-master/templates/icons/simple-icons/argos.svg +1 -0
  2471. skills/ppt-master/templates/icons/simple-icons/ariakit.svg +1 -0
  2472. skills/ppt-master/templates/icons/simple-icons/arkecosystem.svg +1 -0
  2473. skills/ppt-master/templates/icons/simple-icons/arlo.svg +1 -0
  2474. skills/ppt-master/templates/icons/simple-icons/arm.svg +1 -0
  2475. skills/ppt-master/templates/icons/simple-icons/armkeil.svg +1 -0
  2476. skills/ppt-master/templates/icons/simple-icons/arstechnica.svg +1 -0
  2477. skills/ppt-master/templates/icons/simple-icons/artifacthub.svg +1 -0
  2478. skills/ppt-master/templates/icons/simple-icons/artixlinux.svg +1 -0
  2479. skills/ppt-master/templates/icons/simple-icons/artstation.svg +1 -0
  2480. skills/ppt-master/templates/icons/simple-icons/arxiv.svg +1 -0
  2481. skills/ppt-master/templates/icons/simple-icons/asahilinux.svg +1 -0
  2482. skills/ppt-master/templates/icons/simple-icons/asana.svg +1 -0
  2483. skills/ppt-master/templates/icons/simple-icons/asciidoctor.svg +1 -0
  2484. skills/ppt-master/templates/icons/simple-icons/asciinema.svg +1 -0
  2485. skills/ppt-master/templates/icons/simple-icons/asda.svg +1 -0
  2486. skills/ppt-master/templates/icons/simple-icons/aseprite.svg +1 -0
  2487. skills/ppt-master/templates/icons/simple-icons/askfm.svg +1 -0
  2488. skills/ppt-master/templates/icons/simple-icons/assemblyscript.svg +1 -0
  2489. skills/ppt-master/templates/icons/simple-icons/asterisk.svg +1 -0
  2490. skills/ppt-master/templates/icons/simple-icons/astonmartin.svg +1 -0
  2491. skills/ppt-master/templates/icons/simple-icons/astra.svg +1 -0
  2492. skills/ppt-master/templates/icons/simple-icons/astral.svg +1 -0
  2493. skills/ppt-master/templates/icons/simple-icons/astro.svg +1 -0
  2494. skills/ppt-master/templates/icons/simple-icons/asus.svg +1 -0
  2495. skills/ppt-master/templates/icons/simple-icons/atandt.svg +1 -0
  2496. skills/ppt-master/templates/icons/simple-icons/atari.svg +1 -0
  2497. skills/ppt-master/templates/icons/simple-icons/atlasos.svg +1 -0
  2498. skills/ppt-master/templates/icons/simple-icons/atlassian.svg +1 -0
  2499. skills/ppt-master/templates/icons/simple-icons/auchan.svg +1 -0
  2500. skills/ppt-master/templates/icons/simple-icons/audacity.svg +1 -0
  2501. skills/ppt-master/templates/icons/simple-icons/audi.svg +1 -0
  2502. skills/ppt-master/templates/icons/simple-icons/audible.svg +1 -0
  2503. skills/ppt-master/templates/icons/simple-icons/audiobookshelf.svg +1 -0
  2504. skills/ppt-master/templates/icons/simple-icons/audioboom.svg +1 -0
  2505. skills/ppt-master/templates/icons/simple-icons/audiomack.svg +1 -0
  2506. skills/ppt-master/templates/icons/simple-icons/audiotechnica.svg +1 -0
  2507. skills/ppt-master/templates/icons/simple-icons/aurelia.svg +1 -0
  2508. skills/ppt-master/templates/icons/simple-icons/autentique.svg +1 -0
  2509. skills/ppt-master/templates/icons/simple-icons/auth0.svg +1 -0
  2510. skills/ppt-master/templates/icons/simple-icons/authelia.svg +1 -0
  2511. skills/ppt-master/templates/icons/simple-icons/authentik.svg +1 -0
  2512. skills/ppt-master/templates/icons/simple-icons/authy.svg +1 -0
  2513. skills/ppt-master/templates/icons/simple-icons/autocad.svg +1 -0
  2514. skills/ppt-master/templates/icons/simple-icons/autocannon.svg +1 -0
  2515. skills/ppt-master/templates/icons/simple-icons/autodesk.svg +1 -0
  2516. skills/ppt-master/templates/icons/simple-icons/autodeskmaya.svg +1 -0
  2517. skills/ppt-master/templates/icons/simple-icons/autodeskrevit.svg +1 -0
  2518. skills/ppt-master/templates/icons/simple-icons/autohotkey.svg +1 -0
  2519. skills/ppt-master/templates/icons/simple-icons/autoit.svg +1 -0
  2520. skills/ppt-master/templates/icons/simple-icons/automattic.svg +1 -0
  2521. skills/ppt-master/templates/icons/simple-icons/autoprefixer.svg +1 -0
  2522. skills/ppt-master/templates/icons/simple-icons/autozone.svg +1 -0
  2523. skills/ppt-master/templates/icons/simple-icons/avajs.svg +1 -0
  2524. skills/ppt-master/templates/icons/simple-icons/avaloniaui.svg +1 -0
  2525. skills/ppt-master/templates/icons/simple-icons/avast.svg +1 -0
  2526. skills/ppt-master/templates/icons/simple-icons/avianca.svg +1 -0
  2527. skills/ppt-master/templates/icons/simple-icons/avira.svg +1 -0
  2528. skills/ppt-master/templates/icons/simple-icons/avm.svg +1 -0
  2529. skills/ppt-master/templates/icons/simple-icons/awesomelists.svg +1 -0
  2530. skills/ppt-master/templates/icons/simple-icons/awesomewm.svg +1 -0
  2531. skills/ppt-master/templates/icons/simple-icons/awsamplify.svg +1 -0
  2532. skills/ppt-master/templates/icons/simple-icons/awselasticloadbalancing.svg +1 -0
  2533. skills/ppt-master/templates/icons/simple-icons/awsfargate.svg +1 -0
  2534. skills/ppt-master/templates/icons/simple-icons/awslambda.svg +1 -0
  2535. skills/ppt-master/templates/icons/simple-icons/awsorganizations.svg +1 -0
  2536. skills/ppt-master/templates/icons/simple-icons/awssecretsmanager.svg +1 -0
  2537. skills/ppt-master/templates/icons/simple-icons/awwwards.svg +1 -0
  2538. skills/ppt-master/templates/icons/simple-icons/axios.svg +1 -0
  2539. skills/ppt-master/templates/icons/simple-icons/axisbank.svg +1 -0
  2540. skills/ppt-master/templates/icons/simple-icons/azureartifacts.svg +1 -0
  2541. skills/ppt-master/templates/icons/simple-icons/azuredataexplorer.svg +1 -0
  2542. skills/ppt-master/templates/icons/simple-icons/azuredevops.svg +1 -0
  2543. skills/ppt-master/templates/icons/simple-icons/azurefunctions.svg +1 -0
  2544. skills/ppt-master/templates/icons/simple-icons/azurepipelines.svg +1 -0
  2545. skills/ppt-master/templates/icons/simple-icons/b4x.svg +1 -0
  2546. skills/ppt-master/templates/icons/simple-icons/babel.svg +1 -0
  2547. skills/ppt-master/templates/icons/simple-icons/babelio.svg +1 -0
  2548. skills/ppt-master/templates/icons/simple-icons/babylondotjs.svg +1 -0
  2549. skills/ppt-master/templates/icons/simple-icons/backblaze.svg +1 -0
  2550. skills/ppt-master/templates/icons/simple-icons/backbone.svg +1 -0
  2551. skills/ppt-master/templates/icons/simple-icons/backbonedotjs.svg +1 -0
  2552. skills/ppt-master/templates/icons/simple-icons/backendless.svg +1 -0
  2553. skills/ppt-master/templates/icons/simple-icons/backstage.svg +1 -0
  2554. skills/ppt-master/templates/icons/simple-icons/backstage_casting.svg +1 -0
  2555. skills/ppt-master/templates/icons/simple-icons/badoo.svg +1 -0
  2556. skills/ppt-master/templates/icons/simple-icons/baidu.svg +1 -0
  2557. skills/ppt-master/templates/icons/simple-icons/bakalari.svg +1 -0
  2558. skills/ppt-master/templates/icons/simple-icons/bamboo.svg +1 -0
  2559. skills/ppt-master/templates/icons/simple-icons/bambulab.svg +1 -0
  2560. skills/ppt-master/templates/icons/simple-icons/bandcamp.svg +1 -0
  2561. skills/ppt-master/templates/icons/simple-icons/bandlab.svg +1 -0
  2562. skills/ppt-master/templates/icons/simple-icons/bandrautomation.svg +1 -0
  2563. skills/ppt-master/templates/icons/simple-icons/bandsintown.svg +1 -0
  2564. skills/ppt-master/templates/icons/simple-icons/bankofamerica.svg +1 -0
  2565. skills/ppt-master/templates/icons/simple-icons/barclays.svg +1 -0
  2566. skills/ppt-master/templates/icons/simple-icons/baremetrics.svg +1 -0
  2567. skills/ppt-master/templates/icons/simple-icons/barmenia.svg +1 -0
  2568. skills/ppt-master/templates/icons/simple-icons/basecamp.svg +1 -0
  2569. skills/ppt-master/templates/icons/simple-icons/baserow.svg +1 -0
  2570. skills/ppt-master/templates/icons/simple-icons/baseui.svg +1 -0
  2571. skills/ppt-master/templates/icons/simple-icons/basicattentiontoken.svg +1 -0
  2572. skills/ppt-master/templates/icons/simple-icons/bastyon.svg +1 -0
  2573. skills/ppt-master/templates/icons/simple-icons/bat.svg +1 -0
  2574. skills/ppt-master/templates/icons/simple-icons/bata.svg +1 -0
  2575. skills/ppt-master/templates/icons/simple-icons/battledotnet.svg +1 -0
  2576. skills/ppt-master/templates/icons/simple-icons/bazel.svg +1 -0
  2577. skills/ppt-master/templates/icons/simple-icons/beatport.svg +1 -0
  2578. skills/ppt-master/templates/icons/simple-icons/beats.svg +1 -0
  2579. skills/ppt-master/templates/icons/simple-icons/beatsbydre.svg +1 -0
  2580. skills/ppt-master/templates/icons/simple-icons/beatstars.svg +1 -0
  2581. skills/ppt-master/templates/icons/simple-icons/beekeeperstudio.svg +1 -0
  2582. skills/ppt-master/templates/icons/simple-icons/behance.svg +1 -0
  2583. skills/ppt-master/templates/icons/simple-icons/beijingsubway.svg +1 -0
  2584. skills/ppt-master/templates/icons/simple-icons/bem.svg +1 -0
  2585. skills/ppt-master/templates/icons/simple-icons/bentley.svg +1 -0
  2586. skills/ppt-master/templates/icons/simple-icons/bento.svg +1 -0
  2587. skills/ppt-master/templates/icons/simple-icons/bentobox.svg +1 -0
  2588. skills/ppt-master/templates/icons/simple-icons/bentoml.svg +1 -0
  2589. skills/ppt-master/templates/icons/simple-icons/bereal.svg +1 -0
  2590. skills/ppt-master/templates/icons/simple-icons/betfair.svg +1 -0
  2591. skills/ppt-master/templates/icons/simple-icons/betterauth.svg +1 -0
  2592. skills/ppt-master/templates/icons/simple-icons/betterdiscord.svg +1 -0
  2593. skills/ppt-master/templates/icons/simple-icons/betterstack.svg +1 -0
  2594. skills/ppt-master/templates/icons/simple-icons/bevy.svg +1 -0
  2595. skills/ppt-master/templates/icons/simple-icons/bigbasket.svg +1 -0
  2596. skills/ppt-master/templates/icons/simple-icons/bigbluebutton.svg +1 -0
  2597. skills/ppt-master/templates/icons/simple-icons/bigcartel.svg +1 -0
  2598. skills/ppt-master/templates/icons/simple-icons/bigcommerce.svg +1 -0
  2599. skills/ppt-master/templates/icons/simple-icons/bilibili.svg +1 -0
  2600. skills/ppt-master/templates/icons/simple-icons/billboard.svg +1 -0
  2601. skills/ppt-master/templates/icons/simple-icons/bim.svg +1 -0
  2602. skills/ppt-master/templates/icons/simple-icons/binance.svg +1 -0
  2603. skills/ppt-master/templates/icons/simple-icons/bioconductor.svg +1 -0
  2604. skills/ppt-master/templates/icons/simple-icons/biolink.svg +1 -0
  2605. skills/ppt-master/templates/icons/simple-icons/biome.svg +1 -0
  2606. skills/ppt-master/templates/icons/simple-icons/bisecthosting.svg +1 -0
  2607. skills/ppt-master/templates/icons/simple-icons/bit.svg +1 -0
  2608. skills/ppt-master/templates/icons/simple-icons/bitbucket.svg +1 -0
  2609. skills/ppt-master/templates/icons/simple-icons/bitcoin.svg +1 -0
  2610. skills/ppt-master/templates/icons/simple-icons/bitcoincash.svg +1 -0
  2611. skills/ppt-master/templates/icons/simple-icons/bitcoinsv.svg +1 -0
  2612. skills/ppt-master/templates/icons/simple-icons/bitcomet.svg +1 -0
  2613. skills/ppt-master/templates/icons/simple-icons/bitdefender.svg +1 -0
  2614. skills/ppt-master/templates/icons/simple-icons/bitly.svg +1 -0
  2615. skills/ppt-master/templates/icons/simple-icons/bitrise.svg +1 -0
  2616. skills/ppt-master/templates/icons/simple-icons/bitsy.svg +1 -0
  2617. skills/ppt-master/templates/icons/simple-icons/bittorrent.svg +1 -0
  2618. skills/ppt-master/templates/icons/simple-icons/bitwarden.svg +1 -0
  2619. skills/ppt-master/templates/icons/simple-icons/bitwig.svg +1 -0
  2620. skills/ppt-master/templates/icons/simple-icons/black.svg +1 -0
  2621. skills/ppt-master/templates/icons/simple-icons/blackberry.svg +1 -0
  2622. skills/ppt-master/templates/icons/simple-icons/blackmagicdesign.svg +1 -0
  2623. skills/ppt-master/templates/icons/simple-icons/blazemeter.svg +1 -0
  2624. skills/ppt-master/templates/icons/simple-icons/blazor.svg +1 -0
  2625. skills/ppt-master/templates/icons/simple-icons/blender.svg +1 -0
  2626. skills/ppt-master/templates/icons/simple-icons/blibli.svg +1 -0
  2627. skills/ppt-master/templates/icons/simple-icons/blockbench.svg +1 -0
  2628. skills/ppt-master/templates/icons/simple-icons/blockchaindotcom.svg +1 -0
  2629. skills/ppt-master/templates/icons/simple-icons/blogger.svg +1 -0
  2630. skills/ppt-master/templates/icons/simple-icons/bloglovin.svg +1 -0
  2631. skills/ppt-master/templates/icons/simple-icons/blueprint.svg +1 -0
  2632. skills/ppt-master/templates/icons/simple-icons/bluesky.svg +1 -0
  2633. skills/ppt-master/templates/icons/simple-icons/bluesound.svg +1 -0
  2634. skills/ppt-master/templates/icons/simple-icons/bluetooth.svg +1 -0
  2635. skills/ppt-master/templates/icons/simple-icons/bmcsoftware.svg +1 -0
  2636. skills/ppt-master/templates/icons/simple-icons/bmw.svg +1 -0
  2637. skills/ppt-master/templates/icons/simple-icons/bnbchain.svg +1 -0
  2638. skills/ppt-master/templates/icons/simple-icons/boardgamegeek.svg +1 -0
  2639. skills/ppt-master/templates/icons/simple-icons/boat.svg +1 -0
  2640. skills/ppt-master/templates/icons/simple-icons/boehringeringelheim.svg +1 -0
  2641. skills/ppt-master/templates/icons/simple-icons/boeing.svg +1 -0
  2642. skills/ppt-master/templates/icons/simple-icons/bohemiainteractive.svg +1 -0
  2643. skills/ppt-master/templates/icons/simple-icons/bombardier.svg +1 -0
  2644. skills/ppt-master/templates/icons/simple-icons/bookalope.svg +1 -0
  2645. skills/ppt-master/templates/icons/simple-icons/bookbub.svg +1 -0
  2646. skills/ppt-master/templates/icons/simple-icons/bookingdotcom.svg +1 -0
  2647. skills/ppt-master/templates/icons/simple-icons/bookmeter.svg +1 -0
  2648. skills/ppt-master/templates/icons/simple-icons/bookmyshow.svg +1 -0
  2649. skills/ppt-master/templates/icons/simple-icons/bookstack.svg +1 -0
  2650. skills/ppt-master/templates/icons/simple-icons/boost.svg +1 -0
  2651. skills/ppt-master/templates/icons/simple-icons/boosty.svg +1 -0
  2652. skills/ppt-master/templates/icons/simple-icons/boots.svg +1 -0
  2653. skills/ppt-master/templates/icons/simple-icons/bootstrap.svg +1 -0
  2654. skills/ppt-master/templates/icons/simple-icons/borgbackup.svg +1 -0
  2655. skills/ppt-master/templates/icons/simple-icons/bosch.svg +1 -0
  2656. skills/ppt-master/templates/icons/simple-icons/bose.svg +1 -0
  2657. skills/ppt-master/templates/icons/simple-icons/botblecms.svg +1 -0
  2658. skills/ppt-master/templates/icons/simple-icons/boulanger.svg +1 -0
  2659. skills/ppt-master/templates/icons/simple-icons/bower.svg +1 -0
  2660. skills/ppt-master/templates/icons/simple-icons/box.svg +1 -0
  2661. skills/ppt-master/templates/icons/simple-icons/boxysvg.svg +1 -0
  2662. skills/ppt-master/templates/icons/simple-icons/braintree.svg +1 -0
  2663. skills/ppt-master/templates/icons/simple-icons/braintrust.svg +1 -0
  2664. skills/ppt-master/templates/icons/simple-icons/brandfetch.svg +1 -0
  2665. skills/ppt-master/templates/icons/simple-icons/brandfolder.svg +1 -0
  2666. skills/ppt-master/templates/icons/simple-icons/brave.svg +1 -0
  2667. skills/ppt-master/templates/icons/simple-icons/breaker.svg +1 -0
  2668. skills/ppt-master/templates/icons/simple-icons/brenntag.svg +1 -0
  2669. skills/ppt-master/templates/icons/simple-icons/brevo.svg +1 -0
  2670. skills/ppt-master/templates/icons/simple-icons/brex.svg +1 -0
  2671. skills/ppt-master/templates/icons/simple-icons/bricks.svg +1 -0
  2672. skills/ppt-master/templates/icons/simple-icons/britishairways.svg +1 -0
  2673. skills/ppt-master/templates/icons/simple-icons/broadcom.svg +1 -0
  2674. skills/ppt-master/templates/icons/simple-icons/bruno.svg +1 -0
  2675. skills/ppt-master/templates/icons/simple-icons/bsd.svg +1 -0
  2676. skills/ppt-master/templates/icons/simple-icons/bspwm.svg +1 -0
  2677. skills/ppt-master/templates/icons/simple-icons/bt.svg +1 -0
  2678. skills/ppt-master/templates/icons/simple-icons/buddy.svg +1 -0
  2679. skills/ppt-master/templates/icons/simple-icons/budibase.svg +1 -0
  2680. skills/ppt-master/templates/icons/simple-icons/buefy.svg +1 -0
  2681. skills/ppt-master/templates/icons/simple-icons/buffer.svg +1 -0
  2682. skills/ppt-master/templates/icons/simple-icons/bugatti.svg +1 -0
  2683. skills/ppt-master/templates/icons/simple-icons/bugcrowd.svg +1 -0
  2684. skills/ppt-master/templates/icons/simple-icons/bugsnag.svg +1 -0
  2685. skills/ppt-master/templates/icons/simple-icons/buhl.svg +1 -0
  2686. skills/ppt-master/templates/icons/simple-icons/buildkite.svg +1 -0
  2687. skills/ppt-master/templates/icons/simple-icons/builtbybit.svg +1 -0
  2688. skills/ppt-master/templates/icons/simple-icons/bukalapak.svg +1 -0
  2689. skills/ppt-master/templates/icons/simple-icons/bulma.svg +1 -0
  2690. skills/ppt-master/templates/icons/simple-icons/bun.svg +1 -0
  2691. skills/ppt-master/templates/icons/simple-icons/bungie.svg +1 -0
  2692. skills/ppt-master/templates/icons/simple-icons/bunnydotnet.svg +1 -0
  2693. skills/ppt-master/templates/icons/simple-icons/bunq.svg +1 -0
  2694. skills/ppt-master/templates/icons/simple-icons/burgerking.svg +1 -0
  2695. skills/ppt-master/templates/icons/simple-icons/burpsuite.svg +1 -0
  2696. skills/ppt-master/templates/icons/simple-icons/burton.svg +1 -0
  2697. skills/ppt-master/templates/icons/simple-icons/buymeacoffee.svg +1 -0
  2698. skills/ppt-master/templates/icons/simple-icons/buysellads.svg +1 -0
  2699. skills/ppt-master/templates/icons/simple-icons/buzzfeed.svg +1 -0
  2700. skills/ppt-master/templates/icons/simple-icons/bvg.svg +1 -0
  2701. skills/ppt-master/templates/icons/simple-icons/byjus.svg +1 -0
  2702. skills/ppt-master/templates/icons/simple-icons/bytedance.svg +1 -0
  2703. skills/ppt-master/templates/icons/simple-icons/c.svg +1 -0
  2704. skills/ppt-master/templates/icons/simple-icons/cachet.svg +1 -0
  2705. skills/ppt-master/templates/icons/simple-icons/cachyos.svg +1 -0
  2706. skills/ppt-master/templates/icons/simple-icons/caddy.svg +1 -0
  2707. skills/ppt-master/templates/icons/simple-icons/cadillac.svg +1 -0
  2708. skills/ppt-master/templates/icons/simple-icons/cafepress.svg +1 -0
  2709. skills/ppt-master/templates/icons/simple-icons/caffeine.svg +1 -0
  2710. skills/ppt-master/templates/icons/simple-icons/cairographics.svg +1 -0
  2711. skills/ppt-master/templates/icons/simple-icons/cairometro.svg +1 -0
  2712. skills/ppt-master/templates/icons/simple-icons/caixabank.svg +1 -0
  2713. skills/ppt-master/templates/icons/simple-icons/cakephp.svg +1 -0
  2714. skills/ppt-master/templates/icons/simple-icons/caldotcom.svg +1 -0
  2715. skills/ppt-master/templates/icons/simple-icons/calendly.svg +1 -0
  2716. skills/ppt-master/templates/icons/simple-icons/calibreweb.svg +1 -0
  2717. skills/ppt-master/templates/icons/simple-icons/campaignmonitor.svg +1 -0
  2718. skills/ppt-master/templates/icons/simple-icons/camunda.svg +1 -0
  2719. skills/ppt-master/templates/icons/simple-icons/canonical.svg +1 -0
  2720. skills/ppt-master/templates/icons/simple-icons/canva.svg +1 -0
  2721. skills/ppt-master/templates/icons/simple-icons/canvas.svg +1 -0
  2722. skills/ppt-master/templates/icons/simple-icons/capacitor.svg +1 -0
  2723. skills/ppt-master/templates/icons/simple-icons/caprover.svg +1 -0
  2724. skills/ppt-master/templates/icons/simple-icons/cardano.svg +1 -0
  2725. skills/ppt-master/templates/icons/simple-icons/cardmarket.svg +1 -0
  2726. skills/ppt-master/templates/icons/simple-icons/carlsberggroup.svg +1 -0
  2727. skills/ppt-master/templates/icons/simple-icons/carrd.svg +1 -0
  2728. skills/ppt-master/templates/icons/simple-icons/carrefour.svg +1 -0
  2729. skills/ppt-master/templates/icons/simple-icons/carthrottle.svg +1 -0
  2730. skills/ppt-master/templates/icons/simple-icons/carto.svg +1 -0
  2731. skills/ppt-master/templates/icons/simple-icons/cashapp.svg +1 -0
  2732. skills/ppt-master/templates/icons/simple-icons/castbox.svg +1 -0
  2733. skills/ppt-master/templates/icons/simple-icons/castorama.svg +1 -0
  2734. skills/ppt-master/templates/icons/simple-icons/castro.svg +1 -0
  2735. skills/ppt-master/templates/icons/simple-icons/caterpillar.svg +1 -0
  2736. skills/ppt-master/templates/icons/simple-icons/cbc.svg +1 -0
  2737. skills/ppt-master/templates/icons/simple-icons/cbs.svg +1 -0
  2738. skills/ppt-master/templates/icons/simple-icons/ccc.svg +1 -0
  2739. skills/ppt-master/templates/icons/simple-icons/ccleaner.svg +1 -0
  2740. skills/ppt-master/templates/icons/simple-icons/cdprojekt.svg +1 -0
  2741. skills/ppt-master/templates/icons/simple-icons/ce.svg +1 -0
  2742. skills/ppt-master/templates/icons/simple-icons/celery.svg +1 -0
  2743. skills/ppt-master/templates/icons/simple-icons/celestron.svg +1 -0
  2744. skills/ppt-master/templates/icons/simple-icons/centos.svg +1 -0
  2745. skills/ppt-master/templates/icons/simple-icons/ceph.svg +1 -0
  2746. skills/ppt-master/templates/icons/simple-icons/cesium.svg +1 -0
  2747. skills/ppt-master/templates/icons/simple-icons/chai.svg +1 -0
  2748. skills/ppt-master/templates/icons/simple-icons/chainguard.svg +1 -0
  2749. skills/ppt-master/templates/icons/simple-icons/chainlink.svg +1 -0
  2750. skills/ppt-master/templates/icons/simple-icons/chakraui.svg +1 -0
  2751. skills/ppt-master/templates/icons/simple-icons/changedetection.svg +1 -0
  2752. skills/ppt-master/templates/icons/simple-icons/channel4.svg +1 -0
  2753. skills/ppt-master/templates/icons/simple-icons/charles.svg +1 -0
  2754. skills/ppt-master/templates/icons/simple-icons/chartdotjs.svg +1 -0
  2755. skills/ppt-master/templates/icons/simple-icons/chartmogul.svg +1 -0
  2756. skills/ppt-master/templates/icons/simple-icons/chase.svg +1 -0
  2757. skills/ppt-master/templates/icons/simple-icons/chatbot.svg +1 -0
  2758. skills/ppt-master/templates/icons/simple-icons/chatwoot.svg +1 -0
  2759. skills/ppt-master/templates/icons/simple-icons/checkio.svg +1 -0
  2760. skills/ppt-master/templates/icons/simple-icons/checkmarx.svg +1 -0
  2761. skills/ppt-master/templates/icons/simple-icons/checkmk.svg +1 -0
  2762. skills/ppt-master/templates/icons/simple-icons/chedraui.svg +1 -0
  2763. skills/ppt-master/templates/icons/simple-icons/cheerio.svg +1 -0
  2764. skills/ppt-master/templates/icons/simple-icons/chef.svg +1 -0
  2765. skills/ppt-master/templates/icons/simple-icons/chemex.svg +1 -0
  2766. skills/ppt-master/templates/icons/simple-icons/chessdotcom.svg +1 -0
  2767. skills/ppt-master/templates/icons/simple-icons/chevrolet.svg +1 -0
  2768. skills/ppt-master/templates/icons/simple-icons/chianetwork.svg +1 -0
  2769. skills/ppt-master/templates/icons/simple-icons/chinaeasternairlines.svg +1 -0
  2770. skills/ppt-master/templates/icons/simple-icons/chinarailway.svg +1 -0
  2771. skills/ppt-master/templates/icons/simple-icons/chinasouthernairlines.svg +1 -0
  2772. skills/ppt-master/templates/icons/simple-icons/chocolatey.svg +1 -0
  2773. skills/ppt-master/templates/icons/simple-icons/chromatic.svg +1 -0
  2774. skills/ppt-master/templates/icons/simple-icons/chromecast.svg +1 -0
  2775. skills/ppt-master/templates/icons/simple-icons/chromewebstore.svg +1 -0
  2776. skills/ppt-master/templates/icons/simple-icons/chrysler.svg +1 -0
  2777. skills/ppt-master/templates/icons/simple-icons/chupachups.svg +1 -0
  2778. skills/ppt-master/templates/icons/simple-icons/cilium.svg +1 -0
  2779. skills/ppt-master/templates/icons/simple-icons/cinema4d.svg +1 -0
  2780. skills/ppt-master/templates/icons/simple-icons/cinnamon.svg +1 -0
  2781. skills/ppt-master/templates/icons/simple-icons/circle.svg +1 -0
  2782. skills/ppt-master/templates/icons/simple-icons/circleci.svg +1 -0
  2783. skills/ppt-master/templates/icons/simple-icons/circuitverse.svg +1 -0
  2784. skills/ppt-master/templates/icons/simple-icons/cirrusci.svg +1 -0
  2785. skills/ppt-master/templates/icons/simple-icons/cisco.svg +1 -0
  2786. skills/ppt-master/templates/icons/simple-icons/citrix.svg +1 -0
  2787. skills/ppt-master/templates/icons/simple-icons/citroen.svg +1 -0
  2788. skills/ppt-master/templates/icons/simple-icons/civicrm.svg +1 -0
  2789. skills/ppt-master/templates/icons/simple-icons/civo.svg +1 -0
  2790. skills/ppt-master/templates/icons/simple-icons/ckeditor4.svg +1 -0
  2791. skills/ppt-master/templates/icons/simple-icons/clarifai.svg +1 -0
  2792. skills/ppt-master/templates/icons/simple-icons/claris.svg +1 -0
  2793. skills/ppt-master/templates/icons/simple-icons/clarivate.svg +1 -0
  2794. skills/ppt-master/templates/icons/simple-icons/claude.svg +1 -0
  2795. skills/ppt-master/templates/icons/simple-icons/clerk.svg +1 -0
  2796. skills/ppt-master/templates/icons/simple-icons/clevercloud.svg +1 -0
  2797. skills/ppt-master/templates/icons/simple-icons/clickhouse.svg +1 -0
  2798. skills/ppt-master/templates/icons/simple-icons/clickup.svg +1 -0
  2799. skills/ppt-master/templates/icons/simple-icons/cline.svg +1 -0
  2800. skills/ppt-master/templates/icons/simple-icons/clion.svg +1 -0
  2801. skills/ppt-master/templates/icons/simple-icons/cliqz.svg +1 -0
  2802. skills/ppt-master/templates/icons/simple-icons/clockify.svg +1 -0
  2803. skills/ppt-master/templates/icons/simple-icons/clojure.svg +1 -0
  2804. skills/ppt-master/templates/icons/simple-icons/cloud66.svg +1 -0
  2805. skills/ppt-master/templates/icons/simple-icons/cloudbees.svg +1 -0
  2806. skills/ppt-master/templates/icons/simple-icons/cloudcannon.svg +1 -0
  2807. skills/ppt-master/templates/icons/simple-icons/cloudera.svg +1 -0
  2808. skills/ppt-master/templates/icons/simple-icons/cloudflare.svg +1 -0
  2809. skills/ppt-master/templates/icons/simple-icons/cloudflarepages.svg +1 -0
  2810. skills/ppt-master/templates/icons/simple-icons/cloudflareworkers.svg +1 -0
  2811. skills/ppt-master/templates/icons/simple-icons/cloudfoundry.svg +1 -0
  2812. skills/ppt-master/templates/icons/simple-icons/cloudinary.svg +1 -0
  2813. skills/ppt-master/templates/icons/simple-icons/cloudnativebuild.svg +1 -0
  2814. skills/ppt-master/templates/icons/simple-icons/cloudron.svg +1 -0
  2815. skills/ppt-master/templates/icons/simple-icons/cloudsmith.svg +1 -0
  2816. skills/ppt-master/templates/icons/simple-icons/cloudways.svg +1 -0
  2817. skills/ppt-master/templates/icons/simple-icons/clubforce.svg +1 -0
  2818. skills/ppt-master/templates/icons/simple-icons/clubhouse.svg +1 -0
  2819. skills/ppt-master/templates/icons/simple-icons/clyp.svg +1 -0
  2820. skills/ppt-master/templates/icons/simple-icons/cmake.svg +1 -0
  2821. skills/ppt-master/templates/icons/simple-icons/cncf.svg +1 -0
  2822. skills/ppt-master/templates/icons/simple-icons/cnes.svg +1 -0
  2823. skills/ppt-master/templates/icons/simple-icons/cnet.svg +1 -0
  2824. skills/ppt-master/templates/icons/simple-icons/cnn.svg +1 -0
  2825. skills/ppt-master/templates/icons/simple-icons/cobalt.svg +1 -0
  2826. skills/ppt-master/templates/icons/simple-icons/cocacola.svg +1 -0
  2827. skills/ppt-master/templates/icons/simple-icons/cockpit.svg +1 -0
  2828. skills/ppt-master/templates/icons/simple-icons/cockroachlabs.svg +1 -0
  2829. skills/ppt-master/templates/icons/simple-icons/cocoapods.svg +1 -0
  2830. skills/ppt-master/templates/icons/simple-icons/cocos.svg +1 -0
  2831. skills/ppt-master/templates/icons/simple-icons/coda.svg +1 -0
  2832. skills/ppt-master/templates/icons/simple-icons/codacy.svg +1 -0
  2833. skills/ppt-master/templates/icons/simple-icons/codeberg.svg +1 -0
  2834. skills/ppt-master/templates/icons/simple-icons/codeblocks.svg +1 -0
  2835. skills/ppt-master/templates/icons/simple-icons/codecademy.svg +1 -0
  2836. skills/ppt-master/templates/icons/simple-icons/codeceptjs.svg +1 -0
  2837. skills/ppt-master/templates/icons/simple-icons/codechef.svg +1 -0
  2838. skills/ppt-master/templates/icons/simple-icons/codeclimate.svg +1 -0
  2839. skills/ppt-master/templates/icons/simple-icons/codecov.svg +1 -0
  2840. skills/ppt-master/templates/icons/simple-icons/codecrafters.svg +1 -0
  2841. skills/ppt-master/templates/icons/simple-icons/codefactor.svg +1 -0
  2842. skills/ppt-master/templates/icons/simple-icons/codeforces.svg +1 -0
  2843. skills/ppt-master/templates/icons/simple-icons/codefresh.svg +1 -0
  2844. skills/ppt-master/templates/icons/simple-icons/codeigniter.svg +1 -0
  2845. skills/ppt-master/templates/icons/simple-icons/codeium.svg +1 -0
  2846. skills/ppt-master/templates/icons/simple-icons/codemagic.svg +1 -0
  2847. skills/ppt-master/templates/icons/simple-icons/codementor.svg +1 -0
  2848. skills/ppt-master/templates/icons/simple-icons/codemirror.svg +1 -0
  2849. skills/ppt-master/templates/icons/simple-icons/codenewbie.svg +1 -0
  2850. skills/ppt-master/templates/icons/simple-icons/codepen.svg +1 -0
  2851. skills/ppt-master/templates/icons/simple-icons/codeproject.svg +1 -0
  2852. skills/ppt-master/templates/icons/simple-icons/coder.svg +1 -0
  2853. skills/ppt-master/templates/icons/simple-icons/coderabbit.svg +1 -0
  2854. skills/ppt-master/templates/icons/simple-icons/codersrank.svg +1 -0
  2855. skills/ppt-master/templates/icons/simple-icons/coderwall.svg +1 -0
  2856. skills/ppt-master/templates/icons/simple-icons/codesandbox.svg +1 -0
  2857. skills/ppt-master/templates/icons/simple-icons/codeship.svg +1 -0
  2858. skills/ppt-master/templates/icons/simple-icons/codesignal.svg +1 -0
  2859. skills/ppt-master/templates/icons/simple-icons/codestream.svg +1 -0
  2860. skills/ppt-master/templates/icons/simple-icons/codewars.svg +1 -0
  2861. skills/ppt-master/templates/icons/simple-icons/codingame.svg +1 -0
  2862. skills/ppt-master/templates/icons/simple-icons/codingninjas.svg +1 -0
  2863. skills/ppt-master/templates/icons/simple-icons/codio.svg +1 -0
  2864. skills/ppt-master/templates/icons/simple-icons/coffeescript.svg +1 -0
  2865. skills/ppt-master/templates/icons/simple-icons/coggle.svg +1 -0
  2866. skills/ppt-master/templates/icons/simple-icons/cognizant.svg +1 -0
  2867. skills/ppt-master/templates/icons/simple-icons/coil.svg +1 -0
  2868. skills/ppt-master/templates/icons/simple-icons/coinbase.svg +1 -0
  2869. skills/ppt-master/templates/icons/simple-icons/coinmarketcap.svg +1 -0
  2870. skills/ppt-master/templates/icons/simple-icons/collaboraonline.svg +1 -0
  2871. skills/ppt-master/templates/icons/simple-icons/comicfury.svg +1 -0
  2872. skills/ppt-master/templates/icons/simple-icons/comma.svg +1 -0
  2873. skills/ppt-master/templates/icons/simple-icons/commerzbank.svg +1 -0
  2874. skills/ppt-master/templates/icons/simple-icons/commitlint.svg +1 -0
  2875. skills/ppt-master/templates/icons/simple-icons/commodore.svg +1 -0
  2876. skills/ppt-master/templates/icons/simple-icons/commonlisp.svg +1 -0
  2877. skills/ppt-master/templates/icons/simple-icons/commonworkflowlanguage.svg +1 -0
  2878. skills/ppt-master/templates/icons/simple-icons/compilerexplorer.svg +1 -0
  2879. skills/ppt-master/templates/icons/simple-icons/composer.svg +1 -0
  2880. skills/ppt-master/templates/icons/simple-icons/comptia.svg +1 -0
  2881. skills/ppt-master/templates/icons/simple-icons/comsol.svg +1 -0
  2882. skills/ppt-master/templates/icons/simple-icons/conan.svg +1 -0
  2883. skills/ppt-master/templates/icons/simple-icons/concourse.svg +1 -0
  2884. skills/ppt-master/templates/icons/simple-icons/condaforge.svg +1 -0
  2885. skills/ppt-master/templates/icons/simple-icons/conekta.svg +1 -0
  2886. skills/ppt-master/templates/icons/simple-icons/confluence.svg +1 -0
  2887. skills/ppt-master/templates/icons/simple-icons/construct3.svg +1 -0
  2888. skills/ppt-master/templates/icons/simple-icons/consul.svg +1 -0
  2889. skills/ppt-master/templates/icons/simple-icons/contabo.svg +1 -0
  2890. skills/ppt-master/templates/icons/simple-icons/contactlesspayment.svg +1 -0
  2891. skills/ppt-master/templates/icons/simple-icons/containerd.svg +1 -0
  2892. skills/ppt-master/templates/icons/simple-icons/contao.svg +1 -0
  2893. skills/ppt-master/templates/icons/simple-icons/contensis.svg +1 -0
  2894. skills/ppt-master/templates/icons/simple-icons/contentful.svg +1 -0
  2895. skills/ppt-master/templates/icons/simple-icons/contentstack.svg +1 -0
  2896. skills/ppt-master/templates/icons/simple-icons/continente.svg +1 -0
  2897. skills/ppt-master/templates/icons/simple-icons/contributorcovenant.svg +1 -0
  2898. skills/ppt-master/templates/icons/simple-icons/conventionalcommits.svg +1 -0
  2899. skills/ppt-master/templates/icons/simple-icons/convertio.svg +1 -0
  2900. skills/ppt-master/templates/icons/simple-icons/convex.svg +1 -0
  2901. skills/ppt-master/templates/icons/simple-icons/cookiecutter.svg +1 -0
  2902. skills/ppt-master/templates/icons/simple-icons/coolermaster.svg +1 -0
  2903. skills/ppt-master/templates/icons/simple-icons/coolify.svg +1 -0
  2904. skills/ppt-master/templates/icons/simple-icons/coop.svg +1 -0
  2905. skills/ppt-master/templates/icons/simple-icons/copaairlines.svg +1 -0
  2906. skills/ppt-master/templates/icons/simple-icons/coppel.svg +1 -0
  2907. skills/ppt-master/templates/icons/simple-icons/cora.svg +1 -0
  2908. skills/ppt-master/templates/icons/simple-icons/coreboot.svg +1 -0
  2909. skills/ppt-master/templates/icons/simple-icons/coreldraw.svg +1 -0
  2910. skills/ppt-master/templates/icons/simple-icons/coronaengine.svg +1 -0
  2911. skills/ppt-master/templates/icons/simple-icons/coronarenderer.svg +1 -0
  2912. skills/ppt-master/templates/icons/simple-icons/corsair.svg +1 -0
  2913. skills/ppt-master/templates/icons/simple-icons/couchbase.svg +1 -0
  2914. skills/ppt-master/templates/icons/simple-icons/counterstrike.svg +1 -0
  2915. skills/ppt-master/templates/icons/simple-icons/countingworkspro.svg +1 -0
  2916. skills/ppt-master/templates/icons/simple-icons/coursera.svg +1 -0
  2917. skills/ppt-master/templates/icons/simple-icons/coveralls.svg +1 -0
  2918. skills/ppt-master/templates/icons/simple-icons/coze.svg +1 -0
  2919. skills/ppt-master/templates/icons/simple-icons/cpanel.svg +1 -0
  2920. skills/ppt-master/templates/icons/simple-icons/cplusplus.svg +1 -0
  2921. skills/ppt-master/templates/icons/simple-icons/cplusplusbuilder.svg +1 -0
  2922. skills/ppt-master/templates/icons/simple-icons/craftcms.svg +1 -0
  2923. skills/ppt-master/templates/icons/simple-icons/craftsman.svg +1 -0
  2924. skills/ppt-master/templates/icons/simple-icons/cratedb.svg +1 -0
  2925. skills/ppt-master/templates/icons/simple-icons/crayon.svg +1 -0
  2926. skills/ppt-master/templates/icons/simple-icons/creality.svg +1 -0
  2927. skills/ppt-master/templates/icons/simple-icons/createreactapp.svg +1 -0
  2928. skills/ppt-master/templates/icons/simple-icons/creativecommons.svg +1 -0
  2929. skills/ppt-master/templates/icons/simple-icons/creativetechnology.svg +1 -0
  2930. skills/ppt-master/templates/icons/simple-icons/credly.svg +1 -0
  2931. skills/ppt-master/templates/icons/simple-icons/crehana.svg +1 -0
  2932. skills/ppt-master/templates/icons/simple-icons/crewai.svg +1 -0
  2933. skills/ppt-master/templates/icons/simple-icons/crewunited.svg +1 -0
  2934. skills/ppt-master/templates/icons/simple-icons/criticalrole.svg +1 -0
  2935. skills/ppt-master/templates/icons/simple-icons/crowdin.svg +1 -0
  2936. skills/ppt-master/templates/icons/simple-icons/crowdsource.svg +1 -0
  2937. skills/ppt-master/templates/icons/simple-icons/crunchbase.svg +1 -0
  2938. skills/ppt-master/templates/icons/simple-icons/crunchyroll.svg +1 -0
  2939. skills/ppt-master/templates/icons/simple-icons/cryengine.svg +1 -0
  2940. skills/ppt-master/templates/icons/simple-icons/cryptomator.svg +1 -0
  2941. skills/ppt-master/templates/icons/simple-icons/cryptpad.svg +1 -0
  2942. skills/ppt-master/templates/icons/simple-icons/crystal.svg +1 -0
  2943. skills/ppt-master/templates/icons/simple-icons/csdn.svg +1 -0
  2944. skills/ppt-master/templates/icons/simple-icons/csharp.svg +1 -0
  2945. skills/ppt-master/templates/icons/simple-icons/css.svg +1 -0
  2946. skills/ppt-master/templates/icons/simple-icons/css3.svg +1 -0
  2947. skills/ppt-master/templates/icons/simple-icons/cssdesignawards.svg +1 -0
  2948. skills/ppt-master/templates/icons/simple-icons/cssmodules.svg +1 -0
  2949. skills/ppt-master/templates/icons/simple-icons/csswizardry.svg +1 -0
  2950. skills/ppt-master/templates/icons/simple-icons/cts.svg +1 -0
  2951. skills/ppt-master/templates/icons/simple-icons/cucumber.svg +1 -0
  2952. skills/ppt-master/templates/icons/simple-icons/cultura.svg +1 -0
  2953. skills/ppt-master/templates/icons/simple-icons/curl.svg +1 -0
  2954. skills/ppt-master/templates/icons/simple-icons/curseforge.svg +1 -0
  2955. skills/ppt-master/templates/icons/simple-icons/cursor.svg +1 -0
  2956. skills/ppt-master/templates/icons/simple-icons/customink.svg +1 -0
  2957. skills/ppt-master/templates/icons/simple-icons/cyberdefenders.svg +1 -0
  2958. skills/ppt-master/templates/icons/simple-icons/cycling74.svg +1 -0
  2959. skills/ppt-master/templates/icons/simple-icons/cypress.svg +1 -0
  2960. skills/ppt-master/templates/icons/simple-icons/cytoscapedotjs.svg +1 -0
  2961. skills/ppt-master/templates/icons/simple-icons/d.svg +1 -0
  2962. skills/ppt-master/templates/icons/simple-icons/d3.svg +1 -0
  2963. skills/ppt-master/templates/icons/simple-icons/d3dotjs.svg +1 -0
  2964. skills/ppt-master/templates/icons/simple-icons/dacia.svg +1 -0
  2965. skills/ppt-master/templates/icons/simple-icons/daf.svg +1 -0
  2966. skills/ppt-master/templates/icons/simple-icons/dailydotdev.svg +1 -0
  2967. skills/ppt-master/templates/icons/simple-icons/dailymotion.svg +1 -0
  2968. skills/ppt-master/templates/icons/simple-icons/daimler.svg +1 -0
  2969. skills/ppt-master/templates/icons/simple-icons/daisyui.svg +1 -0
  2970. skills/ppt-master/templates/icons/simple-icons/dapr.svg +1 -0
  2971. skills/ppt-master/templates/icons/simple-icons/darkreader.svg +1 -0
  2972. skills/ppt-master/templates/icons/simple-icons/dart.svg +1 -0
  2973. skills/ppt-master/templates/icons/simple-icons/darty.svg +1 -0
  2974. skills/ppt-master/templates/icons/simple-icons/daserste.svg +1 -0
  2975. skills/ppt-master/templates/icons/simple-icons/dash.svg +1 -0
  2976. skills/ppt-master/templates/icons/simple-icons/dash0.svg +1 -0
  2977. skills/ppt-master/templates/icons/simple-icons/dashlane.svg +1 -0
  2978. skills/ppt-master/templates/icons/simple-icons/dask.svg +1 -0
  2979. skills/ppt-master/templates/icons/simple-icons/dassaultsystemes.svg +1 -0
  2980. skills/ppt-master/templates/icons/simple-icons/databricks.svg +1 -0
  2981. skills/ppt-master/templates/icons/simple-icons/datacamp.svg +1 -0
  2982. skills/ppt-master/templates/icons/simple-icons/datadog.svg +1 -0
  2983. skills/ppt-master/templates/icons/simple-icons/datadotai.svg +1 -0
  2984. skills/ppt-master/templates/icons/simple-icons/datagrip.svg +1 -0
  2985. skills/ppt-master/templates/icons/simple-icons/dataiku.svg +1 -0
  2986. skills/ppt-master/templates/icons/simple-icons/datastax.svg +1 -0
  2987. skills/ppt-master/templates/icons/simple-icons/dataverse.svg +1 -0
  2988. skills/ppt-master/templates/icons/simple-icons/datefns.svg +1 -0
  2989. skills/ppt-master/templates/icons/simple-icons/datev.svg +1 -0
  2990. skills/ppt-master/templates/icons/simple-icons/datocms.svg +1 -0
  2991. skills/ppt-master/templates/icons/simple-icons/datto.svg +1 -0
  2992. skills/ppt-master/templates/icons/simple-icons/davinciresolve.svg +1 -0
  2993. skills/ppt-master/templates/icons/simple-icons/dazhongdianping.svg +1 -0
  2994. skills/ppt-master/templates/icons/simple-icons/dazn.svg +1 -0
  2995. skills/ppt-master/templates/icons/simple-icons/dbeaver.svg +1 -0
  2996. skills/ppt-master/templates/icons/simple-icons/dblp.svg +1 -0
  2997. skills/ppt-master/templates/icons/simple-icons/dbt.svg +1 -0
  2998. skills/ppt-master/templates/icons/simple-icons/dcentertainment.svg +1 -0
  2999. skills/ppt-master/templates/icons/simple-icons/debian.svg +1 -0
  3000. skills/ppt-master/templates/icons/simple-icons/debridlink.svg +1 -0
  3001. skills/ppt-master/templates/icons/simple-icons/decapcms.svg +1 -0
  3002. skills/ppt-master/templates/icons/simple-icons/decentraland.svg +1 -0
  3003. skills/ppt-master/templates/icons/simple-icons/dedge.svg +1 -0
  3004. skills/ppt-master/templates/icons/simple-icons/deepcool.svg +1 -0
  3005. skills/ppt-master/templates/icons/simple-icons/deepgram.svg +1 -0
  3006. skills/ppt-master/templates/icons/simple-icons/deepin.svg +1 -0
  3007. skills/ppt-master/templates/icons/simple-icons/deepl.svg +1 -0
  3008. skills/ppt-master/templates/icons/simple-icons/deepmind.svg +1 -0
  3009. skills/ppt-master/templates/icons/simple-icons/deepnote.svg +1 -0
  3010. skills/ppt-master/templates/icons/simple-icons/deepseek.svg +1 -0
  3011. skills/ppt-master/templates/icons/simple-icons/deezer.svg +1 -0
  3012. skills/ppt-master/templates/icons/simple-icons/delicious.svg +1 -0
  3013. skills/ppt-master/templates/icons/simple-icons/deliveroo.svg +1 -0
  3014. skills/ppt-master/templates/icons/simple-icons/dell.svg +1 -0
  3015. skills/ppt-master/templates/icons/simple-icons/delonghi.svg +1 -0
  3016. skills/ppt-master/templates/icons/simple-icons/delphi.svg +1 -0
  3017. skills/ppt-master/templates/icons/simple-icons/delta.svg +1 -0
  3018. skills/ppt-master/templates/icons/simple-icons/deluge.svg +1 -0
  3019. skills/ppt-master/templates/icons/simple-icons/deno.svg +1 -0
  3020. skills/ppt-master/templates/icons/simple-icons/denodeploy.svg +1 -0
  3021. skills/ppt-master/templates/icons/simple-icons/denon.svg +1 -0
  3022. skills/ppt-master/templates/icons/simple-icons/dependabot.svg +1 -0
  3023. skills/ppt-master/templates/icons/simple-icons/dependencycheck.svg +1 -0
  3024. skills/ppt-master/templates/icons/simple-icons/depositphotos.svg +1 -0
  3025. skills/ppt-master/templates/icons/simple-icons/derspiegel.svg +1 -0
  3026. skills/ppt-master/templates/icons/simple-icons/designernews.svg +1 -0
  3027. skills/ppt-master/templates/icons/simple-icons/deutschebahn.svg +1 -0
  3028. skills/ppt-master/templates/icons/simple-icons/deutschebank.svg +1 -0
  3029. skills/ppt-master/templates/icons/simple-icons/deutschepost.svg +1 -0
  3030. skills/ppt-master/templates/icons/simple-icons/deutschetelekom.svg +1 -0
  3031. skills/ppt-master/templates/icons/simple-icons/deutschewelle.svg +1 -0
  3032. skills/ppt-master/templates/icons/simple-icons/devbox.svg +1 -0
  3033. skills/ppt-master/templates/icons/simple-icons/devdotto.svg +1 -0
  3034. skills/ppt-master/templates/icons/simple-icons/developmentcontainers.svg +1 -0
  3035. skills/ppt-master/templates/icons/simple-icons/devexpress.svg +1 -0
  3036. skills/ppt-master/templates/icons/simple-icons/deviantart.svg +1 -0
  3037. skills/ppt-master/templates/icons/simple-icons/devpost.svg +1 -0
  3038. skills/ppt-master/templates/icons/simple-icons/devrant.svg +1 -0
  3039. skills/ppt-master/templates/icons/simple-icons/devuan.svg +1 -0
  3040. skills/ppt-master/templates/icons/simple-icons/dgraph.svg +1 -0
  3041. skills/ppt-master/templates/icons/simple-icons/dhl.svg +1 -0
  3042. skills/ppt-master/templates/icons/simple-icons/diagramsdotnet.svg +1 -0
  3043. skills/ppt-master/templates/icons/simple-icons/dialogflow.svg +1 -0
  3044. skills/ppt-master/templates/icons/simple-icons/diaspora.svg +1 -0
  3045. skills/ppt-master/templates/icons/simple-icons/dicebear.svg +1 -0
  3046. skills/ppt-master/templates/icons/simple-icons/dictionarydotcom.svg +1 -0
  3047. skills/ppt-master/templates/icons/simple-icons/dify.svg +1 -0
  3048. skills/ppt-master/templates/icons/simple-icons/digg.svg +1 -0
  3049. skills/ppt-master/templates/icons/simple-icons/digikeyelectronics.svg +1 -0
  3050. skills/ppt-master/templates/icons/simple-icons/digitalocean.svg +1 -0
  3051. skills/ppt-master/templates/icons/simple-icons/dinersclub.svg +1 -0
  3052. skills/ppt-master/templates/icons/simple-icons/dior.svg +1 -0
  3053. skills/ppt-master/templates/icons/simple-icons/directus.svg +1 -0
  3054. skills/ppt-master/templates/icons/simple-icons/discogs.svg +1 -0
  3055. skills/ppt-master/templates/icons/simple-icons/discord.svg +1 -0
  3056. skills/ppt-master/templates/icons/simple-icons/discorddotjs.svg +1 -0
  3057. skills/ppt-master/templates/icons/simple-icons/discourse.svg +1 -0
  3058. skills/ppt-master/templates/icons/simple-icons/discover.svg +1 -0
  3059. skills/ppt-master/templates/icons/simple-icons/disqus.svg +1 -0
  3060. skills/ppt-master/templates/icons/simple-icons/disroot.svg +1 -0
  3061. skills/ppt-master/templates/icons/simple-icons/distrobox.svg +1 -0
  3062. skills/ppt-master/templates/icons/simple-icons/distrokid.svg +1 -0
  3063. skills/ppt-master/templates/icons/simple-icons/django.svg +1 -0
  3064. skills/ppt-master/templates/icons/simple-icons/dji.svg +1 -0
  3065. skills/ppt-master/templates/icons/simple-icons/dlib.svg +1 -0
  3066. skills/ppt-master/templates/icons/simple-icons/dlna.svg +1 -0
  3067. skills/ppt-master/templates/icons/simple-icons/dlthub.svg +1 -0
  3068. skills/ppt-master/templates/icons/simple-icons/dm.svg +1 -0
  3069. skills/ppt-master/templates/icons/simple-icons/dmm.svg +1 -0
  3070. skills/ppt-master/templates/icons/simple-icons/docker.svg +1 -0
  3071. skills/ppt-master/templates/icons/simple-icons/docsdotrs.svg +1 -0
  3072. skills/ppt-master/templates/icons/simple-icons/docsify.svg +1 -0
  3073. skills/ppt-master/templates/icons/simple-icons/doctrine.svg +1 -0
  3074. skills/ppt-master/templates/icons/simple-icons/docusaurus.svg +1 -0
  3075. skills/ppt-master/templates/icons/simple-icons/docusign.svg +1 -0
  3076. skills/ppt-master/templates/icons/simple-icons/dodopayments.svg +1 -0
  3077. skills/ppt-master/templates/icons/simple-icons/dogecoin.svg +1 -0
  3078. skills/ppt-master/templates/icons/simple-icons/doi.svg +1 -0
  3079. skills/ppt-master/templates/icons/simple-icons/dolby.svg +1 -0
  3080. skills/ppt-master/templates/icons/simple-icons/dolibarr.svg +1 -0
  3081. skills/ppt-master/templates/icons/simple-icons/dolphin.svg +1 -0
  3082. skills/ppt-master/templates/icons/simple-icons/doordash.svg +1 -0
  3083. skills/ppt-master/templates/icons/simple-icons/dota2.svg +1 -0
  3084. skills/ppt-master/templates/icons/simple-icons/dotenv.svg +1 -0
  3085. skills/ppt-master/templates/icons/simple-icons/dotnet.svg +1 -0
  3086. skills/ppt-master/templates/icons/simple-icons/douban.svg +1 -0
  3087. skills/ppt-master/templates/icons/simple-icons/doubanread.svg +1 -0
  3088. skills/ppt-master/templates/icons/simple-icons/dovecot.svg +1 -0
  3089. skills/ppt-master/templates/icons/simple-icons/dovetail.svg +1 -0
  3090. skills/ppt-master/templates/icons/simple-icons/downdetector.svg +1 -0
  3091. skills/ppt-master/templates/icons/simple-icons/doxygen.svg +1 -0
  3092. skills/ppt-master/templates/icons/simple-icons/dpd.svg +1 -0
  3093. skills/ppt-master/templates/icons/simple-icons/dragonframe.svg +1 -0
  3094. skills/ppt-master/templates/icons/simple-icons/draugiemdotlv.svg +1 -0
  3095. skills/ppt-master/templates/icons/simple-icons/dreamstime.svg +1 -0
  3096. skills/ppt-master/templates/icons/simple-icons/dribbble.svg +1 -0
  3097. skills/ppt-master/templates/icons/simple-icons/drizzle.svg +1 -0
  3098. skills/ppt-master/templates/icons/simple-icons/drone.svg +1 -0
  3099. skills/ppt-master/templates/icons/simple-icons/drooble.svg +1 -0
  3100. skills/ppt-master/templates/icons/simple-icons/dropbox.svg +1 -0
  3101. skills/ppt-master/templates/icons/simple-icons/drupal.svg +1 -0
  3102. skills/ppt-master/templates/icons/simple-icons/dsautomobiles.svg +1 -0
  3103. skills/ppt-master/templates/icons/simple-icons/dts.svg +1 -0
  3104. skills/ppt-master/templates/icons/simple-icons/dtube.svg +1 -0
  3105. skills/ppt-master/templates/icons/simple-icons/ducati.svg +1 -0
  3106. skills/ppt-master/templates/icons/simple-icons/duckdb.svg +1 -0
  3107. skills/ppt-master/templates/icons/simple-icons/duckduckgo.svg +1 -0
  3108. skills/ppt-master/templates/icons/simple-icons/dungeonsanddragons.svg +1 -0
  3109. skills/ppt-master/templates/icons/simple-icons/dunked.svg +1 -0
  3110. skills/ppt-master/templates/icons/simple-icons/dunzo.svg +1 -0
  3111. skills/ppt-master/templates/icons/simple-icons/duolingo.svg +1 -0
  3112. skills/ppt-master/templates/icons/simple-icons/duplicati.svg +1 -0
  3113. skills/ppt-master/templates/icons/simple-icons/dvc.svg +1 -0
  3114. skills/ppt-master/templates/icons/simple-icons/dwavesystems.svg +1 -0
  3115. skills/ppt-master/templates/icons/simple-icons/dwm.svg +1 -0
  3116. skills/ppt-master/templates/icons/simple-icons/dynamics365.svg +1 -0
  3117. skills/ppt-master/templates/icons/simple-icons/dynatrace.svg +1 -0
  3118. skills/ppt-master/templates/icons/simple-icons/e.svg +1 -0
  3119. skills/ppt-master/templates/icons/simple-icons/e3.svg +1 -0
  3120. skills/ppt-master/templates/icons/simple-icons/ea.svg +1 -0
  3121. skills/ppt-master/templates/icons/simple-icons/eac.svg +1 -0
  3122. skills/ppt-master/templates/icons/simple-icons/eagle.svg +1 -0
  3123. skills/ppt-master/templates/icons/simple-icons/easyeda.svg +1 -0
  3124. skills/ppt-master/templates/icons/simple-icons/easyjet.svg +1 -0
  3125. skills/ppt-master/templates/icons/simple-icons/ebay.svg +1 -0
  3126. skills/ppt-master/templates/icons/simple-icons/ebox.svg +1 -0
  3127. skills/ppt-master/templates/icons/simple-icons/eclipseadoptium.svg +1 -0
  3128. skills/ppt-master/templates/icons/simple-icons/eclipseche.svg +1 -0
  3129. skills/ppt-master/templates/icons/simple-icons/eclipseide.svg +1 -0
  3130. skills/ppt-master/templates/icons/simple-icons/eclipsejetty.svg +1 -0
  3131. skills/ppt-master/templates/icons/simple-icons/eclipsemosquitto.svg +1 -0
  3132. skills/ppt-master/templates/icons/simple-icons/eclipsevertdotx.svg +1 -0
  3133. skills/ppt-master/templates/icons/simple-icons/ecosia.svg +1 -0
  3134. skills/ppt-master/templates/icons/simple-icons/ecovacs.svg +1 -0
  3135. skills/ppt-master/templates/icons/simple-icons/edeka.svg +1 -0
  3136. skills/ppt-master/templates/icons/simple-icons/edgeimpulse.svg +1 -0
  3137. skills/ppt-master/templates/icons/simple-icons/editorconfig.svg +1 -0
  3138. skills/ppt-master/templates/icons/simple-icons/edotleclerc.svg +1 -0
  3139. skills/ppt-master/templates/icons/simple-icons/educative.svg +1 -0
  3140. skills/ppt-master/templates/icons/simple-icons/edx.svg +1 -0
  3141. skills/ppt-master/templates/icons/simple-icons/effect.svg +1 -0
  3142. skills/ppt-master/templates/icons/simple-icons/egghead.svg +1 -0
  3143. skills/ppt-master/templates/icons/simple-icons/egnyte.svg +1 -0
  3144. skills/ppt-master/templates/icons/simple-icons/eight.svg +1 -0
  3145. skills/ppt-master/templates/icons/simple-icons/eightsleep.svg +1 -0
  3146. skills/ppt-master/templates/icons/simple-icons/ejs.svg +1 -0
  3147. skills/ppt-master/templates/icons/simple-icons/elastic.svg +1 -0
  3148. skills/ppt-master/templates/icons/simple-icons/elasticcloud.svg +1 -0
  3149. skills/ppt-master/templates/icons/simple-icons/elasticsearch.svg +1 -0
  3150. skills/ppt-master/templates/icons/simple-icons/elasticstack.svg +1 -0
  3151. skills/ppt-master/templates/icons/simple-icons/elavon.svg +1 -0
  3152. skills/ppt-master/templates/icons/simple-icons/electron.svg +1 -0
  3153. skills/ppt-master/templates/icons/simple-icons/electronbuilder.svg +1 -0
  3154. skills/ppt-master/templates/icons/simple-icons/electronfiddle.svg +1 -0
  3155. skills/ppt-master/templates/icons/simple-icons/elegoo.svg +1 -0
  3156. skills/ppt-master/templates/icons/simple-icons/element.svg +1 -0
  3157. skills/ppt-master/templates/icons/simple-icons/elementary.svg +1 -0
  3158. skills/ppt-master/templates/icons/simple-icons/elementor.svg +1 -0
  3159. skills/ppt-master/templates/icons/simple-icons/elevenlabs.svg +1 -0
  3160. skills/ppt-master/templates/icons/simple-icons/eleventy.svg +1 -0
  3161. skills/ppt-master/templates/icons/simple-icons/elgato.svg +1 -0
  3162. skills/ppt-master/templates/icons/simple-icons/elixir.svg +1 -0
  3163. skills/ppt-master/templates/icons/simple-icons/eljueves.svg +1 -0
  3164. skills/ppt-master/templates/icons/simple-icons/elk.svg +1 -0
  3165. skills/ppt-master/templates/icons/simple-icons/ello.svg +1 -0
  3166. skills/ppt-master/templates/icons/simple-icons/elm.svg +1 -0
  3167. skills/ppt-master/templates/icons/simple-icons/elsevier.svg +1 -0
  3168. skills/ppt-master/templates/icons/simple-icons/embarcadero.svg +1 -0
  3169. skills/ppt-master/templates/icons/simple-icons/embark.svg +1 -0
  3170. skills/ppt-master/templates/icons/simple-icons/emberdotjs.svg +1 -0
  3171. skills/ppt-master/templates/icons/simple-icons/emby.svg +1 -0
  3172. skills/ppt-master/templates/icons/simple-icons/emirates.svg +1 -0
  3173. skills/ppt-master/templates/icons/simple-icons/emlakjet.svg +1 -0
  3174. skills/ppt-master/templates/icons/simple-icons/empirekred.svg +1 -0
  3175. skills/ppt-master/templates/icons/simple-icons/endeavouros.svg +1 -0
  3176. skills/ppt-master/templates/icons/simple-icons/engadget.svg +1 -0
  3177. skills/ppt-master/templates/icons/simple-icons/enpass.svg +1 -0
  3178. skills/ppt-master/templates/icons/simple-icons/ens.svg +1 -0
  3179. skills/ppt-master/templates/icons/simple-icons/ente.svg +1 -0
  3180. skills/ppt-master/templates/icons/simple-icons/enterprisedb.svg +1 -0
  3181. skills/ppt-master/templates/icons/simple-icons/envato.svg +1 -0
  3182. skills/ppt-master/templates/icons/simple-icons/envoyproxy.svg +1 -0
  3183. skills/ppt-master/templates/icons/simple-icons/epel.svg +1 -0
  3184. skills/ppt-master/templates/icons/simple-icons/epicgames.svg +1 -0
  3185. skills/ppt-master/templates/icons/simple-icons/epson.svg +1 -0
  3186. skills/ppt-master/templates/icons/simple-icons/equinixmetal.svg +1 -0
  3187. skills/ppt-master/templates/icons/simple-icons/eraser.svg +1 -0
  3188. skills/ppt-master/templates/icons/simple-icons/ericsson.svg +1 -0
  3189. skills/ppt-master/templates/icons/simple-icons/erlang.svg +1 -0
  3190. skills/ppt-master/templates/icons/simple-icons/erpnext.svg +1 -0
  3191. skills/ppt-master/templates/icons/simple-icons/esbuild.svg +1 -0
  3192. skills/ppt-master/templates/icons/simple-icons/esea.svg +1 -0
  3193. skills/ppt-master/templates/icons/simple-icons/eslgaming.svg +1 -0
  3194. skills/ppt-master/templates/icons/simple-icons/eslint.svg +1 -0
  3195. skills/ppt-master/templates/icons/simple-icons/esotericsoftware.svg +1 -0
  3196. skills/ppt-master/templates/icons/simple-icons/esphome.svg +1 -0
  3197. skills/ppt-master/templates/icons/simple-icons/espressif.svg +1 -0
  3198. skills/ppt-master/templates/icons/simple-icons/esri.svg +1 -0
  3199. skills/ppt-master/templates/icons/simple-icons/etcd.svg +1 -0
  3200. skills/ppt-master/templates/icons/simple-icons/ethereum.svg +1 -0
  3201. skills/ppt-master/templates/icons/simple-icons/ethers.svg +1 -0
  3202. skills/ppt-master/templates/icons/simple-icons/ethiopianairlines.svg +1 -0
  3203. skills/ppt-master/templates/icons/simple-icons/etihadairways.svg +1 -0
  3204. skills/ppt-master/templates/icons/simple-icons/etsy.svg +1 -0
  3205. skills/ppt-master/templates/icons/simple-icons/europeanunion.svg +1 -0
  3206. skills/ppt-master/templates/icons/simple-icons/eventbrite.svg +1 -0
  3207. skills/ppt-master/templates/icons/simple-icons/eventstore.svg +1 -0
  3208. skills/ppt-master/templates/icons/simple-icons/evernote.svg +1 -0
  3209. skills/ppt-master/templates/icons/simple-icons/everydotorg.svg +1 -0
  3210. skills/ppt-master/templates/icons/simple-icons/excalidraw.svg +1 -0
  3211. skills/ppt-master/templates/icons/simple-icons/exercism.svg +1 -0
  3212. skills/ppt-master/templates/icons/simple-icons/exordo.svg +1 -0
  3213. skills/ppt-master/templates/icons/simple-icons/exoscale.svg +1 -0
  3214. skills/ppt-master/templates/icons/simple-icons/expedia.svg +1 -0
  3215. skills/ppt-master/templates/icons/simple-icons/expensify.svg +1 -0
  3216. skills/ppt-master/templates/icons/simple-icons/expertsexchange.svg +1 -0
  3217. skills/ppt-master/templates/icons/simple-icons/expo.svg +1 -0
  3218. skills/ppt-master/templates/icons/simple-icons/express.svg +1 -0
  3219. skills/ppt-master/templates/icons/simple-icons/expressdotcom.svg +1 -0
  3220. skills/ppt-master/templates/icons/simple-icons/expressvpn.svg +1 -0
  3221. skills/ppt-master/templates/icons/simple-icons/eyeem.svg +1 -0
  3222. skills/ppt-master/templates/icons/simple-icons/f1.svg +1 -0
  3223. skills/ppt-master/templates/icons/simple-icons/f5.svg +1 -0
  3224. skills/ppt-master/templates/icons/simple-icons/facebook.svg +1 -0
  3225. skills/ppt-master/templates/icons/simple-icons/facebookgaming.svg +1 -0
  3226. skills/ppt-master/templates/icons/simple-icons/facebooklive.svg +1 -0
  3227. skills/ppt-master/templates/icons/simple-icons/faceit.svg +1 -0
  3228. skills/ppt-master/templates/icons/simple-icons/facepunch.svg +1 -0
  3229. skills/ppt-master/templates/icons/simple-icons/fairphone.svg +1 -0
  3230. skills/ppt-master/templates/icons/simple-icons/faker.svg +1 -0
  3231. skills/ppt-master/templates/icons/simple-icons/falco.svg +1 -0
  3232. skills/ppt-master/templates/icons/simple-icons/falcon.svg +1 -0
  3233. skills/ppt-master/templates/icons/simple-icons/fampay.svg +1 -0
  3234. skills/ppt-master/templates/icons/simple-icons/fandango.svg +1 -0
  3235. skills/ppt-master/templates/icons/simple-icons/fandom.svg +1 -0
  3236. skills/ppt-master/templates/icons/simple-icons/fanfou.svg +1 -0
  3237. skills/ppt-master/templates/icons/simple-icons/fantom.svg +1 -0
  3238. skills/ppt-master/templates/icons/simple-icons/farcaster.svg +1 -0
  3239. skills/ppt-master/templates/icons/simple-icons/fareharbor.svg +1 -0
  3240. skills/ppt-master/templates/icons/simple-icons/farfetch.svg +1 -0
  3241. skills/ppt-master/templates/icons/simple-icons/fastapi.svg +1 -0
  3242. skills/ppt-master/templates/icons/simple-icons/fastify.svg +1 -0
  3243. skills/ppt-master/templates/icons/simple-icons/fastlane.svg +1 -0
  3244. skills/ppt-master/templates/icons/simple-icons/fastly.svg +1 -0
  3245. skills/ppt-master/templates/icons/simple-icons/fathom.svg +1 -0
  3246. skills/ppt-master/templates/icons/simple-icons/fauna.svg +1 -0
  3247. skills/ppt-master/templates/icons/simple-icons/favro.svg +1 -0
  3248. skills/ppt-master/templates/icons/simple-icons/fcc.svg +1 -0
  3249. skills/ppt-master/templates/icons/simple-icons/fdroid.svg +1 -0
  3250. skills/ppt-master/templates/icons/simple-icons/feathub.svg +1 -0
  3251. skills/ppt-master/templates/icons/simple-icons/fedex.svg +1 -0
  3252. skills/ppt-master/templates/icons/simple-icons/fedora.svg +1 -0
  3253. skills/ppt-master/templates/icons/simple-icons/feedly.svg +1 -0
  3254. skills/ppt-master/templates/icons/simple-icons/ferrari.svg +1 -0
  3255. skills/ppt-master/templates/icons/simple-icons/ferrarinv.svg +1 -0
  3256. skills/ppt-master/templates/icons/simple-icons/ferretdb.svg +1 -0
  3257. skills/ppt-master/templates/icons/simple-icons/ffmpeg.svg +1 -0
  3258. skills/ppt-master/templates/icons/simple-icons/fi.svg +1 -0
  3259. skills/ppt-master/templates/icons/simple-icons/fiat.svg +1 -0
  3260. skills/ppt-master/templates/icons/simple-icons/fidoalliance.svg +1 -0
  3261. skills/ppt-master/templates/icons/simple-icons/fifa.svg +1 -0
  3262. skills/ppt-master/templates/icons/simple-icons/fig.svg +1 -0
  3263. skills/ppt-master/templates/icons/simple-icons/figma.svg +1 -0
  3264. skills/ppt-master/templates/icons/simple-icons/figshare.svg +1 -0
  3265. skills/ppt-master/templates/icons/simple-icons/fila.svg +1 -0
  3266. skills/ppt-master/templates/icons/simple-icons/filament.svg +1 -0
  3267. skills/ppt-master/templates/icons/simple-icons/filedotio.svg +1 -0
  3268. skills/ppt-master/templates/icons/simple-icons/filen.svg +1 -0
  3269. skills/ppt-master/templates/icons/simple-icons/files.svg +1 -0
  3270. skills/ppt-master/templates/icons/simple-icons/filezilla.svg +1 -0
  3271. skills/ppt-master/templates/icons/simple-icons/fillout.svg +1 -0
  3272. skills/ppt-master/templates/icons/simple-icons/fineco.svg +1 -0
  3273. skills/ppt-master/templates/icons/simple-icons/fing.svg +1 -0
  3274. skills/ppt-master/templates/icons/simple-icons/firebase.svg +1 -0
  3275. skills/ppt-master/templates/icons/simple-icons/firefish.svg +1 -0
  3276. skills/ppt-master/templates/icons/simple-icons/fireflyiii.svg +1 -0
  3277. skills/ppt-master/templates/icons/simple-icons/firefox.svg +1 -0
  3278. skills/ppt-master/templates/icons/simple-icons/firefoxbrowser.svg +1 -0
  3279. skills/ppt-master/templates/icons/simple-icons/fireship.svg +1 -0
  3280. skills/ppt-master/templates/icons/simple-icons/firewalla.svg +1 -0
  3281. skills/ppt-master/templates/icons/simple-icons/first.svg +1 -0
  3282. skills/ppt-master/templates/icons/simple-icons/fishaudio.svg +1 -0
  3283. skills/ppt-master/templates/icons/simple-icons/fishshell.svg +1 -0
  3284. skills/ppt-master/templates/icons/simple-icons/fitbit.svg +1 -0
  3285. skills/ppt-master/templates/icons/simple-icons/fivem.svg +1 -0
  3286. skills/ppt-master/templates/icons/simple-icons/fiverr.svg +1 -0
  3287. skills/ppt-master/templates/icons/simple-icons/fizz.svg +1 -0
  3288. skills/ppt-master/templates/icons/simple-icons/flashforge.svg +1 -0
  3289. skills/ppt-master/templates/icons/simple-icons/flask.svg +1 -0
  3290. skills/ppt-master/templates/icons/simple-icons/flat.svg +1 -0
  3291. skills/ppt-master/templates/icons/simple-icons/flathub.svg +1 -0
  3292. skills/ppt-master/templates/icons/simple-icons/flatpak.svg +1 -0
  3293. skills/ppt-master/templates/icons/simple-icons/flickr.svg +1 -0
  3294. skills/ppt-master/templates/icons/simple-icons/flightaware.svg +1 -0
  3295. skills/ppt-master/templates/icons/simple-icons/flipboard.svg +1 -0
  3296. skills/ppt-master/templates/icons/simple-icons/flipkart.svg +1 -0
  3297. skills/ppt-master/templates/icons/simple-icons/floatplane.svg +1 -0
  3298. skills/ppt-master/templates/icons/simple-icons/flood.svg +1 -0
  3299. skills/ppt-master/templates/icons/simple-icons/floorp.svg +1 -0
  3300. skills/ppt-master/templates/icons/simple-icons/flower.svg +1 -0
  3301. skills/ppt-master/templates/icons/simple-icons/fluentbit.svg +1 -0
  3302. skills/ppt-master/templates/icons/simple-icons/fluentd.svg +1 -0
  3303. skills/ppt-master/templates/icons/simple-icons/fluke.svg +1 -0
  3304. skills/ppt-master/templates/icons/simple-icons/flutter.svg +1 -0
  3305. skills/ppt-master/templates/icons/simple-icons/flux.svg +1 -0
  3306. skills/ppt-master/templates/icons/simple-icons/fluxer.svg +1 -0
  3307. skills/ppt-master/templates/icons/simple-icons/fluxus.svg +1 -0
  3308. skills/ppt-master/templates/icons/simple-icons/flydotio.svg +1 -0
  3309. skills/ppt-master/templates/icons/simple-icons/flyway.svg +1 -0
  3310. skills/ppt-master/templates/icons/simple-icons/fmod.svg +1 -0
  3311. skills/ppt-master/templates/icons/simple-icons/fnac.svg +1 -0
  3312. skills/ppt-master/templates/icons/simple-icons/folium.svg +1 -0
  3313. skills/ppt-master/templates/icons/simple-icons/folo.svg +1 -0
  3314. skills/ppt-master/templates/icons/simple-icons/fonoma.svg +1 -0
  3315. skills/ppt-master/templates/icons/simple-icons/fontawesome.svg +1 -0
  3316. skills/ppt-master/templates/icons/simple-icons/fontbase.svg +1 -0
  3317. skills/ppt-master/templates/icons/simple-icons/fontforge.svg +1 -0
  3318. skills/ppt-master/templates/icons/simple-icons/foobar2000.svg +1 -0
  3319. skills/ppt-master/templates/icons/simple-icons/foodpanda.svg +1 -0
  3320. skills/ppt-master/templates/icons/simple-icons/ford.svg +1 -0
  3321. skills/ppt-master/templates/icons/simple-icons/forgejo.svg +1 -0
  3322. skills/ppt-master/templates/icons/simple-icons/formbricks.svg +1 -0
  3323. skills/ppt-master/templates/icons/simple-icons/formik.svg +1 -0
  3324. skills/ppt-master/templates/icons/simple-icons/formspree.svg +1 -0
  3325. skills/ppt-master/templates/icons/simple-icons/formstack.svg +1 -0
  3326. skills/ppt-master/templates/icons/simple-icons/fortinet.svg +1 -0
  3327. skills/ppt-master/templates/icons/simple-icons/fortnite.svg +1 -0
  3328. skills/ppt-master/templates/icons/simple-icons/fortran.svg +1 -0
  3329. skills/ppt-master/templates/icons/simple-icons/fossa.svg +1 -0
  3330. skills/ppt-master/templates/icons/simple-icons/fossilscm.svg +1 -0
  3331. skills/ppt-master/templates/icons/simple-icons/foundryvirtualtabletop.svg +1 -0
  3332. skills/ppt-master/templates/icons/simple-icons/foursquare.svg +1 -0
  3333. skills/ppt-master/templates/icons/simple-icons/foursquarecityguide.svg +1 -0
  3334. skills/ppt-master/templates/icons/simple-icons/fox.svg +1 -0
  3335. skills/ppt-master/templates/icons/simple-icons/foxtel.svg +1 -0
  3336. skills/ppt-master/templates/icons/simple-icons/fozzy.svg +1 -0
  3337. skills/ppt-master/templates/icons/simple-icons/framer.svg +1 -0
  3338. skills/ppt-master/templates/icons/simple-icons/framework.svg +1 -0
  3339. skills/ppt-master/templates/icons/simple-icons/framework7.svg +1 -0
  3340. skills/ppt-master/templates/icons/simple-icons/franprix.svg +1 -0
  3341. skills/ppt-master/templates/icons/simple-icons/frappe.svg +1 -0
  3342. skills/ppt-master/templates/icons/simple-icons/fraunhofergesellschaft.svg +1 -0
  3343. skills/ppt-master/templates/icons/simple-icons/freebsd.svg +1 -0
  3344. skills/ppt-master/templates/icons/simple-icons/freecad.svg +1 -0
  3345. skills/ppt-master/templates/icons/simple-icons/freecodecamp.svg +1 -0
  3346. skills/ppt-master/templates/icons/simple-icons/freedesktopdotorg.svg +1 -0
  3347. skills/ppt-master/templates/icons/simple-icons/freelancer.svg +1 -0
  3348. skills/ppt-master/templates/icons/simple-icons/freelancermap.svg +1 -0
  3349. skills/ppt-master/templates/icons/simple-icons/freenas.svg +1 -0
  3350. skills/ppt-master/templates/icons/simple-icons/freenet.svg +1 -0
  3351. skills/ppt-master/templates/icons/simple-icons/freepik.svg +1 -0
  3352. skills/ppt-master/templates/icons/simple-icons/freetube.svg +1 -0
  3353. skills/ppt-master/templates/icons/simple-icons/fresh.svg +1 -0
  3354. skills/ppt-master/templates/icons/simple-icons/freshrss.svg +1 -0
  3355. skills/ppt-master/templates/icons/simple-icons/frigate.svg +1 -0
  3356. skills/ppt-master/templates/icons/simple-icons/fritz.svg +1 -0
  3357. skills/ppt-master/templates/icons/simple-icons/frontendmentor.svg +1 -0
  3358. skills/ppt-master/templates/icons/simple-icons/frontify.svg +1 -0
  3359. skills/ppt-master/templates/icons/simple-icons/fsecure.svg +1 -0
  3360. skills/ppt-master/templates/icons/simple-icons/fsharp.svg +1 -0
  3361. skills/ppt-master/templates/icons/simple-icons/fubo.svg +1 -0
  3362. skills/ppt-master/templates/icons/simple-icons/fueler.svg +1 -0
  3363. skills/ppt-master/templates/icons/simple-icons/fugacloud.svg +1 -0
  3364. skills/ppt-master/templates/icons/simple-icons/fujifilm.svg +1 -0
  3365. skills/ppt-master/templates/icons/simple-icons/fujitsu.svg +1 -0
  3366. skills/ppt-master/templates/icons/simple-icons/funimation.svg +1 -0
  3367. skills/ppt-master/templates/icons/simple-icons/furaffinity.svg +1 -0
  3368. skills/ppt-master/templates/icons/simple-icons/furrynetwork.svg +1 -0
  3369. skills/ppt-master/templates/icons/simple-icons/fusionauth.svg +1 -0
  3370. skills/ppt-master/templates/icons/simple-icons/futurelearn.svg +1 -0
  3371. skills/ppt-master/templates/icons/simple-icons/fyle.svg +1 -0
  3372. skills/ppt-master/templates/icons/simple-icons/g2.svg +1 -0
  3373. skills/ppt-master/templates/icons/simple-icons/g2a.svg +1 -0
  3374. skills/ppt-master/templates/icons/simple-icons/g2g.svg +1 -0
  3375. skills/ppt-master/templates/icons/simple-icons/galaxus.svg +1 -0
  3376. skills/ppt-master/templates/icons/simple-icons/gameandwatch.svg +1 -0
  3377. skills/ppt-master/templates/icons/simple-icons/gamebanana.svg +1 -0
  3378. skills/ppt-master/templates/icons/simple-icons/gamedeveloper.svg +1 -0
  3379. skills/ppt-master/templates/icons/simple-icons/gamejolt.svg +1 -0
  3380. skills/ppt-master/templates/icons/simple-icons/gameloft.svg +1 -0
  3381. skills/ppt-master/templates/icons/simple-icons/gamemaker.svg +1 -0
  3382. skills/ppt-master/templates/icons/simple-icons/gamescience.svg +1 -0
  3383. skills/ppt-master/templates/icons/simple-icons/gandi.svg +1 -0
  3384. skills/ppt-master/templates/icons/simple-icons/garmin.svg +1 -0
  3385. skills/ppt-master/templates/icons/simple-icons/garudalinux.svg +1 -0
  3386. skills/ppt-master/templates/icons/simple-icons/gatling.svg +1 -0
  3387. skills/ppt-master/templates/icons/simple-icons/gatsby.svg +1 -0
  3388. skills/ppt-master/templates/icons/simple-icons/gcore.svg +1 -0
  3389. skills/ppt-master/templates/icons/simple-icons/gdal.svg +1 -0
  3390. skills/ppt-master/templates/icons/simple-icons/geant.svg +1 -0
  3391. skills/ppt-master/templates/icons/simple-icons/geeksforgeeks.svg +1 -0
  3392. skills/ppt-master/templates/icons/simple-icons/generalelectric.svg +1 -0
  3393. skills/ppt-master/templates/icons/simple-icons/generalmotors.svg +1 -0
  3394. skills/ppt-master/templates/icons/simple-icons/genius.svg +1 -0
  3395. skills/ppt-master/templates/icons/simple-icons/gentoo.svg +1 -0
  3396. skills/ppt-master/templates/icons/simple-icons/geocaching.svg +1 -0
  3397. skills/ppt-master/templates/icons/simple-icons/geode.svg +1 -0
  3398. skills/ppt-master/templates/icons/simple-icons/geopandas.svg +1 -0
  3399. skills/ppt-master/templates/icons/simple-icons/gerrit.svg +1 -0
  3400. skills/ppt-master/templates/icons/simple-icons/getx.svg +1 -0
  3401. skills/ppt-master/templates/icons/simple-icons/ghost.svg +1 -0
  3402. skills/ppt-master/templates/icons/simple-icons/ghostery.svg +1 -0
  3403. skills/ppt-master/templates/icons/simple-icons/ghostfolio.svg +1 -0
  3404. skills/ppt-master/templates/icons/simple-icons/ghostty.svg +1 -0
  3405. skills/ppt-master/templates/icons/simple-icons/gimp.svg +1 -0
  3406. skills/ppt-master/templates/icons/simple-icons/gin.svg +1 -0
  3407. skills/ppt-master/templates/icons/simple-icons/giphy.svg +1 -0
  3408. skills/ppt-master/templates/icons/simple-icons/git.svg +1 -0
  3409. skills/ppt-master/templates/icons/simple-icons/gitbook.svg +1 -0
  3410. skills/ppt-master/templates/icons/simple-icons/gitcode.svg +1 -0
  3411. skills/ppt-master/templates/icons/simple-icons/gitconnected.svg +1 -0
  3412. skills/ppt-master/templates/icons/simple-icons/gitea.svg +1 -0
  3413. skills/ppt-master/templates/icons/simple-icons/gitee.svg +1 -0
  3414. skills/ppt-master/templates/icons/simple-icons/gitextensions.svg +1 -0
  3415. skills/ppt-master/templates/icons/simple-icons/gitforwindows.svg +1 -0
  3416. skills/ppt-master/templates/icons/simple-icons/github.svg +1 -0
  3417. skills/ppt-master/templates/icons/simple-icons/githubactions.svg +1 -0
  3418. skills/ppt-master/templates/icons/simple-icons/githubcopilot.svg +1 -0
  3419. skills/ppt-master/templates/icons/simple-icons/githubpages.svg +1 -0
  3420. skills/ppt-master/templates/icons/simple-icons/githubsponsors.svg +1 -0
  3421. skills/ppt-master/templates/icons/simple-icons/gitignoredotio.svg +1 -0
  3422. skills/ppt-master/templates/icons/simple-icons/gitkraken.svg +1 -0
  3423. skills/ppt-master/templates/icons/simple-icons/gitlab.svg +1 -0
  3424. skills/ppt-master/templates/icons/simple-icons/gitlfs.svg +1 -0
  3425. skills/ppt-master/templates/icons/simple-icons/gitpod.svg +1 -0
  3426. skills/ppt-master/templates/icons/simple-icons/gitter.svg +1 -0
  3427. skills/ppt-master/templates/icons/simple-icons/glance.svg +1 -0
  3428. skills/ppt-master/templates/icons/simple-icons/glassdoor.svg +1 -0
  3429. skills/ppt-master/templates/icons/simple-icons/gldotinet.svg +1 -0
  3430. skills/ppt-master/templates/icons/simple-icons/gleam.svg +1 -0
  3431. skills/ppt-master/templates/icons/simple-icons/glide.svg +1 -0
  3432. skills/ppt-master/templates/icons/simple-icons/glitch.svg +1 -0
  3433. skills/ppt-master/templates/icons/simple-icons/globus.svg +1 -0
  3434. skills/ppt-master/templates/icons/simple-icons/glovo.svg +1 -0
  3435. skills/ppt-master/templates/icons/simple-icons/gltf.svg +1 -0
  3436. skills/ppt-master/templates/icons/simple-icons/gmail.svg +1 -0
  3437. skills/ppt-master/templates/icons/simple-icons/gmx.svg +1 -0
  3438. skills/ppt-master/templates/icons/simple-icons/gnome.svg +1 -0
  3439. skills/ppt-master/templates/icons/simple-icons/gnometerminal.svg +1 -0
  3440. skills/ppt-master/templates/icons/simple-icons/gnu.svg +1 -0
  3441. skills/ppt-master/templates/icons/simple-icons/gnubash.svg +1 -0
  3442. skills/ppt-master/templates/icons/simple-icons/gnuemacs.svg +1 -0
  3443. skills/ppt-master/templates/icons/simple-icons/gnuicecat.svg +1 -0
  3444. skills/ppt-master/templates/icons/simple-icons/gnuprivacyguard.svg +1 -0
  3445. skills/ppt-master/templates/icons/simple-icons/gnusocial.svg +1 -0
  3446. skills/ppt-master/templates/icons/simple-icons/go.svg +1 -0
  3447. skills/ppt-master/templates/icons/simple-icons/gocd.svg +1 -0
  3448. skills/ppt-master/templates/icons/simple-icons/godaddy.svg +1 -0
  3449. skills/ppt-master/templates/icons/simple-icons/godotengine.svg +1 -0
  3450. skills/ppt-master/templates/icons/simple-icons/gofundme.svg +1 -0
  3451. skills/ppt-master/templates/icons/simple-icons/gogdotcom.svg +1 -0
  3452. skills/ppt-master/templates/icons/simple-icons/gojek.svg +1 -0
  3453. skills/ppt-master/templates/icons/simple-icons/goland.svg +1 -0
  3454. skills/ppt-master/templates/icons/simple-icons/goldenline.svg +1 -0
  3455. skills/ppt-master/templates/icons/simple-icons/goldmansachs.svg +1 -0
  3456. skills/ppt-master/templates/icons/simple-icons/goodreads.svg +1 -0
  3457. skills/ppt-master/templates/icons/simple-icons/google.svg +1 -0
  3458. skills/ppt-master/templates/icons/simple-icons/googleadmob.svg +1 -0
  3459. skills/ppt-master/templates/icons/simple-icons/googleads.svg +1 -0
  3460. skills/ppt-master/templates/icons/simple-icons/googleadsense.svg +1 -0
  3461. skills/ppt-master/templates/icons/simple-icons/googleanalytics.svg +1 -0
  3462. skills/ppt-master/templates/icons/simple-icons/googleappsscript.svg +1 -0
  3463. skills/ppt-master/templates/icons/simple-icons/googleassistant.svg +1 -0
  3464. skills/ppt-master/templates/icons/simple-icons/googleauthenticator.svg +1 -0
  3465. skills/ppt-master/templates/icons/simple-icons/googlebigquery.svg +1 -0
  3466. skills/ppt-master/templates/icons/simple-icons/googlebigtable.svg +1 -0
  3467. skills/ppt-master/templates/icons/simple-icons/googlecalendar.svg +1 -0
  3468. skills/ppt-master/templates/icons/simple-icons/googlecampaignmanager360.svg +1 -0
  3469. skills/ppt-master/templates/icons/simple-icons/googlecardboard.svg +1 -0
  3470. skills/ppt-master/templates/icons/simple-icons/googlecast.svg +1 -0
  3471. skills/ppt-master/templates/icons/simple-icons/googlechat.svg +1 -0
  3472. skills/ppt-master/templates/icons/simple-icons/googlechrome.svg +1 -0
  3473. skills/ppt-master/templates/icons/simple-icons/googlechronicle.svg +1 -0
  3474. skills/ppt-master/templates/icons/simple-icons/googleclassroom.svg +1 -0
  3475. skills/ppt-master/templates/icons/simple-icons/googlecloud.svg +1 -0
  3476. skills/ppt-master/templates/icons/simple-icons/googlecloudcomposer.svg +1 -0
  3477. skills/ppt-master/templates/icons/simple-icons/googlecloudspanner.svg +1 -0
  3478. skills/ppt-master/templates/icons/simple-icons/googlecloudstorage.svg +1 -0
  3479. skills/ppt-master/templates/icons/simple-icons/googlecolab.svg +1 -0
  3480. skills/ppt-master/templates/icons/simple-icons/googlecontaineroptimizedos.svg +1 -0
  3481. skills/ppt-master/templates/icons/simple-icons/googledataflow.svg +1 -0
  3482. skills/ppt-master/templates/icons/simple-icons/googledataproc.svg +1 -0
  3483. skills/ppt-master/templates/icons/simple-icons/googledatastudio.svg +1 -0
  3484. skills/ppt-master/templates/icons/simple-icons/googledisplayandvideo360.svg +1 -0
  3485. skills/ppt-master/templates/icons/simple-icons/googledocs.svg +1 -0
  3486. skills/ppt-master/templates/icons/simple-icons/googledomains.svg +1 -0
  3487. skills/ppt-master/templates/icons/simple-icons/googledrive.svg +1 -0
  3488. skills/ppt-master/templates/icons/simple-icons/googleearth.svg +1 -0
  3489. skills/ppt-master/templates/icons/simple-icons/googleearthengine.svg +1 -0
  3490. skills/ppt-master/templates/icons/simple-icons/googlefit.svg +1 -0
  3491. skills/ppt-master/templates/icons/simple-icons/googlefonts.svg +1 -0
  3492. skills/ppt-master/templates/icons/simple-icons/googleforms.svg +1 -0
  3493. skills/ppt-master/templates/icons/simple-icons/googlegemini.svg +1 -0
  3494. skills/ppt-master/templates/icons/simple-icons/googlehangouts.svg +1 -0
  3495. skills/ppt-master/templates/icons/simple-icons/googlehome.svg +1 -0
  3496. skills/ppt-master/templates/icons/simple-icons/googlejules.svg +1 -0
  3497. skills/ppt-master/templates/icons/simple-icons/googlekeep.svg +1 -0
  3498. skills/ppt-master/templates/icons/simple-icons/googlelens.svg +1 -0
  3499. skills/ppt-master/templates/icons/simple-icons/googlemaps.svg +1 -0
  3500. skills/ppt-master/templates/icons/simple-icons/googlemarketingplatform.svg +1 -0
  3501. skills/ppt-master/templates/icons/simple-icons/googlemeet.svg +1 -0
  3502. skills/ppt-master/templates/icons/simple-icons/googlemessages.svg +1 -0
  3503. skills/ppt-master/templates/icons/simple-icons/googlemybusiness.svg +1 -0
  3504. skills/ppt-master/templates/icons/simple-icons/googlenearby.svg +1 -0
  3505. skills/ppt-master/templates/icons/simple-icons/googlenews.svg +1 -0
  3506. skills/ppt-master/templates/icons/simple-icons/googleoptimize.svg +1 -0
  3507. skills/ppt-master/templates/icons/simple-icons/googlepay.svg +1 -0
  3508. skills/ppt-master/templates/icons/simple-icons/googlephotos.svg +1 -0
  3509. skills/ppt-master/templates/icons/simple-icons/googleplay.svg +1 -0
  3510. skills/ppt-master/templates/icons/simple-icons/googlepodcasts.svg +1 -0
  3511. skills/ppt-master/templates/icons/simple-icons/googlepubsub.svg +1 -0
  3512. skills/ppt-master/templates/icons/simple-icons/googlescholar.svg +1 -0
  3513. skills/ppt-master/templates/icons/simple-icons/googlesearchconsole.svg +1 -0
  3514. skills/ppt-master/templates/icons/simple-icons/googlesheets.svg +1 -0
  3515. skills/ppt-master/templates/icons/simple-icons/googleslides.svg +1 -0
  3516. skills/ppt-master/templates/icons/simple-icons/googlestreetview.svg +1 -0
  3517. skills/ppt-master/templates/icons/simple-icons/googlesummerofcode.svg +1 -0
  3518. skills/ppt-master/templates/icons/simple-icons/googletagmanager.svg +1 -0
  3519. skills/ppt-master/templates/icons/simple-icons/googletasks.svg +1 -0
  3520. skills/ppt-master/templates/icons/simple-icons/googletranslate.svg +1 -0
  3521. skills/ppt-master/templates/icons/simple-icons/googletv.svg +1 -0
  3522. skills/ppt-master/templates/icons/simple-icons/gotomeeting.svg +1 -0
  3523. skills/ppt-master/templates/icons/simple-icons/gplv3.svg +1 -0
  3524. skills/ppt-master/templates/icons/simple-icons/grab.svg +1 -0
  3525. skills/ppt-master/templates/icons/simple-icons/gradio.svg +1 -0
  3526. skills/ppt-master/templates/icons/simple-icons/gradle.svg +1 -0
  3527. skills/ppt-master/templates/icons/simple-icons/gradleplaypublisher.svg +1 -0
  3528. skills/ppt-master/templates/icons/simple-icons/grafana.svg +1 -0
  3529. skills/ppt-master/templates/icons/simple-icons/grammarly.svg +1 -0
  3530. skills/ppt-master/templates/icons/simple-icons/grandfrais.svg +1 -0
  3531. skills/ppt-master/templates/icons/simple-icons/grapheneos.svg +1 -0
  3532. skills/ppt-master/templates/icons/simple-icons/graphite.svg +1 -0
  3533. skills/ppt-master/templates/icons/simple-icons/graphite_editor.svg +1 -0
  3534. skills/ppt-master/templates/icons/simple-icons/graphql.svg +1 -0
  3535. skills/ppt-master/templates/icons/simple-icons/grav.svg +1 -0
  3536. skills/ppt-master/templates/icons/simple-icons/gravatar.svg +1 -0
  3537. skills/ppt-master/templates/icons/simple-icons/graylog.svg +1 -0
  3538. skills/ppt-master/templates/icons/simple-icons/greasyfork.svg +1 -0
  3539. skills/ppt-master/templates/icons/simple-icons/greatlearning.svg +1 -0
  3540. skills/ppt-master/templates/icons/simple-icons/greenhouse.svg +1 -0
  3541. skills/ppt-master/templates/icons/simple-icons/greensock.svg +1 -0
  3542. skills/ppt-master/templates/icons/simple-icons/greptimedb.svg +1 -0
  3543. skills/ppt-master/templates/icons/simple-icons/griddotai.svg +1 -0
  3544. skills/ppt-master/templates/icons/simple-icons/gridsome.svg +1 -0
  3545. skills/ppt-master/templates/icons/simple-icons/grocy.svg +1 -0
  3546. skills/ppt-master/templates/icons/simple-icons/groupme.svg +1 -0
  3547. skills/ppt-master/templates/icons/simple-icons/groupon.svg +1 -0
  3548. skills/ppt-master/templates/icons/simple-icons/grubhub.svg +1 -0
  3549. skills/ppt-master/templates/icons/simple-icons/grunt.svg +1 -0
  3550. skills/ppt-master/templates/icons/simple-icons/gsap.svg +1 -0
  3551. skills/ppt-master/templates/icons/simple-icons/gsk.svg +1 -0
  3552. skills/ppt-master/templates/icons/simple-icons/gsma.svg +1 -0
  3553. skills/ppt-master/templates/icons/simple-icons/gsmarenadotcom.svg +1 -0
  3554. skills/ppt-master/templates/icons/simple-icons/gstreamer.svg +1 -0
  3555. skills/ppt-master/templates/icons/simple-icons/gtk.svg +1 -0
  3556. skills/ppt-master/templates/icons/simple-icons/guangzhoumetro.svg +1 -0
  3557. skills/ppt-master/templates/icons/simple-icons/guilded.svg +1 -0
  3558. skills/ppt-master/templates/icons/simple-icons/guitarpro.svg +1 -0
  3559. skills/ppt-master/templates/icons/simple-icons/gulp.svg +1 -0
  3560. skills/ppt-master/templates/icons/simple-icons/gumroad.svg +1 -0
  3561. skills/ppt-master/templates/icons/simple-icons/gumtree.svg +1 -0
  3562. skills/ppt-master/templates/icons/simple-icons/gunicorn.svg +1 -0
  3563. skills/ppt-master/templates/icons/simple-icons/gurobi.svg +1 -0
  3564. skills/ppt-master/templates/icons/simple-icons/gusto.svg +1 -0
  3565. skills/ppt-master/templates/icons/simple-icons/gutenberg.svg +1 -0
  3566. skills/ppt-master/templates/icons/simple-icons/h2database.svg +1 -0
  3567. skills/ppt-master/templates/icons/simple-icons/h3.svg +1 -0
  3568. skills/ppt-master/templates/icons/simple-icons/habr.svg +1 -0
  3569. skills/ppt-master/templates/icons/simple-icons/hackaday.svg +1 -0
  3570. skills/ppt-master/templates/icons/simple-icons/hackclub.svg +1 -0
  3571. skills/ppt-master/templates/icons/simple-icons/hackerearth.svg +1 -0
  3572. skills/ppt-master/templates/icons/simple-icons/hackernoon.svg +1 -0
  3573. skills/ppt-master/templates/icons/simple-icons/hackerone.svg +1 -0
  3574. skills/ppt-master/templates/icons/simple-icons/hackerrank.svg +1 -0
  3575. skills/ppt-master/templates/icons/simple-icons/hackmd.svg +1 -0
  3576. skills/ppt-master/templates/icons/simple-icons/hackster.svg +1 -0
  3577. skills/ppt-master/templates/icons/simple-icons/hackthebox.svg +1 -0
  3578. skills/ppt-master/templates/icons/simple-icons/hal.svg +1 -0
  3579. skills/ppt-master/templates/icons/simple-icons/handlebarsdotjs.svg +1 -0
  3580. skills/ppt-master/templates/icons/simple-icons/handm.svg +1 -0
  3581. skills/ppt-master/templates/icons/simple-icons/handshake.svg +1 -0
  3582. skills/ppt-master/templates/icons/simple-icons/handshake_protocol.svg +1 -0
  3583. skills/ppt-master/templates/icons/simple-icons/happycow.svg +1 -0
  3584. skills/ppt-master/templates/icons/simple-icons/harbor.svg +1 -0
  3585. skills/ppt-master/templates/icons/simple-icons/harmonyos.svg +1 -0
  3586. skills/ppt-master/templates/icons/simple-icons/hashcat.svg +1 -0
  3587. skills/ppt-master/templates/icons/simple-icons/hashicorp.svg +1 -0
  3588. skills/ppt-master/templates/icons/simple-icons/hashnode.svg +1 -0
  3589. skills/ppt-master/templates/icons/simple-icons/haskell.svg +1 -0
  3590. skills/ppt-master/templates/icons/simple-icons/hasura.svg +1 -0
  3591. skills/ppt-master/templates/icons/simple-icons/hatenabookmark.svg +1 -0
  3592. skills/ppt-master/templates/icons/simple-icons/haveibeenpwned.svg +1 -0
  3593. skills/ppt-master/templates/icons/simple-icons/havells.svg +1 -0
  3594. skills/ppt-master/templates/icons/simple-icons/haxe.svg +1 -0
  3595. skills/ppt-master/templates/icons/simple-icons/haystack.svg +1 -0
  3596. skills/ppt-master/templates/icons/simple-icons/hbo.svg +1 -0
  3597. skills/ppt-master/templates/icons/simple-icons/hbomax.svg +1 -0
  3598. skills/ppt-master/templates/icons/simple-icons/hcl.svg +1 -0
  3599. skills/ppt-master/templates/icons/simple-icons/hdfcbank.svg +1 -0
  3600. skills/ppt-master/templates/icons/simple-icons/headlessui.svg +1 -0
  3601. skills/ppt-master/templates/icons/simple-icons/headphonezone.svg +1 -0
  3602. skills/ppt-master/templates/icons/simple-icons/headspace.svg +1 -0
  3603. skills/ppt-master/templates/icons/simple-icons/hearth.svg +1 -0
  3604. skills/ppt-master/templates/icons/simple-icons/hearthisdotat.svg +1 -0
  3605. skills/ppt-master/templates/icons/simple-icons/hedera.svg +1 -0
  3606. skills/ppt-master/templates/icons/simple-icons/hedgedoc.svg +1 -0
  3607. skills/ppt-master/templates/icons/simple-icons/helium.svg +1 -0
  3608. skills/ppt-master/templates/icons/simple-icons/helix.svg +1 -0
  3609. skills/ppt-master/templates/icons/simple-icons/hellofresh.svg +1 -0
  3610. skills/ppt-master/templates/icons/simple-icons/hellyhansen.svg +1 -0
  3611. skills/ppt-master/templates/icons/simple-icons/helm.svg +1 -0
  3612. skills/ppt-master/templates/icons/simple-icons/helpdesk.svg +1 -0
  3613. skills/ppt-master/templates/icons/simple-icons/helpscout.svg +1 -0
  3614. skills/ppt-master/templates/icons/simple-icons/hepsiemlak.svg +1 -0
  3615. skills/ppt-master/templates/icons/simple-icons/here.svg +1 -0
  3616. skills/ppt-master/templates/icons/simple-icons/hermes.svg +1 -0
  3617. skills/ppt-master/templates/icons/simple-icons/heroicgameslauncher.svg +1 -0
  3618. skills/ppt-master/templates/icons/simple-icons/heroku.svg +1 -0
  3619. skills/ppt-master/templates/icons/simple-icons/heroui.svg +1 -0
  3620. skills/ppt-master/templates/icons/simple-icons/hetzner.svg +1 -0
  3621. skills/ppt-master/templates/icons/simple-icons/hevy.svg +1 -0
  3622. skills/ppt-master/templates/icons/simple-icons/hexlet.svg +1 -0
  3623. skills/ppt-master/templates/icons/simple-icons/hexo.svg +1 -0
  3624. skills/ppt-master/templates/icons/simple-icons/hey.svg +1 -0
  3625. skills/ppt-master/templates/icons/simple-icons/hibernate.svg +1 -0
  3626. skills/ppt-master/templates/icons/simple-icons/hibob.svg +1 -0
  3627. skills/ppt-master/templates/icons/simple-icons/hilton.svg +1 -0
  3628. skills/ppt-master/templates/icons/simple-icons/hiltonhotelsandresorts.svg +1 -0
  3629. skills/ppt-master/templates/icons/simple-icons/hitachi.svg +1 -0
  3630. skills/ppt-master/templates/icons/simple-icons/hive.svg +1 -0
  3631. skills/ppt-master/templates/icons/simple-icons/hive_blockchain.svg +1 -0
  3632. skills/ppt-master/templates/icons/simple-icons/hivemq.svg +1 -0
  3633. skills/ppt-master/templates/icons/simple-icons/homarr.svg +1 -0
  3634. skills/ppt-master/templates/icons/simple-icons/homeadvisor.svg +1 -0
  3635. skills/ppt-master/templates/icons/simple-icons/homeassistant.svg +1 -0
  3636. skills/ppt-master/templates/icons/simple-icons/homeassistantcommunitystore.svg +1 -0
  3637. skills/ppt-master/templates/icons/simple-icons/homebrew.svg +1 -0
  3638. skills/ppt-master/templates/icons/simple-icons/homebridge.svg +1 -0
  3639. skills/ppt-master/templates/icons/simple-icons/homepage.svg +1 -0
  3640. skills/ppt-master/templates/icons/simple-icons/homify.svg +1 -0
  3641. skills/ppt-master/templates/icons/simple-icons/honda.svg +1 -0
  3642. skills/ppt-master/templates/icons/simple-icons/honey.svg +1 -0
  3643. skills/ppt-master/templates/icons/simple-icons/honeybadger.svg +1 -0
  3644. skills/ppt-master/templates/icons/simple-icons/honeygain.svg +1 -0
  3645. skills/ppt-master/templates/icons/simple-icons/hono.svg +1 -0
  3646. skills/ppt-master/templates/icons/simple-icons/honor.svg +1 -0
  3647. skills/ppt-master/templates/icons/simple-icons/hootsuite.svg +1 -0
  3648. skills/ppt-master/templates/icons/simple-icons/hoppscotch.svg +1 -0
  3649. skills/ppt-master/templates/icons/simple-icons/hostinger.svg +1 -0
  3650. skills/ppt-master/templates/icons/simple-icons/hotelsdotcom.svg +1 -0
  3651. skills/ppt-master/templates/icons/simple-icons/hotjar.svg +1 -0
  3652. skills/ppt-master/templates/icons/simple-icons/hotwire.svg +1 -0
  3653. skills/ppt-master/templates/icons/simple-icons/houdini.svg +1 -0
  3654. skills/ppt-master/templates/icons/simple-icons/houzz.svg +1 -0
  3655. skills/ppt-master/templates/icons/simple-icons/hp.svg +1 -0
  3656. skills/ppt-master/templates/icons/simple-icons/hsbc.svg +1 -0
  3657. skills/ppt-master/templates/icons/simple-icons/htc.svg +1 -0
  3658. skills/ppt-master/templates/icons/simple-icons/htcvive.svg +1 -0
  3659. skills/ppt-master/templates/icons/simple-icons/html5.svg +1 -0
  3660. skills/ppt-master/templates/icons/simple-icons/htmlacademy.svg +1 -0
  3661. skills/ppt-master/templates/icons/simple-icons/htmx.svg +1 -0
  3662. skills/ppt-master/templates/icons/simple-icons/htop.svg +1 -0
  3663. skills/ppt-master/templates/icons/simple-icons/httpie.svg +1 -0
  3664. skills/ppt-master/templates/icons/simple-icons/huawei.svg +1 -0
  3665. skills/ppt-master/templates/icons/simple-icons/hubspot.svg +1 -0
  3666. skills/ppt-master/templates/icons/simple-icons/huggingface.svg +1 -0
  3667. skills/ppt-master/templates/icons/simple-icons/hugo.svg +1 -0
  3668. skills/ppt-master/templates/icons/simple-icons/humblebundle.svg +1 -0
  3669. skills/ppt-master/templates/icons/simple-icons/humhub.svg +1 -0
  3670. skills/ppt-master/templates/icons/simple-icons/hungryjacks.svg +1 -0
  3671. skills/ppt-master/templates/icons/simple-icons/husqvarna.svg +1 -0
  3672. skills/ppt-master/templates/icons/simple-icons/hyper.svg +1 -0
  3673. skills/ppt-master/templates/icons/simple-icons/hyperskill.svg +1 -0
  3674. skills/ppt-master/templates/icons/simple-icons/hyperx.svg +1 -0
  3675. skills/ppt-master/templates/icons/simple-icons/hypothesis.svg +1 -0
  3676. skills/ppt-master/templates/icons/simple-icons/hyprland.svg +1 -0
  3677. skills/ppt-master/templates/icons/simple-icons/hyundai.svg +1 -0
  3678. skills/ppt-master/templates/icons/simple-icons/i18next.svg +1 -0
  3679. skills/ppt-master/templates/icons/simple-icons/i3.svg +1 -0
  3680. skills/ppt-master/templates/icons/simple-icons/iata.svg +1 -0
  3681. skills/ppt-master/templates/icons/simple-icons/ibeacon.svg +1 -0
  3682. skills/ppt-master/templates/icons/simple-icons/iberia.svg +1 -0
  3683. skills/ppt-master/templates/icons/simple-icons/ibm.svg +1 -0
  3684. skills/ppt-master/templates/icons/simple-icons/ibmcloud.svg +1 -0
  3685. skills/ppt-master/templates/icons/simple-icons/ibmwatson.svg +1 -0
  3686. skills/ppt-master/templates/icons/simple-icons/iced.svg +1 -0
  3687. skills/ppt-master/templates/icons/simple-icons/iceland.svg +1 -0
  3688. skills/ppt-master/templates/icons/simple-icons/icicibank.svg +1 -0
  3689. skills/ppt-master/templates/icons/simple-icons/icinga.svg +1 -0
  3690. skills/ppt-master/templates/icons/simple-icons/icloud.svg +1 -0
  3691. skills/ppt-master/templates/icons/simple-icons/icomoon.svg +1 -0
  3692. skills/ppt-master/templates/icons/simple-icons/icon.svg +1 -0
  3693. skills/ppt-master/templates/icons/simple-icons/iconfinder.svg +1 -0
  3694. skills/ppt-master/templates/icons/simple-icons/iconify.svg +1 -0
  3695. skills/ppt-master/templates/icons/simple-icons/iconjar.svg +1 -0
  3696. skills/ppt-master/templates/icons/simple-icons/icons8.svg +1 -0
  3697. skills/ppt-master/templates/icons/simple-icons/icq.svg +1 -0
  3698. skills/ppt-master/templates/icons/simple-icons/ieee.svg +1 -0
  3699. skills/ppt-master/templates/icons/simple-icons/ifixit.svg +1 -0
  3700. skills/ppt-master/templates/icons/simple-icons/ifood.svg +1 -0
  3701. skills/ppt-master/templates/icons/simple-icons/ifttt.svg +1 -0
  3702. skills/ppt-master/templates/icons/simple-icons/igdb.svg +1 -0
  3703. skills/ppt-master/templates/icons/simple-icons/ign.svg +1 -0
  3704. skills/ppt-master/templates/icons/simple-icons/iheartradio.svg +1 -0
  3705. skills/ppt-master/templates/icons/simple-icons/ikea.svg +1 -0
  3706. skills/ppt-master/templates/icons/simple-icons/iledefrancemobilites.svg +1 -0
  3707. skills/ppt-master/templates/icons/simple-icons/ilovepdf.svg +1 -0
  3708. skills/ppt-master/templates/icons/simple-icons/imagedotsc.svg +1 -0
  3709. skills/ppt-master/templates/icons/simple-icons/imagej.svg +1 -0
  3710. skills/ppt-master/templates/icons/simple-icons/imagetoolbox.svg +1 -0
  3711. skills/ppt-master/templates/icons/simple-icons/imdb.svg +1 -0
  3712. skills/ppt-master/templates/icons/simple-icons/imessage.svg +1 -0
  3713. skills/ppt-master/templates/icons/simple-icons/imgur.svg +1 -0
  3714. skills/ppt-master/templates/icons/simple-icons/immer.svg +1 -0
  3715. skills/ppt-master/templates/icons/simple-icons/immersivetranslate.svg +1 -0
  3716. skills/ppt-master/templates/icons/simple-icons/immich.svg +1 -0
  3717. skills/ppt-master/templates/icons/simple-icons/imou.svg +1 -0
  3718. skills/ppt-master/templates/icons/simple-icons/improvmx.svg +1 -0
  3719. skills/ppt-master/templates/icons/simple-icons/indeed.svg +1 -0
  3720. skills/ppt-master/templates/icons/simple-icons/indiansuperleague.svg +1 -0
  3721. skills/ppt-master/templates/icons/simple-icons/indiehackers.svg +1 -0
  3722. skills/ppt-master/templates/icons/simple-icons/indieweb.svg +1 -0
  3723. skills/ppt-master/templates/icons/simple-icons/indigo.svg +1 -0
  3724. skills/ppt-master/templates/icons/simple-icons/inductiveautomation.svg +1 -0
  3725. skills/ppt-master/templates/icons/simple-icons/inertia.svg +1 -0
  3726. skills/ppt-master/templates/icons/simple-icons/infiniti.svg +1 -0
  3727. skills/ppt-master/templates/icons/simple-icons/infinityfree.svg +1 -0
  3728. skills/ppt-master/templates/icons/simple-icons/influxdb.svg +1 -0
  3729. skills/ppt-master/templates/icons/simple-icons/infomaniak.svg +1 -0
  3730. skills/ppt-master/templates/icons/simple-icons/infoq.svg +1 -0
  3731. skills/ppt-master/templates/icons/simple-icons/informatica.svg +1 -0
  3732. skills/ppt-master/templates/icons/simple-icons/infosys.svg +1 -0
  3733. skills/ppt-master/templates/icons/simple-icons/infracost.svg +1 -0
  3734. skills/ppt-master/templates/icons/simple-icons/infuse.svg +1 -0
  3735. skills/ppt-master/templates/icons/simple-icons/ingress.svg +1 -0
  3736. skills/ppt-master/templates/icons/simple-icons/inkdrop.svg +1 -0
  3737. skills/ppt-master/templates/icons/simple-icons/inkscape.svg +1 -0
  3738. skills/ppt-master/templates/icons/simple-icons/inoreader.svg +1 -0
  3739. skills/ppt-master/templates/icons/simple-icons/inquirer.svg +1 -0
  3740. skills/ppt-master/templates/icons/simple-icons/insomnia.svg +1 -0
  3741. skills/ppt-master/templates/icons/simple-icons/inspire.svg +1 -0
  3742. skills/ppt-master/templates/icons/simple-icons/insta360.svg +1 -0
  3743. skills/ppt-master/templates/icons/simple-icons/instacart.svg +1 -0
  3744. skills/ppt-master/templates/icons/simple-icons/instagram.svg +1 -0
  3745. skills/ppt-master/templates/icons/simple-icons/instapaper.svg +1 -0
  3746. skills/ppt-master/templates/icons/simple-icons/instatus.svg +1 -0
  3747. skills/ppt-master/templates/icons/simple-icons/instructables.svg +1 -0
  3748. skills/ppt-master/templates/icons/simple-icons/instructure.svg +1 -0
  3749. skills/ppt-master/templates/icons/simple-icons/intel.svg +1 -0
  3750. skills/ppt-master/templates/icons/simple-icons/intellijidea.svg +1 -0
  3751. skills/ppt-master/templates/icons/simple-icons/interactiondesignfoundation.svg +1 -0
  3752. skills/ppt-master/templates/icons/simple-icons/interactjs.svg +1 -0
  3753. skills/ppt-master/templates/icons/simple-icons/interbase.svg +1 -0
  3754. skills/ppt-master/templates/icons/simple-icons/intercom.svg +1 -0
  3755. skills/ppt-master/templates/icons/simple-icons/intermarche.svg +1 -0
  3756. skills/ppt-master/templates/icons/simple-icons/internetarchive.svg +1 -0
  3757. skills/ppt-master/templates/icons/simple-icons/internetcomputer.svg +1 -0
  3758. skills/ppt-master/templates/icons/simple-icons/internetexplorer.svg +1 -0
  3759. skills/ppt-master/templates/icons/simple-icons/intigriti.svg +1 -0
  3760. skills/ppt-master/templates/icons/simple-icons/intuit.svg +1 -0
  3761. skills/ppt-master/templates/icons/simple-icons/invidious.svg +1 -0
  3762. skills/ppt-master/templates/icons/simple-icons/invision.svg +1 -0
  3763. skills/ppt-master/templates/icons/simple-icons/invoiceninja.svg +1 -0
  3764. skills/ppt-master/templates/icons/simple-icons/iobroker.svg +1 -0
  3765. skills/ppt-master/templates/icons/simple-icons/ionic.svg +1 -0
  3766. skills/ppt-master/templates/icons/simple-icons/ionos.svg +1 -0
  3767. skills/ppt-master/templates/icons/simple-icons/ios.svg +1 -0
  3768. skills/ppt-master/templates/icons/simple-icons/iota.svg +1 -0
  3769. skills/ppt-master/templates/icons/simple-icons/ipfs.svg +1 -0
  3770. skills/ppt-master/templates/icons/simple-icons/iris.svg +1 -0
  3771. skills/ppt-master/templates/icons/simple-icons/irobot.svg +1 -0
  3772. skills/ppt-master/templates/icons/simple-icons/isc2.svg +1 -0
  3773. skills/ppt-master/templates/icons/simple-icons/isro.svg +1 -0
  3774. skills/ppt-master/templates/icons/simple-icons/issuu.svg +1 -0
  3775. skills/ppt-master/templates/icons/simple-icons/istio.svg +1 -0
  3776. skills/ppt-master/templates/icons/simple-icons/itchdotio.svg +1 -0
  3777. skills/ppt-master/templates/icons/simple-icons/iterm2.svg +1 -0
  3778. skills/ppt-master/templates/icons/simple-icons/itunes.svg +1 -0
  3779. skills/ppt-master/templates/icons/simple-icons/itvx.svg +1 -0
  3780. skills/ppt-master/templates/icons/simple-icons/iveco.svg +1 -0
  3781. skills/ppt-master/templates/icons/simple-icons/jabber.svg +1 -0
  3782. skills/ppt-master/templates/icons/simple-icons/jaeger.svg +1 -0
  3783. skills/ppt-master/templates/icons/simple-icons/jaguar.svg +1 -0
  3784. skills/ppt-master/templates/icons/simple-icons/jamboard.svg +1 -0
  3785. skills/ppt-master/templates/icons/simple-icons/jameson.svg +1 -0
  3786. skills/ppt-master/templates/icons/simple-icons/jamstack.svg +1 -0
  3787. skills/ppt-master/templates/icons/simple-icons/japanairlines.svg +1 -0
  3788. skills/ppt-master/templates/icons/simple-icons/jasmine.svg +1 -0
  3789. skills/ppt-master/templates/icons/simple-icons/javascript.svg +1 -0
  3790. skills/ppt-master/templates/icons/simple-icons/jbl.svg +1 -0
  3791. skills/ppt-master/templates/icons/simple-icons/jcb.svg +1 -0
  3792. skills/ppt-master/templates/icons/simple-icons/jdoodle.svg +1 -0
  3793. skills/ppt-master/templates/icons/simple-icons/jeep.svg +1 -0
  3794. skills/ppt-master/templates/icons/simple-icons/jekyll.svg +1 -0
  3795. skills/ppt-master/templates/icons/simple-icons/jellyfin.svg +1 -0
  3796. skills/ppt-master/templates/icons/simple-icons/jenkins.svg +1 -0
  3797. skills/ppt-master/templates/icons/simple-icons/jest.svg +1 -0
  3798. skills/ppt-master/templates/icons/simple-icons/jet.svg +1 -0
  3799. skills/ppt-master/templates/icons/simple-icons/jetblue.svg +1 -0
  3800. skills/ppt-master/templates/icons/simple-icons/jetbrains.svg +1 -0
  3801. skills/ppt-master/templates/icons/simple-icons/jetpackcompose.svg +1 -0
  3802. skills/ppt-master/templates/icons/simple-icons/jfrog.svg +1 -0
  3803. skills/ppt-master/templates/icons/simple-icons/jfrogpipelines.svg +1 -0
  3804. skills/ppt-master/templates/icons/simple-icons/jhipster.svg +1 -0
  3805. skills/ppt-master/templates/icons/simple-icons/jinja.svg +1 -0
  3806. skills/ppt-master/templates/icons/simple-icons/jio.svg +1 -0
  3807. skills/ppt-master/templates/icons/simple-icons/jira.svg +1 -0
  3808. skills/ppt-master/templates/icons/simple-icons/jirasoftware.svg +1 -0
  3809. skills/ppt-master/templates/icons/simple-icons/jitpack.svg +1 -0
  3810. skills/ppt-master/templates/icons/simple-icons/jitsi.svg +1 -0
  3811. skills/ppt-master/templates/icons/simple-icons/johndeere.svg +1 -0
  3812. skills/ppt-master/templates/icons/simple-icons/joomla.svg +1 -0
  3813. skills/ppt-master/templates/icons/simple-icons/joplin.svg +1 -0
  3814. skills/ppt-master/templates/icons/simple-icons/jordan.svg +1 -0
  3815. skills/ppt-master/templates/icons/simple-icons/jouav.svg +1 -0
  3816. skills/ppt-master/templates/icons/simple-icons/jovian.svg +1 -0
  3817. skills/ppt-master/templates/icons/simple-icons/jpeg.svg +1 -0
  3818. skills/ppt-master/templates/icons/simple-icons/jquery.svg +1 -0
  3819. skills/ppt-master/templates/icons/simple-icons/jrgroup.svg +1 -0
  3820. skills/ppt-master/templates/icons/simple-icons/jsdelivr.svg +1 -0
  3821. skills/ppt-master/templates/icons/simple-icons/jsfiddle.svg +1 -0
  3822. skills/ppt-master/templates/icons/simple-icons/json.svg +1 -0
  3823. skills/ppt-master/templates/icons/simple-icons/jsonwebtokens.svg +1 -0
  3824. skills/ppt-master/templates/icons/simple-icons/jsr.svg +1 -0
  3825. skills/ppt-master/templates/icons/simple-icons/jss.svg +1 -0
  3826. skills/ppt-master/templates/icons/simple-icons/juce.svg +1 -0
  3827. skills/ppt-master/templates/icons/simple-icons/juejin.svg +1 -0
  3828. skills/ppt-master/templates/icons/simple-icons/juke.svg +1 -0
  3829. skills/ppt-master/templates/icons/simple-icons/julia.svg +1 -0
  3830. skills/ppt-master/templates/icons/simple-icons/junipernetworks.svg +1 -0
  3831. skills/ppt-master/templates/icons/simple-icons/junit5.svg +1 -0
  3832. skills/ppt-master/templates/icons/simple-icons/jupyter.svg +1 -0
  3833. skills/ppt-master/templates/icons/simple-icons/just.svg +1 -0
  3834. skills/ppt-master/templates/icons/simple-icons/justeat.svg +1 -0
  3835. skills/ppt-master/templates/icons/simple-icons/justgiving.svg +1 -0
  3836. skills/ppt-master/templates/icons/simple-icons/k3s.svg +1 -0
  3837. skills/ppt-master/templates/icons/simple-icons/k6.svg +1 -0
  3838. skills/ppt-master/templates/icons/simple-icons/kaggle.svg +1 -0
  3839. skills/ppt-master/templates/icons/simple-icons/kagi.svg +1 -0
  3840. skills/ppt-master/templates/icons/simple-icons/kahoot.svg +1 -0
  3841. skills/ppt-master/templates/icons/simple-icons/kaios.svg +1 -0
  3842. skills/ppt-master/templates/icons/simple-icons/kakao.svg +1 -0
  3843. skills/ppt-master/templates/icons/simple-icons/kakaotalk.svg +1 -0
  3844. skills/ppt-master/templates/icons/simple-icons/kalilinux.svg +1 -0
  3845. skills/ppt-master/templates/icons/simple-icons/kamailio.svg +1 -0
  3846. skills/ppt-master/templates/icons/simple-icons/kando.svg +1 -0
  3847. skills/ppt-master/templates/icons/simple-icons/kaniko.svg +1 -0
  3848. skills/ppt-master/templates/icons/simple-icons/karakeep.svg +1 -0
  3849. skills/ppt-master/templates/icons/simple-icons/karlsruherverkehrsverbund.svg +1 -0
  3850. skills/ppt-master/templates/icons/simple-icons/kasasmart.svg +1 -0
  3851. skills/ppt-master/templates/icons/simple-icons/kashflow.svg +1 -0
  3852. skills/ppt-master/templates/icons/simple-icons/kaspersky.svg +1 -0
  3853. skills/ppt-master/templates/icons/simple-icons/katacoda.svg +1 -0
  3854. skills/ppt-master/templates/icons/simple-icons/katana.svg +1 -0
  3855. skills/ppt-master/templates/icons/simple-icons/kaufland.svg +1 -0
  3856. skills/ppt-master/templates/icons/simple-icons/kde.svg +1 -0
  3857. skills/ppt-master/templates/icons/simple-icons/kdeneon.svg +1 -0
  3858. skills/ppt-master/templates/icons/simple-icons/kdenlive.svg +1 -0
  3859. skills/ppt-master/templates/icons/simple-icons/kdeplasma.svg +1 -0
  3860. skills/ppt-master/templates/icons/simple-icons/kedro.svg +1 -0
  3861. skills/ppt-master/templates/icons/simple-icons/keenetic.svg +1 -0
  3862. skills/ppt-master/templates/icons/simple-icons/keepachangelog.svg +1 -0
  3863. skills/ppt-master/templates/icons/simple-icons/keepassxc.svg +1 -0
  3864. skills/ppt-master/templates/icons/simple-icons/keeper.svg +1 -0
  3865. skills/ppt-master/templates/icons/simple-icons/keeweb.svg +1 -0
  3866. skills/ppt-master/templates/icons/simple-icons/kenmei.svg +1 -0
  3867. skills/ppt-master/templates/icons/simple-icons/kentico.svg +1 -0
  3868. skills/ppt-master/templates/icons/simple-icons/keploy.svg +1 -0
  3869. skills/ppt-master/templates/icons/simple-icons/keras.svg +1 -0
  3870. skills/ppt-master/templates/icons/simple-icons/keybase.svg +1 -0
  3871. skills/ppt-master/templates/icons/simple-icons/keycdn.svg +1 -0
  3872. skills/ppt-master/templates/icons/simple-icons/keycloak.svg +1 -0
  3873. skills/ppt-master/templates/icons/simple-icons/keystone.svg +1 -0
  3874. skills/ppt-master/templates/icons/simple-icons/kfc.svg +1 -0
  3875. skills/ppt-master/templates/icons/simple-icons/khanacademy.svg +1 -0
  3876. skills/ppt-master/templates/icons/simple-icons/khronosgroup.svg +1 -0
  3877. skills/ppt-master/templates/icons/simple-icons/kia.svg +1 -0
  3878. skills/ppt-master/templates/icons/simple-icons/kibana.svg +1 -0
  3879. skills/ppt-master/templates/icons/simple-icons/kicad.svg +1 -0
  3880. skills/ppt-master/templates/icons/simple-icons/kick.svg +1 -0
  3881. skills/ppt-master/templates/icons/simple-icons/kickstarter.svg +1 -0
  3882. skills/ppt-master/templates/icons/simple-icons/kik.svg +1 -0
  3883. skills/ppt-master/templates/icons/simple-icons/kingstontechnology.svg +1 -0
  3884. skills/ppt-master/templates/icons/simple-icons/kinopoisk.svg +1 -0
  3885. skills/ppt-master/templates/icons/simple-icons/kinsta.svg +1 -0
  3886. skills/ppt-master/templates/icons/simple-icons/kirby.svg +1 -0
  3887. skills/ppt-master/templates/icons/simple-icons/kit.svg +1 -0
  3888. skills/ppt-master/templates/icons/simple-icons/kitsu.svg +1 -0
  3889. skills/ppt-master/templates/icons/simple-icons/kiwix.svg +1 -0
  3890. skills/ppt-master/templates/icons/simple-icons/klarna.svg +1 -0
  3891. skills/ppt-master/templates/icons/simple-icons/kleinanzeigen.svg +1 -0
  3892. skills/ppt-master/templates/icons/simple-icons/klm.svg +1 -0
  3893. skills/ppt-master/templates/icons/simple-icons/klook.svg +1 -0
  3894. skills/ppt-master/templates/icons/simple-icons/knative.svg +1 -0
  3895. skills/ppt-master/templates/icons/simple-icons/knexdotjs.svg +1 -0
  3896. skills/ppt-master/templates/icons/simple-icons/knime.svg +1 -0
  3897. skills/ppt-master/templates/icons/simple-icons/knip.svg +1 -0
  3898. skills/ppt-master/templates/icons/simple-icons/knowledgebase.svg +1 -0
  3899. skills/ppt-master/templates/icons/simple-icons/known.svg +1 -0
  3900. skills/ppt-master/templates/icons/simple-icons/koa.svg +1 -0
  3901. skills/ppt-master/templates/icons/simple-icons/koc.svg +1 -0
  3902. skills/ppt-master/templates/icons/simple-icons/kodak.svg +1 -0
  3903. skills/ppt-master/templates/icons/simple-icons/kodi.svg +1 -0
  3904. skills/ppt-master/templates/icons/simple-icons/kodular.svg +1 -0
  3905. skills/ppt-master/templates/icons/simple-icons/koenigsegg.svg +1 -0
  3906. skills/ppt-master/templates/icons/simple-icons/kofax.svg +1 -0
  3907. skills/ppt-master/templates/icons/simple-icons/kofi.svg +1 -0
  3908. skills/ppt-master/templates/icons/simple-icons/komoot.svg +1 -0
  3909. skills/ppt-master/templates/icons/simple-icons/konami.svg +1 -0
  3910. skills/ppt-master/templates/icons/simple-icons/kong.svg +1 -0
  3911. skills/ppt-master/templates/icons/simple-icons/kongregate.svg +1 -0
  3912. skills/ppt-master/templates/icons/simple-icons/konva.svg +1 -0
  3913. skills/ppt-master/templates/icons/simple-icons/koreader.svg +1 -0
  3914. skills/ppt-master/templates/icons/simple-icons/kotlin.svg +1 -0
  3915. skills/ppt-master/templates/icons/simple-icons/koyeb.svg +1 -0
  3916. skills/ppt-master/templates/icons/simple-icons/kred.svg +1 -0
  3917. skills/ppt-master/templates/icons/simple-icons/krita.svg +1 -0
  3918. skills/ppt-master/templates/icons/simple-icons/ktm.svg +1 -0
  3919. skills/ppt-master/templates/icons/simple-icons/ktor.svg +1 -0
  3920. skills/ppt-master/templates/icons/simple-icons/kuaishou.svg +1 -0
  3921. skills/ppt-master/templates/icons/simple-icons/kubernetes.svg +1 -0
  3922. skills/ppt-master/templates/icons/simple-icons/kubespray.svg +1 -0
  3923. skills/ppt-master/templates/icons/simple-icons/kubuntu.svg +1 -0
  3924. skills/ppt-master/templates/icons/simple-icons/kucoin.svg +1 -0
  3925. skills/ppt-master/templates/icons/simple-icons/kueski.svg +1 -0
  3926. skills/ppt-master/templates/icons/simple-icons/kuma.svg +1 -0
  3927. skills/ppt-master/templates/icons/simple-icons/kununu.svg +1 -0
  3928. skills/ppt-master/templates/icons/simple-icons/kuula.svg +1 -0
  3929. skills/ppt-master/templates/icons/simple-icons/kx.svg +1 -0
  3930. skills/ppt-master/templates/icons/simple-icons/kyocera.svg +1 -0
  3931. skills/ppt-master/templates/icons/simple-icons/labex.svg +1 -0
  3932. skills/ppt-master/templates/icons/simple-icons/labview.svg +1 -0
  3933. skills/ppt-master/templates/icons/simple-icons/lada.svg +1 -0
  3934. skills/ppt-master/templates/icons/simple-icons/lamborghini.svg +1 -0
  3935. skills/ppt-master/templates/icons/simple-icons/landrover.svg +1 -0
  3936. skills/ppt-master/templates/icons/simple-icons/langchain.svg +1 -0
  3937. skills/ppt-master/templates/icons/simple-icons/langflow.svg +1 -0
  3938. skills/ppt-master/templates/icons/simple-icons/langgraph.svg +1 -0
  3939. skills/ppt-master/templates/icons/simple-icons/languagetool.svg +1 -0
  3940. skills/ppt-master/templates/icons/simple-icons/lapce.svg +1 -0
  3941. skills/ppt-master/templates/icons/simple-icons/laragon.svg +1 -0
  3942. skills/ppt-master/templates/icons/simple-icons/laravel.svg +1 -0
  3943. skills/ppt-master/templates/icons/simple-icons/laravelhorizon.svg +1 -0
  3944. skills/ppt-master/templates/icons/simple-icons/laravelnova.svg +1 -0
  3945. skills/ppt-master/templates/icons/simple-icons/lastdotfm.svg +1 -0
  3946. skills/ppt-master/templates/icons/simple-icons/lastpass.svg +1 -0
  3947. skills/ppt-master/templates/icons/simple-icons/latex.svg +1 -0
  3948. skills/ppt-master/templates/icons/simple-icons/launchpad.svg +1 -0
  3949. skills/ppt-master/templates/icons/simple-icons/lazarus.svg +1 -0
  3950. skills/ppt-master/templates/icons/simple-icons/lazyvim.svg +1 -0
  3951. skills/ppt-master/templates/icons/simple-icons/lbry.svg +1 -0
  3952. skills/ppt-master/templates/icons/simple-icons/leaderprice.svg +1 -0
  3953. skills/ppt-master/templates/icons/simple-icons/leaflet.svg +1 -0
  3954. skills/ppt-master/templates/icons/simple-icons/leagueoflegends.svg +1 -0
  3955. skills/ppt-master/templates/icons/simple-icons/leanpub.svg +1 -0
  3956. skills/ppt-master/templates/icons/simple-icons/leetcode.svg +1 -0
  3957. skills/ppt-master/templates/icons/simple-icons/lefthook.svg +1 -0
  3958. skills/ppt-master/templates/icons/simple-icons/legacygames.svg +1 -0
  3959. skills/ppt-master/templates/icons/simple-icons/leica.svg +1 -0
  3960. skills/ppt-master/templates/icons/simple-icons/lemmy.svg +1 -0
  3961. skills/ppt-master/templates/icons/simple-icons/lemonsqueezy.svg +1 -0
  3962. skills/ppt-master/templates/icons/simple-icons/lenovo.svg +1 -0
  3963. skills/ppt-master/templates/icons/simple-icons/lens.svg +1 -0
  3964. skills/ppt-master/templates/icons/simple-icons/leptos.svg +1 -0
  3965. skills/ppt-master/templates/icons/simple-icons/lequipe.svg +1 -0
  3966. skills/ppt-master/templates/icons/simple-icons/lerna.svg +1 -0
  3967. skills/ppt-master/templates/icons/simple-icons/leroymerlin.svg +1 -0
  3968. skills/ppt-master/templates/icons/simple-icons/leslibraires.svg +1 -0
  3969. skills/ppt-master/templates/icons/simple-icons/less.svg +1 -0
  3970. skills/ppt-master/templates/icons/simple-icons/letsencrypt.svg +1 -0
  3971. skills/ppt-master/templates/icons/simple-icons/letterboxd.svg +1 -0
  3972. skills/ppt-master/templates/icons/simple-icons/levelsdotfyi.svg +1 -0
  3973. skills/ppt-master/templates/icons/simple-icons/lg.svg +1 -0
  3974. skills/ppt-master/templates/icons/simple-icons/liberadotchat.svg +1 -0
  3975. skills/ppt-master/templates/icons/simple-icons/liberapay.svg +1 -0
  3976. skills/ppt-master/templates/icons/simple-icons/librariesdotio.svg +1 -0
  3977. skills/ppt-master/templates/icons/simple-icons/librarything.svg +1 -0
  3978. skills/ppt-master/templates/icons/simple-icons/libreoffice.svg +1 -0
  3979. skills/ppt-master/templates/icons/simple-icons/libreofficebase.svg +1 -0
  3980. skills/ppt-master/templates/icons/simple-icons/libreofficecalc.svg +1 -0
  3981. skills/ppt-master/templates/icons/simple-icons/libreofficedraw.svg +1 -0
  3982. skills/ppt-master/templates/icons/simple-icons/libreofficeimpress.svg +1 -0
  3983. skills/ppt-master/templates/icons/simple-icons/libreofficemath.svg +1 -0
  3984. skills/ppt-master/templates/icons/simple-icons/libreofficewriter.svg +1 -0
  3985. skills/ppt-master/templates/icons/simple-icons/libretranslate.svg +1 -0
  3986. skills/ppt-master/templates/icons/simple-icons/libretube.svg +1 -0
  3987. skills/ppt-master/templates/icons/simple-icons/librewolf.svg +1 -0
  3988. skills/ppt-master/templates/icons/simple-icons/libuv.svg +1 -0
  3989. skills/ppt-master/templates/icons/simple-icons/lichess.svg +1 -0
  3990. skills/ppt-master/templates/icons/simple-icons/lidl.svg +1 -0
  3991. skills/ppt-master/templates/icons/simple-icons/lifx.svg +1 -0
  3992. skills/ppt-master/templates/icons/simple-icons/lightburn.svg +1 -0
  3993. skills/ppt-master/templates/icons/simple-icons/lighthouse.svg +1 -0
  3994. skills/ppt-master/templates/icons/simple-icons/lightning.svg +1 -0
  3995. skills/ppt-master/templates/icons/simple-icons/limesurvey.svg +1 -0
  3996. skills/ppt-master/templates/icons/simple-icons/line.svg +1 -0
  3997. skills/ppt-master/templates/icons/simple-icons/lineageos.svg +1 -0
  3998. skills/ppt-master/templates/icons/simple-icons/linear.svg +1 -0
  3999. skills/ppt-master/templates/icons/simple-icons/lining.svg +1 -0
  4000. skills/ppt-master/templates/icons/simple-icons/linkedin.svg +1 -0
  4001. skills/ppt-master/templates/icons/simple-icons/linkerd.svg +1 -0
  4002. skills/ppt-master/templates/icons/simple-icons/linkfire.svg +1 -0
  4003. skills/ppt-master/templates/icons/simple-icons/linksys.svg +1 -0
  4004. skills/ppt-master/templates/icons/simple-icons/linktree.svg +1 -0
  4005. skills/ppt-master/templates/icons/simple-icons/linkvertise.svg +1 -0
  4006. skills/ppt-master/templates/icons/simple-icons/linphone.svg +1 -0
  4007. skills/ppt-master/templates/icons/simple-icons/lintcode.svg +1 -0
  4008. skills/ppt-master/templates/icons/simple-icons/linux.svg +1 -0
  4009. skills/ppt-master/templates/icons/simple-icons/linuxcontainers.svg +1 -0
  4010. skills/ppt-master/templates/icons/simple-icons/linuxfoundation.svg +1 -0
  4011. skills/ppt-master/templates/icons/simple-icons/linuxmint.svg +1 -0
  4012. skills/ppt-master/templates/icons/simple-icons/linuxprofessionalinstitute.svg +1 -0
  4013. skills/ppt-master/templates/icons/simple-icons/linuxserver.svg +1 -0
  4014. skills/ppt-master/templates/icons/simple-icons/lionair.svg +1 -0
  4015. skills/ppt-master/templates/icons/simple-icons/liquibase.svg +1 -0
  4016. skills/ppt-master/templates/icons/simple-icons/listenhub.svg +1 -0
  4017. skills/ppt-master/templates/icons/simple-icons/listmonk.svg +1 -0
  4018. skills/ppt-master/templates/icons/simple-icons/lit.svg +1 -0
  4019. skills/ppt-master/templates/icons/simple-icons/litecoin.svg +1 -0
  4020. skills/ppt-master/templates/icons/simple-icons/literal.svg +1 -0
  4021. skills/ppt-master/templates/icons/simple-icons/litiengine.svg +1 -0
  4022. skills/ppt-master/templates/icons/simple-icons/livechat.svg +1 -0
  4023. skills/ppt-master/templates/icons/simple-icons/livejournal.svg +1 -0
  4024. skills/ppt-master/templates/icons/simple-icons/livekit.svg +1 -0
  4025. skills/ppt-master/templates/icons/simple-icons/livewire.svg +1 -0
  4026. skills/ppt-master/templates/icons/simple-icons/llvm.svg +1 -0
  4027. skills/ppt-master/templates/icons/simple-icons/lmms.svg +1 -0
  4028. skills/ppt-master/templates/icons/simple-icons/lobsters.svg +1 -0
  4029. skills/ppt-master/templates/icons/simple-icons/local.svg +1 -0
  4030. skills/ppt-master/templates/icons/simple-icons/localsend.svg +1 -0
  4031. skills/ppt-master/templates/icons/simple-icons/localxpose.svg +1 -0
  4032. skills/ppt-master/templates/icons/simple-icons/locust.svg +1 -0
  4033. skills/ppt-master/templates/icons/simple-icons/lodash.svg +1 -0
  4034. skills/ppt-master/templates/icons/simple-icons/logitech.svg +1 -0
  4035. skills/ppt-master/templates/icons/simple-icons/logitechg.svg +1 -0
  4036. skills/ppt-master/templates/icons/simple-icons/logmein.svg +1 -0
  4037. skills/ppt-master/templates/icons/simple-icons/logseq.svg +1 -0
  4038. skills/ppt-master/templates/icons/simple-icons/logstash.svg +1 -0
  4039. skills/ppt-master/templates/icons/simple-icons/longhorn.svg +1 -0
  4040. skills/ppt-master/templates/icons/simple-icons/looker.svg +1 -0
  4041. skills/ppt-master/templates/icons/simple-icons/loom.svg +1 -0
  4042. skills/ppt-master/templates/icons/simple-icons/loop.svg +1 -0
  4043. skills/ppt-master/templates/icons/simple-icons/loopback.svg +1 -0
  4044. skills/ppt-master/templates/icons/simple-icons/loops.svg +1 -0
  4045. skills/ppt-master/templates/icons/simple-icons/lootcrate.svg +1 -0
  4046. skills/ppt-master/templates/icons/simple-icons/lospec.svg +1 -0
  4047. skills/ppt-master/templates/icons/simple-icons/lotpolishairlines.svg +1 -0
  4048. skills/ppt-master/templates/icons/simple-icons/lottiefiles.svg +1 -0
  4049. skills/ppt-master/templates/icons/simple-icons/ltspice.svg +1 -0
  4050. skills/ppt-master/templates/icons/simple-icons/lua.svg +1 -0
  4051. skills/ppt-master/templates/icons/simple-icons/luanti.svg +1 -0
  4052. skills/ppt-master/templates/icons/simple-icons/luau.svg +1 -0
  4053. skills/ppt-master/templates/icons/simple-icons/lubuntu.svg +1 -0
  4054. skills/ppt-master/templates/icons/simple-icons/lucia.svg +1 -0
  4055. skills/ppt-master/templates/icons/simple-icons/lucid.svg +1 -0
  4056. skills/ppt-master/templates/icons/simple-icons/lucide.svg +1 -0
  4057. skills/ppt-master/templates/icons/simple-icons/ludwig.svg +1 -0
  4058. skills/ppt-master/templates/icons/simple-icons/lufthansa.svg +1 -0
  4059. skills/ppt-master/templates/icons/simple-icons/lumen.svg +1 -0
  4060. skills/ppt-master/templates/icons/simple-icons/lunacy.svg +1 -0
  4061. skills/ppt-master/templates/icons/simple-icons/luogu.svg +1 -0
  4062. skills/ppt-master/templates/icons/simple-icons/lutris.svg +1 -0
  4063. skills/ppt-master/templates/icons/simple-icons/lvgl.svg +1 -0
  4064. skills/ppt-master/templates/icons/simple-icons/lydia.svg +1 -0
  4065. skills/ppt-master/templates/icons/simple-icons/lyft.svg +1 -0
  4066. skills/ppt-master/templates/icons/simple-icons/maas.svg +1 -0
  4067. skills/ppt-master/templates/icons/simple-icons/macos.svg +1 -0
  4068. skills/ppt-master/templates/icons/simple-icons/macpaw.svg +1 -0
  4069. skills/ppt-master/templates/icons/simple-icons/macports.svg +1 -0
  4070. skills/ppt-master/templates/icons/simple-icons/macys.svg +1 -0
  4071. skills/ppt-master/templates/icons/simple-icons/magasinsu.svg +1 -0
  4072. skills/ppt-master/templates/icons/simple-icons/magento.svg +1 -0
  4073. skills/ppt-master/templates/icons/simple-icons/magic.svg +1 -0
  4074. skills/ppt-master/templates/icons/simple-icons/magisk.svg +1 -0
  4075. skills/ppt-master/templates/icons/simple-icons/mahindra.svg +1 -0
  4076. skills/ppt-master/templates/icons/simple-icons/mailbox.svg +1 -0
  4077. skills/ppt-master/templates/icons/simple-icons/mailchimp.svg +1 -0
  4078. skills/ppt-master/templates/icons/simple-icons/maildotcom.svg +1 -0
  4079. skills/ppt-master/templates/icons/simple-icons/maildotru.svg +1 -0
  4080. skills/ppt-master/templates/icons/simple-icons/mailgun.svg +1 -0
  4081. skills/ppt-master/templates/icons/simple-icons/mailtrap.svg +1 -0
  4082. skills/ppt-master/templates/icons/simple-icons/mainwp.svg +1 -0
  4083. skills/ppt-master/templates/icons/simple-icons/majorleaguehacking.svg +1 -0
  4084. skills/ppt-master/templates/icons/simple-icons/make.svg +1 -0
  4085. skills/ppt-master/templates/icons/simple-icons/makerbot.svg +1 -0
  4086. skills/ppt-master/templates/icons/simple-icons/malt.svg +1 -0
  4087. skills/ppt-master/templates/icons/simple-icons/malwarebytes.svg +1 -0
  4088. skills/ppt-master/templates/icons/simple-icons/mambaui.svg +1 -0
  4089. skills/ppt-master/templates/icons/simple-icons/mamp.svg +1 -0
  4090. skills/ppt-master/templates/icons/simple-icons/man.svg +1 -0
  4091. skills/ppt-master/templates/icons/simple-icons/manageiq.svg +1 -0
  4092. skills/ppt-master/templates/icons/simple-icons/mangacollec.svg +1 -0
  4093. skills/ppt-master/templates/icons/simple-icons/mangaupdates.svg +1 -0
  4094. skills/ppt-master/templates/icons/simple-icons/manjaro.svg +1 -0
  4095. skills/ppt-master/templates/icons/simple-icons/mantine.svg +1 -0
  4096. skills/ppt-master/templates/icons/simple-icons/mapbox.svg +1 -0
  4097. skills/ppt-master/templates/icons/simple-icons/mapillary.svg +1 -0
  4098. skills/ppt-master/templates/icons/simple-icons/maplibre.svg +1 -0
  4099. skills/ppt-master/templates/icons/simple-icons/maptiler.svg +1 -0
  4100. skills/ppt-master/templates/icons/simple-icons/mariadb.svg +1 -0
  4101. skills/ppt-master/templates/icons/simple-icons/mariadbfoundation.svg +1 -0
  4102. skills/ppt-master/templates/icons/simple-icons/markdown.svg +1 -0
  4103. skills/ppt-master/templates/icons/simple-icons/marketo.svg +1 -0
  4104. skills/ppt-master/templates/icons/simple-icons/marko.svg +1 -0
  4105. skills/ppt-master/templates/icons/simple-icons/marriott.svg +1 -0
  4106. skills/ppt-master/templates/icons/simple-icons/marvelapp.svg +1 -0
  4107. skills/ppt-master/templates/icons/simple-icons/maserati.svg +1 -0
  4108. skills/ppt-master/templates/icons/simple-icons/mastercard.svg +1 -0
  4109. skills/ppt-master/templates/icons/simple-icons/mastercomfig.svg +1 -0
  4110. skills/ppt-master/templates/icons/simple-icons/mastodon.svg +1 -0
  4111. skills/ppt-master/templates/icons/simple-icons/materialdesign.svg +1 -0
  4112. skills/ppt-master/templates/icons/simple-icons/materialdesignicons.svg +1 -0
  4113. skills/ppt-master/templates/icons/simple-icons/materialformkdocs.svg +1 -0
  4114. skills/ppt-master/templates/icons/simple-icons/matillion.svg +1 -0
  4115. skills/ppt-master/templates/icons/simple-icons/matomo.svg +1 -0
  4116. skills/ppt-master/templates/icons/simple-icons/matrix.svg +1 -0
  4117. skills/ppt-master/templates/icons/simple-icons/matterdotjs.svg +1 -0
  4118. skills/ppt-master/templates/icons/simple-icons/mattermost.svg +1 -0
  4119. skills/ppt-master/templates/icons/simple-icons/matternet.svg +1 -0
  4120. skills/ppt-master/templates/icons/simple-icons/mautic.svg +1 -0
  4121. skills/ppt-master/templates/icons/simple-icons/max.svg +1 -0
  4122. skills/ppt-master/templates/icons/simple-icons/maxplanckgesellschaft.svg +1 -0
  4123. skills/ppt-master/templates/icons/simple-icons/maytag.svg +1 -0
  4124. skills/ppt-master/templates/icons/simple-icons/mazda.svg +1 -0
  4125. skills/ppt-master/templates/icons/simple-icons/maze.svg +1 -0
  4126. skills/ppt-master/templates/icons/simple-icons/mcafee.svg +1 -0
  4127. skills/ppt-master/templates/icons/simple-icons/mcdonalds.svg +1 -0
  4128. skills/ppt-master/templates/icons/simple-icons/mclaren.svg +1 -0
  4129. skills/ppt-master/templates/icons/simple-icons/mdblist.svg +1 -0
  4130. skills/ppt-master/templates/icons/simple-icons/mdbook.svg +1 -0
  4131. skills/ppt-master/templates/icons/simple-icons/mdnwebdocs.svg +1 -0
  4132. skills/ppt-master/templates/icons/simple-icons/mdx.svg +1 -0
  4133. skills/ppt-master/templates/icons/simple-icons/mealie.svg +1 -0
  4134. skills/ppt-master/templates/icons/simple-icons/mediafire.svg +1 -0
  4135. skills/ppt-master/templates/icons/simple-icons/mediamarkt.svg +1 -0
  4136. skills/ppt-master/templates/icons/simple-icons/mediapipe.svg +1 -0
  4137. skills/ppt-master/templates/icons/simple-icons/mediatek.svg +1 -0
  4138. skills/ppt-master/templates/icons/simple-icons/medibangpaint.svg +1 -0
  4139. skills/ppt-master/templates/icons/simple-icons/medium.svg +1 -0
  4140. skills/ppt-master/templates/icons/simple-icons/medusa.svg +1 -0
  4141. skills/ppt-master/templates/icons/simple-icons/meetup.svg +1 -0
  4142. skills/ppt-master/templates/icons/simple-icons/mega.svg +1 -0
  4143. skills/ppt-master/templates/icons/simple-icons/meilisearch.svg +1 -0
  4144. skills/ppt-master/templates/icons/simple-icons/meituan.svg +1 -0
  4145. skills/ppt-master/templates/icons/simple-icons/meizu.svg +1 -0
  4146. skills/ppt-master/templates/icons/simple-icons/mendeley.svg +1 -0
  4147. skills/ppt-master/templates/icons/simple-icons/mentorcruise.svg +1 -0
  4148. skills/ppt-master/templates/icons/simple-icons/mercadopago.svg +1 -0
  4149. skills/ppt-master/templates/icons/simple-icons/mercedes.svg +1 -0
  4150. skills/ppt-master/templates/icons/simple-icons/merck.svg +1 -0
  4151. skills/ppt-master/templates/icons/simple-icons/mercurial.svg +1 -0
  4152. skills/ppt-master/templates/icons/simple-icons/mermaid.svg +1 -0
  4153. skills/ppt-master/templates/icons/simple-icons/messenger.svg +1 -0
  4154. skills/ppt-master/templates/icons/simple-icons/meta.svg +1 -0
  4155. skills/ppt-master/templates/icons/simple-icons/metabase.svg +1 -0
  4156. skills/ppt-master/templates/icons/simple-icons/metacritic.svg +1 -0
  4157. skills/ppt-master/templates/icons/simple-icons/metafilter.svg +1 -0
  4158. skills/ppt-master/templates/icons/simple-icons/metager.svg +1 -0
  4159. skills/ppt-master/templates/icons/simple-icons/metasploit.svg +1 -0
  4160. skills/ppt-master/templates/icons/simple-icons/meteor.svg +1 -0
  4161. skills/ppt-master/templates/icons/simple-icons/metro.svg +1 -0
  4162. skills/ppt-master/templates/icons/simple-icons/metrodelaciudaddemexico.svg +1 -0
  4163. skills/ppt-master/templates/icons/simple-icons/metrodemadrid.svg +1 -0
  4164. skills/ppt-master/templates/icons/simple-icons/metrodeparis.svg +1 -0
  4165. skills/ppt-master/templates/icons/simple-icons/mewe.svg +1 -0
  4166. skills/ppt-master/templates/icons/simple-icons/mezmo.svg +1 -0
  4167. skills/ppt-master/templates/icons/simple-icons/mg.svg +1 -0
  4168. skills/ppt-master/templates/icons/simple-icons/microbit.svg +1 -0
  4169. skills/ppt-master/templates/icons/simple-icons/microdotblog.svg +1 -0
  4170. skills/ppt-master/templates/icons/simple-icons/microeditor.svg +1 -0
  4171. skills/ppt-master/templates/icons/simple-icons/microgenetics.svg +1 -0
  4172. skills/ppt-master/templates/icons/simple-icons/micropython.svg +1 -0
  4173. skills/ppt-master/templates/icons/simple-icons/microsoft.svg +1 -0
  4174. skills/ppt-master/templates/icons/simple-icons/microsoftacademic.svg +1 -0
  4175. skills/ppt-master/templates/icons/simple-icons/microsoftaccess.svg +1 -0
  4176. skills/ppt-master/templates/icons/simple-icons/microsoftazure.svg +1 -0
  4177. skills/ppt-master/templates/icons/simple-icons/microsoftbing.svg +1 -0
  4178. skills/ppt-master/templates/icons/simple-icons/microsoftedge.svg +1 -0
  4179. skills/ppt-master/templates/icons/simple-icons/microsoftexcel.svg +1 -0
  4180. skills/ppt-master/templates/icons/simple-icons/microsoftexchange.svg +1 -0
  4181. skills/ppt-master/templates/icons/simple-icons/microsoftonedrive.svg +1 -0
  4182. skills/ppt-master/templates/icons/simple-icons/microsoftonenote.svg +1 -0
  4183. skills/ppt-master/templates/icons/simple-icons/microsoftoutlook.svg +1 -0
  4184. skills/ppt-master/templates/icons/simple-icons/microsoftpowerpoint.svg +1 -0
  4185. skills/ppt-master/templates/icons/simple-icons/microsoftsharepoint.svg +1 -0
  4186. skills/ppt-master/templates/icons/simple-icons/microsoftsqlserver.svg +1 -0
  4187. skills/ppt-master/templates/icons/simple-icons/microsoftstore.svg +1 -0
  4188. skills/ppt-master/templates/icons/simple-icons/microsoftteams.svg +1 -0
  4189. skills/ppt-master/templates/icons/simple-icons/microsofttranslator.svg +1 -0
  4190. skills/ppt-master/templates/icons/simple-icons/microsoftvisio.svg +1 -0
  4191. skills/ppt-master/templates/icons/simple-icons/microsoftword.svg +1 -0
  4192. skills/ppt-master/templates/icons/simple-icons/microstation.svg +1 -0
  4193. skills/ppt-master/templates/icons/simple-icons/microstrategy.svg +1 -0
  4194. skills/ppt-master/templates/icons/simple-icons/midi.svg +1 -0
  4195. skills/ppt-master/templates/icons/simple-icons/migadu.svg +1 -0
  4196. skills/ppt-master/templates/icons/simple-icons/mihon.svg +1 -0
  4197. skills/ppt-master/templates/icons/simple-icons/mihoyo.svg +1 -0
  4198. skills/ppt-master/templates/icons/simple-icons/mikrotik.svg +1 -0
  4199. skills/ppt-master/templates/icons/simple-icons/milanote.svg +1 -0
  4200. skills/ppt-master/templates/icons/simple-icons/milvus.svg +1 -0
  4201. skills/ppt-master/templates/icons/simple-icons/minds.svg +1 -0
  4202. skills/ppt-master/templates/icons/simple-icons/minecraft.svg +1 -0
  4203. skills/ppt-master/templates/icons/simple-icons/minetest.svg +1 -0
  4204. skills/ppt-master/templates/icons/simple-icons/mingww64.svg +1 -0
  4205. skills/ppt-master/templates/icons/simple-icons/mini.svg +1 -0
  4206. skills/ppt-master/templates/icons/simple-icons/minimax.svg +1 -0
  4207. skills/ppt-master/templates/icons/simple-icons/minio.svg +1 -0
  4208. skills/ppt-master/templates/icons/simple-icons/mintlify.svg +1 -0
  4209. skills/ppt-master/templates/icons/simple-icons/minutemailer.svg +1 -0
  4210. skills/ppt-master/templates/icons/simple-icons/miraheze.svg +1 -0
  4211. skills/ppt-master/templates/icons/simple-icons/miro.svg +1 -0
  4212. skills/ppt-master/templates/icons/simple-icons/misskey.svg +1 -0
  4213. skills/ppt-master/templates/icons/simple-icons/mistralai.svg +1 -0
  4214. skills/ppt-master/templates/icons/simple-icons/mitsubishi.svg +1 -0
  4215. skills/ppt-master/templates/icons/simple-icons/mix.svg +1 -0
  4216. skills/ppt-master/templates/icons/simple-icons/mixcloud.svg +1 -0
  4217. skills/ppt-master/templates/icons/simple-icons/mixpanel.svg +1 -0
  4218. skills/ppt-master/templates/icons/simple-icons/mlb.svg +1 -0
  4219. skills/ppt-master/templates/icons/simple-icons/mlflow.svg +1 -0
  4220. skills/ppt-master/templates/icons/simple-icons/mobx.svg +1 -0
  4221. skills/ppt-master/templates/icons/simple-icons/mobxstatetree.svg +1 -0
  4222. skills/ppt-master/templates/icons/simple-icons/mocha.svg +1 -0
  4223. skills/ppt-master/templates/icons/simple-icons/mockserviceworker.svg +1 -0
  4224. skills/ppt-master/templates/icons/simple-icons/modal.svg +1 -0
  4225. skills/ppt-master/templates/icons/simple-icons/modelcontextprotocol.svg +1 -0
  4226. skills/ppt-master/templates/icons/simple-icons/modelscope.svg +1 -0
  4227. skills/ppt-master/templates/icons/simple-icons/modin.svg +1 -0
  4228. skills/ppt-master/templates/icons/simple-icons/modrinth.svg +1 -0
  4229. skills/ppt-master/templates/icons/simple-icons/modx.svg +1 -0
  4230. skills/ppt-master/templates/icons/simple-icons/mojangstudios.svg +1 -0
  4231. skills/ppt-master/templates/icons/simple-icons/mojeek.svg +1 -0
  4232. skills/ppt-master/templates/icons/simple-icons/moleculer.svg +1 -0
  4233. skills/ppt-master/templates/icons/simple-icons/momenteo.svg +1 -0
  4234. skills/ppt-master/templates/icons/simple-icons/monero.svg +1 -0
  4235. skills/ppt-master/templates/icons/simple-icons/moneygram.svg +1 -0
  4236. skills/ppt-master/templates/icons/simple-icons/mongodb.svg +1 -0
  4237. skills/ppt-master/templates/icons/simple-icons/mongoose.svg +1 -0
  4238. skills/ppt-master/templates/icons/simple-icons/mongoosedotws.svg +1 -0
  4239. skills/ppt-master/templates/icons/simple-icons/monica.svg +1 -0
  4240. skills/ppt-master/templates/icons/simple-icons/monkeytie.svg +1 -0
  4241. skills/ppt-master/templates/icons/simple-icons/monkeytype.svg +1 -0
  4242. skills/ppt-master/templates/icons/simple-icons/monogame.svg +1 -0
  4243. skills/ppt-master/templates/icons/simple-icons/monoprix.svg +1 -0
  4244. skills/ppt-master/templates/icons/simple-icons/monster.svg +1 -0
  4245. skills/ppt-master/templates/icons/simple-icons/monzo.svg +1 -0
  4246. skills/ppt-master/templates/icons/simple-icons/moo.svg +1 -0
  4247. skills/ppt-master/templates/icons/simple-icons/moodle.svg +1 -0
  4248. skills/ppt-master/templates/icons/simple-icons/moonrepo.svg +1 -0
  4249. skills/ppt-master/templates/icons/simple-icons/moonshotai.svg +1 -0
  4250. skills/ppt-master/templates/icons/simple-icons/moq.svg +1 -0
  4251. skills/ppt-master/templates/icons/simple-icons/moqups.svg +1 -0
  4252. skills/ppt-master/templates/icons/simple-icons/morrisons.svg +1 -0
  4253. skills/ppt-master/templates/icons/simple-icons/moscowmetro.svg +1 -0
  4254. skills/ppt-master/templates/icons/simple-icons/motorola.svg +1 -0
  4255. skills/ppt-master/templates/icons/simple-icons/movistar.svg +1 -0
  4256. skills/ppt-master/templates/icons/simple-icons/mozilla.svg +1 -0
  4257. skills/ppt-master/templates/icons/simple-icons/mpv.svg +1 -0
  4258. skills/ppt-master/templates/icons/simple-icons/mqtt.svg +1 -0
  4259. skills/ppt-master/templates/icons/simple-icons/msi.svg +1 -0
  4260. skills/ppt-master/templates/icons/simple-icons/msibusiness.svg +1 -0
  4261. skills/ppt-master/templates/icons/simple-icons/mta.svg +1 -0
  4262. skills/ppt-master/templates/icons/simple-icons/mtr.svg +1 -0
  4263. skills/ppt-master/templates/icons/simple-icons/mubi.svg +1 -0
  4264. skills/ppt-master/templates/icons/simple-icons/mui.svg +1 -0
  4265. skills/ppt-master/templates/icons/simple-icons/mulesoft.svg +1 -0
  4266. skills/ppt-master/templates/icons/simple-icons/muller.svg +1 -0
  4267. skills/ppt-master/templates/icons/simple-icons/mullvad.svg +1 -0
  4268. skills/ppt-master/templates/icons/simple-icons/multisim.svg +1 -0
  4269. skills/ppt-master/templates/icons/simple-icons/mumble.svg +1 -0
  4270. skills/ppt-master/templates/icons/simple-icons/muo.svg +1 -0
  4271. skills/ppt-master/templates/icons/simple-icons/mural.svg +1 -0
  4272. skills/ppt-master/templates/icons/simple-icons/musescore.svg +1 -0
  4273. skills/ppt-master/templates/icons/simple-icons/musicbrainz.svg +1 -0
  4274. skills/ppt-master/templates/icons/simple-icons/mxlinux.svg +1 -0
  4275. skills/ppt-master/templates/icons/simple-icons/myanimelist.svg +1 -0
  4276. skills/ppt-master/templates/icons/simple-icons/myget.svg +1 -0
  4277. skills/ppt-master/templates/icons/simple-icons/myob.svg +1 -0
  4278. skills/ppt-master/templates/icons/simple-icons/myshows.svg +1 -0
  4279. skills/ppt-master/templates/icons/simple-icons/myspace.svg +1 -0
  4280. skills/ppt-master/templates/icons/simple-icons/mysql.svg +1 -0
  4281. skills/ppt-master/templates/icons/simple-icons/n26.svg +1 -0
  4282. skills/ppt-master/templates/icons/simple-icons/n8n.svg +1 -0
  4283. skills/ppt-master/templates/icons/simple-icons/namebase.svg +1 -0
  4284. skills/ppt-master/templates/icons/simple-icons/namecheap.svg +1 -0
  4285. skills/ppt-master/templates/icons/simple-icons/namemc.svg +1 -0
  4286. skills/ppt-master/templates/icons/simple-icons/namesilo.svg +1 -0
  4287. skills/ppt-master/templates/icons/simple-icons/namuwiki.svg +1 -0
  4288. skills/ppt-master/templates/icons/simple-icons/nano.svg +1 -0
  4289. skills/ppt-master/templates/icons/simple-icons/nanostores.svg +1 -0
  4290. skills/ppt-master/templates/icons/simple-icons/napster.svg +1 -0
  4291. skills/ppt-master/templates/icons/simple-icons/nasa.svg +1 -0
  4292. skills/ppt-master/templates/icons/simple-icons/nationalgrid.svg +1 -0
  4293. skills/ppt-master/templates/icons/simple-icons/nationalrail.svg +1 -0
  4294. skills/ppt-master/templates/icons/simple-icons/nativescript.svg +1 -0
  4295. skills/ppt-master/templates/icons/simple-icons/natsdotio.svg +1 -0
  4296. skills/ppt-master/templates/icons/simple-icons/naver.svg +1 -0
  4297. skills/ppt-master/templates/icons/simple-icons/nba.svg +1 -0
  4298. skills/ppt-master/templates/icons/simple-icons/nbb.svg +1 -0
  4299. skills/ppt-master/templates/icons/simple-icons/nbc.svg +1 -0
  4300. skills/ppt-master/templates/icons/simple-icons/ndi.svg +1 -0
  4301. skills/ppt-master/templates/icons/simple-icons/ndr.svg +1 -0
  4302. skills/ppt-master/templates/icons/simple-icons/near.svg +1 -0
  4303. skills/ppt-master/templates/icons/simple-icons/nebula.svg +1 -0
  4304. skills/ppt-master/templates/icons/simple-icons/nec.svg +1 -0
  4305. skills/ppt-master/templates/icons/simple-icons/nederlandsespoorwegen.svg +1 -0
  4306. skills/ppt-master/templates/icons/simple-icons/neo4j.svg +1 -0
  4307. skills/ppt-master/templates/icons/simple-icons/neon.svg +1 -0
  4308. skills/ppt-master/templates/icons/simple-icons/neovim.svg +1 -0
  4309. skills/ppt-master/templates/icons/simple-icons/neptune.svg +1 -0
  4310. skills/ppt-master/templates/icons/simple-icons/nestjs.svg +1 -0
  4311. skills/ppt-master/templates/icons/simple-icons/netapp.svg +1 -0
  4312. skills/ppt-master/templates/icons/simple-icons/netbsd.svg +1 -0
  4313. skills/ppt-master/templates/icons/simple-icons/netcup.svg +1 -0
  4314. skills/ppt-master/templates/icons/simple-icons/netdata.svg +1 -0
  4315. skills/ppt-master/templates/icons/simple-icons/neteasecloudmusic.svg +1 -0
  4316. skills/ppt-master/templates/icons/simple-icons/netflix.svg +1 -0
  4317. skills/ppt-master/templates/icons/simple-icons/netgear.svg +1 -0
  4318. skills/ppt-master/templates/icons/simple-icons/netim.svg +1 -0
  4319. skills/ppt-master/templates/icons/simple-icons/netlify.svg +1 -0
  4320. skills/ppt-master/templates/icons/simple-icons/nette.svg +1 -0
  4321. skills/ppt-master/templates/icons/simple-icons/netto.svg +1 -0
  4322. skills/ppt-master/templates/icons/simple-icons/neutralinojs.svg +1 -0
  4323. skills/ppt-master/templates/icons/simple-icons/newbalance.svg +1 -0
  4324. skills/ppt-master/templates/icons/simple-icons/newegg.svg +1 -0
  4325. skills/ppt-master/templates/icons/simple-icons/newgrounds.svg +1 -0
  4326. skills/ppt-master/templates/icons/simple-icons/newjapanprowrestling.svg +1 -0
  4327. skills/ppt-master/templates/icons/simple-icons/newpipe.svg +1 -0
  4328. skills/ppt-master/templates/icons/simple-icons/newrelic.svg +1 -0
  4329. skills/ppt-master/templates/icons/simple-icons/newyorktimes.svg +1 -0
  4330. skills/ppt-master/templates/icons/simple-icons/nexon.svg +1 -0
  4331. skills/ppt-master/templates/icons/simple-icons/nextbike.svg +1 -0
  4332. skills/ppt-master/templates/icons/simple-icons/nextbilliondotai.svg +1 -0
  4333. skills/ppt-master/templates/icons/simple-icons/nextcloud.svg +1 -0
  4334. skills/ppt-master/templates/icons/simple-icons/nextdns.svg +1 -0
  4335. skills/ppt-master/templates/icons/simple-icons/nextdoor.svg +1 -0
  4336. skills/ppt-master/templates/icons/simple-icons/nextdotjs.svg +1 -0
  4337. skills/ppt-master/templates/icons/simple-icons/nextflow.svg +1 -0
  4338. skills/ppt-master/templates/icons/simple-icons/nextra.svg +1 -0
  4339. skills/ppt-master/templates/icons/simple-icons/nextui.svg +1 -0
  4340. skills/ppt-master/templates/icons/simple-icons/nexusmods.svg +1 -0
  4341. skills/ppt-master/templates/icons/simple-icons/nfc.svg +1 -0
  4342. skills/ppt-master/templates/icons/simple-icons/nfcore.svg +1 -0
  4343. skills/ppt-master/templates/icons/simple-icons/nginx.svg +1 -0
  4344. skills/ppt-master/templates/icons/simple-icons/nginxproxymanager.svg +1 -0
  4345. skills/ppt-master/templates/icons/simple-icons/ngrok.svg +1 -0
  4346. skills/ppt-master/templates/icons/simple-icons/ngrx.svg +1 -0
  4347. skills/ppt-master/templates/icons/simple-icons/nhl.svg +1 -0
  4348. skills/ppt-master/templates/icons/simple-icons/nhost.svg +1 -0
  4349. skills/ppt-master/templates/icons/simple-icons/nicehash.svg +1 -0
  4350. skills/ppt-master/templates/icons/simple-icons/niconico.svg +1 -0
  4351. skills/ppt-master/templates/icons/simple-icons/nike.svg +1 -0
  4352. skills/ppt-master/templates/icons/simple-icons/nikon.svg +1 -0
  4353. skills/ppt-master/templates/icons/simple-icons/nim.svg +1 -0
  4354. skills/ppt-master/templates/icons/simple-icons/nintendo.svg +1 -0
  4355. skills/ppt-master/templates/icons/simple-icons/nintendo3ds.svg +1 -0
  4356. skills/ppt-master/templates/icons/simple-icons/nintendogamecube.svg +1 -0
  4357. skills/ppt-master/templates/icons/simple-icons/nintendoswitch.svg +1 -0
  4358. skills/ppt-master/templates/icons/simple-icons/niri.svg +1 -0
  4359. skills/ppt-master/templates/icons/simple-icons/nissan.svg +1 -0
  4360. skills/ppt-master/templates/icons/simple-icons/nixos.svg +1 -0
  4361. skills/ppt-master/templates/icons/simple-icons/nobaralinux.svg +1 -0
  4362. skills/ppt-master/templates/icons/simple-icons/nodebb.svg +1 -0
  4363. skills/ppt-master/templates/icons/simple-icons/nodedotjs.svg +1 -0
  4364. skills/ppt-master/templates/icons/simple-icons/nodegui.svg +1 -0
  4365. skills/ppt-master/templates/icons/simple-icons/nodemon.svg +1 -0
  4366. skills/ppt-master/templates/icons/simple-icons/nodered.svg +1 -0
  4367. skills/ppt-master/templates/icons/simple-icons/nokia.svg +1 -0
  4368. skills/ppt-master/templates/icons/simple-icons/nomad.svg +1 -0
  4369. skills/ppt-master/templates/icons/simple-icons/norco.svg +1 -0
  4370. skills/ppt-master/templates/icons/simple-icons/nordicsemiconductor.svg +1 -0
  4371. skills/ppt-master/templates/icons/simple-icons/nordvpn.svg +1 -0
  4372. skills/ppt-master/templates/icons/simple-icons/normalizedotcss.svg +1 -0
  4373. skills/ppt-master/templates/icons/simple-icons/norton.svg +1 -0
  4374. skills/ppt-master/templates/icons/simple-icons/norwegian.svg +1 -0
  4375. skills/ppt-master/templates/icons/simple-icons/note.svg +1 -0
  4376. skills/ppt-master/templates/icons/simple-icons/notebooklm.svg +1 -0
  4377. skills/ppt-master/templates/icons/simple-icons/notepadplusplus.svg +1 -0
  4378. skills/ppt-master/templates/icons/simple-icons/notion.svg +1 -0
  4379. skills/ppt-master/templates/icons/simple-icons/notist.svg +1 -0
  4380. skills/ppt-master/templates/icons/simple-icons/nounproject.svg +1 -0
  4381. skills/ppt-master/templates/icons/simple-icons/novu.svg +1 -0
  4382. skills/ppt-master/templates/icons/simple-icons/now.svg +1 -0
  4383. skills/ppt-master/templates/icons/simple-icons/npm.svg +1 -0
  4384. skills/ppt-master/templates/icons/simple-icons/nrwl.svg +1 -0
  4385. skills/ppt-master/templates/icons/simple-icons/nsis.svg +1 -0
  4386. skills/ppt-master/templates/icons/simple-icons/ntfy.svg +1 -0
  4387. skills/ppt-master/templates/icons/simple-icons/nubank.svg +1 -0
  4388. skills/ppt-master/templates/icons/simple-icons/nucleo.svg +1 -0
  4389. skills/ppt-master/templates/icons/simple-icons/nuget.svg +1 -0
  4390. skills/ppt-master/templates/icons/simple-icons/nuke.svg +1 -0
  4391. skills/ppt-master/templates/icons/simple-icons/numba.svg +1 -0
  4392. skills/ppt-master/templates/icons/simple-icons/numpy.svg +1 -0
  4393. skills/ppt-master/templates/icons/simple-icons/nunjucks.svg +1 -0
  4394. skills/ppt-master/templates/icons/simple-icons/nushell.svg +1 -0
  4395. skills/ppt-master/templates/icons/simple-icons/nutanix.svg +1 -0
  4396. skills/ppt-master/templates/icons/simple-icons/nuxt.svg +1 -0
  4397. skills/ppt-master/templates/icons/simple-icons/nuxtdotjs.svg +1 -0
  4398. skills/ppt-master/templates/icons/simple-icons/nvidia.svg +1 -0
  4399. skills/ppt-master/templates/icons/simple-icons/nvm.svg +1 -0
  4400. skills/ppt-master/templates/icons/simple-icons/nx.svg +1 -0
  4401. skills/ppt-master/templates/icons/simple-icons/nxp.svg +1 -0
  4402. skills/ppt-master/templates/icons/simple-icons/nzxt.svg +1 -0
  4403. skills/ppt-master/templates/icons/simple-icons/o2.svg +1 -0
  4404. skills/ppt-master/templates/icons/simple-icons/obb.svg +1 -0
  4405. skills/ppt-master/templates/icons/simple-icons/observable.svg +1 -0
  4406. skills/ppt-master/templates/icons/simple-icons/obsidian.svg +1 -0
  4407. skills/ppt-master/templates/icons/simple-icons/obsstudio.svg +1 -0
  4408. skills/ppt-master/templates/icons/simple-icons/obtainium.svg +1 -0
  4409. skills/ppt-master/templates/icons/simple-icons/ocaml.svg +1 -0
  4410. skills/ppt-master/templates/icons/simple-icons/oclc.svg +1 -0
  4411. skills/ppt-master/templates/icons/simple-icons/oclif.svg +1 -0
  4412. skills/ppt-master/templates/icons/simple-icons/octanerender.svg +1 -0
  4413. skills/ppt-master/templates/icons/simple-icons/octave.svg +1 -0
  4414. skills/ppt-master/templates/icons/simple-icons/octobercms.svg +1 -0
  4415. skills/ppt-master/templates/icons/simple-icons/octoprint.svg +1 -0
  4416. skills/ppt-master/templates/icons/simple-icons/octopusdeploy.svg +1 -0
  4417. skills/ppt-master/templates/icons/simple-icons/oculus.svg +1 -0
  4418. skills/ppt-master/templates/icons/simple-icons/odido.svg +1 -0
  4419. skills/ppt-master/templates/icons/simple-icons/odin.svg +1 -0
  4420. skills/ppt-master/templates/icons/simple-icons/odnoklassniki.svg +1 -0
  4421. skills/ppt-master/templates/icons/simple-icons/odoo.svg +1 -0
  4422. skills/ppt-master/templates/icons/simple-icons/odysee.svg +1 -0
  4423. skills/ppt-master/templates/icons/simple-icons/ohdear.svg +1 -0
  4424. skills/ppt-master/templates/icons/simple-icons/okcupid.svg +1 -0
  4425. skills/ppt-master/templates/icons/simple-icons/okta.svg +1 -0
  4426. skills/ppt-master/templates/icons/simple-icons/okx.svg +1 -0
  4427. skills/ppt-master/templates/icons/simple-icons/ollama.svg +1 -0
  4428. skills/ppt-master/templates/icons/simple-icons/omadacloud.svg +1 -0
  4429. skills/ppt-master/templates/icons/simple-icons/omarchy.svg +1 -0
  4430. skills/ppt-master/templates/icons/simple-icons/oneplus.svg +1 -0
  4431. skills/ppt-master/templates/icons/simple-icons/onestream.svg +1 -0
  4432. skills/ppt-master/templates/icons/simple-icons/onlyfans.svg +1 -0
  4433. skills/ppt-master/templates/icons/simple-icons/onlyoffice.svg +1 -0
  4434. skills/ppt-master/templates/icons/simple-icons/onnx.svg +1 -0
  4435. skills/ppt-master/templates/icons/simple-icons/onstar.svg +1 -0
  4436. skills/ppt-master/templates/icons/simple-icons/opel.svg +1 -0
  4437. skills/ppt-master/templates/icons/simple-icons/open3d.svg +1 -0
  4438. skills/ppt-master/templates/icons/simple-icons/openaccess.svg +1 -0
  4439. skills/ppt-master/templates/icons/simple-icons/openai.svg +1 -0
  4440. skills/ppt-master/templates/icons/simple-icons/openaigym.svg +1 -0
  4441. skills/ppt-master/templates/icons/simple-icons/openapiinitiative.svg +1 -0
  4442. skills/ppt-master/templates/icons/simple-icons/openbadges.svg +1 -0
  4443. skills/ppt-master/templates/icons/simple-icons/openbao.svg +1 -0
  4444. skills/ppt-master/templates/icons/simple-icons/openbsd.svg +1 -0
  4445. skills/ppt-master/templates/icons/simple-icons/openbugbounty.svg +1 -0
  4446. skills/ppt-master/templates/icons/simple-icons/opencage.svg +1 -0
  4447. skills/ppt-master/templates/icons/simple-icons/opencollective.svg +1 -0
  4448. skills/ppt-master/templates/icons/simple-icons/opencontainersinitiative.svg +1 -0
  4449. skills/ppt-master/templates/icons/simple-icons/opencritic.svg +1 -0
  4450. skills/ppt-master/templates/icons/simple-icons/opencv.svg +1 -0
  4451. skills/ppt-master/templates/icons/simple-icons/openfaas.svg +1 -0
  4452. skills/ppt-master/templates/icons/simple-icons/opengl.svg +1 -0
  4453. skills/ppt-master/templates/icons/simple-icons/openhab.svg +1 -0
  4454. skills/ppt-master/templates/icons/simple-icons/openid.svg +1 -0
  4455. skills/ppt-master/templates/icons/simple-icons/openjdk.svg +1 -0
  4456. skills/ppt-master/templates/icons/simple-icons/openjsfoundation.svg +1 -0
  4457. skills/ppt-master/templates/icons/simple-icons/openlayers.svg +1 -0
  4458. skills/ppt-master/templates/icons/simple-icons/openmediavault.svg +1 -0
  4459. skills/ppt-master/templates/icons/simple-icons/openmined.svg +1 -0
  4460. skills/ppt-master/templates/icons/simple-icons/opennebula.svg +1 -0
  4461. skills/ppt-master/templates/icons/simple-icons/openproject.svg +1 -0
  4462. skills/ppt-master/templates/icons/simple-icons/openrouter.svg +1 -0
  4463. skills/ppt-master/templates/icons/simple-icons/openscad.svg +1 -0
  4464. skills/ppt-master/templates/icons/simple-icons/opensea.svg +1 -0
  4465. skills/ppt-master/templates/icons/simple-icons/opensearch.svg +1 -0
  4466. skills/ppt-master/templates/icons/simple-icons/opensourcehardware.svg +1 -0
  4467. skills/ppt-master/templates/icons/simple-icons/opensourceinitiative.svg +1 -0
  4468. skills/ppt-master/templates/icons/simple-icons/openssl.svg +1 -0
  4469. skills/ppt-master/templates/icons/simple-icons/openstack.svg +1 -0
  4470. skills/ppt-master/templates/icons/simple-icons/openstreetmap.svg +1 -0
  4471. skills/ppt-master/templates/icons/simple-icons/opensuse.svg +1 -0
  4472. skills/ppt-master/templates/icons/simple-icons/opentelemetry.svg +1 -0
  4473. skills/ppt-master/templates/icons/simple-icons/opentext.svg +1 -0
  4474. skills/ppt-master/templates/icons/simple-icons/opentofu.svg +1 -0
  4475. skills/ppt-master/templates/icons/simple-icons/openverse.svg +1 -0
  4476. skills/ppt-master/templates/icons/simple-icons/openvpn.svg +1 -0
  4477. skills/ppt-master/templates/icons/simple-icons/openwrt.svg +1 -0
  4478. skills/ppt-master/templates/icons/simple-icons/openzeppelin.svg +1 -0
  4479. skills/ppt-master/templates/icons/simple-icons/openzfs.svg +1 -0
  4480. skills/ppt-master/templates/icons/simple-icons/opera.svg +1 -0
  4481. skills/ppt-master/templates/icons/simple-icons/operagx.svg +1 -0
  4482. skills/ppt-master/templates/icons/simple-icons/opnsense.svg +1 -0
  4483. skills/ppt-master/templates/icons/simple-icons/oppo.svg +1 -0
  4484. skills/ppt-master/templates/icons/simple-icons/opsgenie.svg +1 -0
  4485. skills/ppt-master/templates/icons/simple-icons/opslevel.svg +1 -0
  4486. skills/ppt-master/templates/icons/simple-icons/optimism.svg +1 -0
  4487. skills/ppt-master/templates/icons/simple-icons/optuna.svg +1 -0
  4488. skills/ppt-master/templates/icons/simple-icons/oracle.svg +1 -0
  4489. skills/ppt-master/templates/icons/simple-icons/orange.svg +1 -0
  4490. skills/ppt-master/templates/icons/simple-icons/orchardcore.svg +1 -0
  4491. skills/ppt-master/templates/icons/simple-icons/orcid.svg +1 -0
  4492. skills/ppt-master/templates/icons/simple-icons/oreilly.svg +1 -0
  4493. skills/ppt-master/templates/icons/simple-icons/org.svg +1 -0
  4494. skills/ppt-master/templates/icons/simple-icons/organicmaps.svg +1 -0
  4495. skills/ppt-master/templates/icons/simple-icons/origin.svg +1 -0
  4496. skills/ppt-master/templates/icons/simple-icons/ory.svg +1 -0
  4497. skills/ppt-master/templates/icons/simple-icons/osano.svg +1 -0
  4498. skills/ppt-master/templates/icons/simple-icons/osf.svg +1 -0
  4499. skills/ppt-master/templates/icons/simple-icons/osgeo.svg +1 -0
  4500. skills/ppt-master/templates/icons/simple-icons/oshkosh.svg +1 -0
  4501. skills/ppt-master/templates/icons/simple-icons/osmand.svg +1 -0
  4502. skills/ppt-master/templates/icons/simple-icons/osmc.svg +1 -0
  4503. skills/ppt-master/templates/icons/simple-icons/osu.svg +1 -0
  4504. skills/ppt-master/templates/icons/simple-icons/otto.svg +1 -0
  4505. skills/ppt-master/templates/icons/simple-icons/outline.svg +1 -0
  4506. skills/ppt-master/templates/icons/simple-icons/overcast.svg +1 -0
  4507. skills/ppt-master/templates/icons/simple-icons/overleaf.svg +1 -0
  4508. skills/ppt-master/templates/icons/simple-icons/ovh.svg +1 -0
  4509. skills/ppt-master/templates/icons/simple-icons/owasp.svg +1 -0
  4510. skills/ppt-master/templates/icons/simple-icons/owncloud.svg +1 -0
  4511. skills/ppt-master/templates/icons/simple-icons/oxc.svg +1 -0
  4512. skills/ppt-master/templates/icons/simple-icons/oxygen.svg +1 -0
  4513. skills/ppt-master/templates/icons/simple-icons/oyo.svg +1 -0
  4514. skills/ppt-master/templates/icons/simple-icons/p5dotjs.svg +1 -0
  4515. skills/ppt-master/templates/icons/simple-icons/packagist.svg +1 -0
  4516. skills/ppt-master/templates/icons/simple-icons/packer.svg +1 -0
  4517. skills/ppt-master/templates/icons/simple-icons/packt.svg +1 -0
  4518. skills/ppt-master/templates/icons/simple-icons/paddle.svg +1 -0
  4519. skills/ppt-master/templates/icons/simple-icons/paddlepaddle.svg +1 -0
  4520. skills/ppt-master/templates/icons/simple-icons/paddypower.svg +1 -0
  4521. skills/ppt-master/templates/icons/simple-icons/padlet.svg +1 -0
  4522. skills/ppt-master/templates/icons/simple-icons/pagekit.svg +1 -0
  4523. skills/ppt-master/templates/icons/simple-icons/pagerduty.svg +1 -0
  4524. skills/ppt-master/templates/icons/simple-icons/pagespeedinsights.svg +1 -0
  4525. skills/ppt-master/templates/icons/simple-icons/pagseguro.svg +1 -0
  4526. skills/ppt-master/templates/icons/simple-icons/palantir.svg +1 -0
  4527. skills/ppt-master/templates/icons/simple-icons/paloaltonetworks.svg +1 -0
  4528. skills/ppt-master/templates/icons/simple-icons/paloaltosoftware.svg +1 -0
  4529. skills/ppt-master/templates/icons/simple-icons/panasonic.svg +1 -0
  4530. skills/ppt-master/templates/icons/simple-icons/pandas.svg +1 -0
  4531. skills/ppt-master/templates/icons/simple-icons/pandoc.svg +1 -0
  4532. skills/ppt-master/templates/icons/simple-icons/pandora.svg +1 -0
  4533. skills/ppt-master/templates/icons/simple-icons/pangolin.svg +1 -0
  4534. skills/ppt-master/templates/icons/simple-icons/pantheon.svg +1 -0
  4535. skills/ppt-master/templates/icons/simple-icons/paperlessngx.svg +1 -0
  4536. skills/ppt-master/templates/icons/simple-icons/paperspace.svg +1 -0
  4537. skills/ppt-master/templates/icons/simple-icons/paperswithcode.svg +1 -0
  4538. skills/ppt-master/templates/icons/simple-icons/paradoxinteractive.svg +1 -0
  4539. skills/ppt-master/templates/icons/simple-icons/paramountplus.svg +1 -0
  4540. skills/ppt-master/templates/icons/simple-icons/paritysubstrate.svg +1 -0
  4541. skills/ppt-master/templates/icons/simple-icons/parrotsecurity.svg +1 -0
  4542. skills/ppt-master/templates/icons/simple-icons/parsedotly.svg +1 -0
  4543. skills/ppt-master/templates/icons/simple-icons/passbolt.svg +1 -0
  4544. skills/ppt-master/templates/icons/simple-icons/passport.svg +1 -0
  4545. skills/ppt-master/templates/icons/simple-icons/pastebin.svg +1 -0
  4546. skills/ppt-master/templates/icons/simple-icons/patreon.svg +1 -0
  4547. skills/ppt-master/templates/icons/simple-icons/payback.svg +1 -0
  4548. skills/ppt-master/templates/icons/simple-icons/paychex.svg +1 -0
  4549. skills/ppt-master/templates/icons/simple-icons/payhip.svg +1 -0
  4550. skills/ppt-master/templates/icons/simple-icons/payloadcms.svg +1 -0
  4551. skills/ppt-master/templates/icons/simple-icons/payoneer.svg +1 -0
  4552. skills/ppt-master/templates/icons/simple-icons/paypal.svg +1 -0
  4553. skills/ppt-master/templates/icons/simple-icons/paysafe.svg +1 -0
  4554. skills/ppt-master/templates/icons/simple-icons/paytm.svg +1 -0
  4555. skills/ppt-master/templates/icons/simple-icons/pcgamingwiki.svg +1 -0
  4556. skills/ppt-master/templates/icons/simple-icons/pdm.svg +1 -0
  4557. skills/ppt-master/templates/icons/simple-icons/pdq.svg +1 -0
  4558. skills/ppt-master/templates/icons/simple-icons/peakdesign.svg +1 -0
  4559. skills/ppt-master/templates/icons/simple-icons/pearson.svg +1 -0
  4560. skills/ppt-master/templates/icons/simple-icons/peerlist.svg +1 -0
  4561. skills/ppt-master/templates/icons/simple-icons/peertube.svg +1 -0
  4562. skills/ppt-master/templates/icons/simple-icons/pegasusairlines.svg +1 -0
  4563. skills/ppt-master/templates/icons/simple-icons/pelican.svg +1 -0
  4564. skills/ppt-master/templates/icons/simple-icons/peloton.svg +1 -0
  4565. skills/ppt-master/templates/icons/simple-icons/penny.svg +1 -0
  4566. skills/ppt-master/templates/icons/simple-icons/penpot.svg +1 -0
  4567. skills/ppt-master/templates/icons/simple-icons/percy.svg +1 -0
  4568. skills/ppt-master/templates/icons/simple-icons/perforce.svg +1 -0
  4569. skills/ppt-master/templates/icons/simple-icons/perl.svg +1 -0
  4570. skills/ppt-master/templates/icons/simple-icons/perplexity.svg +1 -0
  4571. skills/ppt-master/templates/icons/simple-icons/persistent.svg +1 -0
  4572. skills/ppt-master/templates/icons/simple-icons/personio.svg +1 -0
  4573. skills/ppt-master/templates/icons/simple-icons/petsathome.svg +1 -0
  4574. skills/ppt-master/templates/icons/simple-icons/peugeot.svg +1 -0
  4575. skills/ppt-master/templates/icons/simple-icons/pexels.svg +1 -0
  4576. skills/ppt-master/templates/icons/simple-icons/pfsense.svg +1 -0
  4577. skills/ppt-master/templates/icons/simple-icons/phabricator.svg +1 -0
  4578. skills/ppt-master/templates/icons/simple-icons/philipshue.svg +1 -0
  4579. skills/ppt-master/templates/icons/simple-icons/phoenixframework.svg +1 -0
  4580. skills/ppt-master/templates/icons/simple-icons/phonepe.svg +1 -0
  4581. skills/ppt-master/templates/icons/simple-icons/phosphoricons.svg +1 -0
  4582. skills/ppt-master/templates/icons/simple-icons/photobucket.svg +1 -0
  4583. skills/ppt-master/templates/icons/simple-icons/photocrowd.svg +1 -0
  4584. skills/ppt-master/templates/icons/simple-icons/photon.svg +1 -0
  4585. skills/ppt-master/templates/icons/simple-icons/photopea.svg +1 -0
  4586. skills/ppt-master/templates/icons/simple-icons/php.svg +1 -0
  4587. skills/ppt-master/templates/icons/simple-icons/phpbb.svg +1 -0
  4588. skills/ppt-master/templates/icons/simple-icons/phpmyadmin.svg +1 -0
  4589. skills/ppt-master/templates/icons/simple-icons/phpstorm.svg +1 -0
  4590. skills/ppt-master/templates/icons/simple-icons/piaggiogroup.svg +1 -0
  4591. skills/ppt-master/templates/icons/simple-icons/piapro.svg +1 -0
  4592. skills/ppt-master/templates/icons/simple-icons/picardsurgeles.svg +1 -0
  4593. skills/ppt-master/templates/icons/simple-icons/picartodottv.svg +1 -0
  4594. skills/ppt-master/templates/icons/simple-icons/picnic.svg +1 -0
  4595. skills/ppt-master/templates/icons/simple-icons/picpay.svg +1 -0
  4596. skills/ppt-master/templates/icons/simple-icons/picrew.svg +1 -0
  4597. skills/ppt-master/templates/icons/simple-icons/picsart.svg +1 -0
  4598. skills/ppt-master/templates/icons/simple-icons/picxy.svg +1 -0
  4599. skills/ppt-master/templates/icons/simple-icons/pihole.svg +1 -0
  4600. skills/ppt-master/templates/icons/simple-icons/pimcore.svg +1 -0
  4601. skills/ppt-master/templates/icons/simple-icons/pinboard.svg +1 -0
  4602. skills/ppt-master/templates/icons/simple-icons/pinescript.svg +1 -0
  4603. skills/ppt-master/templates/icons/simple-icons/pinetwork.svg +1 -0
  4604. skills/ppt-master/templates/icons/simple-icons/pingdom.svg +1 -0
  4605. skills/ppt-master/templates/icons/simple-icons/pinia.svg +1 -0
  4606. skills/ppt-master/templates/icons/simple-icons/pino.svg +1 -0
  4607. skills/ppt-master/templates/icons/simple-icons/pinterest.svg +1 -0
  4608. skills/ppt-master/templates/icons/simple-icons/pioneerdj.svg +1 -0
  4609. skills/ppt-master/templates/icons/simple-icons/pipecat.svg +1 -0
  4610. skills/ppt-master/templates/icons/simple-icons/piped.svg +1 -0
  4611. skills/ppt-master/templates/icons/simple-icons/pipx.svg +1 -0
  4612. skills/ppt-master/templates/icons/simple-icons/pivotaltracker.svg +1 -0
  4613. skills/ppt-master/templates/icons/simple-icons/piwigo.svg +1 -0
  4614. skills/ppt-master/templates/icons/simple-icons/pix.svg +1 -0
  4615. skills/ppt-master/templates/icons/simple-icons/pixabay.svg +1 -0
  4616. skills/ppt-master/templates/icons/simple-icons/pixelfed.svg +1 -0
  4617. skills/ppt-master/templates/icons/simple-icons/pixiv.svg +1 -0
  4618. skills/ppt-master/templates/icons/simple-icons/pixlr.svg +1 -0
  4619. skills/ppt-master/templates/icons/simple-icons/pkgsrc.svg +1 -0
  4620. skills/ppt-master/templates/icons/simple-icons/plane.svg +1 -0
  4621. skills/ppt-master/templates/icons/simple-icons/planet.svg +1 -0
  4622. skills/ppt-master/templates/icons/simple-icons/planetscale.svg +1 -0
  4623. skills/ppt-master/templates/icons/simple-icons/plangrid.svg +1 -0
  4624. skills/ppt-master/templates/icons/simple-icons/platformdotsh.svg +1 -0
  4625. skills/ppt-master/templates/icons/simple-icons/platformio.svg +1 -0
  4626. skills/ppt-master/templates/icons/simple-icons/platzi.svg +1 -0
  4627. skills/ppt-master/templates/icons/simple-icons/plausibleanalytics.svg +1 -0
  4628. skills/ppt-master/templates/icons/simple-icons/playcanvas.svg +1 -0
  4629. skills/ppt-master/templates/icons/simple-icons/playerdotme.svg +1 -0
  4630. skills/ppt-master/templates/icons/simple-icons/playerfm.svg +1 -0
  4631. skills/ppt-master/templates/icons/simple-icons/playstation.svg +1 -0
  4632. skills/ppt-master/templates/icons/simple-icons/playstation2.svg +1 -0
  4633. skills/ppt-master/templates/icons/simple-icons/playstation3.svg +1 -0
  4634. skills/ppt-master/templates/icons/simple-icons/playstation4.svg +1 -0
  4635. skills/ppt-master/templates/icons/simple-icons/playstation5.svg +1 -0
  4636. skills/ppt-master/templates/icons/simple-icons/playstationportable.svg +1 -0
  4637. skills/ppt-master/templates/icons/simple-icons/playstationvita.svg +1 -0
  4638. skills/ppt-master/templates/icons/simple-icons/playwright.svg +1 -0
  4639. skills/ppt-master/templates/icons/simple-icons/pleroma.svg +1 -0
  4640. skills/ppt-master/templates/icons/simple-icons/plesk.svg +1 -0
  4641. skills/ppt-master/templates/icons/simple-icons/plex.svg +1 -0
  4642. skills/ppt-master/templates/icons/simple-icons/plotly.svg +1 -0
  4643. skills/ppt-master/templates/icons/simple-icons/plume.svg +1 -0
  4644. skills/ppt-master/templates/icons/simple-icons/pluralsight.svg +1 -0
  4645. skills/ppt-master/templates/icons/simple-icons/plurk.svg +1 -0
  4646. skills/ppt-master/templates/icons/simple-icons/pluscodes.svg +1 -0
  4647. skills/ppt-master/templates/icons/simple-icons/pm2.svg +1 -0
  4648. skills/ppt-master/templates/icons/simple-icons/pnpm.svg +1 -0
  4649. skills/ppt-master/templates/icons/simple-icons/pocket.svg +1 -0
  4650. skills/ppt-master/templates/icons/simple-icons/pocketbase.svg +1 -0
  4651. skills/ppt-master/templates/icons/simple-icons/pocketcasts.svg +1 -0
  4652. skills/ppt-master/templates/icons/simple-icons/podcastaddict.svg +1 -0
  4653. skills/ppt-master/templates/icons/simple-icons/podcastindex.svg +1 -0
  4654. skills/ppt-master/templates/icons/simple-icons/podman.svg +1 -0
  4655. skills/ppt-master/templates/icons/simple-icons/poe.svg +1 -0
  4656. skills/ppt-master/templates/icons/simple-icons/poetry.svg +1 -0
  4657. skills/ppt-master/templates/icons/simple-icons/pointy.svg +1 -0
  4658. skills/ppt-master/templates/icons/simple-icons/pokemon.svg +1 -0
  4659. skills/ppt-master/templates/icons/simple-icons/polars.svg +1 -0
  4660. skills/ppt-master/templates/icons/simple-icons/polestar.svg +1 -0
  4661. skills/ppt-master/templates/icons/simple-icons/polkadot.svg +1 -0
  4662. skills/ppt-master/templates/icons/simple-icons/poly.svg +1 -0
  4663. skills/ppt-master/templates/icons/simple-icons/polygon.svg +1 -0
  4664. skills/ppt-master/templates/icons/simple-icons/polymerproject.svg +1 -0
  4665. skills/ppt-master/templates/icons/simple-icons/polywork.svg +1 -0
  4666. skills/ppt-master/templates/icons/simple-icons/pomerium.svg +1 -0
  4667. skills/ppt-master/templates/icons/simple-icons/pond5.svg +1 -0
  4668. skills/ppt-master/templates/icons/simple-icons/popos.svg +1 -0
  4669. skills/ppt-master/templates/icons/simple-icons/porkbun.svg +1 -0
  4670. skills/ppt-master/templates/icons/simple-icons/porsche.svg +1 -0
  4671. skills/ppt-master/templates/icons/simple-icons/portableappsdotcom.svg +1 -0
  4672. skills/ppt-master/templates/icons/simple-icons/portainer.svg +1 -0
  4673. skills/ppt-master/templates/icons/simple-icons/portswigger.svg +1 -0
  4674. skills/ppt-master/templates/icons/simple-icons/posit.svg +1 -0
  4675. skills/ppt-master/templates/icons/simple-icons/postcss.svg +1 -0
  4676. skills/ppt-master/templates/icons/simple-icons/postgresql.svg +1 -0
  4677. skills/ppt-master/templates/icons/simple-icons/posthog.svg +1 -0
  4678. skills/ppt-master/templates/icons/simple-icons/postiz.svg +1 -0
  4679. skills/ppt-master/templates/icons/simple-icons/postman.svg +1 -0
  4680. skills/ppt-master/templates/icons/simple-icons/postmates.svg +1 -0
  4681. skills/ppt-master/templates/icons/simple-icons/powerapps.svg +1 -0
  4682. skills/ppt-master/templates/icons/simple-icons/powerautomate.svg +1 -0
  4683. skills/ppt-master/templates/icons/simple-icons/powerbi.svg +1 -0
  4684. skills/ppt-master/templates/icons/simple-icons/powerfx.svg +1 -0
  4685. skills/ppt-master/templates/icons/simple-icons/powerpages.svg +1 -0
  4686. skills/ppt-master/templates/icons/simple-icons/powers.svg +1 -0
  4687. skills/ppt-master/templates/icons/simple-icons/powershell.svg +1 -0
  4688. skills/ppt-master/templates/icons/simple-icons/powervirtualagents.svg +1 -0
  4689. skills/ppt-master/templates/icons/simple-icons/prdotco.svg +1 -0
  4690. skills/ppt-master/templates/icons/simple-icons/preact.svg +1 -0
  4691. skills/ppt-master/templates/icons/simple-icons/precommit.svg +1 -0
  4692. skills/ppt-master/templates/icons/simple-icons/prefect.svg +1 -0
  4693. skills/ppt-master/templates/icons/simple-icons/prek.svg +1 -0
  4694. skills/ppt-master/templates/icons/simple-icons/premid.svg +1 -0
  4695. skills/ppt-master/templates/icons/simple-icons/premierleague.svg +1 -0
  4696. skills/ppt-master/templates/icons/simple-icons/prepbytes.svg +1 -0
  4697. skills/ppt-master/templates/icons/simple-icons/prestashop.svg +1 -0
  4698. skills/ppt-master/templates/icons/simple-icons/presto.svg +1 -0
  4699. skills/ppt-master/templates/icons/simple-icons/prettier.svg +1 -0
  4700. skills/ppt-master/templates/icons/simple-icons/pretzel.svg +1 -0
  4701. skills/ppt-master/templates/icons/simple-icons/prevention.svg +1 -0
  4702. skills/ppt-master/templates/icons/simple-icons/prezi.svg +1 -0
  4703. skills/ppt-master/templates/icons/simple-icons/prime.svg +1 -0
  4704. skills/ppt-master/templates/icons/simple-icons/primefaces.svg +1 -0
  4705. skills/ppt-master/templates/icons/simple-icons/primeng.svg +1 -0
  4706. skills/ppt-master/templates/icons/simple-icons/primereact.svg +1 -0
  4707. skills/ppt-master/templates/icons/simple-icons/primevideo.svg +1 -0
  4708. skills/ppt-master/templates/icons/simple-icons/primevue.svg +1 -0
  4709. skills/ppt-master/templates/icons/simple-icons/printables.svg +1 -0
  4710. skills/ppt-master/templates/icons/simple-icons/prisma.svg +1 -0
  4711. skills/ppt-master/templates/icons/simple-icons/prismic.svg +1 -0
  4712. skills/ppt-master/templates/icons/simple-icons/privatedivision.svg +1 -0
  4713. skills/ppt-master/templates/icons/simple-icons/privateinternetaccess.svg +1 -0
  4714. skills/ppt-master/templates/icons/simple-icons/probot.svg +1 -0
  4715. skills/ppt-master/templates/icons/simple-icons/processingfoundation.svg +1 -0
  4716. skills/ppt-master/templates/icons/simple-icons/processon.svg +1 -0
  4717. skills/ppt-master/templates/icons/simple-icons/processwire.svg +1 -0
  4718. skills/ppt-master/templates/icons/simple-icons/producthunt.svg +1 -0
  4719. skills/ppt-master/templates/icons/simple-icons/progate.svg +1 -0
  4720. skills/ppt-master/templates/icons/simple-icons/progress.svg +1 -0
  4721. skills/ppt-master/templates/icons/simple-icons/prometheus.svg +1 -0
  4722. skills/ppt-master/templates/icons/simple-icons/pronounsdotpage.svg +1 -0
  4723. skills/ppt-master/templates/icons/simple-icons/prosemirror.svg +1 -0
  4724. skills/ppt-master/templates/icons/simple-icons/prosieben.svg +1 -0
  4725. skills/ppt-master/templates/icons/simple-icons/proteus.svg +1 -0
  4726. skills/ppt-master/templates/icons/simple-icons/protocolsdotio.svg +1 -0
  4727. skills/ppt-master/templates/icons/simple-icons/protodotio.svg +1 -0
  4728. skills/ppt-master/templates/icons/simple-icons/proton.svg +1 -0
  4729. skills/ppt-master/templates/icons/simple-icons/protoncalendar.svg +1 -0
  4730. skills/ppt-master/templates/icons/simple-icons/protondb.svg +1 -0
  4731. skills/ppt-master/templates/icons/simple-icons/protondrive.svg +1 -0
  4732. skills/ppt-master/templates/icons/simple-icons/protonmail.svg +1 -0
  4733. skills/ppt-master/templates/icons/simple-icons/protonvpn.svg +1 -0
  4734. skills/ppt-master/templates/icons/simple-icons/protools.svg +1 -0
  4735. skills/ppt-master/templates/icons/simple-icons/protractor.svg +1 -0
  4736. skills/ppt-master/templates/icons/simple-icons/proxmox.svg +1 -0
  4737. skills/ppt-master/templates/icons/simple-icons/pterodactyl.svg +1 -0
  4738. skills/ppt-master/templates/icons/simple-icons/pubg.svg +1 -0
  4739. skills/ppt-master/templates/icons/simple-icons/publons.svg +1 -0
  4740. skills/ppt-master/templates/icons/simple-icons/pubmed.svg +1 -0
  4741. skills/ppt-master/templates/icons/simple-icons/pug.svg +1 -0
  4742. skills/ppt-master/templates/icons/simple-icons/pulumi.svg +1 -0
  4743. skills/ppt-master/templates/icons/simple-icons/puma.svg +1 -0
  4744. skills/ppt-master/templates/icons/simple-icons/puppet.svg +1 -0
  4745. skills/ppt-master/templates/icons/simple-icons/puppeteer.svg +1 -0
  4746. skills/ppt-master/templates/icons/simple-icons/purescript.svg +1 -0
  4747. skills/ppt-master/templates/icons/simple-icons/purgecss.svg +1 -0
  4748. skills/ppt-master/templates/icons/simple-icons/purism.svg +1 -0
  4749. skills/ppt-master/templates/icons/simple-icons/pushbullet.svg +1 -0
  4750. skills/ppt-master/templates/icons/simple-icons/pusher.svg +1 -0
  4751. skills/ppt-master/templates/icons/simple-icons/pwa.svg +1 -0
  4752. skills/ppt-master/templates/icons/simple-icons/pycharm.svg +1 -0
  4753. skills/ppt-master/templates/icons/simple-icons/pycqa.svg +1 -0
  4754. skills/ppt-master/templates/icons/simple-icons/pydantic.svg +1 -0
  4755. skills/ppt-master/templates/icons/simple-icons/pyg.svg +1 -0
  4756. skills/ppt-master/templates/icons/simple-icons/pypi.svg +1 -0
  4757. skills/ppt-master/templates/icons/simple-icons/pypy.svg +1 -0
  4758. skills/ppt-master/templates/icons/simple-icons/pyscaffold.svg +1 -0
  4759. skills/ppt-master/templates/icons/simple-icons/pysyft.svg +1 -0
  4760. skills/ppt-master/templates/icons/simple-icons/pytest.svg +1 -0
  4761. skills/ppt-master/templates/icons/simple-icons/python.svg +1 -0
  4762. skills/ppt-master/templates/icons/simple-icons/pythonanywhere.svg +1 -0
  4763. skills/ppt-master/templates/icons/simple-icons/pytorch.svg +1 -0
  4764. skills/ppt-master/templates/icons/simple-icons/pyup.svg +1 -0
  4765. skills/ppt-master/templates/icons/simple-icons/qantas.svg +1 -0
  4766. skills/ppt-master/templates/icons/simple-icons/qase.svg +1 -0
  4767. skills/ppt-master/templates/icons/simple-icons/qatarairways.svg +1 -0
  4768. skills/ppt-master/templates/icons/simple-icons/qbittorrent.svg +1 -0
  4769. skills/ppt-master/templates/icons/simple-icons/qdrant.svg +1 -0
  4770. skills/ppt-master/templates/icons/simple-icons/qemu.svg +1 -0
  4771. skills/ppt-master/templates/icons/simple-icons/qgis.svg +1 -0
  4772. skills/ppt-master/templates/icons/simple-icons/qi.svg +1 -0
  4773. skills/ppt-master/templates/icons/simple-icons/qiita.svg +1 -0
  4774. skills/ppt-master/templates/icons/simple-icons/qiskit.svg +1 -0
  4775. skills/ppt-master/templates/icons/simple-icons/qiwi.svg +1 -0
  4776. skills/ppt-master/templates/icons/simple-icons/qlik.svg +1 -0
  4777. skills/ppt-master/templates/icons/simple-icons/qlty.svg +1 -0
  4778. skills/ppt-master/templates/icons/simple-icons/qmk.svg +1 -0
  4779. skills/ppt-master/templates/icons/simple-icons/qnap.svg +1 -0
  4780. skills/ppt-master/templates/icons/simple-icons/qodo.svg +1 -0
  4781. skills/ppt-master/templates/icons/simple-icons/qq.svg +1 -0
  4782. skills/ppt-master/templates/icons/simple-icons/qt.svg +1 -0
  4783. skills/ppt-master/templates/icons/simple-icons/quad9.svg +1 -0
  4784. skills/ppt-master/templates/icons/simple-icons/qualcomm.svg +1 -0
  4785. skills/ppt-master/templates/icons/simple-icons/qualtrics.svg +1 -0
  4786. skills/ppt-master/templates/icons/simple-icons/qualys.svg +1 -0
  4787. skills/ppt-master/templates/icons/simple-icons/quantcast.svg +1 -0
  4788. skills/ppt-master/templates/icons/simple-icons/quantconnect.svg +1 -0
  4789. skills/ppt-master/templates/icons/simple-icons/quarkus.svg +1 -0
  4790. skills/ppt-master/templates/icons/simple-icons/quarto.svg +1 -0
  4791. skills/ppt-master/templates/icons/simple-icons/quasar.svg +1 -0
  4792. skills/ppt-master/templates/icons/simple-icons/qubesos.svg +1 -0
  4793. skills/ppt-master/templates/icons/simple-icons/quest.svg +1 -0
  4794. skills/ppt-master/templates/icons/simple-icons/quickbooks.svg +1 -0
  4795. skills/ppt-master/templates/icons/simple-icons/quicklook.svg +1 -0
  4796. skills/ppt-master/templates/icons/simple-icons/quicktime.svg +1 -0
  4797. skills/ppt-master/templates/icons/simple-icons/quicktype.svg +1 -0
  4798. skills/ppt-master/templates/icons/simple-icons/quip.svg +1 -0
  4799. skills/ppt-master/templates/icons/simple-icons/quizlet.svg +1 -0
  4800. skills/ppt-master/templates/icons/simple-icons/quora.svg +1 -0
  4801. skills/ppt-master/templates/icons/simple-icons/qwant.svg +1 -0
  4802. skills/ppt-master/templates/icons/simple-icons/qwen.svg +1 -0
  4803. skills/ppt-master/templates/icons/simple-icons/qwik.svg +1 -0
  4804. skills/ppt-master/templates/icons/simple-icons/qwiklabs.svg +1 -0
  4805. skills/ppt-master/templates/icons/simple-icons/qzone.svg +1 -0
  4806. skills/ppt-master/templates/icons/simple-icons/r.svg +1 -0
  4807. skills/ppt-master/templates/icons/simple-icons/r3.svg +1 -0
  4808. skills/ppt-master/templates/icons/simple-icons/rabbitmq.svg +1 -0
  4809. skills/ppt-master/templates/icons/simple-icons/racket.svg +1 -0
  4810. skills/ppt-master/templates/icons/simple-icons/radar.svg +1 -0
  4811. skills/ppt-master/templates/icons/simple-icons/radarr.svg +1 -0
  4812. skills/ppt-master/templates/icons/simple-icons/radiofrance.svg +1 -0
  4813. skills/ppt-master/templates/icons/simple-icons/radiopublic.svg +1 -0
  4814. skills/ppt-master/templates/icons/simple-icons/radixui.svg +1 -0
  4815. skills/ppt-master/templates/icons/simple-icons/radstudio.svg +1 -0
  4816. skills/ppt-master/templates/icons/simple-icons/railway.svg +1 -0
  4817. skills/ppt-master/templates/icons/simple-icons/rainmeter.svg +1 -0
  4818. skills/ppt-master/templates/icons/simple-icons/rainyun.svg +1 -0
  4819. skills/ppt-master/templates/icons/simple-icons/rakuten.svg +1 -0
  4820. skills/ppt-master/templates/icons/simple-icons/rakutenkobo.svg +1 -0
  4821. skills/ppt-master/templates/icons/simple-icons/ram.svg +1 -0
  4822. skills/ppt-master/templates/icons/simple-icons/rancher.svg +1 -0
  4823. skills/ppt-master/templates/icons/simple-icons/rapid.svg +1 -0
  4824. skills/ppt-master/templates/icons/simple-icons/rarible.svg +1 -0
  4825. skills/ppt-master/templates/icons/simple-icons/rasa.svg +1 -0
  4826. skills/ppt-master/templates/icons/simple-icons/raspberrypi.svg +1 -0
  4827. skills/ppt-master/templates/icons/simple-icons/ratatui.svg +1 -0
  4828. skills/ppt-master/templates/icons/simple-icons/ravelry.svg +1 -0
  4829. skills/ppt-master/templates/icons/simple-icons/ray.svg +1 -0
  4830. skills/ppt-master/templates/icons/simple-icons/raycast.svg +1 -0
  4831. skills/ppt-master/templates/icons/simple-icons/raylib.svg +1 -0
  4832. skills/ppt-master/templates/icons/simple-icons/razer.svg +1 -0
  4833. skills/ppt-master/templates/icons/simple-icons/razorpay.svg +1 -0
  4834. skills/ppt-master/templates/icons/simple-icons/rclone.svg +1 -0
  4835. skills/ppt-master/templates/icons/simple-icons/react.svg +1 -0
  4836. skills/ppt-master/templates/icons/simple-icons/reactbootstrap.svg +1 -0
  4837. skills/ppt-master/templates/icons/simple-icons/reacthookform.svg +1 -0
  4838. skills/ppt-master/templates/icons/simple-icons/reactiveresume.svg +1 -0
  4839. skills/ppt-master/templates/icons/simple-icons/reactivex.svg +1 -0
  4840. skills/ppt-master/templates/icons/simple-icons/reactos.svg +1 -0
  4841. skills/ppt-master/templates/icons/simple-icons/reactquery.svg +1 -0
  4842. skills/ppt-master/templates/icons/simple-icons/reactrouter.svg +1 -0
  4843. skills/ppt-master/templates/icons/simple-icons/reacttable.svg +1 -0
  4844. skills/ppt-master/templates/icons/simple-icons/readdotcv.svg +1 -0
  4845. skills/ppt-master/templates/icons/simple-icons/readme.svg +1 -0
  4846. skills/ppt-master/templates/icons/simple-icons/readthedocs.svg +1 -0
  4847. skills/ppt-master/templates/icons/simple-icons/realm.svg +1 -0
  4848. skills/ppt-master/templates/icons/simple-icons/reason.svg +1 -0
  4849. skills/ppt-master/templates/icons/simple-icons/reasonstudios.svg +1 -0
  4850. skills/ppt-master/templates/icons/simple-icons/recoil.svg +1 -0
  4851. skills/ppt-master/templates/icons/simple-icons/red.svg +1 -0
  4852. skills/ppt-master/templates/icons/simple-icons/redash.svg +1 -0
  4853. skills/ppt-master/templates/icons/simple-icons/redbubble.svg +1 -0
  4854. skills/ppt-master/templates/icons/simple-icons/redbull.svg +1 -0
  4855. skills/ppt-master/templates/icons/simple-icons/redcandlegames.svg +1 -0
  4856. skills/ppt-master/templates/icons/simple-icons/reddit.svg +1 -0
  4857. skills/ppt-master/templates/icons/simple-icons/redhat.svg +1 -0
  4858. skills/ppt-master/templates/icons/simple-icons/redhatopenshift.svg +1 -0
  4859. skills/ppt-master/templates/icons/simple-icons/redis.svg +1 -0
  4860. skills/ppt-master/templates/icons/simple-icons/redmine.svg +1 -0
  4861. skills/ppt-master/templates/icons/simple-icons/redox.svg +1 -0
  4862. skills/ppt-master/templates/icons/simple-icons/redragon.svg +1 -0
  4863. skills/ppt-master/templates/icons/simple-icons/redsys.svg +1 -0
  4864. skills/ppt-master/templates/icons/simple-icons/redux.svg +1 -0
  4865. skills/ppt-master/templates/icons/simple-icons/reduxsaga.svg +1 -0
  4866. skills/ppt-master/templates/icons/simple-icons/redwoodjs.svg +1 -0
  4867. skills/ppt-master/templates/icons/simple-icons/reebok.svg +1 -0
  4868. skills/ppt-master/templates/icons/simple-icons/refine.svg +1 -0
  4869. skills/ppt-master/templates/icons/simple-icons/refinedgithub.svg +1 -0
  4870. skills/ppt-master/templates/icons/simple-icons/reflex.svg +1 -0
  4871. skills/ppt-master/templates/icons/simple-icons/rekaui.svg +1 -0
  4872. skills/ppt-master/templates/icons/simple-icons/relay.svg +1 -0
  4873. skills/ppt-master/templates/icons/simple-icons/relianceindustrieslimited.svg +1 -0
  4874. skills/ppt-master/templates/icons/simple-icons/remark.svg +1 -0
  4875. skills/ppt-master/templates/icons/simple-icons/remedyentertainment.svg +1 -0
  4876. skills/ppt-master/templates/icons/simple-icons/remix.svg +1 -0
  4877. skills/ppt-master/templates/icons/simple-icons/removedotbg.svg +1 -0
  4878. skills/ppt-master/templates/icons/simple-icons/renault.svg +1 -0
  4879. skills/ppt-master/templates/icons/simple-icons/render.svg +1 -0
  4880. skills/ppt-master/templates/icons/simple-icons/renovate.svg +1 -0
  4881. skills/ppt-master/templates/icons/simple-icons/renovatebot.svg +1 -0
  4882. skills/ppt-master/templates/icons/simple-icons/renpy.svg +1 -0
  4883. skills/ppt-master/templates/icons/simple-icons/renren.svg +1 -0
  4884. skills/ppt-master/templates/icons/simple-icons/replicate.svg +1 -0
  4885. skills/ppt-master/templates/icons/simple-icons/replit.svg +1 -0
  4886. skills/ppt-master/templates/icons/simple-icons/republicofgamers.svg +1 -0
  4887. skills/ppt-master/templates/icons/simple-icons/rescript.svg +1 -0
  4888. skills/ppt-master/templates/icons/simple-icons/rescuetime.svg +1 -0
  4889. skills/ppt-master/templates/icons/simple-icons/researchgate.svg +1 -0
  4890. skills/ppt-master/templates/icons/simple-icons/resend.svg +1 -0
  4891. skills/ppt-master/templates/icons/simple-icons/resharper.svg +1 -0
  4892. skills/ppt-master/templates/icons/simple-icons/resurrectionremixos.svg +1 -0
  4893. skills/ppt-master/templates/icons/simple-icons/retool.svg +1 -0
  4894. skills/ppt-master/templates/icons/simple-icons/retroachievements.svg +1 -0
  4895. skills/ppt-master/templates/icons/simple-icons/retroarch.svg +1 -0
  4896. skills/ppt-master/templates/icons/simple-icons/retropie.svg +1 -0
  4897. skills/ppt-master/templates/icons/simple-icons/revanced.svg +1 -0
  4898. skills/ppt-master/templates/icons/simple-icons/revealdotjs.svg +1 -0
  4899. skills/ppt-master/templates/icons/simple-icons/revenuecat.svg +1 -0
  4900. skills/ppt-master/templates/icons/simple-icons/reverbnation.svg +1 -0
  4901. skills/ppt-master/templates/icons/simple-icons/revoltdotchat.svg +1 -0
  4902. skills/ppt-master/templates/icons/simple-icons/revolut.svg +1 -0
  4903. skills/ppt-master/templates/icons/simple-icons/revue.svg +1 -0
  4904. skills/ppt-master/templates/icons/simple-icons/rewe.svg +1 -0
  4905. skills/ppt-master/templates/icons/simple-icons/rezgo.svg +1 -0
  4906. skills/ppt-master/templates/icons/simple-icons/rhinoceros.svg +1 -0
  4907. skills/ppt-master/templates/icons/simple-icons/rich.svg +1 -0
  4908. skills/ppt-master/templates/icons/simple-icons/rider.svg +1 -0
  4909. skills/ppt-master/templates/icons/simple-icons/rimacautomobili.svg +1 -0
  4910. skills/ppt-master/templates/icons/simple-icons/rime.svg +1 -0
  4911. skills/ppt-master/templates/icons/simple-icons/ring.svg +1 -0
  4912. skills/ppt-master/templates/icons/simple-icons/riotgames.svg +1 -0
  4913. skills/ppt-master/templates/icons/simple-icons/ripple.svg +1 -0
  4914. skills/ppt-master/templates/icons/simple-icons/riscv.svg +1 -0
  4915. skills/ppt-master/templates/icons/simple-icons/riseup.svg +1 -0
  4916. skills/ppt-master/templates/icons/simple-icons/ritzcarlton.svg +1 -0
  4917. skills/ppt-master/templates/icons/simple-icons/rive.svg +1 -0
  4918. skills/ppt-master/templates/icons/simple-icons/roadmapdotsh.svg +1 -0
  4919. skills/ppt-master/templates/icons/simple-icons/roamresearch.svg +1 -0
  4920. skills/ppt-master/templates/icons/simple-icons/robinhood.svg +1 -0
  4921. skills/ppt-master/templates/icons/simple-icons/roblox.svg +1 -0
  4922. skills/ppt-master/templates/icons/simple-icons/robloxstudio.svg +1 -0
  4923. skills/ppt-master/templates/icons/simple-icons/roboflow.svg +1 -0
  4924. skills/ppt-master/templates/icons/simple-icons/robotframework.svg +1 -0
  4925. skills/ppt-master/templates/icons/simple-icons/rocket.svg +1 -0
  4926. skills/ppt-master/templates/icons/simple-icons/rocketdotchat.svg +1 -0
  4927. skills/ppt-master/templates/icons/simple-icons/rocksdb.svg +1 -0
  4928. skills/ppt-master/templates/icons/simple-icons/rockstargames.svg +1 -0
  4929. skills/ppt-master/templates/icons/simple-icons/rockwellautomation.svg +1 -0
  4930. skills/ppt-master/templates/icons/simple-icons/rockylinux.svg +1 -0
  4931. skills/ppt-master/templates/icons/simple-icons/roku.svg +1 -0
  4932. skills/ppt-master/templates/icons/simple-icons/roll20.svg +1 -0
  4933. skills/ppt-master/templates/icons/simple-icons/rollbar.svg +1 -0
  4934. skills/ppt-master/templates/icons/simple-icons/rolldown.svg +1 -0
  4935. skills/ppt-master/templates/icons/simple-icons/rollsroyce.svg +1 -0
  4936. skills/ppt-master/templates/icons/simple-icons/rollupdotjs.svg +1 -0
  4937. skills/ppt-master/templates/icons/simple-icons/rook.svg +1 -0
  4938. skills/ppt-master/templates/icons/simple-icons/roon.svg +1 -0
  4939. skills/ppt-master/templates/icons/simple-icons/root.svg +1 -0
  4940. skills/ppt-master/templates/icons/simple-icons/rootme.svg +1 -0
  4941. skills/ppt-master/templates/icons/simple-icons/roots.svg +1 -0
  4942. skills/ppt-master/templates/icons/simple-icons/rootsbedrock.svg +1 -0
  4943. skills/ppt-master/templates/icons/simple-icons/rootssage.svg +1 -0
  4944. skills/ppt-master/templates/icons/simple-icons/ros.svg +1 -0
  4945. skills/ppt-master/templates/icons/simple-icons/rossmann.svg +1 -0
  4946. skills/ppt-master/templates/icons/simple-icons/rotaryinternational.svg +1 -0
  4947. skills/ppt-master/templates/icons/simple-icons/rottentomatoes.svg +1 -0
  4948. skills/ppt-master/templates/icons/simple-icons/roundcube.svg +1 -0
  4949. skills/ppt-master/templates/icons/simple-icons/rsocket.svg +1 -0
  4950. skills/ppt-master/templates/icons/simple-icons/rss.svg +1 -0
  4951. skills/ppt-master/templates/icons/simple-icons/rstudioide.svg +1 -0
  4952. skills/ppt-master/templates/icons/simple-icons/rte.svg +1 -0
  4953. skills/ppt-master/templates/icons/simple-icons/rtl.svg +1 -0
  4954. skills/ppt-master/templates/icons/simple-icons/rtlzwei.svg +1 -0
  4955. skills/ppt-master/templates/icons/simple-icons/rtm.svg +1 -0
  4956. skills/ppt-master/templates/icons/simple-icons/rubocop.svg +1 -0
  4957. skills/ppt-master/templates/icons/simple-icons/ruby.svg +1 -0
  4958. skills/ppt-master/templates/icons/simple-icons/rubygems.svg +1 -0
  4959. skills/ppt-master/templates/icons/simple-icons/rubymine.svg +1 -0
  4960. skills/ppt-master/templates/icons/simple-icons/rubyonrails.svg +1 -0
  4961. skills/ppt-master/templates/icons/simple-icons/rubysinatra.svg +1 -0
  4962. skills/ppt-master/templates/icons/simple-icons/ruff.svg +1 -0
  4963. skills/ppt-master/templates/icons/simple-icons/rumahweb.svg +1 -0
  4964. skills/ppt-master/templates/icons/simple-icons/rumble.svg +1 -0
  4965. skills/ppt-master/templates/icons/simple-icons/rundeck.svg +1 -0
  4966. skills/ppt-master/templates/icons/simple-icons/runkeeper.svg +1 -0
  4967. skills/ppt-master/templates/icons/simple-icons/runkit.svg +1 -0
  4968. skills/ppt-master/templates/icons/simple-icons/runrundotit.svg +1 -0
  4969. skills/ppt-master/templates/icons/simple-icons/rust.svg +1 -0
  4970. skills/ppt-master/templates/icons/simple-icons/rustdesk.svg +1 -0
  4971. skills/ppt-master/templates/icons/simple-icons/rustfs.svg +1 -0
  4972. skills/ppt-master/templates/icons/simple-icons/rxdb.svg +1 -0
  4973. skills/ppt-master/templates/icons/simple-icons/ryanair.svg +1 -0
  4974. skills/ppt-master/templates/icons/simple-icons/rye.svg +1 -0
  4975. skills/ppt-master/templates/icons/simple-icons/s7airlines.svg +1 -0
  4976. skills/ppt-master/templates/icons/simple-icons/sabanci.svg +1 -0
  4977. skills/ppt-master/templates/icons/simple-icons/safari.svg +1 -0
  4978. skills/ppt-master/templates/icons/simple-icons/sage.svg +1 -0
  4979. skills/ppt-master/templates/icons/simple-icons/sagemath.svg +1 -0
  4980. skills/ppt-master/templates/icons/simple-icons/sahibinden.svg +1 -0
  4981. skills/ppt-master/templates/icons/simple-icons/sailfishos.svg +1 -0
  4982. skills/ppt-master/templates/icons/simple-icons/sailsdotjs.svg +1 -0
  4983. skills/ppt-master/templates/icons/simple-icons/salesforce.svg +1 -0
  4984. skills/ppt-master/templates/icons/simple-icons/salla.svg +1 -0
  4985. skills/ppt-master/templates/icons/simple-icons/saltproject.svg +1 -0
  4986. skills/ppt-master/templates/icons/simple-icons/samsclub.svg +1 -0
  4987. skills/ppt-master/templates/icons/simple-icons/samsung.svg +1 -0
  4988. skills/ppt-master/templates/icons/simple-icons/samsungpay.svg +1 -0
  4989. skills/ppt-master/templates/icons/simple-icons/sandisk.svg +1 -0
  4990. skills/ppt-master/templates/icons/simple-icons/sanfranciscomunicipalrailway.svg +1 -0
  4991. skills/ppt-master/templates/icons/simple-icons/sanic.svg +1 -0
  4992. skills/ppt-master/templates/icons/simple-icons/sanity.svg +1 -0
  4993. skills/ppt-master/templates/icons/simple-icons/saopaulometro.svg +1 -0
  4994. skills/ppt-master/templates/icons/simple-icons/sap.svg +1 -0
  4995. skills/ppt-master/templates/icons/simple-icons/sartorius.svg +1 -0
  4996. skills/ppt-master/templates/icons/simple-icons/sass.svg +1 -0
  4997. skills/ppt-master/templates/icons/simple-icons/sat1.svg +1 -0
  4998. skills/ppt-master/templates/icons/simple-icons/satellite.svg +1 -0
  4999. skills/ppt-master/templates/icons/simple-icons/saturn.svg +1 -0
  5000. skills/ppt-master/templates/icons/simple-icons/saucelabs.svg +1 -0
  5001. skills/ppt-master/templates/icons/simple-icons/saudia.svg +1 -0
  5002. skills/ppt-master/templates/icons/simple-icons/scala.svg +1 -0
  5003. skills/ppt-master/templates/icons/simple-icons/scalar.svg +1 -0
  5004. skills/ppt-master/templates/icons/simple-icons/scaleway.svg +1 -0
  5005. skills/ppt-master/templates/icons/simple-icons/scan.svg +1 -0
  5006. skills/ppt-master/templates/icons/simple-icons/scania.svg +1 -0
  5007. skills/ppt-master/templates/icons/simple-icons/schneiderelectric.svg +1 -0
  5008. skills/ppt-master/templates/icons/simple-icons/scikitlearn.svg +1 -0
  5009. skills/ppt-master/templates/icons/simple-icons/scilab.svg +1 -0
  5010. skills/ppt-master/templates/icons/simple-icons/scipy.svg +1 -0
  5011. skills/ppt-master/templates/icons/simple-icons/scopus.svg +1 -0
  5012. skills/ppt-master/templates/icons/simple-icons/scpfoundation.svg +1 -0
  5013. skills/ppt-master/templates/icons/simple-icons/scrapbox.svg +1 -0
  5014. skills/ppt-master/templates/icons/simple-icons/scrapy.svg +1 -0
  5015. skills/ppt-master/templates/icons/simple-icons/scratch.svg +1 -0
  5016. skills/ppt-master/templates/icons/simple-icons/screencastify.svg +1 -0
  5017. skills/ppt-master/templates/icons/simple-icons/scribd.svg +1 -0
  5018. skills/ppt-master/templates/icons/simple-icons/scrimba.svg +1 -0
  5019. skills/ppt-master/templates/icons/simple-icons/scrollreveal.svg +1 -0
  5020. skills/ppt-master/templates/icons/simple-icons/scrumalliance.svg +1 -0
  5021. skills/ppt-master/templates/icons/simple-icons/scrutinizerci.svg +1 -0
  5022. skills/ppt-master/templates/icons/simple-icons/scylladb.svg +1 -0
  5023. skills/ppt-master/templates/icons/simple-icons/seafile.svg +1 -0
  5024. skills/ppt-master/templates/icons/simple-icons/seagate.svg +1 -0
  5025. skills/ppt-master/templates/icons/simple-icons/searxng.svg +1 -0
  5026. skills/ppt-master/templates/icons/simple-icons/seat.svg +1 -0
  5027. skills/ppt-master/templates/icons/simple-icons/seatgeek.svg +1 -0
  5028. skills/ppt-master/templates/icons/simple-icons/securityscorecard.svg +1 -0
  5029. skills/ppt-master/templates/icons/simple-icons/sefaria.svg +1 -0
  5030. skills/ppt-master/templates/icons/simple-icons/sega.svg +1 -0
  5031. skills/ppt-master/templates/icons/simple-icons/selenium.svg +1 -0
  5032. skills/ppt-master/templates/icons/simple-icons/sellfy.svg +1 -0
  5033. skills/ppt-master/templates/icons/simple-icons/semanticrelease.svg +1 -0
  5034. skills/ppt-master/templates/icons/simple-icons/semanticscholar.svg +1 -0
  5035. skills/ppt-master/templates/icons/simple-icons/semanticui.svg +1 -0
  5036. skills/ppt-master/templates/icons/simple-icons/semanticuireact.svg +1 -0
  5037. skills/ppt-master/templates/icons/simple-icons/semanticweb.svg +1 -0
  5038. skills/ppt-master/templates/icons/simple-icons/semaphoreci.svg +1 -0
  5039. skills/ppt-master/templates/icons/simple-icons/semrush.svg +1 -0
  5040. skills/ppt-master/templates/icons/simple-icons/semver.svg +1 -0
  5041. skills/ppt-master/templates/icons/simple-icons/sencha.svg +1 -0
  5042. skills/ppt-master/templates/icons/simple-icons/sennheiser.svg +1 -0
  5043. skills/ppt-master/templates/icons/simple-icons/sensu.svg +1 -0
  5044. skills/ppt-master/templates/icons/simple-icons/sentry.svg +1 -0
  5045. skills/ppt-master/templates/icons/simple-icons/sepa.svg +1 -0
  5046. skills/ppt-master/templates/icons/simple-icons/sequelize.svg +1 -0
  5047. skills/ppt-master/templates/icons/simple-icons/servbay.svg +1 -0
  5048. skills/ppt-master/templates/icons/simple-icons/serverfault.svg +1 -0
  5049. skills/ppt-master/templates/icons/simple-icons/serverless.svg +1 -0
  5050. skills/ppt-master/templates/icons/simple-icons/session.svg +1 -0
  5051. skills/ppt-master/templates/icons/simple-icons/sessionize.svg +1 -0
  5052. skills/ppt-master/templates/icons/simple-icons/setapp.svg +1 -0
  5053. skills/ppt-master/templates/icons/simple-icons/setuptools.svg +1 -0
  5054. skills/ppt-master/templates/icons/simple-icons/sfml.svg +1 -0
  5055. skills/ppt-master/templates/icons/simple-icons/shadcnui.svg +1 -0
  5056. skills/ppt-master/templates/icons/simple-icons/shadow.svg +1 -0
  5057. skills/ppt-master/templates/icons/simple-icons/shanghaimetro.svg +1 -0
  5058. skills/ppt-master/templates/icons/simple-icons/sharex.svg +1 -0
  5059. skills/ppt-master/templates/icons/simple-icons/sharp.svg +1 -0
  5060. skills/ppt-master/templates/icons/simple-icons/shazam.svg +1 -0
  5061. skills/ppt-master/templates/icons/simple-icons/shell.svg +1 -0
  5062. skills/ppt-master/templates/icons/simple-icons/shelly.svg +1 -0
  5063. skills/ppt-master/templates/icons/simple-icons/shenzhenmetro.svg +1 -0
  5064. skills/ppt-master/templates/icons/simple-icons/shieldsdotio.svg +1 -0
  5065. skills/ppt-master/templates/icons/simple-icons/shikimori.svg +1 -0
  5066. skills/ppt-master/templates/icons/simple-icons/shopee.svg +1 -0
  5067. skills/ppt-master/templates/icons/simple-icons/shopify.svg +1 -0
  5068. skills/ppt-master/templates/icons/simple-icons/shopware.svg +1 -0
  5069. skills/ppt-master/templates/icons/simple-icons/shortcut.svg +1 -0
  5070. skills/ppt-master/templates/icons/simple-icons/showpad.svg +1 -0
  5071. skills/ppt-master/templates/icons/simple-icons/showtime.svg +1 -0
  5072. skills/ppt-master/templates/icons/simple-icons/showwcase.svg +1 -0
  5073. skills/ppt-master/templates/icons/simple-icons/shutterstock.svg +1 -0
  5074. skills/ppt-master/templates/icons/simple-icons/sidekiq.svg +1 -0
  5075. skills/ppt-master/templates/icons/simple-icons/sidequest.svg +1 -0
  5076. skills/ppt-master/templates/icons/simple-icons/siemens.svg +1 -0
  5077. skills/ppt-master/templates/icons/simple-icons/sifive.svg +1 -0
  5078. skills/ppt-master/templates/icons/simple-icons/signal.svg +1 -0
  5079. skills/ppt-master/templates/icons/simple-icons/silverairways.svg +1 -0
  5080. skills/ppt-master/templates/icons/simple-icons/similarweb.svg +1 -0
  5081. skills/ppt-master/templates/icons/simple-icons/simkl.svg +1 -0
  5082. skills/ppt-master/templates/icons/simple-icons/simpleanalytics.svg +1 -0
  5083. skills/ppt-master/templates/icons/simple-icons/simpleicons.svg +1 -0
  5084. skills/ppt-master/templates/icons/simple-icons/simplelocalize.svg +1 -0
  5085. skills/ppt-master/templates/icons/simple-icons/simplelogin.svg +1 -0
  5086. skills/ppt-master/templates/icons/simple-icons/simplenote.svg +1 -0
  5087. skills/ppt-master/templates/icons/simple-icons/simplex.svg +1 -0
  5088. skills/ppt-master/templates/icons/simple-icons/sinaweibo.svg +1 -0
  5089. skills/ppt-master/templates/icons/simple-icons/singaporeairlines.svg +1 -0
  5090. skills/ppt-master/templates/icons/simple-icons/singlestore.svg +1 -0
  5091. skills/ppt-master/templates/icons/simple-icons/sitecore.svg +1 -0
  5092. skills/ppt-master/templates/icons/simple-icons/sitepoint.svg +1 -0
  5093. skills/ppt-master/templates/icons/simple-icons/siyuan.svg +1 -0
  5094. skills/ppt-master/templates/icons/simple-icons/skaffold.svg +1 -0
  5095. skills/ppt-master/templates/icons/simple-icons/skeleton.svg +1 -0
  5096. skills/ppt-master/templates/icons/simple-icons/sketch.svg +1 -0
  5097. skills/ppt-master/templates/icons/simple-icons/sketchfab.svg +1 -0
  5098. skills/ppt-master/templates/icons/simple-icons/sketchup.svg +1 -0
  5099. skills/ppt-master/templates/icons/simple-icons/skillshare.svg +1 -0
  5100. skills/ppt-master/templates/icons/simple-icons/skoda.svg +1 -0
  5101. skills/ppt-master/templates/icons/simple-icons/sky.svg +1 -0
  5102. skills/ppt-master/templates/icons/simple-icons/skypack.svg +1 -0
  5103. skills/ppt-master/templates/icons/simple-icons/skype.svg +1 -0
  5104. skills/ppt-master/templates/icons/simple-icons/skypeforbusiness.svg +1 -0
  5105. skills/ppt-master/templates/icons/simple-icons/skyrock.svg +1 -0
  5106. skills/ppt-master/templates/icons/simple-icons/slack.svg +1 -0
  5107. skills/ppt-master/templates/icons/simple-icons/slackware.svg +1 -0
  5108. skills/ppt-master/templates/icons/simple-icons/slashdot.svg +1 -0
  5109. skills/ppt-master/templates/icons/simple-icons/slickpic.svg +1 -0
  5110. skills/ppt-master/templates/icons/simple-icons/slides.svg +1 -0
  5111. skills/ppt-master/templates/icons/simple-icons/slideshare.svg +1 -0
  5112. skills/ppt-master/templates/icons/simple-icons/slint.svg +1 -0
  5113. skills/ppt-master/templates/icons/simple-icons/smart.svg +1 -0
  5114. skills/ppt-master/templates/icons/simple-icons/smartthings.svg +1 -0
  5115. skills/ppt-master/templates/icons/simple-icons/smashdotgg.svg +1 -0
  5116. skills/ppt-master/templates/icons/simple-icons/smashingmagazine.svg +1 -0
  5117. skills/ppt-master/templates/icons/simple-icons/smoothcomp.svg +1 -0
  5118. skills/ppt-master/templates/icons/simple-icons/smrt.svg +1 -0
  5119. skills/ppt-master/templates/icons/simple-icons/smugmug.svg +1 -0
  5120. skills/ppt-master/templates/icons/simple-icons/snapchat.svg +1 -0
  5121. skills/ppt-master/templates/icons/simple-icons/snapcraft.svg +1 -0
  5122. skills/ppt-master/templates/icons/simple-icons/snapdragon.svg +1 -0
  5123. skills/ppt-master/templates/icons/simple-icons/sncf.svg +1 -0
  5124. skills/ppt-master/templates/icons/simple-icons/snort.svg +1 -0
  5125. skills/ppt-master/templates/icons/simple-icons/snowflake.svg +1 -0
  5126. skills/ppt-master/templates/icons/simple-icons/snowpack.svg +1 -0
  5127. skills/ppt-master/templates/icons/simple-icons/snyk.svg +1 -0
  5128. skills/ppt-master/templates/icons/simple-icons/socialblade.svg +1 -0
  5129. skills/ppt-master/templates/icons/simple-icons/society6.svg +1 -0
  5130. skills/ppt-master/templates/icons/simple-icons/socket.svg +1 -0
  5131. skills/ppt-master/templates/icons/simple-icons/socketdotio.svg +1 -0
  5132. skills/ppt-master/templates/icons/simple-icons/softcatala.svg +1 -0
  5133. skills/ppt-master/templates/icons/simple-icons/softpedia.svg +1 -0
  5134. skills/ppt-master/templates/icons/simple-icons/sogou.svg +1 -0
  5135. skills/ppt-master/templates/icons/simple-icons/solana.svg +1 -0
  5136. skills/ppt-master/templates/icons/simple-icons/solid.svg +1 -0
  5137. skills/ppt-master/templates/icons/simple-icons/solidity.svg +1 -0
  5138. skills/ppt-master/templates/icons/simple-icons/sololearn.svg +1 -0
  5139. skills/ppt-master/templates/icons/simple-icons/solus.svg +1 -0
  5140. skills/ppt-master/templates/icons/simple-icons/solveddotac.svg +1 -0
  5141. skills/ppt-master/templates/icons/simple-icons/sonar.svg +1 -0
  5142. skills/ppt-master/templates/icons/simple-icons/sonarcloud.svg +1 -0
  5143. skills/ppt-master/templates/icons/simple-icons/sonarlint.svg +1 -0
  5144. skills/ppt-master/templates/icons/simple-icons/sonarqube.svg +1 -0
  5145. skills/ppt-master/templates/icons/simple-icons/sonarqubecloud.svg +1 -0
  5146. skills/ppt-master/templates/icons/simple-icons/sonarqubeforide.svg +1 -0
  5147. skills/ppt-master/templates/icons/simple-icons/sonarqubeserver.svg +1 -0
  5148. skills/ppt-master/templates/icons/simple-icons/sonarr.svg +1 -0
  5149. skills/ppt-master/templates/icons/simple-icons/sonatype.svg +1 -0
  5150. skills/ppt-master/templates/icons/simple-icons/songkick.svg +1 -0
  5151. skills/ppt-master/templates/icons/simple-icons/songoda.svg +1 -0
  5152. skills/ppt-master/templates/icons/simple-icons/sonicwall.svg +1 -0
  5153. skills/ppt-master/templates/icons/simple-icons/sonos.svg +1 -0
  5154. skills/ppt-master/templates/icons/simple-icons/sony.svg +1 -0
  5155. skills/ppt-master/templates/icons/simple-icons/soriana.svg +1 -0
  5156. skills/ppt-master/templates/icons/simple-icons/soundcharts.svg +1 -0
  5157. skills/ppt-master/templates/icons/simple-icons/soundcloud.svg +1 -0
  5158. skills/ppt-master/templates/icons/simple-icons/sourceengine.svg +1 -0
  5159. skills/ppt-master/templates/icons/simple-icons/sourceforge.svg +1 -0
  5160. skills/ppt-master/templates/icons/simple-icons/sourcehut.svg +1 -0
  5161. skills/ppt-master/templates/icons/simple-icons/sourcetree.svg +1 -0
  5162. skills/ppt-master/templates/icons/simple-icons/southwestairlines.svg +1 -0
  5163. skills/ppt-master/templates/icons/simple-icons/spacemacs.svg +1 -0
  5164. skills/ppt-master/templates/icons/simple-icons/spaceship.svg +1 -0
  5165. skills/ppt-master/templates/icons/simple-icons/spacex.svg +1 -0
  5166. skills/ppt-master/templates/icons/simple-icons/spacy.svg +1 -0
  5167. skills/ppt-master/templates/icons/simple-icons/sparkar.svg +1 -0
  5168. skills/ppt-master/templates/icons/simple-icons/sparkasse.svg +1 -0
  5169. skills/ppt-master/templates/icons/simple-icons/sparkfun.svg +1 -0
  5170. skills/ppt-master/templates/icons/simple-icons/sparkpost.svg +1 -0
  5171. skills/ppt-master/templates/icons/simple-icons/spdx.svg +1 -0
  5172. skills/ppt-master/templates/icons/simple-icons/speakerdeck.svg +1 -0
  5173. skills/ppt-master/templates/icons/simple-icons/spectrum.svg +1 -0
  5174. skills/ppt-master/templates/icons/simple-icons/speedtest.svg +1 -0
  5175. skills/ppt-master/templates/icons/simple-icons/speedypage.svg +1 -0
  5176. skills/ppt-master/templates/icons/simple-icons/sphinx.svg +1 -0
  5177. skills/ppt-master/templates/icons/simple-icons/spidermonkey.svg +1 -0
  5178. skills/ppt-master/templates/icons/simple-icons/spigotmc.svg +1 -0
  5179. skills/ppt-master/templates/icons/simple-icons/spine.svg +1 -0
  5180. skills/ppt-master/templates/icons/simple-icons/spinnaker.svg +1 -0
  5181. skills/ppt-master/templates/icons/simple-icons/spinrilla.svg +1 -0
  5182. skills/ppt-master/templates/icons/simple-icons/splunk.svg +1 -0
  5183. skills/ppt-master/templates/icons/simple-icons/spoj.svg +1 -0
  5184. skills/ppt-master/templates/icons/simple-icons/spond.svg +1 -0
  5185. skills/ppt-master/templates/icons/simple-icons/spotify.svg +1 -0
  5186. skills/ppt-master/templates/icons/simple-icons/spotlight.svg +1 -0
  5187. skills/ppt-master/templates/icons/simple-icons/spreadshirt.svg +1 -0
  5188. skills/ppt-master/templates/icons/simple-icons/spreaker.svg +1 -0
  5189. skills/ppt-master/templates/icons/simple-icons/spring.svg +1 -0
  5190. skills/ppt-master/templates/icons/simple-icons/spring_creators.svg +1 -0
  5191. skills/ppt-master/templates/icons/simple-icons/springboot.svg +1 -0
  5192. skills/ppt-master/templates/icons/simple-icons/springsecurity.svg +1 -0
  5193. skills/ppt-master/templates/icons/simple-icons/spyderide.svg +1 -0
  5194. skills/ppt-master/templates/icons/simple-icons/sqlalchemy.svg +1 -0
  5195. skills/ppt-master/templates/icons/simple-icons/sqlite.svg +1 -0
  5196. skills/ppt-master/templates/icons/simple-icons/square.svg +1 -0
  5197. skills/ppt-master/templates/icons/simple-icons/squareenix.svg +1 -0
  5198. skills/ppt-master/templates/icons/simple-icons/squarespace.svg +1 -0
  5199. skills/ppt-master/templates/icons/simple-icons/srgssr.svg +1 -0
  5200. skills/ppt-master/templates/icons/simple-icons/ssrn.svg +1 -0
  5201. skills/ppt-master/templates/icons/simple-icons/sst.svg +1 -0
  5202. skills/ppt-master/templates/icons/simple-icons/stackbit.svg +1 -0
  5203. skills/ppt-master/templates/icons/simple-icons/stackblitz.svg +1 -0
  5204. skills/ppt-master/templates/icons/simple-icons/stackedit.svg +1 -0
  5205. skills/ppt-master/templates/icons/simple-icons/stackexchange.svg +1 -0
  5206. skills/ppt-master/templates/icons/simple-icons/stackhawk.svg +1 -0
  5207. skills/ppt-master/templates/icons/simple-icons/stackoverflow.svg +1 -0
  5208. skills/ppt-master/templates/icons/simple-icons/stackpath.svg +1 -0
  5209. skills/ppt-master/templates/icons/simple-icons/stackshare.svg +1 -0
  5210. skills/ppt-master/templates/icons/simple-icons/stadia.svg +1 -0
  5211. skills/ppt-master/templates/icons/simple-icons/staffbase.svg +1 -0
  5212. skills/ppt-master/templates/icons/simple-icons/stagetimer.svg +1 -0
  5213. skills/ppt-master/templates/icons/simple-icons/standardjs.svg +1 -0
  5214. skills/ppt-master/templates/icons/simple-icons/standardresume.svg +1 -0
  5215. skills/ppt-master/templates/icons/simple-icons/starbucks.svg +1 -0
  5216. skills/ppt-master/templates/icons/simple-icons/stardock.svg +1 -0
  5217. skills/ppt-master/templates/icons/simple-icons/starlingbank.svg +1 -0
  5218. skills/ppt-master/templates/icons/simple-icons/starship.svg +1 -0
  5219. skills/ppt-master/templates/icons/simple-icons/startdotgg.svg +1 -0
  5220. skills/ppt-master/templates/icons/simple-icons/startpage.svg +1 -0
  5221. skills/ppt-master/templates/icons/simple-icons/startrek.svg +1 -0
  5222. skills/ppt-master/templates/icons/simple-icons/starz.svg +1 -0
  5223. skills/ppt-master/templates/icons/simple-icons/statamic.svg +1 -0
  5224. skills/ppt-master/templates/icons/simple-icons/statista.svg +1 -0
  5225. skills/ppt-master/templates/icons/simple-icons/statuspage.svg +1 -0
  5226. skills/ppt-master/templates/icons/simple-icons/statuspal.svg +1 -0
  5227. skills/ppt-master/templates/icons/simple-icons/steam.svg +1 -0
  5228. skills/ppt-master/templates/icons/simple-icons/steamdb.svg +1 -0
  5229. skills/ppt-master/templates/icons/simple-icons/steamdeck.svg +1 -0
  5230. skills/ppt-master/templates/icons/simple-icons/steamworks.svg +1 -0
  5231. skills/ppt-master/templates/icons/simple-icons/steelseries.svg +1 -0
  5232. skills/ppt-master/templates/icons/simple-icons/steem.svg +1 -0
  5233. skills/ppt-master/templates/icons/simple-icons/steemit.svg +1 -0
  5234. skills/ppt-master/templates/icons/simple-icons/steinberg.svg +1 -0
  5235. skills/ppt-master/templates/icons/simple-icons/stellar.svg +1 -0
  5236. skills/ppt-master/templates/icons/simple-icons/stencil.svg +1 -0
  5237. skills/ppt-master/templates/icons/simple-icons/stencyl.svg +1 -0
  5238. skills/ppt-master/templates/icons/simple-icons/stimulus.svg +1 -0
  5239. skills/ppt-master/templates/icons/simple-icons/stitcher.svg +1 -0
  5240. skills/ppt-master/templates/icons/simple-icons/stmicroelectronics.svg +1 -0
  5241. skills/ppt-master/templates/icons/simple-icons/stockx.svg +1 -0
  5242. skills/ppt-master/templates/icons/simple-icons/stopstalk.svg +1 -0
  5243. skills/ppt-master/templates/icons/simple-icons/storyblok.svg +1 -0
  5244. skills/ppt-master/templates/icons/simple-icons/storybook.svg +1 -0
  5245. skills/ppt-master/templates/icons/simple-icons/strapi.svg +1 -0
  5246. skills/ppt-master/templates/icons/simple-icons/strava.svg +1 -0
  5247. skills/ppt-master/templates/icons/simple-icons/streamlabs.svg +1 -0
  5248. skills/ppt-master/templates/icons/simple-icons/streamlit.svg +1 -0
  5249. skills/ppt-master/templates/icons/simple-icons/streamrunners.svg +1 -0
  5250. skills/ppt-master/templates/icons/simple-icons/stremio.svg +1 -0
  5251. skills/ppt-master/templates/icons/simple-icons/stripe.svg +1 -0
  5252. skills/ppt-master/templates/icons/simple-icons/strongswan.svg +1 -0
  5253. skills/ppt-master/templates/icons/simple-icons/stryker.svg +1 -0
  5254. skills/ppt-master/templates/icons/simple-icons/stubhub.svg +1 -0
  5255. skills/ppt-master/templates/icons/simple-icons/studio3t.svg +1 -0
  5256. skills/ppt-master/templates/icons/simple-icons/studyverse.svg +1 -0
  5257. skills/ppt-master/templates/icons/simple-icons/styledcomponents.svg +1 -0
  5258. skills/ppt-master/templates/icons/simple-icons/stylelint.svg +1 -0
  5259. skills/ppt-master/templates/icons/simple-icons/styleshare.svg +1 -0
  5260. skills/ppt-master/templates/icons/simple-icons/stylus.svg +1 -0
  5261. skills/ppt-master/templates/icons/simple-icons/subaru.svg +1 -0
  5262. skills/ppt-master/templates/icons/simple-icons/sublimetext.svg +1 -0
  5263. skills/ppt-master/templates/icons/simple-icons/substack.svg +1 -0
  5264. skills/ppt-master/templates/icons/simple-icons/subtitleedit.svg +1 -0
  5265. skills/ppt-master/templates/icons/simple-icons/subversion.svg +1 -0
  5266. skills/ppt-master/templates/icons/simple-icons/suckless.svg +1 -0
  5267. skills/ppt-master/templates/icons/simple-icons/sui.svg +1 -0
  5268. skills/ppt-master/templates/icons/simple-icons/suitest.svg +1 -0
  5269. skills/ppt-master/templates/icons/simple-icons/sumologic.svg +1 -0
  5270. skills/ppt-master/templates/icons/simple-icons/suno.svg +1 -0
  5271. skills/ppt-master/templates/icons/simple-icons/sunrise.svg +1 -0
  5272. skills/ppt-master/templates/icons/simple-icons/supabase.svg +1 -0
  5273. skills/ppt-master/templates/icons/simple-icons/supercell.svg +1 -0
  5274. skills/ppt-master/templates/icons/simple-icons/supercrease.svg +1 -0
  5275. skills/ppt-master/templates/icons/simple-icons/supermicro.svg +1 -0
  5276. skills/ppt-master/templates/icons/simple-icons/superuser.svg +1 -0
  5277. skills/ppt-master/templates/icons/simple-icons/surfshark.svg +1 -0
  5278. skills/ppt-master/templates/icons/simple-icons/surrealdb.svg +1 -0
  5279. skills/ppt-master/templates/icons/simple-icons/surveymonkey.svg +1 -0
  5280. skills/ppt-master/templates/icons/simple-icons/suse.svg +1 -0
  5281. skills/ppt-master/templates/icons/simple-icons/suzuki.svg +1 -0
  5282. skills/ppt-master/templates/icons/simple-icons/svelte.svg +1 -0
  5283. skills/ppt-master/templates/icons/simple-icons/svg.svg +1 -0
  5284. skills/ppt-master/templates/icons/simple-icons/svgdotjs.svg +1 -0
  5285. skills/ppt-master/templates/icons/simple-icons/svgo.svg +1 -0
  5286. skills/ppt-master/templates/icons/simple-icons/svgtrace.svg +1 -0
  5287. skills/ppt-master/templates/icons/simple-icons/swagger.svg +1 -0
  5288. skills/ppt-master/templates/icons/simple-icons/swarm.svg +1 -0
  5289. skills/ppt-master/templates/icons/simple-icons/sway.svg +1 -0
  5290. skills/ppt-master/templates/icons/simple-icons/swc.svg +1 -0
  5291. skills/ppt-master/templates/icons/simple-icons/swift.svg +1 -0
  5292. skills/ppt-master/templates/icons/simple-icons/swiggy.svg +1 -0
  5293. skills/ppt-master/templates/icons/simple-icons/swiper.svg +1 -0
  5294. skills/ppt-master/templates/icons/simple-icons/swisscows.svg +1 -0
  5295. skills/ppt-master/templates/icons/simple-icons/swr.svg +1 -0
  5296. skills/ppt-master/templates/icons/simple-icons/symantec.svg +1 -0
  5297. skills/ppt-master/templates/icons/simple-icons/symbolab.svg +1 -0
  5298. skills/ppt-master/templates/icons/simple-icons/symfony.svg +1 -0
  5299. skills/ppt-master/templates/icons/simple-icons/symphony.svg +1 -0
  5300. skills/ppt-master/templates/icons/simple-icons/sympy.svg +1 -0
  5301. skills/ppt-master/templates/icons/simple-icons/syncthing.svg +1 -0
  5302. skills/ppt-master/templates/icons/simple-icons/synology.svg +1 -0
  5303. skills/ppt-master/templates/icons/simple-icons/system76.svg +1 -0
  5304. skills/ppt-master/templates/icons/simple-icons/tabelog.svg +1 -0
  5305. skills/ppt-master/templates/icons/simple-icons/tableau.svg +1 -0
  5306. skills/ppt-master/templates/icons/simple-icons/tablecheck.svg +1 -0
  5307. skills/ppt-master/templates/icons/simple-icons/tacobell.svg +1 -0
  5308. skills/ppt-master/templates/icons/simple-icons/tado.svg +1 -0
  5309. skills/ppt-master/templates/icons/simple-icons/taichigraphics.svg +1 -0
  5310. skills/ppt-master/templates/icons/simple-icons/taichilang.svg +1 -0
  5311. skills/ppt-master/templates/icons/simple-icons/tails.svg +1 -0
  5312. skills/ppt-master/templates/icons/simple-icons/tailscale.svg +1 -0
  5313. skills/ppt-master/templates/icons/simple-icons/tailwindcss.svg +1 -0
  5314. skills/ppt-master/templates/icons/simple-icons/taipy.svg +1 -0
  5315. skills/ppt-master/templates/icons/simple-icons/taketwointeractivesoftware.svg +1 -0
  5316. skills/ppt-master/templates/icons/simple-icons/talend.svg +1 -0
  5317. skills/ppt-master/templates/icons/simple-icons/talenthouse.svg +1 -0
  5318. skills/ppt-master/templates/icons/simple-icons/talos.svg +1 -0
  5319. skills/ppt-master/templates/icons/simple-icons/tamiya.svg +1 -0
  5320. skills/ppt-master/templates/icons/simple-icons/tampermonkey.svg +1 -0
  5321. skills/ppt-master/templates/icons/simple-icons/tanstack.svg +1 -0
  5322. skills/ppt-master/templates/icons/simple-icons/taobao.svg +1 -0
  5323. skills/ppt-master/templates/icons/simple-icons/tapas.svg +1 -0
  5324. skills/ppt-master/templates/icons/simple-icons/target.svg +1 -0
  5325. skills/ppt-master/templates/icons/simple-icons/tarom.svg +1 -0
  5326. skills/ppt-master/templates/icons/simple-icons/tarteaucitron.svg +1 -0
  5327. skills/ppt-master/templates/icons/simple-icons/task.svg +1 -0
  5328. skills/ppt-master/templates/icons/simple-icons/tasmota.svg +1 -0
  5329. skills/ppt-master/templates/icons/simple-icons/tata.svg +1 -0
  5330. skills/ppt-master/templates/icons/simple-icons/tauri.svg +1 -0
  5331. skills/ppt-master/templates/icons/simple-icons/taxbuzz.svg +1 -0
  5332. skills/ppt-master/templates/icons/simple-icons/tcs.svg +1 -0
  5333. skills/ppt-master/templates/icons/simple-icons/teal.svg +1 -0
  5334. skills/ppt-master/templates/icons/simple-icons/teamcity.svg +1 -0
  5335. skills/ppt-master/templates/icons/simple-icons/teamspeak.svg +1 -0
  5336. skills/ppt-master/templates/icons/simple-icons/teamviewer.svg +1 -0
  5337. skills/ppt-master/templates/icons/simple-icons/techcrunch.svg +1 -0
  5338. skills/ppt-master/templates/icons/simple-icons/ted.svg +1 -0
  5339. skills/ppt-master/templates/icons/simple-icons/teepublic.svg +1 -0
  5340. skills/ppt-master/templates/icons/simple-icons/teespring.svg +1 -0
  5341. skills/ppt-master/templates/icons/simple-icons/tekton.svg +1 -0
  5342. skills/ppt-master/templates/icons/simple-icons/tele5.svg +1 -0
  5343. skills/ppt-master/templates/icons/simple-icons/telefonica.svg +1 -0
  5344. skills/ppt-master/templates/icons/simple-icons/telegram.svg +1 -0
  5345. skills/ppt-master/templates/icons/simple-icons/telegraph.svg +1 -0
  5346. skills/ppt-master/templates/icons/simple-icons/telenor.svg +1 -0
  5347. skills/ppt-master/templates/icons/simple-icons/telequebec.svg +1 -0
  5348. skills/ppt-master/templates/icons/simple-icons/temporal.svg +1 -0
  5349. skills/ppt-master/templates/icons/simple-icons/tencentqq.svg +1 -0
  5350. skills/ppt-master/templates/icons/simple-icons/tensorflow.svg +1 -0
  5351. skills/ppt-master/templates/icons/simple-icons/teradata.svg +1 -0
  5352. skills/ppt-master/templates/icons/simple-icons/teratail.svg +1 -0
  5353. skills/ppt-master/templates/icons/simple-icons/termius.svg +1 -0
  5354. skills/ppt-master/templates/icons/simple-icons/terraform.svg +1 -0
  5355. skills/ppt-master/templates/icons/simple-icons/tesco.svg +1 -0
  5356. skills/ppt-master/templates/icons/simple-icons/tesla.svg +1 -0
  5357. skills/ppt-master/templates/icons/simple-icons/testcafe.svg +1 -0
  5358. skills/ppt-master/templates/icons/simple-icons/testin.svg +1 -0
  5359. skills/ppt-master/templates/icons/simple-icons/testinglibrary.svg +1 -0
  5360. skills/ppt-master/templates/icons/simple-icons/testrail.svg +1 -0
  5361. skills/ppt-master/templates/icons/simple-icons/tether.svg +1 -0
  5362. skills/ppt-master/templates/icons/simple-icons/textpattern.svg +1 -0
  5363. skills/ppt-master/templates/icons/simple-icons/textual.svg +1 -0
  5364. skills/ppt-master/templates/icons/simple-icons/tga.svg +1 -0
  5365. skills/ppt-master/templates/icons/simple-icons/thangs.svg +1 -0
  5366. skills/ppt-master/templates/icons/simple-icons/thanos.svg +1 -0
  5367. skills/ppt-master/templates/icons/simple-icons/thealgorithms.svg +1 -0
  5368. skills/ppt-master/templates/icons/simple-icons/theboringcompany.svg +1 -0
  5369. skills/ppt-master/templates/icons/simple-icons/theconversation.svg +1 -0
  5370. skills/ppt-master/templates/icons/simple-icons/thefinals.svg +1 -0
  5371. skills/ppt-master/templates/icons/simple-icons/theguardian.svg +1 -0
  5372. skills/ppt-master/templates/icons/simple-icons/theirishtimes.svg +1 -0
  5373. skills/ppt-master/templates/icons/simple-icons/themighty.svg +1 -0
  5374. skills/ppt-master/templates/icons/simple-icons/themodelsresource.svg +1 -0
  5375. skills/ppt-master/templates/icons/simple-icons/themoviedatabase.svg +1 -0
  5376. skills/ppt-master/templates/icons/simple-icons/thenorthface.svg +1 -0
  5377. skills/ppt-master/templates/icons/simple-icons/theodinproject.svg +1 -0
  5378. skills/ppt-master/templates/icons/simple-icons/theplanetarysociety.svg +1 -0
  5379. skills/ppt-master/templates/icons/simple-icons/theregister.svg +1 -0
  5380. skills/ppt-master/templates/icons/simple-icons/thesoundsresource.svg +1 -0
  5381. skills/ppt-master/templates/icons/simple-icons/thespritersresource.svg +1 -0
  5382. skills/ppt-master/templates/icons/simple-icons/thestorygraph.svg +1 -0
  5383. skills/ppt-master/templates/icons/simple-icons/thewashingtonpost.svg +1 -0
  5384. skills/ppt-master/templates/icons/simple-icons/theweatherchannel.svg +1 -0
  5385. skills/ppt-master/templates/icons/simple-icons/thingiverse.svg +1 -0
  5386. skills/ppt-master/templates/icons/simple-icons/things.svg +1 -0
  5387. skills/ppt-master/templates/icons/simple-icons/thinkpad.svg +1 -0
  5388. skills/ppt-master/templates/icons/simple-icons/thirdweb.svg +1 -0
  5389. skills/ppt-master/templates/icons/simple-icons/threadless.svg +1 -0
  5390. skills/ppt-master/templates/icons/simple-icons/threads.svg +1 -0
  5391. skills/ppt-master/templates/icons/simple-icons/threedotjs.svg +1 -0
  5392. skills/ppt-master/templates/icons/simple-icons/threema.svg +1 -0
  5393. skills/ppt-master/templates/icons/simple-icons/thumbtack.svg +1 -0
  5394. skills/ppt-master/templates/icons/simple-icons/thunderbird.svg +1 -0
  5395. skills/ppt-master/templates/icons/simple-icons/thunderstore.svg +1 -0
  5396. skills/ppt-master/templates/icons/simple-icons/thurgauerkantonalbank.svg +1 -0
  5397. skills/ppt-master/templates/icons/simple-icons/thymeleaf.svg +1 -0
  5398. skills/ppt-master/templates/icons/simple-icons/ticketmaster.svg +1 -0
  5399. skills/ppt-master/templates/icons/simple-icons/ticktick.svg +1 -0
  5400. skills/ppt-master/templates/icons/simple-icons/tidal.svg +1 -0
  5401. skills/ppt-master/templates/icons/simple-icons/tidb.svg +1 -0
  5402. skills/ppt-master/templates/icons/simple-icons/tiddlywiki.svg +1 -0
  5403. skills/ppt-master/templates/icons/simple-icons/tide.svg +1 -0
  5404. skills/ppt-master/templates/icons/simple-icons/tidyverse.svg +1 -0
  5405. skills/ppt-master/templates/icons/simple-icons/tietoevry.svg +1 -0
  5406. skills/ppt-master/templates/icons/simple-icons/tiktok.svg +1 -0
  5407. skills/ppt-master/templates/icons/simple-icons/tildapublishing.svg +1 -0
  5408. skills/ppt-master/templates/icons/simple-icons/tile.svg +1 -0
  5409. skills/ppt-master/templates/icons/simple-icons/timescale.svg +1 -0
  5410. skills/ppt-master/templates/icons/simple-icons/tina.svg +1 -0
  5411. skills/ppt-master/templates/icons/simple-icons/tinder.svg +1 -0
  5412. skills/ppt-master/templates/icons/simple-icons/tindie.svg +1 -0
  5413. skills/ppt-master/templates/icons/simple-icons/tinkercad.svg +1 -0
  5414. skills/ppt-master/templates/icons/simple-icons/tinygrad.svg +1 -0
  5415. skills/ppt-master/templates/icons/simple-icons/tinyletter.svg +1 -0
  5416. skills/ppt-master/templates/icons/simple-icons/tistory.svg +1 -0
  5417. skills/ppt-master/templates/icons/simple-icons/tldraw.svg +1 -0
  5418. skills/ppt-master/templates/icons/simple-icons/tmobile.svg +1 -0
  5419. skills/ppt-master/templates/icons/simple-icons/tmux.svg +1 -0
  5420. skills/ppt-master/templates/icons/simple-icons/todoist.svg +1 -0
  5421. skills/ppt-master/templates/icons/simple-icons/toggl.svg +1 -0
  5422. skills/ppt-master/templates/icons/simple-icons/toggltrack.svg +1 -0
  5423. skills/ppt-master/templates/icons/simple-icons/tokio.svg +1 -0
  5424. skills/ppt-master/templates/icons/simple-icons/tokyometro.svg +1 -0
  5425. skills/ppt-master/templates/icons/simple-icons/toll.svg +1 -0
  5426. skills/ppt-master/templates/icons/simple-icons/toml.svg +1 -0
  5427. skills/ppt-master/templates/icons/simple-icons/tomorrowland.svg +1 -0
  5428. skills/ppt-master/templates/icons/simple-icons/tomtom.svg +1 -0
  5429. skills/ppt-master/templates/icons/simple-icons/ton.svg +1 -0
  5430. skills/ppt-master/templates/icons/simple-icons/topcoder.svg +1 -0
  5431. skills/ppt-master/templates/icons/simple-icons/topdotgg.svg +1 -0
  5432. skills/ppt-master/templates/icons/simple-icons/toptal.svg +1 -0
  5433. skills/ppt-master/templates/icons/simple-icons/torbrowser.svg +1 -0
  5434. skills/ppt-master/templates/icons/simple-icons/torizon.svg +1 -0
  5435. skills/ppt-master/templates/icons/simple-icons/torproject.svg +1 -0
  5436. skills/ppt-master/templates/icons/simple-icons/toshiba.svg +1 -0
  5437. skills/ppt-master/templates/icons/simple-icons/totvs.svg +1 -0
  5438. skills/ppt-master/templates/icons/simple-icons/tourbox.svg +1 -0
  5439. skills/ppt-master/templates/icons/simple-icons/tower.svg +1 -0
  5440. skills/ppt-master/templates/icons/simple-icons/toyota.svg +1 -0
  5441. skills/ppt-master/templates/icons/simple-icons/tplink.svg +1 -0
  5442. skills/ppt-master/templates/icons/simple-icons/tqdm.svg +1 -0
  5443. skills/ppt-master/templates/icons/simple-icons/traccar.svg +1 -0
  5444. skills/ppt-master/templates/icons/simple-icons/tradingview.svg +1 -0
  5445. skills/ppt-master/templates/icons/simple-icons/traefikmesh.svg +1 -0
  5446. skills/ppt-master/templates/icons/simple-icons/traefikproxy.svg +1 -0
  5447. skills/ppt-master/templates/icons/simple-icons/trailforks.svg +1 -0
  5448. skills/ppt-master/templates/icons/simple-icons/trainerroad.svg +1 -0
  5449. skills/ppt-master/templates/icons/simple-icons/trakt.svg +1 -0
  5450. skills/ppt-master/templates/icons/simple-icons/transifex.svg +1 -0
  5451. skills/ppt-master/templates/icons/simple-icons/transmission.svg +1 -0
  5452. skills/ppt-master/templates/icons/simple-icons/transportforireland.svg +1 -0
  5453. skills/ppt-master/templates/icons/simple-icons/transportforlondon.svg +1 -0
  5454. skills/ppt-master/templates/icons/simple-icons/travisci.svg +1 -0
  5455. skills/ppt-master/templates/icons/simple-icons/treehouse.svg +1 -0
  5456. skills/ppt-master/templates/icons/simple-icons/trello.svg +1 -0
  5457. skills/ppt-master/templates/icons/simple-icons/trendmicro.svg +1 -0
  5458. skills/ppt-master/templates/icons/simple-icons/tresorit.svg +1 -0
  5459. skills/ppt-master/templates/icons/simple-icons/treyarch.svg +1 -0
  5460. skills/ppt-master/templates/icons/simple-icons/trezor.svg +1 -0
  5461. skills/ppt-master/templates/icons/simple-icons/tricentis.svg +1 -0
  5462. skills/ppt-master/templates/icons/simple-icons/trilium.svg +1 -0
  5463. skills/ppt-master/templates/icons/simple-icons/triller.svg +1 -0
  5464. skills/ppt-master/templates/icons/simple-icons/trillertv.svg +1 -0
  5465. skills/ppt-master/templates/icons/simple-icons/trimble.svg +1 -0
  5466. skills/ppt-master/templates/icons/simple-icons/trino.svg +1 -0
  5467. skills/ppt-master/templates/icons/simple-icons/tripadvisor.svg +1 -0
  5468. skills/ppt-master/templates/icons/simple-icons/tripdotcom.svg +1 -0
  5469. skills/ppt-master/templates/icons/simple-icons/trivago.svg +1 -0
  5470. skills/ppt-master/templates/icons/simple-icons/trivy.svg +1 -0
  5471. skills/ppt-master/templates/icons/simple-icons/trmnl.svg +1 -0
  5472. skills/ppt-master/templates/icons/simple-icons/trove.svg +1 -0
  5473. skills/ppt-master/templates/icons/simple-icons/trpc.svg +1 -0
  5474. skills/ppt-master/templates/icons/simple-icons/truenas.svg +1 -0
  5475. skills/ppt-master/templates/icons/simple-icons/trueup.svg +1 -0
  5476. skills/ppt-master/templates/icons/simple-icons/trulia.svg +1 -0
  5477. skills/ppt-master/templates/icons/simple-icons/trustedshops.svg +1 -0
  5478. skills/ppt-master/templates/icons/simple-icons/trustpilot.svg +1 -0
  5479. skills/ppt-master/templates/icons/simple-icons/tryhackme.svg +1 -0
  5480. skills/ppt-master/templates/icons/simple-icons/tryitonline.svg +1 -0
  5481. skills/ppt-master/templates/icons/simple-icons/tsnode.svg +1 -0
  5482. skills/ppt-master/templates/icons/simple-icons/tubi.svg +1 -0
  5483. skills/ppt-master/templates/icons/simple-icons/tui.svg +1 -0
  5484. skills/ppt-master/templates/icons/simple-icons/tumblr.svg +1 -0
  5485. skills/ppt-master/templates/icons/simple-icons/tunein.svg +1 -0
  5486. skills/ppt-master/templates/icons/simple-icons/turbo.svg +1 -0
  5487. skills/ppt-master/templates/icons/simple-icons/turborepo.svg +1 -0
  5488. skills/ppt-master/templates/icons/simple-icons/turbosquid.svg +1 -0
  5489. skills/ppt-master/templates/icons/simple-icons/turkishairlines.svg +1 -0
  5490. skills/ppt-master/templates/icons/simple-icons/turso.svg +1 -0
  5491. skills/ppt-master/templates/icons/simple-icons/tuta.svg +1 -0
  5492. skills/ppt-master/templates/icons/simple-icons/tutanota.svg +1 -0
  5493. skills/ppt-master/templates/icons/simple-icons/tuxedocomputers.svg +1 -0
  5494. skills/ppt-master/templates/icons/simple-icons/tv4play.svg +1 -0
  5495. skills/ppt-master/templates/icons/simple-icons/tvtime.svg +1 -0
  5496. skills/ppt-master/templates/icons/simple-icons/twenty.svg +1 -0
  5497. skills/ppt-master/templates/icons/simple-icons/twilio.svg +1 -0
  5498. skills/ppt-master/templates/icons/simple-icons/twinkly.svg +1 -0
  5499. skills/ppt-master/templates/icons/simple-icons/twinmotion.svg +1 -0
  5500. skills/ppt-master/templates/icons/simple-icons/twitch.svg +1 -0
  5501. skills/ppt-master/templates/icons/simple-icons/ty.svg +1 -0
  5502. skills/ppt-master/templates/icons/simple-icons/typeform.svg +1 -0
  5503. skills/ppt-master/templates/icons/simple-icons/typeorm.svg +1 -0
  5504. skills/ppt-master/templates/icons/simple-icons/typer.svg +1 -0
  5505. skills/ppt-master/templates/icons/simple-icons/typescript.svg +1 -0
  5506. skills/ppt-master/templates/icons/simple-icons/typo3.svg +1 -0
  5507. skills/ppt-master/templates/icons/simple-icons/typst.svg +1 -0
  5508. skills/ppt-master/templates/icons/simple-icons/uber.svg +1 -0
  5509. skills/ppt-master/templates/icons/simple-icons/ubereats.svg +1 -0
  5510. skills/ppt-master/templates/icons/simple-icons/ubiquiti.svg +1 -0
  5511. skills/ppt-master/templates/icons/simple-icons/ubisoft.svg +1 -0
  5512. skills/ppt-master/templates/icons/simple-icons/ublockorigin.svg +1 -0
  5513. skills/ppt-master/templates/icons/simple-icons/ubuntu.svg +1 -0
  5514. skills/ppt-master/templates/icons/simple-icons/ubuntumate.svg +1 -0
  5515. skills/ppt-master/templates/icons/simple-icons/udacity.svg +1 -0
  5516. skills/ppt-master/templates/icons/simple-icons/udemy.svg +1 -0
  5517. skills/ppt-master/templates/icons/simple-icons/udotsdotnews.svg +1 -0
  5518. skills/ppt-master/templates/icons/simple-icons/ufc.svg +1 -0
  5519. skills/ppt-master/templates/icons/simple-icons/uikit.svg +1 -0
  5520. skills/ppt-master/templates/icons/simple-icons/uipath.svg +1 -0
  5521. skills/ppt-master/templates/icons/simple-icons/ukca.svg +1 -0
  5522. skills/ppt-master/templates/icons/simple-icons/ultralytics.svg +1 -0
  5523. skills/ppt-master/templates/icons/simple-icons/ulule.svg +1 -0
  5524. skills/ppt-master/templates/icons/simple-icons/umami.svg +1 -0
  5525. skills/ppt-master/templates/icons/simple-icons/umbraco.svg +1 -0
  5526. skills/ppt-master/templates/icons/simple-icons/umbrel.svg +1 -0
  5527. skills/ppt-master/templates/icons/simple-icons/uml.svg +1 -0
  5528. skills/ppt-master/templates/icons/simple-icons/unacademy.svg +1 -0
  5529. skills/ppt-master/templates/icons/simple-icons/underarmour.svg +1 -0
  5530. skills/ppt-master/templates/icons/simple-icons/underscoredotjs.svg +1 -0
  5531. skills/ppt-master/templates/icons/simple-icons/undertale.svg +1 -0
  5532. skills/ppt-master/templates/icons/simple-icons/unicode.svg +1 -0
  5533. skills/ppt-master/templates/icons/simple-icons/unilever.svg +1 -0
  5534. skills/ppt-master/templates/icons/simple-icons/uniqlo.svg +1 -0
  5535. skills/ppt-master/templates/icons/simple-icons/uniqlo_ja.svg +1 -0
  5536. skills/ppt-master/templates/icons/simple-icons/unitedairlines.svg +1 -0
  5537. skills/ppt-master/templates/icons/simple-icons/unitednations.svg +1 -0
  5538. skills/ppt-master/templates/icons/simple-icons/unity.svg +1 -0
  5539. skills/ppt-master/templates/icons/simple-icons/unjs.svg +1 -0
  5540. skills/ppt-master/templates/icons/simple-icons/unlicense.svg +1 -0
  5541. skills/ppt-master/templates/icons/simple-icons/unocss.svg +1 -0
  5542. skills/ppt-master/templates/icons/simple-icons/unpkg.svg +1 -0
  5543. skills/ppt-master/templates/icons/simple-icons/unraid.svg +1 -0
  5544. skills/ppt-master/templates/icons/simple-icons/unrealengine.svg +1 -0
  5545. skills/ppt-master/templates/icons/simple-icons/unsplash.svg +1 -0
  5546. skills/ppt-master/templates/icons/simple-icons/unstop.svg +1 -0
  5547. skills/ppt-master/templates/icons/simple-icons/untappd.svg +1 -0
  5548. skills/ppt-master/templates/icons/simple-icons/upcloud.svg +1 -0
  5549. skills/ppt-master/templates/icons/simple-icons/uphold.svg +1 -0
  5550. skills/ppt-master/templates/icons/simple-icons/uplabs.svg +1 -0
  5551. skills/ppt-master/templates/icons/simple-icons/upptime.svg +1 -0
  5552. skills/ppt-master/templates/icons/simple-icons/ups.svg +1 -0
  5553. skills/ppt-master/templates/icons/simple-icons/upstash.svg +1 -0
  5554. skills/ppt-master/templates/icons/simple-icons/uptimekuma.svg +1 -0
  5555. skills/ppt-master/templates/icons/simple-icons/uptobox.svg +1 -0
  5556. skills/ppt-master/templates/icons/simple-icons/upwork.svg +1 -0
  5557. skills/ppt-master/templates/icons/simple-icons/uservoice.svg +1 -0
  5558. skills/ppt-master/templates/icons/simple-icons/usps.svg +1 -0
  5559. skills/ppt-master/templates/icons/simple-icons/utorrent.svg +1 -0
  5560. skills/ppt-master/templates/icons/simple-icons/uv.svg +1 -0
  5561. skills/ppt-master/templates/icons/simple-icons/v.svg +1 -0
  5562. skills/ppt-master/templates/icons/simple-icons/v0.svg +1 -0
  5563. skills/ppt-master/templates/icons/simple-icons/v2ex.svg +1 -0
  5564. skills/ppt-master/templates/icons/simple-icons/v8.svg +1 -0
  5565. skills/ppt-master/templates/icons/simple-icons/vaadin.svg +1 -0
  5566. skills/ppt-master/templates/icons/simple-icons/vagrant.svg +1 -0
  5567. skills/ppt-master/templates/icons/simple-icons/vala.svg +1 -0
  5568. skills/ppt-master/templates/icons/simple-icons/valorant.svg +1 -0
  5569. skills/ppt-master/templates/icons/simple-icons/valve.svg +1 -0
  5570. skills/ppt-master/templates/icons/simple-icons/vanillaextract.svg +1 -0
  5571. skills/ppt-master/templates/icons/simple-icons/vapor.svg +1 -0
  5572. skills/ppt-master/templates/icons/simple-icons/vault.svg +1 -0
  5573. skills/ppt-master/templates/icons/simple-icons/vaultwarden.svg +1 -0
  5574. skills/ppt-master/templates/icons/simple-icons/vauxhall.svg +1 -0
  5575. skills/ppt-master/templates/icons/simple-icons/vbulletin.svg +1 -0
  5576. skills/ppt-master/templates/icons/simple-icons/vectary.svg +1 -0
  5577. skills/ppt-master/templates/icons/simple-icons/vectorlogozone.svg +1 -0
  5578. skills/ppt-master/templates/icons/simple-icons/vectorworks.svg +1 -0
  5579. skills/ppt-master/templates/icons/simple-icons/veeam.svg +1 -0
  5580. skills/ppt-master/templates/icons/simple-icons/veed.svg +1 -0
  5581. skills/ppt-master/templates/icons/simple-icons/veepee.svg +1 -0
  5582. skills/ppt-master/templates/icons/simple-icons/vega.svg +1 -0
  5583. skills/ppt-master/templates/icons/simple-icons/vegas.svg +1 -0
  5584. skills/ppt-master/templates/icons/simple-icons/velocity.svg +1 -0
  5585. skills/ppt-master/templates/icons/simple-icons/velog.svg +1 -0
  5586. skills/ppt-master/templates/icons/simple-icons/vencord.svg +1 -0
  5587. skills/ppt-master/templates/icons/simple-icons/venmo.svg +1 -0
  5588. skills/ppt-master/templates/icons/simple-icons/vercel.svg +1 -0
  5589. skills/ppt-master/templates/icons/simple-icons/verdaccio.svg +1 -0
  5590. skills/ppt-master/templates/icons/simple-icons/veritas.svg +1 -0
  5591. skills/ppt-master/templates/icons/simple-icons/verizon.svg +1 -0
  5592. skills/ppt-master/templates/icons/simple-icons/vespa.svg +1 -0
  5593. skills/ppt-master/templates/icons/simple-icons/vestel.svg +1 -0
  5594. skills/ppt-master/templates/icons/simple-icons/vexxhost.svg +1 -0
  5595. skills/ppt-master/templates/icons/simple-icons/vfairs.svg +1 -0
  5596. skills/ppt-master/templates/icons/simple-icons/viadeo.svg +1 -0
  5597. skills/ppt-master/templates/icons/simple-icons/viaplay.svg +1 -0
  5598. skills/ppt-master/templates/icons/simple-icons/viber.svg +1 -0
  5599. skills/ppt-master/templates/icons/simple-icons/viblo.svg +1 -0
  5600. skills/ppt-master/templates/icons/simple-icons/victoriametrics.svg +1 -0
  5601. skills/ppt-master/templates/icons/simple-icons/victronenergy.svg +1 -0
  5602. skills/ppt-master/templates/icons/simple-icons/vikunja.svg +1 -0
  5603. skills/ppt-master/templates/icons/simple-icons/vim.svg +1 -0
  5604. skills/ppt-master/templates/icons/simple-icons/vimeo.svg +1 -0
  5605. skills/ppt-master/templates/icons/simple-icons/vimeolivestream.svg +1 -0
  5606. skills/ppt-master/templates/icons/simple-icons/vinted.svg +1 -0
  5607. skills/ppt-master/templates/icons/simple-icons/virgin.svg +1 -0
  5608. skills/ppt-master/templates/icons/simple-icons/virginatlantic.svg +1 -0
  5609. skills/ppt-master/templates/icons/simple-icons/virginmedia.svg +1 -0
  5610. skills/ppt-master/templates/icons/simple-icons/virtualbox.svg +1 -0
  5611. skills/ppt-master/templates/icons/simple-icons/virustotal.svg +1 -0
  5612. skills/ppt-master/templates/icons/simple-icons/visa.svg +1 -0
  5613. skills/ppt-master/templates/icons/simple-icons/visualbasic.svg +1 -0
  5614. skills/ppt-master/templates/icons/simple-icons/visualparadigm.svg +1 -0
  5615. skills/ppt-master/templates/icons/simple-icons/visualstudio.svg +1 -0
  5616. skills/ppt-master/templates/icons/simple-icons/visualstudioappcenter.svg +1 -0
  5617. skills/ppt-master/templates/icons/simple-icons/visualstudiocode.svg +1 -0
  5618. skills/ppt-master/templates/icons/simple-icons/visx.svg +1 -0
  5619. skills/ppt-master/templates/icons/simple-icons/vite.svg +1 -0
  5620. skills/ppt-master/templates/icons/simple-icons/vitepress.svg +1 -0
  5621. skills/ppt-master/templates/icons/simple-icons/vitess.svg +1 -0
  5622. skills/ppt-master/templates/icons/simple-icons/vitest.svg +1 -0
  5623. skills/ppt-master/templates/icons/simple-icons/vivaldi.svg +1 -0
  5624. skills/ppt-master/templates/icons/simple-icons/vivawallet.svg +1 -0
  5625. skills/ppt-master/templates/icons/simple-icons/vivino.svg +1 -0
  5626. skills/ppt-master/templates/icons/simple-icons/vivint.svg +1 -0
  5627. skills/ppt-master/templates/icons/simple-icons/vivo.svg +1 -0
  5628. skills/ppt-master/templates/icons/simple-icons/vk.svg +1 -0
  5629. skills/ppt-master/templates/icons/simple-icons/vlcmediaplayer.svg +1 -0
  5630. skills/ppt-master/templates/icons/simple-icons/vllm.svg +1 -0
  5631. skills/ppt-master/templates/icons/simple-icons/vmware.svg +1 -0
  5632. skills/ppt-master/templates/icons/simple-icons/vodafone.svg +1 -0
  5633. skills/ppt-master/templates/icons/simple-icons/voelkner.svg +1 -0
  5634. skills/ppt-master/templates/icons/simple-icons/voidlinux.svg +1 -0
  5635. skills/ppt-master/templates/icons/simple-icons/voipdotms.svg +1 -0
  5636. skills/ppt-master/templates/icons/simple-icons/volkswagen.svg +1 -0
  5637. skills/ppt-master/templates/icons/simple-icons/volvo.svg +1 -0
  5638. skills/ppt-master/templates/icons/simple-icons/vonage.svg +1 -0
  5639. skills/ppt-master/templates/icons/simple-icons/vorondesign.svg +1 -0
  5640. skills/ppt-master/templates/icons/simple-icons/vowpalwabbit.svg +1 -0
  5641. skills/ppt-master/templates/icons/simple-icons/vox.svg +1 -0
  5642. skills/ppt-master/templates/icons/simple-icons/vrchat.svg +1 -0
  5643. skills/ppt-master/templates/icons/simple-icons/vsco.svg +1 -0
  5644. skills/ppt-master/templates/icons/simple-icons/vscodium.svg +1 -0
  5645. skills/ppt-master/templates/icons/simple-icons/vtex.svg +1 -0
  5646. skills/ppt-master/templates/icons/simple-icons/vuedotjs.svg +1 -0
  5647. skills/ppt-master/templates/icons/simple-icons/vuetify.svg +1 -0
  5648. skills/ppt-master/templates/icons/simple-icons/vueuse.svg +1 -0
  5649. skills/ppt-master/templates/icons/simple-icons/vulkan.svg +1 -0
  5650. skills/ppt-master/templates/icons/simple-icons/vultr.svg +1 -0
  5651. skills/ppt-master/templates/icons/simple-icons/vyond.svg +1 -0
  5652. skills/ppt-master/templates/icons/simple-icons/w3schools.svg +1 -0
  5653. skills/ppt-master/templates/icons/simple-icons/wacom.svg +1 -0
  5654. skills/ppt-master/templates/icons/simple-icons/wagmi.svg +1 -0
  5655. skills/ppt-master/templates/icons/simple-icons/wagtail.svg +1 -0
  5656. skills/ppt-master/templates/icons/simple-icons/wails.svg +1 -0
  5657. skills/ppt-master/templates/icons/simple-icons/wakatime.svg +1 -0
  5658. skills/ppt-master/templates/icons/simple-icons/walkman.svg +1 -0
  5659. skills/ppt-master/templates/icons/simple-icons/wallabag.svg +1 -0
  5660. skills/ppt-master/templates/icons/simple-icons/walletconnect.svg +1 -0
  5661. skills/ppt-master/templates/icons/simple-icons/walmart.svg +1 -0
  5662. skills/ppt-master/templates/icons/simple-icons/wantedly.svg +1 -0
  5663. skills/ppt-master/templates/icons/simple-icons/wappalyzer.svg +1 -0
  5664. skills/ppt-master/templates/icons/simple-icons/warnerbros.svg +1 -0
  5665. skills/ppt-master/templates/icons/simple-icons/warp.svg +1 -0
  5666. skills/ppt-master/templates/icons/simple-icons/wasabi.svg +1 -0
  5667. skills/ppt-master/templates/icons/simple-icons/wasmcloud.svg +1 -0
  5668. skills/ppt-master/templates/icons/simple-icons/wasmer.svg +1 -0
  5669. skills/ppt-master/templates/icons/simple-icons/watchtower.svg +1 -0
  5670. skills/ppt-master/templates/icons/simple-icons/wattpad.svg +1 -0
  5671. skills/ppt-master/templates/icons/simple-icons/wayland.svg +1 -0
  5672. skills/ppt-master/templates/icons/simple-icons/waze.svg +1 -0
  5673. skills/ppt-master/templates/icons/simple-icons/wazirx.svg +1 -0
  5674. skills/ppt-master/templates/icons/simple-icons/wearos.svg +1 -0
  5675. skills/ppt-master/templates/icons/simple-icons/weasyl.svg +1 -0
  5676. skills/ppt-master/templates/icons/simple-icons/web3dotjs.svg +1 -0
  5677. skills/ppt-master/templates/icons/simple-icons/webassembly.svg +1 -0
  5678. skills/ppt-master/templates/icons/simple-icons/webauthn.svg +1 -0
  5679. skills/ppt-master/templates/icons/simple-icons/webawesome.svg +1 -0
  5680. skills/ppt-master/templates/icons/simple-icons/webcomponentsdotorg.svg +1 -0
  5681. skills/ppt-master/templates/icons/simple-icons/webdotde.svg +1 -0
  5682. skills/ppt-master/templates/icons/simple-icons/webdriverio.svg +1 -0
  5683. skills/ppt-master/templates/icons/simple-icons/webex.svg +1 -0
  5684. skills/ppt-master/templates/icons/simple-icons/webflow.svg +1 -0
  5685. skills/ppt-master/templates/icons/simple-icons/webgl.svg +1 -0
  5686. skills/ppt-master/templates/icons/simple-icons/webgpu.svg +1 -0
  5687. skills/ppt-master/templates/icons/simple-icons/weblate.svg +1 -0
  5688. skills/ppt-master/templates/icons/simple-icons/webmin.svg +1 -0
  5689. skills/ppt-master/templates/icons/simple-icons/webmoney.svg +1 -0
  5690. skills/ppt-master/templates/icons/simple-icons/webpack.svg +1 -0
  5691. skills/ppt-master/templates/icons/simple-icons/webrtc.svg +1 -0
  5692. skills/ppt-master/templates/icons/simple-icons/webstorm.svg +1 -0
  5693. skills/ppt-master/templates/icons/simple-icons/webtoon.svg +1 -0
  5694. skills/ppt-master/templates/icons/simple-icons/webtrees.svg +1 -0
  5695. skills/ppt-master/templates/icons/simple-icons/wechat.svg +1 -0
  5696. skills/ppt-master/templates/icons/simple-icons/wegame.svg +1 -0
  5697. skills/ppt-master/templates/icons/simple-icons/weightsandbiases.svg +1 -0
  5698. skills/ppt-master/templates/icons/simple-icons/welcometothejungle.svg +1 -0
  5699. skills/ppt-master/templates/icons/simple-icons/wellfound.svg +1 -0
  5700. skills/ppt-master/templates/icons/simple-icons/wellsfargo.svg +1 -0
  5701. skills/ppt-master/templates/icons/simple-icons/wemo.svg +1 -0
  5702. skills/ppt-master/templates/icons/simple-icons/weread.svg +1 -0
  5703. skills/ppt-master/templates/icons/simple-icons/westerndigital.svg +1 -0
  5704. skills/ppt-master/templates/icons/simple-icons/westernunion.svg +1 -0
  5705. skills/ppt-master/templates/icons/simple-icons/wetransfer.svg +1 -0
  5706. skills/ppt-master/templates/icons/simple-icons/wezterm.svg +1 -0
  5707. skills/ppt-master/templates/icons/simple-icons/wgpu.svg +1 -0
  5708. skills/ppt-master/templates/icons/simple-icons/what3words.svg +1 -0
  5709. skills/ppt-master/templates/icons/simple-icons/whatsapp.svg +1 -0
  5710. skills/ppt-master/templates/icons/simple-icons/wheniwork.svg +1 -0
  5711. skills/ppt-master/templates/icons/simple-icons/wii.svg +1 -0
  5712. skills/ppt-master/templates/icons/simple-icons/wiiu.svg +1 -0
  5713. skills/ppt-master/templates/icons/simple-icons/wikibooks.svg +1 -0
  5714. skills/ppt-master/templates/icons/simple-icons/wikidata.svg +1 -0
  5715. skills/ppt-master/templates/icons/simple-icons/wikidotgg.svg +1 -0
  5716. skills/ppt-master/templates/icons/simple-icons/wikidotjs.svg +1 -0
  5717. skills/ppt-master/templates/icons/simple-icons/wikimediacommons.svg +1 -0
  5718. skills/ppt-master/templates/icons/simple-icons/wikimediafoundation.svg +1 -0
  5719. skills/ppt-master/templates/icons/simple-icons/wikipedia.svg +1 -0
  5720. skills/ppt-master/templates/icons/simple-icons/wikiquote.svg +1 -0
  5721. skills/ppt-master/templates/icons/simple-icons/wikisource.svg +1 -0
  5722. skills/ppt-master/templates/icons/simple-icons/wikiversity.svg +1 -0
  5723. skills/ppt-master/templates/icons/simple-icons/wikivoyage.svg +1 -0
  5724. skills/ppt-master/templates/icons/simple-icons/winamp.svg +1 -0
  5725. skills/ppt-master/templates/icons/simple-icons/windows.svg +1 -0
  5726. skills/ppt-master/templates/icons/simple-icons/windows10.svg +1 -0
  5727. skills/ppt-master/templates/icons/simple-icons/windows11.svg +1 -0
  5728. skills/ppt-master/templates/icons/simple-icons/windows95.svg +1 -0
  5729. skills/ppt-master/templates/icons/simple-icons/windowsterminal.svg +1 -0
  5730. skills/ppt-master/templates/icons/simple-icons/windowsxp.svg +1 -0
  5731. skills/ppt-master/templates/icons/simple-icons/windsurf.svg +1 -0
  5732. skills/ppt-master/templates/icons/simple-icons/wine.svg +1 -0
  5733. skills/ppt-master/templates/icons/simple-icons/wipro.svg +1 -0
  5734. skills/ppt-master/templates/icons/simple-icons/wire.svg +1 -0
  5735. skills/ppt-master/templates/icons/simple-icons/wireguard.svg +1 -0
  5736. skills/ppt-master/templates/icons/simple-icons/wireshark.svg +1 -0
  5737. skills/ppt-master/templates/icons/simple-icons/wise.svg +1 -0
  5738. skills/ppt-master/templates/icons/simple-icons/wish.svg +1 -0
  5739. skills/ppt-master/templates/icons/simple-icons/wistia.svg +1 -0
  5740. skills/ppt-master/templates/icons/simple-icons/wix.svg +1 -0
  5741. skills/ppt-master/templates/icons/simple-icons/wizzair.svg +1 -0
  5742. skills/ppt-master/templates/icons/simple-icons/wolfram.svg +1 -0
  5743. skills/ppt-master/templates/icons/simple-icons/wolframlanguage.svg +1 -0
  5744. skills/ppt-master/templates/icons/simple-icons/wolframmathematica.svg +1 -0
  5745. skills/ppt-master/templates/icons/simple-icons/wondershare.svg +1 -0
  5746. skills/ppt-master/templates/icons/simple-icons/wondersharefilmora.svg +1 -0
  5747. skills/ppt-master/templates/icons/simple-icons/woo.svg +1 -0
  5748. skills/ppt-master/templates/icons/simple-icons/woocommerce.svg +1 -0
  5749. skills/ppt-master/templates/icons/simple-icons/wordpress.svg +1 -0
  5750. skills/ppt-master/templates/icons/simple-icons/workplace.svg +1 -0
  5751. skills/ppt-master/templates/icons/simple-icons/worldhealthorganization.svg +1 -0
  5752. skills/ppt-master/templates/icons/simple-icons/wpengine.svg +1 -0
  5753. skills/ppt-master/templates/icons/simple-icons/wpexplorer.svg +1 -0
  5754. skills/ppt-master/templates/icons/simple-icons/wprocket.svg +1 -0
  5755. skills/ppt-master/templates/icons/simple-icons/writedotas.svg +1 -0
  5756. skills/ppt-master/templates/icons/simple-icons/wwe.svg +1 -0
  5757. skills/ppt-master/templates/icons/simple-icons/wwise.svg +1 -0
  5758. skills/ppt-master/templates/icons/simple-icons/wxt.svg +1 -0
  5759. skills/ppt-master/templates/icons/simple-icons/wykop.svg +1 -0
  5760. skills/ppt-master/templates/icons/simple-icons/wyze.svg +1 -0
  5761. skills/ppt-master/templates/icons/simple-icons/x.svg +1 -0
  5762. skills/ppt-master/templates/icons/simple-icons/xamarin.svg +1 -0
  5763. skills/ppt-master/templates/icons/simple-icons/xaml.svg +1 -0
  5764. skills/ppt-master/templates/icons/simple-icons/xampp.svg +1 -0
  5765. skills/ppt-master/templates/icons/simple-icons/xbox.svg +1 -0
  5766. skills/ppt-master/templates/icons/simple-icons/xcode.svg +1 -0
  5767. skills/ppt-master/templates/icons/simple-icons/xdadevelopers.svg +1 -0
  5768. skills/ppt-master/templates/icons/simple-icons/xdotorg.svg +1 -0
  5769. skills/ppt-master/templates/icons/simple-icons/xendit.svg +1 -0
  5770. skills/ppt-master/templates/icons/simple-icons/xero.svg +1 -0
  5771. skills/ppt-master/templates/icons/simple-icons/xfce.svg +1 -0
  5772. skills/ppt-master/templates/icons/simple-icons/xiaohongshu.svg +1 -0
  5773. skills/ppt-master/templates/icons/simple-icons/xiaomi.svg +1 -0
  5774. skills/ppt-master/templates/icons/simple-icons/xing.svg +1 -0
  5775. skills/ppt-master/templates/icons/simple-icons/xml.svg +1 -0
  5776. skills/ppt-master/templates/icons/simple-icons/xmpp.svg +1 -0
  5777. skills/ppt-master/templates/icons/simple-icons/xo.svg +1 -0
  5778. skills/ppt-master/templates/icons/simple-icons/xrp.svg +1 -0
  5779. skills/ppt-master/templates/icons/simple-icons/xsplit.svg +1 -0
  5780. skills/ppt-master/templates/icons/simple-icons/xstate.svg +1 -0
  5781. skills/ppt-master/templates/icons/simple-icons/xubuntu.svg +1 -0
  5782. skills/ppt-master/templates/icons/simple-icons/xyflow.svg +1 -0
  5783. skills/ppt-master/templates/icons/simple-icons/yaak.svg +1 -0
  5784. skills/ppt-master/templates/icons/simple-icons/yabai.svg +1 -0
  5785. skills/ppt-master/templates/icons/simple-icons/yale.svg +1 -0
  5786. skills/ppt-master/templates/icons/simple-icons/yamahacorporation.svg +1 -0
  5787. skills/ppt-master/templates/icons/simple-icons/yamahamotorcorporation.svg +1 -0
  5788. skills/ppt-master/templates/icons/simple-icons/yaml.svg +1 -0
  5789. skills/ppt-master/templates/icons/simple-icons/yammer.svg +1 -0
  5790. skills/ppt-master/templates/icons/simple-icons/yandexcloud.svg +1 -0
  5791. skills/ppt-master/templates/icons/simple-icons/yarn.svg +1 -0
  5792. skills/ppt-master/templates/icons/simple-icons/ycombinator.svg +1 -0
  5793. skills/ppt-master/templates/icons/simple-icons/yelp.svg +1 -0
  5794. skills/ppt-master/templates/icons/simple-icons/yeti.svg +1 -0
  5795. skills/ppt-master/templates/icons/simple-icons/yew.svg +1 -0
  5796. skills/ppt-master/templates/icons/simple-icons/yii.svg +1 -0
  5797. skills/ppt-master/templates/icons/simple-icons/yoast.svg +1 -0
  5798. skills/ppt-master/templates/icons/simple-icons/yolo.svg +1 -0
  5799. skills/ppt-master/templates/icons/simple-icons/youhodler.svg +1 -0
  5800. skills/ppt-master/templates/icons/simple-icons/youtube.svg +1 -0
  5801. skills/ppt-master/templates/icons/simple-icons/youtubegaming.svg +1 -0
  5802. skills/ppt-master/templates/icons/simple-icons/youtubekids.svg +1 -0
  5803. skills/ppt-master/templates/icons/simple-icons/youtubemusic.svg +1 -0
  5804. skills/ppt-master/templates/icons/simple-icons/youtubeshorts.svg +1 -0
  5805. skills/ppt-master/templates/icons/simple-icons/youtubestudio.svg +1 -0
  5806. skills/ppt-master/templates/icons/simple-icons/youtubetv.svg +1 -0
  5807. skills/ppt-master/templates/icons/simple-icons/yr.svg +1 -0
  5808. skills/ppt-master/templates/icons/simple-icons/yubico.svg +1 -0
  5809. skills/ppt-master/templates/icons/simple-icons/yunohost.svg +1 -0
  5810. skills/ppt-master/templates/icons/simple-icons/zabka.svg +1 -0
  5811. skills/ppt-master/templates/icons/simple-icons/zaim.svg +1 -0
  5812. skills/ppt-master/templates/icons/simple-icons/zalando.svg +1 -0
  5813. skills/ppt-master/templates/icons/simple-icons/zalo.svg +1 -0
  5814. skills/ppt-master/templates/icons/simple-icons/zap.svg +1 -0
  5815. skills/ppt-master/templates/icons/simple-icons/zapier.svg +1 -0
  5816. skills/ppt-master/templates/icons/simple-icons/zara.svg +1 -0
  5817. skills/ppt-master/templates/icons/simple-icons/zazzle.svg +1 -0
  5818. skills/ppt-master/templates/icons/simple-icons/zcash.svg +1 -0
  5819. skills/ppt-master/templates/icons/simple-icons/zcool.svg +1 -0
  5820. skills/ppt-master/templates/icons/simple-icons/zdf.svg +1 -0
  5821. skills/ppt-master/templates/icons/simple-icons/zebpay.svg +1 -0
  5822. skills/ppt-master/templates/icons/simple-icons/zebratechnologies.svg +1 -0
  5823. skills/ppt-master/templates/icons/simple-icons/zedindustries.svg +1 -0
  5824. skills/ppt-master/templates/icons/simple-icons/zelle.svg +1 -0
  5825. skills/ppt-master/templates/icons/simple-icons/zenbrowser.svg +1 -0
  5826. skills/ppt-master/templates/icons/simple-icons/zend.svg +1 -0
  5827. skills/ppt-master/templates/icons/simple-icons/zendesk.svg +1 -0
  5828. skills/ppt-master/templates/icons/simple-icons/zenn.svg +1 -0
  5829. skills/ppt-master/templates/icons/simple-icons/zenodo.svg +1 -0
  5830. skills/ppt-master/templates/icons/simple-icons/zensar.svg +1 -0
  5831. skills/ppt-master/templates/icons/simple-icons/zerodha.svg +1 -0
  5832. skills/ppt-master/templates/icons/simple-icons/zerotier.svg +1 -0
  5833. skills/ppt-master/templates/icons/simple-icons/zerply.svg +1 -0
  5834. skills/ppt-master/templates/icons/simple-icons/zettlr.svg +1 -0
  5835. skills/ppt-master/templates/icons/simple-icons/zhihu.svg +1 -0
  5836. skills/ppt-master/templates/icons/simple-icons/zig.svg +1 -0
  5837. skills/ppt-master/templates/icons/simple-icons/zigbee.svg +1 -0
  5838. skills/ppt-master/templates/icons/simple-icons/zigbee2mqtt.svg +1 -0
  5839. skills/ppt-master/templates/icons/simple-icons/ziggo.svg +1 -0
  5840. skills/ppt-master/templates/icons/simple-icons/zilch.svg +1 -0
  5841. skills/ppt-master/templates/icons/simple-icons/zillow.svg +1 -0
  5842. skills/ppt-master/templates/icons/simple-icons/zincsearch.svg +1 -0
  5843. skills/ppt-master/templates/icons/simple-icons/zingat.svg +1 -0
  5844. skills/ppt-master/templates/icons/simple-icons/zod.svg +1 -0
  5845. skills/ppt-master/templates/icons/simple-icons/zoho.svg +1 -0
  5846. skills/ppt-master/templates/icons/simple-icons/zoiper.svg +1 -0
  5847. skills/ppt-master/templates/icons/simple-icons/zola.svg +1 -0
  5848. skills/ppt-master/templates/icons/simple-icons/zomato.svg +1 -0
  5849. skills/ppt-master/templates/icons/simple-icons/zoom.svg +1 -0
  5850. skills/ppt-master/templates/icons/simple-icons/zorin.svg +1 -0
  5851. skills/ppt-master/templates/icons/simple-icons/zotero.svg +1 -0
  5852. skills/ppt-master/templates/icons/simple-icons/zsh.svg +1 -0
  5853. skills/ppt-master/templates/icons/simple-icons/zulip.svg +1 -0
  5854. skills/ppt-master/templates/icons/simple-icons/zyte.svg +1 -0
  5855. skills/ppt-master/templates/icons/tabler-filled/accessible.svg +13 -0
  5856. skills/ppt-master/templates/icons/tabler-filled/ad-circle.svg +13 -0
  5857. skills/ppt-master/templates/icons/tabler-filled/ad.svg +13 -0
  5858. skills/ppt-master/templates/icons/tabler-filled/adjustments-horizontal.svg +13 -0
  5859. skills/ppt-master/templates/icons/tabler-filled/adjustments.svg +15 -0
  5860. skills/ppt-master/templates/icons/tabler-filled/aerial-lift.svg +13 -0
  5861. skills/ppt-master/templates/icons/tabler-filled/affiliate.svg +13 -0
  5862. skills/ppt-master/templates/icons/tabler-filled/air-balloon.svg +14 -0
  5863. skills/ppt-master/templates/icons/tabler-filled/alarm-minus.svg +15 -0
  5864. skills/ppt-master/templates/icons/tabler-filled/alarm-plus.svg +15 -0
  5865. skills/ppt-master/templates/icons/tabler-filled/alarm-snooze.svg +15 -0
  5866. skills/ppt-master/templates/icons/tabler-filled/alarm.svg +15 -0
  5867. skills/ppt-master/templates/icons/tabler-filled/alert-circle.svg +13 -0
  5868. skills/ppt-master/templates/icons/tabler-filled/alert-hexagon.svg +13 -0
  5869. skills/ppt-master/templates/icons/tabler-filled/alert-octagon.svg +13 -0
  5870. skills/ppt-master/templates/icons/tabler-filled/alert-square-rounded.svg +13 -0
  5871. skills/ppt-master/templates/icons/tabler-filled/alert-square.svg +13 -0
  5872. skills/ppt-master/templates/icons/tabler-filled/alert-triangle.svg +13 -0
  5873. skills/ppt-master/templates/icons/tabler-filled/alien.svg +13 -0
  5874. skills/ppt-master/templates/icons/tabler-filled/align-box-bottom-center.svg +13 -0
  5875. skills/ppt-master/templates/icons/tabler-filled/align-box-bottom-left.svg +13 -0
  5876. skills/ppt-master/templates/icons/tabler-filled/align-box-bottom-right.svg +13 -0
  5877. skills/ppt-master/templates/icons/tabler-filled/align-box-center-middle.svg +13 -0
  5878. skills/ppt-master/templates/icons/tabler-filled/align-box-left-bottom.svg +13 -0
  5879. skills/ppt-master/templates/icons/tabler-filled/align-box-left-middle.svg +13 -0
  5880. skills/ppt-master/templates/icons/tabler-filled/align-box-left-top.svg +13 -0
  5881. skills/ppt-master/templates/icons/tabler-filled/align-box-right-bottom.svg +13 -0
  5882. skills/ppt-master/templates/icons/tabler-filled/align-box-right-middle.svg +13 -0
  5883. skills/ppt-master/templates/icons/tabler-filled/align-box-right-top.svg +13 -0
  5884. skills/ppt-master/templates/icons/tabler-filled/align-box-top-center.svg +13 -0
  5885. skills/ppt-master/templates/icons/tabler-filled/align-box-top-left.svg +13 -0
  5886. skills/ppt-master/templates/icons/tabler-filled/align-box-top-right.svg +13 -0
  5887. skills/ppt-master/templates/icons/tabler-filled/analyze.svg +15 -0
  5888. skills/ppt-master/templates/icons/tabler-filled/app-window.svg +13 -0
  5889. skills/ppt-master/templates/icons/tabler-filled/apple.svg +13 -0
  5890. skills/ppt-master/templates/icons/tabler-filled/apps.svg +16 -0
  5891. skills/ppt-master/templates/icons/tabler-filled/archive.svg +14 -0
  5892. skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-content.svg +15 -0
  5893. skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-down.svg +14 -0
  5894. skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-height.svg +15 -0
  5895. skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-left.svg +14 -0
  5896. skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-right.svg +14 -0
  5897. skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-up.svg +14 -0
  5898. skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-width.svg +14 -0
  5899. skills/ppt-master/templates/icons/tabler-filled/arrow-badge-down.svg +13 -0
  5900. skills/ppt-master/templates/icons/tabler-filled/arrow-badge-left.svg +13 -0
  5901. skills/ppt-master/templates/icons/tabler-filled/arrow-badge-right.svg +13 -0
  5902. skills/ppt-master/templates/icons/tabler-filled/arrow-badge-up.svg +13 -0
  5903. skills/ppt-master/templates/icons/tabler-filled/arrow-big-down-line.svg +14 -0
  5904. skills/ppt-master/templates/icons/tabler-filled/arrow-big-down-lines.svg +15 -0
  5905. skills/ppt-master/templates/icons/tabler-filled/arrow-big-down.svg +13 -0
  5906. skills/ppt-master/templates/icons/tabler-filled/arrow-big-left-line.svg +15 -0
  5907. skills/ppt-master/templates/icons/tabler-filled/arrow-big-left-lines.svg +15 -0
  5908. skills/ppt-master/templates/icons/tabler-filled/arrow-big-left.svg +13 -0
  5909. skills/ppt-master/templates/icons/tabler-filled/arrow-big-right-line.svg +14 -0
  5910. skills/ppt-master/templates/icons/tabler-filled/arrow-big-right-lines.svg +15 -0
  5911. skills/ppt-master/templates/icons/tabler-filled/arrow-big-right.svg +13 -0
  5912. skills/ppt-master/templates/icons/tabler-filled/arrow-big-up-line.svg +14 -0
  5913. skills/ppt-master/templates/icons/tabler-filled/arrow-big-up-lines.svg +15 -0
  5914. skills/ppt-master/templates/icons/tabler-filled/arrow-big-up.svg +13 -0
  5915. skills/ppt-master/templates/icons/tabler-filled/arrow-down-circle.svg +13 -0
  5916. skills/ppt-master/templates/icons/tabler-filled/arrow-down-rhombus.svg +13 -0
  5917. skills/ppt-master/templates/icons/tabler-filled/arrow-down-square.svg +13 -0
  5918. skills/ppt-master/templates/icons/tabler-filled/arrow-guide.svg +13 -0
  5919. skills/ppt-master/templates/icons/tabler-filled/arrow-left-circle.svg +13 -0
  5920. skills/ppt-master/templates/icons/tabler-filled/arrow-left-rhombus.svg +13 -0
  5921. skills/ppt-master/templates/icons/tabler-filled/arrow-left-square.svg +13 -0
  5922. skills/ppt-master/templates/icons/tabler-filled/arrow-move-down.svg +13 -0
  5923. skills/ppt-master/templates/icons/tabler-filled/arrow-move-left.svg +13 -0
  5924. skills/ppt-master/templates/icons/tabler-filled/arrow-move-right.svg +13 -0
  5925. skills/ppt-master/templates/icons/tabler-filled/arrow-move-up.svg +14 -0
  5926. skills/ppt-master/templates/icons/tabler-filled/arrow-right-circle.svg +13 -0
  5927. skills/ppt-master/templates/icons/tabler-filled/arrow-right-rhombus.svg +13 -0
  5928. skills/ppt-master/templates/icons/tabler-filled/arrow-right-square.svg +13 -0
  5929. skills/ppt-master/templates/icons/tabler-filled/arrow-up-circle.svg +13 -0
  5930. skills/ppt-master/templates/icons/tabler-filled/arrow-up-rhombus.svg +13 -0
  5931. skills/ppt-master/templates/icons/tabler-filled/arrow-up-square.svg +13 -0
  5932. skills/ppt-master/templates/icons/tabler-filled/artboard.svg +21 -0
  5933. skills/ppt-master/templates/icons/tabler-filled/article.svg +13 -0
  5934. skills/ppt-master/templates/icons/tabler-filled/aspect-ratio.svg +13 -0
  5935. skills/ppt-master/templates/icons/tabler-filled/assembly.svg +13 -0
  5936. skills/ppt-master/templates/icons/tabler-filled/asset.svg +13 -0
  5937. skills/ppt-master/templates/icons/tabler-filled/atom-2.svg +19 -0
  5938. skills/ppt-master/templates/icons/tabler-filled/automatic-gearbox.svg +13 -0
  5939. skills/ppt-master/templates/icons/tabler-filled/award.svg +15 -0
  5940. skills/ppt-master/templates/icons/tabler-filled/baby-carriage.svg +13 -0
  5941. skills/ppt-master/templates/icons/tabler-filled/backspace.svg +13 -0
  5942. skills/ppt-master/templates/icons/tabler-filled/badge-3d.svg +13 -0
  5943. skills/ppt-master/templates/icons/tabler-filled/badge-4k.svg +13 -0
  5944. skills/ppt-master/templates/icons/tabler-filled/badge-8k.svg +13 -0
  5945. skills/ppt-master/templates/icons/tabler-filled/badge-ad.svg +13 -0
  5946. skills/ppt-master/templates/icons/tabler-filled/badge-ar.svg +13 -0
  5947. skills/ppt-master/templates/icons/tabler-filled/badge-cc.svg +13 -0
  5948. skills/ppt-master/templates/icons/tabler-filled/badge-hd.svg +13 -0
  5949. skills/ppt-master/templates/icons/tabler-filled/badge-sd.svg +13 -0
  5950. skills/ppt-master/templates/icons/tabler-filled/badge-tm.svg +13 -0
  5951. skills/ppt-master/templates/icons/tabler-filled/badge-vo.svg +13 -0
  5952. skills/ppt-master/templates/icons/tabler-filled/badge-vr.svg +13 -0
  5953. skills/ppt-master/templates/icons/tabler-filled/badge-wc.svg +13 -0
  5954. skills/ppt-master/templates/icons/tabler-filled/badge.svg +13 -0
  5955. skills/ppt-master/templates/icons/tabler-filled/badges.svg +14 -0
  5956. skills/ppt-master/templates/icons/tabler-filled/ball-bowling.svg +13 -0
  5957. skills/ppt-master/templates/icons/tabler-filled/balloon.svg +14 -0
  5958. skills/ppt-master/templates/icons/tabler-filled/ballpen.svg +13 -0
  5959. skills/ppt-master/templates/icons/tabler-filled/bandage.svg +13 -0
  5960. skills/ppt-master/templates/icons/tabler-filled/barbell.svg +15 -0
  5961. skills/ppt-master/templates/icons/tabler-filled/barrier-block.svg +13 -0
  5962. skills/ppt-master/templates/icons/tabler-filled/basket.svg +13 -0
  5963. skills/ppt-master/templates/icons/tabler-filled/bath.svg +13 -0
  5964. skills/ppt-master/templates/icons/tabler-filled/battery-1.svg +13 -0
  5965. skills/ppt-master/templates/icons/tabler-filled/battery-2.svg +13 -0
  5966. skills/ppt-master/templates/icons/tabler-filled/battery-3.svg +13 -0
  5967. skills/ppt-master/templates/icons/tabler-filled/battery-4.svg +13 -0
  5968. skills/ppt-master/templates/icons/tabler-filled/battery-automotive.svg +13 -0
  5969. skills/ppt-master/templates/icons/tabler-filled/battery-vertical-1.svg +13 -0
  5970. skills/ppt-master/templates/icons/tabler-filled/battery-vertical-2.svg +13 -0
  5971. skills/ppt-master/templates/icons/tabler-filled/battery-vertical-3.svg +13 -0
  5972. skills/ppt-master/templates/icons/tabler-filled/battery-vertical-4.svg +13 -0
  5973. skills/ppt-master/templates/icons/tabler-filled/battery-vertical.svg +13 -0
  5974. skills/ppt-master/templates/icons/tabler-filled/battery.svg +13 -0
  5975. skills/ppt-master/templates/icons/tabler-filled/bed-flat.svg +15 -0
  5976. skills/ppt-master/templates/icons/tabler-filled/bed.svg +14 -0
  5977. skills/ppt-master/templates/icons/tabler-filled/beer.svg +13 -0
  5978. skills/ppt-master/templates/icons/tabler-filled/bell-minus.svg +14 -0
  5979. skills/ppt-master/templates/icons/tabler-filled/bell-plus.svg +14 -0
  5980. skills/ppt-master/templates/icons/tabler-filled/bell-ringing-2.svg +14 -0
  5981. skills/ppt-master/templates/icons/tabler-filled/bell-ringing.svg +16 -0
  5982. skills/ppt-master/templates/icons/tabler-filled/bell-x.svg +14 -0
  5983. skills/ppt-master/templates/icons/tabler-filled/bell-z.svg +14 -0
  5984. skills/ppt-master/templates/icons/tabler-filled/bell.svg +14 -0
  5985. skills/ppt-master/templates/icons/tabler-filled/bike.svg +16 -0
  5986. skills/ppt-master/templates/icons/tabler-filled/binary-tree-2.svg +13 -0
  5987. skills/ppt-master/templates/icons/tabler-filled/binary-tree.svg +13 -0
  5988. skills/ppt-master/templates/icons/tabler-filled/binoculars.svg +13 -0
  5989. skills/ppt-master/templates/icons/tabler-filled/biohazard.svg +13 -0
  5990. skills/ppt-master/templates/icons/tabler-filled/blade.svg +13 -0
  5991. skills/ppt-master/templates/icons/tabler-filled/blender.svg +13 -0
  5992. skills/ppt-master/templates/icons/tabler-filled/blob.svg +13 -0
  5993. skills/ppt-master/templates/icons/tabler-filled/bolt.svg +13 -0
  5994. skills/ppt-master/templates/icons/tabler-filled/bomb.svg +14 -0
  5995. skills/ppt-master/templates/icons/tabler-filled/bone.svg +13 -0
  5996. skills/ppt-master/templates/icons/tabler-filled/bong.svg +13 -0
  5997. skills/ppt-master/templates/icons/tabler-filled/book.svg +13 -0
  5998. skills/ppt-master/templates/icons/tabler-filled/bookmark.svg +13 -0
  5999. skills/ppt-master/templates/icons/tabler-filled/bookmarks.svg +14 -0
  6000. skills/ppt-master/templates/icons/tabler-filled/boom.svg +13 -0
  6001. skills/ppt-master/templates/icons/tabler-filled/bottle.svg +13 -0
  6002. skills/ppt-master/templates/icons/tabler-filled/bounce-left.svg +14 -0
  6003. skills/ppt-master/templates/icons/tabler-filled/bounce-right.svg +14 -0
  6004. skills/ppt-master/templates/icons/tabler-filled/bow.svg +13 -0
  6005. skills/ppt-master/templates/icons/tabler-filled/bowl-chopsticks.svg +15 -0
  6006. skills/ppt-master/templates/icons/tabler-filled/bowl-spoon.svg +14 -0
  6007. skills/ppt-master/templates/icons/tabler-filled/bowl.svg +13 -0
  6008. skills/ppt-master/templates/icons/tabler-filled/box-align-bottom-left.svg +22 -0
  6009. skills/ppt-master/templates/icons/tabler-filled/box-align-bottom-right.svg +22 -0
  6010. skills/ppt-master/templates/icons/tabler-filled/box-align-bottom.svg +19 -0
  6011. skills/ppt-master/templates/icons/tabler-filled/box-align-left.svg +19 -0
  6012. skills/ppt-master/templates/icons/tabler-filled/box-align-right.svg +19 -0
  6013. skills/ppt-master/templates/icons/tabler-filled/box-align-top-left.svg +22 -0
  6014. skills/ppt-master/templates/icons/tabler-filled/box-align-top-right.svg +22 -0
  6015. skills/ppt-master/templates/icons/tabler-filled/box-align-top.svg +19 -0
  6016. skills/ppt-master/templates/icons/tabler-filled/box-multiple.svg +14 -0
  6017. skills/ppt-master/templates/icons/tabler-filled/brand-angular.svg +13 -0
  6018. skills/ppt-master/templates/icons/tabler-filled/brand-apple.svg +14 -0
  6019. skills/ppt-master/templates/icons/tabler-filled/brand-bitbucket.svg +13 -0
  6020. skills/ppt-master/templates/icons/tabler-filled/brand-discord.svg +13 -0
  6021. skills/ppt-master/templates/icons/tabler-filled/brand-dribbble.svg +13 -0
  6022. skills/ppt-master/templates/icons/tabler-filled/brand-facebook.svg +13 -0
  6023. skills/ppt-master/templates/icons/tabler-filled/brand-github.svg +13 -0
  6024. skills/ppt-master/templates/icons/tabler-filled/brand-google.svg +13 -0
  6025. skills/ppt-master/templates/icons/tabler-filled/brand-instagram.svg +13 -0
  6026. skills/ppt-master/templates/icons/tabler-filled/brand-kick.svg +13 -0
  6027. skills/ppt-master/templates/icons/tabler-filled/brand-linkedin.svg +13 -0
  6028. skills/ppt-master/templates/icons/tabler-filled/brand-messenger.svg +13 -0
  6029. skills/ppt-master/templates/icons/tabler-filled/brand-open-source.svg +13 -0
  6030. skills/ppt-master/templates/icons/tabler-filled/brand-opera.svg +13 -0
  6031. skills/ppt-master/templates/icons/tabler-filled/brand-patreon.svg +13 -0
  6032. skills/ppt-master/templates/icons/tabler-filled/brand-paypal.svg +13 -0
  6033. skills/ppt-master/templates/icons/tabler-filled/brand-pinterest.svg +13 -0
  6034. skills/ppt-master/templates/icons/tabler-filled/brand-sketch.svg +13 -0
  6035. skills/ppt-master/templates/icons/tabler-filled/brand-snapchat.svg +13 -0
  6036. skills/ppt-master/templates/icons/tabler-filled/brand-spotify.svg +13 -0
  6037. skills/ppt-master/templates/icons/tabler-filled/brand-steam.svg +13 -0
  6038. skills/ppt-master/templates/icons/tabler-filled/brand-stripe.svg +13 -0
  6039. skills/ppt-master/templates/icons/tabler-filled/brand-tabler.svg +13 -0
  6040. skills/ppt-master/templates/icons/tabler-filled/brand-tiktok.svg +13 -0
  6041. skills/ppt-master/templates/icons/tabler-filled/brand-tinder.svg +13 -0
  6042. skills/ppt-master/templates/icons/tabler-filled/brand-tumblr.svg +13 -0
  6043. skills/ppt-master/templates/icons/tabler-filled/brand-twitter.svg +13 -0
  6044. skills/ppt-master/templates/icons/tabler-filled/brand-vercel.svg +13 -0
  6045. skills/ppt-master/templates/icons/tabler-filled/brand-vimeo.svg +13 -0
  6046. skills/ppt-master/templates/icons/tabler-filled/brand-weibo.svg +14 -0
  6047. skills/ppt-master/templates/icons/tabler-filled/brand-whatsapp.svg +13 -0
  6048. skills/ppt-master/templates/icons/tabler-filled/brand-windows.svg +13 -0
  6049. skills/ppt-master/templates/icons/tabler-filled/brand-x.svg +13 -0
  6050. skills/ppt-master/templates/icons/tabler-filled/brand-youtube.svg +13 -0
  6051. skills/ppt-master/templates/icons/tabler-filled/bread.svg +13 -0
  6052. skills/ppt-master/templates/icons/tabler-filled/briefcase-2.svg +13 -0
  6053. skills/ppt-master/templates/icons/tabler-filled/briefcase.svg +13 -0
  6054. skills/ppt-master/templates/icons/tabler-filled/brightness-auto.svg +13 -0
  6055. skills/ppt-master/templates/icons/tabler-filled/brightness-down.svg +21 -0
  6056. skills/ppt-master/templates/icons/tabler-filled/brightness-up.svg +21 -0
  6057. skills/ppt-master/templates/icons/tabler-filled/brightness.svg +13 -0
  6058. skills/ppt-master/templates/icons/tabler-filled/bubble-text.svg +13 -0
  6059. skills/ppt-master/templates/icons/tabler-filled/bubble.svg +13 -0
  6060. skills/ppt-master/templates/icons/tabler-filled/bug.svg +13 -0
  6061. skills/ppt-master/templates/icons/tabler-filled/building-bridge-2.svg +13 -0
  6062. skills/ppt-master/templates/icons/tabler-filled/building-broadcast-tower.svg +15 -0
  6063. skills/ppt-master/templates/icons/tabler-filled/bulb.svg +19 -0
  6064. skills/ppt-master/templates/icons/tabler-filled/bus.svg +13 -0
  6065. skills/ppt-master/templates/icons/tabler-filled/butterfly.svg +15 -0
  6066. skills/ppt-master/templates/icons/tabler-filled/cactus.svg +13 -0
  6067. skills/ppt-master/templates/icons/tabler-filled/calculator.svg +13 -0
  6068. skills/ppt-master/templates/icons/tabler-filled/calendar-event.svg +13 -0
  6069. skills/ppt-master/templates/icons/tabler-filled/calendar-month.svg +16 -0
  6070. skills/ppt-master/templates/icons/tabler-filled/calendar-week.svg +18 -0
  6071. skills/ppt-master/templates/icons/tabler-filled/calendar.svg +14 -0
  6072. skills/ppt-master/templates/icons/tabler-filled/camera.svg +13 -0
  6073. skills/ppt-master/templates/icons/tabler-filled/campfire.svg +15 -0
  6074. skills/ppt-master/templates/icons/tabler-filled/candle.svg +14 -0
  6075. skills/ppt-master/templates/icons/tabler-filled/cannabis.svg +13 -0
  6076. skills/ppt-master/templates/icons/tabler-filled/capsule-horizontal.svg +13 -0
  6077. skills/ppt-master/templates/icons/tabler-filled/capsule.svg +13 -0
  6078. skills/ppt-master/templates/icons/tabler-filled/capture.svg +17 -0
  6079. skills/ppt-master/templates/icons/tabler-filled/car-4wd.svg +13 -0
  6080. skills/ppt-master/templates/icons/tabler-filled/car-crane.svg +13 -0
  6081. skills/ppt-master/templates/icons/tabler-filled/car-fan.svg +13 -0
  6082. skills/ppt-master/templates/icons/tabler-filled/car-suv.svg +13 -0
  6083. skills/ppt-master/templates/icons/tabler-filled/car.svg +13 -0
  6084. skills/ppt-master/templates/icons/tabler-filled/carambola.svg +13 -0
  6085. skills/ppt-master/templates/icons/tabler-filled/caravan.svg +13 -0
  6086. skills/ppt-master/templates/icons/tabler-filled/cardboards.svg +13 -0
  6087. skills/ppt-master/templates/icons/tabler-filled/cards.svg +15 -0
  6088. skills/ppt-master/templates/icons/tabler-filled/caret-down.svg +13 -0
  6089. skills/ppt-master/templates/icons/tabler-filled/caret-left-right.svg +14 -0
  6090. skills/ppt-master/templates/icons/tabler-filled/caret-left.svg +13 -0
  6091. skills/ppt-master/templates/icons/tabler-filled/caret-right.svg +13 -0
  6092. skills/ppt-master/templates/icons/tabler-filled/caret-up-down.svg +14 -0
  6093. skills/ppt-master/templates/icons/tabler-filled/caret-up.svg +13 -0
  6094. skills/ppt-master/templates/icons/tabler-filled/carousel-horizontal.svg +15 -0
  6095. skills/ppt-master/templates/icons/tabler-filled/carousel-vertical.svg +15 -0
  6096. skills/ppt-master/templates/icons/tabler-filled/cash-banknote.svg +13 -0
  6097. skills/ppt-master/templates/icons/tabler-filled/category.svg +16 -0
  6098. skills/ppt-master/templates/icons/tabler-filled/charging-pile.svg +13 -0
  6099. skills/ppt-master/templates/icons/tabler-filled/chart-area-line.svg +14 -0
  6100. skills/ppt-master/templates/icons/tabler-filled/chart-area.svg +14 -0
  6101. skills/ppt-master/templates/icons/tabler-filled/chart-bubble.svg +15 -0
  6102. skills/ppt-master/templates/icons/tabler-filled/chart-candle.svg +15 -0
  6103. skills/ppt-master/templates/icons/tabler-filled/chart-donut.svg +13 -0
  6104. skills/ppt-master/templates/icons/tabler-filled/chart-dots-2.svg +13 -0
  6105. skills/ppt-master/templates/icons/tabler-filled/chart-dots-3.svg +13 -0
  6106. skills/ppt-master/templates/icons/tabler-filled/chart-dots.svg +14 -0
  6107. skills/ppt-master/templates/icons/tabler-filled/chart-funnel.svg +13 -0
  6108. skills/ppt-master/templates/icons/tabler-filled/chart-grid-dots.svg +13 -0
  6109. skills/ppt-master/templates/icons/tabler-filled/chart-pie-2.svg +13 -0
  6110. skills/ppt-master/templates/icons/tabler-filled/chart-pie-3.svg +13 -0
  6111. skills/ppt-master/templates/icons/tabler-filled/chart-pie-4.svg +13 -0
  6112. skills/ppt-master/templates/icons/tabler-filled/chart-pie.svg +14 -0
  6113. skills/ppt-master/templates/icons/tabler-filled/check.svg +13 -0
  6114. skills/ppt-master/templates/icons/tabler-filled/chef-hat.svg +14 -0
  6115. skills/ppt-master/templates/icons/tabler-filled/cherry.svg +13 -0
  6116. skills/ppt-master/templates/icons/tabler-filled/chess-bishop.svg +15 -0
  6117. skills/ppt-master/templates/icons/tabler-filled/chess-king.svg +14 -0
  6118. skills/ppt-master/templates/icons/tabler-filled/chess-knight.svg +14 -0
  6119. skills/ppt-master/templates/icons/tabler-filled/chess-queen.svg +14 -0
  6120. skills/ppt-master/templates/icons/tabler-filled/chess-rook.svg +14 -0
  6121. skills/ppt-master/templates/icons/tabler-filled/chess.svg +14 -0
  6122. skills/ppt-master/templates/icons/tabler-filled/chevron-down.svg +13 -0
  6123. skills/ppt-master/templates/icons/tabler-filled/chevron-right.svg +13 -0
  6124. skills/ppt-master/templates/icons/tabler-filled/christmas-tree.svg +13 -0
  6125. skills/ppt-master/templates/icons/tabler-filled/circle-arrow-down-left.svg +13 -0
  6126. skills/ppt-master/templates/icons/tabler-filled/circle-arrow-down-right.svg +13 -0
  6127. skills/ppt-master/templates/icons/tabler-filled/circle-arrow-down.svg +13 -0
  6128. skills/ppt-master/templates/icons/tabler-filled/circle-arrow-left.svg +13 -0
  6129. skills/ppt-master/templates/icons/tabler-filled/circle-arrow-right.svg +13 -0
  6130. skills/ppt-master/templates/icons/tabler-filled/circle-arrow-up-left.svg +13 -0
  6131. skills/ppt-master/templates/icons/tabler-filled/circle-arrow-up-right.svg +13 -0
  6132. skills/ppt-master/templates/icons/tabler-filled/circle-arrow-up.svg +13 -0
  6133. skills/ppt-master/templates/icons/tabler-filled/circle-caret-down.svg +13 -0
  6134. skills/ppt-master/templates/icons/tabler-filled/circle-caret-left.svg +13 -0
  6135. skills/ppt-master/templates/icons/tabler-filled/circle-caret-right.svg +13 -0
  6136. skills/ppt-master/templates/icons/tabler-filled/circle-caret-up.svg +13 -0
  6137. skills/ppt-master/templates/icons/tabler-filled/circle-check.svg +13 -0
  6138. skills/ppt-master/templates/icons/tabler-filled/circle-chevron-down.svg +13 -0
  6139. skills/ppt-master/templates/icons/tabler-filled/circle-chevron-left.svg +13 -0
  6140. skills/ppt-master/templates/icons/tabler-filled/circle-chevron-right.svg +13 -0
  6141. skills/ppt-master/templates/icons/tabler-filled/circle-chevron-up.svg +13 -0
  6142. skills/ppt-master/templates/icons/tabler-filled/circle-chevrons-down.svg +13 -0
  6143. skills/ppt-master/templates/icons/tabler-filled/circle-chevrons-left.svg +13 -0
  6144. skills/ppt-master/templates/icons/tabler-filled/circle-chevrons-right.svg +13 -0
  6145. skills/ppt-master/templates/icons/tabler-filled/circle-chevrons-up.svg +13 -0
  6146. skills/ppt-master/templates/icons/tabler-filled/circle-dot.svg +13 -0
  6147. skills/ppt-master/templates/icons/tabler-filled/circle-key.svg +13 -0
  6148. skills/ppt-master/templates/icons/tabler-filled/circle-letter-a.svg +13 -0
  6149. skills/ppt-master/templates/icons/tabler-filled/circle-letter-b.svg +13 -0
  6150. skills/ppt-master/templates/icons/tabler-filled/circle-letter-c.svg +13 -0
  6151. skills/ppt-master/templates/icons/tabler-filled/circle-letter-d.svg +13 -0
  6152. skills/ppt-master/templates/icons/tabler-filled/circle-letter-e.svg +13 -0
  6153. skills/ppt-master/templates/icons/tabler-filled/circle-letter-f.svg +13 -0
  6154. skills/ppt-master/templates/icons/tabler-filled/circle-letter-g.svg +13 -0
  6155. skills/ppt-master/templates/icons/tabler-filled/circle-letter-h.svg +13 -0
  6156. skills/ppt-master/templates/icons/tabler-filled/circle-letter-i.svg +13 -0
  6157. skills/ppt-master/templates/icons/tabler-filled/circle-letter-j.svg +13 -0
  6158. skills/ppt-master/templates/icons/tabler-filled/circle-letter-k.svg +13 -0
  6159. skills/ppt-master/templates/icons/tabler-filled/circle-letter-l.svg +13 -0
  6160. skills/ppt-master/templates/icons/tabler-filled/circle-letter-m.svg +13 -0
  6161. skills/ppt-master/templates/icons/tabler-filled/circle-letter-n.svg +13 -0
  6162. skills/ppt-master/templates/icons/tabler-filled/circle-letter-o.svg +13 -0
  6163. skills/ppt-master/templates/icons/tabler-filled/circle-letter-p.svg +13 -0
  6164. skills/ppt-master/templates/icons/tabler-filled/circle-letter-q.svg +13 -0
  6165. skills/ppt-master/templates/icons/tabler-filled/circle-letter-r.svg +13 -0
  6166. skills/ppt-master/templates/icons/tabler-filled/circle-letter-s.svg +13 -0
  6167. skills/ppt-master/templates/icons/tabler-filled/circle-letter-t.svg +13 -0
  6168. skills/ppt-master/templates/icons/tabler-filled/circle-letter-u.svg +13 -0
  6169. skills/ppt-master/templates/icons/tabler-filled/circle-letter-v.svg +13 -0
  6170. skills/ppt-master/templates/icons/tabler-filled/circle-letter-w.svg +13 -0
  6171. skills/ppt-master/templates/icons/tabler-filled/circle-letter-x.svg +13 -0
  6172. skills/ppt-master/templates/icons/tabler-filled/circle-letter-y.svg +13 -0
  6173. skills/ppt-master/templates/icons/tabler-filled/circle-letter-z.svg +13 -0
  6174. skills/ppt-master/templates/icons/tabler-filled/circle-number-0.svg +13 -0
  6175. skills/ppt-master/templates/icons/tabler-filled/circle-number-1.svg +13 -0
  6176. skills/ppt-master/templates/icons/tabler-filled/circle-number-2.svg +13 -0
  6177. skills/ppt-master/templates/icons/tabler-filled/circle-number-3.svg +13 -0
  6178. skills/ppt-master/templates/icons/tabler-filled/circle-number-4.svg +13 -0
  6179. skills/ppt-master/templates/icons/tabler-filled/circle-number-5.svg +13 -0
  6180. skills/ppt-master/templates/icons/tabler-filled/circle-number-6.svg +13 -0
  6181. skills/ppt-master/templates/icons/tabler-filled/circle-number-7.svg +13 -0
  6182. skills/ppt-master/templates/icons/tabler-filled/circle-number-8.svg +13 -0
  6183. skills/ppt-master/templates/icons/tabler-filled/circle-number-9.svg +13 -0
  6184. skills/ppt-master/templates/icons/tabler-filled/circle-percentage.svg +13 -0
  6185. skills/ppt-master/templates/icons/tabler-filled/circle-plus.svg +13 -0
  6186. skills/ppt-master/templates/icons/tabler-filled/circle-rectangle.svg +13 -0
  6187. skills/ppt-master/templates/icons/tabler-filled/circle-x.svg +13 -0
  6188. skills/ppt-master/templates/icons/tabler-filled/circle.svg +13 -0
  6189. skills/ppt-master/templates/icons/tabler-filled/circles.svg +15 -0
  6190. skills/ppt-master/templates/icons/tabler-filled/click.svg +13 -0
  6191. skills/ppt-master/templates/icons/tabler-filled/clipboard-check.svg +13 -0
  6192. skills/ppt-master/templates/icons/tabler-filled/clipboard-data.svg +13 -0
  6193. skills/ppt-master/templates/icons/tabler-filled/clipboard-list.svg +13 -0
  6194. skills/ppt-master/templates/icons/tabler-filled/clipboard-plus.svg +13 -0
  6195. skills/ppt-master/templates/icons/tabler-filled/clipboard-smile.svg +13 -0
  6196. skills/ppt-master/templates/icons/tabler-filled/clipboard-text.svg +13 -0
  6197. skills/ppt-master/templates/icons/tabler-filled/clipboard-typography.svg +13 -0
  6198. skills/ppt-master/templates/icons/tabler-filled/clipboard-x.svg +13 -0
  6199. skills/ppt-master/templates/icons/tabler-filled/clipboard.svg +13 -0
  6200. skills/ppt-master/templates/icons/tabler-filled/clock-hour-1.svg +13 -0
  6201. skills/ppt-master/templates/icons/tabler-filled/clock-hour-10.svg +13 -0
  6202. skills/ppt-master/templates/icons/tabler-filled/clock-hour-11.svg +13 -0
  6203. skills/ppt-master/templates/icons/tabler-filled/clock-hour-12.svg +13 -0
  6204. skills/ppt-master/templates/icons/tabler-filled/clock-hour-2.svg +13 -0
  6205. skills/ppt-master/templates/icons/tabler-filled/clock-hour-3.svg +13 -0
  6206. skills/ppt-master/templates/icons/tabler-filled/clock-hour-4.svg +13 -0
  6207. skills/ppt-master/templates/icons/tabler-filled/clock-hour-5.svg +13 -0
  6208. skills/ppt-master/templates/icons/tabler-filled/clock-hour-6.svg +13 -0
  6209. skills/ppt-master/templates/icons/tabler-filled/clock-hour-7.svg +13 -0
  6210. skills/ppt-master/templates/icons/tabler-filled/clock-hour-8.svg +13 -0
  6211. skills/ppt-master/templates/icons/tabler-filled/clock-hour-9.svg +13 -0
  6212. skills/ppt-master/templates/icons/tabler-filled/clock.svg +13 -0
  6213. skills/ppt-master/templates/icons/tabler-filled/cloud-computing.svg +13 -0
  6214. skills/ppt-master/templates/icons/tabler-filled/cloud-data-connection.svg +13 -0
  6215. skills/ppt-master/templates/icons/tabler-filled/cloud.svg +13 -0
  6216. skills/ppt-master/templates/icons/tabler-filled/clover.svg +13 -0
  6217. skills/ppt-master/templates/icons/tabler-filled/clubs.svg +13 -0
  6218. skills/ppt-master/templates/icons/tabler-filled/code-circle-2.svg +13 -0
  6219. skills/ppt-master/templates/icons/tabler-filled/code-circle.svg +13 -0
  6220. skills/ppt-master/templates/icons/tabler-filled/coin-bitcoin.svg +13 -0
  6221. skills/ppt-master/templates/icons/tabler-filled/coin-euro.svg +13 -0
  6222. skills/ppt-master/templates/icons/tabler-filled/coin-monero.svg +13 -0
  6223. skills/ppt-master/templates/icons/tabler-filled/coin-pound.svg +13 -0
  6224. skills/ppt-master/templates/icons/tabler-filled/coin-rupee.svg +13 -0
  6225. skills/ppt-master/templates/icons/tabler-filled/coin-taka.svg +13 -0
  6226. skills/ppt-master/templates/icons/tabler-filled/coin-yen.svg +13 -0
  6227. skills/ppt-master/templates/icons/tabler-filled/coin-yuan.svg +13 -0
  6228. skills/ppt-master/templates/icons/tabler-filled/coin.svg +13 -0
  6229. skills/ppt-master/templates/icons/tabler-filled/columns-1.svg +13 -0
  6230. skills/ppt-master/templates/icons/tabler-filled/columns-2.svg +14 -0
  6231. skills/ppt-master/templates/icons/tabler-filled/columns-3.svg +15 -0
  6232. skills/ppt-master/templates/icons/tabler-filled/compass.svg +13 -0
  6233. skills/ppt-master/templates/icons/tabler-filled/cone-2.svg +13 -0
  6234. skills/ppt-master/templates/icons/tabler-filled/cone.svg +13 -0
  6235. skills/ppt-master/templates/icons/tabler-filled/confetti.svg +13 -0
  6236. skills/ppt-master/templates/icons/tabler-filled/container.svg +23 -0
  6237. skills/ppt-master/templates/icons/tabler-filled/contrast-2.svg +13 -0
  6238. skills/ppt-master/templates/icons/tabler-filled/contrast.svg +13 -0
  6239. skills/ppt-master/templates/icons/tabler-filled/cookie-man.svg +13 -0
  6240. skills/ppt-master/templates/icons/tabler-filled/cookie.svg +13 -0
  6241. skills/ppt-master/templates/icons/tabler-filled/copy-check.svg +13 -0
  6242. skills/ppt-master/templates/icons/tabler-filled/copy-minus.svg +13 -0
  6243. skills/ppt-master/templates/icons/tabler-filled/copy-plus.svg +13 -0
  6244. skills/ppt-master/templates/icons/tabler-filled/copy-x.svg +13 -0
  6245. skills/ppt-master/templates/icons/tabler-filled/copy.svg +14 -0
  6246. skills/ppt-master/templates/icons/tabler-filled/copyleft.svg +13 -0
  6247. skills/ppt-master/templates/icons/tabler-filled/copyright.svg +13 -0
  6248. skills/ppt-master/templates/icons/tabler-filled/credit-card.svg +13 -0
  6249. skills/ppt-master/templates/icons/tabler-filled/crop-1-1.svg +13 -0
  6250. skills/ppt-master/templates/icons/tabler-filled/crop-16-9.svg +13 -0
  6251. skills/ppt-master/templates/icons/tabler-filled/crop-3-2.svg +13 -0
  6252. skills/ppt-master/templates/icons/tabler-filled/crop-5-4.svg +13 -0
  6253. skills/ppt-master/templates/icons/tabler-filled/crop-7-5.svg +13 -0
  6254. skills/ppt-master/templates/icons/tabler-filled/crop-landscape.svg +13 -0
  6255. skills/ppt-master/templates/icons/tabler-filled/crop-portrait.svg +13 -0
  6256. skills/ppt-master/templates/icons/tabler-filled/cross.svg +13 -0
  6257. skills/ppt-master/templates/icons/tabler-filled/crown.svg +13 -0
  6258. skills/ppt-master/templates/icons/tabler-filled/current-location.svg +13 -0
  6259. skills/ppt-master/templates/icons/tabler-filled/dashboard.svg +13 -0
  6260. skills/ppt-master/templates/icons/tabler-filled/database.svg +15 -0
  6261. skills/ppt-master/templates/icons/tabler-filled/device-cctv.svg +13 -0
  6262. skills/ppt-master/templates/icons/tabler-filled/device-desktop.svg +13 -0
  6263. skills/ppt-master/templates/icons/tabler-filled/device-floppy.svg +13 -0
  6264. skills/ppt-master/templates/icons/tabler-filled/device-gamepad-2.svg +13 -0
  6265. skills/ppt-master/templates/icons/tabler-filled/device-gamepad-3.svg +13 -0
  6266. skills/ppt-master/templates/icons/tabler-filled/device-gamepad.svg +13 -0
  6267. skills/ppt-master/templates/icons/tabler-filled/device-heart-monitor.svg +13 -0
  6268. skills/ppt-master/templates/icons/tabler-filled/device-imac.svg +13 -0
  6269. skills/ppt-master/templates/icons/tabler-filled/device-ipad.svg +13 -0
  6270. skills/ppt-master/templates/icons/tabler-filled/device-mobile.svg +13 -0
  6271. skills/ppt-master/templates/icons/tabler-filled/device-remote.svg +13 -0
  6272. skills/ppt-master/templates/icons/tabler-filled/device-speaker.svg +13 -0
  6273. skills/ppt-master/templates/icons/tabler-filled/device-tablet.svg +13 -0
  6274. skills/ppt-master/templates/icons/tabler-filled/device-tv-old.svg +15 -0
  6275. skills/ppt-master/templates/icons/tabler-filled/device-tv.svg +13 -0
  6276. skills/ppt-master/templates/icons/tabler-filled/device-unknown.svg +13 -0
  6277. skills/ppt-master/templates/icons/tabler-filled/device-usb.svg +13 -0
  6278. skills/ppt-master/templates/icons/tabler-filled/device-vision-pro.svg +13 -0
  6279. skills/ppt-master/templates/icons/tabler-filled/device-watch.svg +13 -0
  6280. skills/ppt-master/templates/icons/tabler-filled/dialpad.svg +19 -0
  6281. skills/ppt-master/templates/icons/tabler-filled/diamond.svg +13 -0
  6282. skills/ppt-master/templates/icons/tabler-filled/diamonds.svg +13 -0
  6283. skills/ppt-master/templates/icons/tabler-filled/dice-1.svg +13 -0
  6284. skills/ppt-master/templates/icons/tabler-filled/dice-2.svg +13 -0
  6285. skills/ppt-master/templates/icons/tabler-filled/dice-3.svg +13 -0
  6286. skills/ppt-master/templates/icons/tabler-filled/dice-4.svg +13 -0
  6287. skills/ppt-master/templates/icons/tabler-filled/dice-5.svg +13 -0
  6288. skills/ppt-master/templates/icons/tabler-filled/dice-6.svg +13 -0
  6289. skills/ppt-master/templates/icons/tabler-filled/dice.svg +13 -0
  6290. skills/ppt-master/templates/icons/tabler-filled/direction-arrows.svg +13 -0
  6291. skills/ppt-master/templates/icons/tabler-filled/direction-sign.svg +13 -0
  6292. skills/ppt-master/templates/icons/tabler-filled/directions.svg +13 -0
  6293. skills/ppt-master/templates/icons/tabler-filled/disc.svg +13 -0
  6294. skills/ppt-master/templates/icons/tabler-filled/discount.svg +13 -0
  6295. skills/ppt-master/templates/icons/tabler-filled/dots-vertical.svg +15 -0
  6296. skills/ppt-master/templates/icons/tabler-filled/dots.svg +15 -0
  6297. skills/ppt-master/templates/icons/tabler-filled/download.svg +13 -0
  6298. skills/ppt-master/templates/icons/tabler-filled/drop-circle.svg +13 -0
  6299. skills/ppt-master/templates/icons/tabler-filled/droplet-half-2.svg +13 -0
  6300. skills/ppt-master/templates/icons/tabler-filled/droplet-half.svg +13 -0
  6301. skills/ppt-master/templates/icons/tabler-filled/droplet.svg +13 -0
  6302. skills/ppt-master/templates/icons/tabler-filled/droplets.svg +15 -0
  6303. skills/ppt-master/templates/icons/tabler-filled/dual-screen.svg +13 -0
  6304. skills/ppt-master/templates/icons/tabler-filled/dumpling.svg +13 -0
  6305. skills/ppt-master/templates/icons/tabler-filled/ease-in-control-point.svg +13 -0
  6306. skills/ppt-master/templates/icons/tabler-filled/ease-in-out-control-points.svg +14 -0
  6307. skills/ppt-master/templates/icons/tabler-filled/ease-out-control-point.svg +14 -0
  6308. skills/ppt-master/templates/icons/tabler-filled/edit.svg +14 -0
  6309. skills/ppt-master/templates/icons/tabler-filled/egg-cracked.svg +13 -0
  6310. skills/ppt-master/templates/icons/tabler-filled/egg-fried.svg +13 -0
  6311. skills/ppt-master/templates/icons/tabler-filled/egg.svg +13 -0
  6312. skills/ppt-master/templates/icons/tabler-filled/elevator.svg +13 -0
  6313. skills/ppt-master/templates/icons/tabler-filled/engine.svg +13 -0
  6314. skills/ppt-master/templates/icons/tabler-filled/escalator-down.svg +14 -0
  6315. skills/ppt-master/templates/icons/tabler-filled/escalator-up.svg +15 -0
  6316. skills/ppt-master/templates/icons/tabler-filled/escalator.svg +13 -0
  6317. skills/ppt-master/templates/icons/tabler-filled/exchange.svg +13 -0
  6318. skills/ppt-master/templates/icons/tabler-filled/exclamation-circle.svg +13 -0
  6319. skills/ppt-master/templates/icons/tabler-filled/explicit.svg +13 -0
  6320. skills/ppt-master/templates/icons/tabler-filled/exposure.svg +13 -0
  6321. skills/ppt-master/templates/icons/tabler-filled/external-link.svg +13 -0
  6322. skills/ppt-master/templates/icons/tabler-filled/eye-table.svg +13 -0
  6323. skills/ppt-master/templates/icons/tabler-filled/eye.svg +13 -0
  6324. skills/ppt-master/templates/icons/tabler-filled/eyeglass-2.svg +13 -0
  6325. skills/ppt-master/templates/icons/tabler-filled/eyeglass.svg +13 -0
  6326. skills/ppt-master/templates/icons/tabler-filled/face-mask.svg +13 -0
  6327. skills/ppt-master/templates/icons/tabler-filled/favicon.svg +14 -0
  6328. skills/ppt-master/templates/icons/tabler-filled/feather.svg +16 -0
  6329. skills/ppt-master/templates/icons/tabler-filled/fence.svg +17 -0
  6330. skills/ppt-master/templates/icons/tabler-filled/ferry.svg +13 -0
  6331. skills/ppt-master/templates/icons/tabler-filled/fidget-spinner.svg +13 -0
  6332. skills/ppt-master/templates/icons/tabler-filled/file-analytics.svg +14 -0
  6333. skills/ppt-master/templates/icons/tabler-filled/file-check.svg +13 -0
  6334. skills/ppt-master/templates/icons/tabler-filled/file-code-2.svg +13 -0
  6335. skills/ppt-master/templates/icons/tabler-filled/file-code.svg +14 -0
  6336. skills/ppt-master/templates/icons/tabler-filled/file-cv.svg +13 -0
  6337. skills/ppt-master/templates/icons/tabler-filled/file-delta.svg +13 -0
  6338. skills/ppt-master/templates/icons/tabler-filled/file-description.svg +14 -0
  6339. skills/ppt-master/templates/icons/tabler-filled/file-diff.svg +14 -0
  6340. skills/ppt-master/templates/icons/tabler-filled/file-digit.svg +14 -0
  6341. skills/ppt-master/templates/icons/tabler-filled/file-dollar.svg +14 -0
  6342. skills/ppt-master/templates/icons/tabler-filled/file-dots.svg +14 -0
  6343. skills/ppt-master/templates/icons/tabler-filled/file-download.svg +13 -0
  6344. skills/ppt-master/templates/icons/tabler-filled/file-euro.svg +14 -0
  6345. skills/ppt-master/templates/icons/tabler-filled/file-function.svg +14 -0
  6346. skills/ppt-master/templates/icons/tabler-filled/file-horizontal.svg +14 -0
  6347. skills/ppt-master/templates/icons/tabler-filled/file-info.svg +14 -0
  6348. skills/ppt-master/templates/icons/tabler-filled/file-invoice.svg +14 -0
  6349. skills/ppt-master/templates/icons/tabler-filled/file-lambda.svg +13 -0
  6350. skills/ppt-master/templates/icons/tabler-filled/file-minus.svg +14 -0
  6351. skills/ppt-master/templates/icons/tabler-filled/file-music.svg +14 -0
  6352. skills/ppt-master/templates/icons/tabler-filled/file-neutral.svg +14 -0
  6353. skills/ppt-master/templates/icons/tabler-filled/file-pencil.svg +14 -0
  6354. skills/ppt-master/templates/icons/tabler-filled/file-percent.svg +13 -0
  6355. skills/ppt-master/templates/icons/tabler-filled/file-phone.svg +13 -0
  6356. skills/ppt-master/templates/icons/tabler-filled/file-power.svg +14 -0
  6357. skills/ppt-master/templates/icons/tabler-filled/file-rss.svg +13 -0
  6358. skills/ppt-master/templates/icons/tabler-filled/file-sad.svg +14 -0
  6359. skills/ppt-master/templates/icons/tabler-filled/file-scissors.svg +14 -0
  6360. skills/ppt-master/templates/icons/tabler-filled/file-settings.svg +14 -0
  6361. skills/ppt-master/templates/icons/tabler-filled/file-signal.svg +14 -0
  6362. skills/ppt-master/templates/icons/tabler-filled/file-smile.svg +14 -0
  6363. skills/ppt-master/templates/icons/tabler-filled/file-star.svg +14 -0
  6364. skills/ppt-master/templates/icons/tabler-filled/file-text.svg +14 -0
  6365. skills/ppt-master/templates/icons/tabler-filled/file-time.svg +14 -0
  6366. skills/ppt-master/templates/icons/tabler-filled/file-typography.svg +14 -0
  6367. skills/ppt-master/templates/icons/tabler-filled/file-unknown.svg +14 -0
  6368. skills/ppt-master/templates/icons/tabler-filled/file-upload.svg +14 -0
  6369. skills/ppt-master/templates/icons/tabler-filled/file-vector.svg +14 -0
  6370. skills/ppt-master/templates/icons/tabler-filled/file-x.svg +14 -0
  6371. skills/ppt-master/templates/icons/tabler-filled/file.svg +14 -0
  6372. skills/ppt-master/templates/icons/tabler-filled/files.svg +13 -0
  6373. skills/ppt-master/templates/icons/tabler-filled/filter.svg +13 -0
  6374. skills/ppt-master/templates/icons/tabler-filled/filters.svg +15 -0
  6375. skills/ppt-master/templates/icons/tabler-filled/fish-bone.svg +13 -0
  6376. skills/ppt-master/templates/icons/tabler-filled/flag-2.svg +13 -0
  6377. skills/ppt-master/templates/icons/tabler-filled/flag-3.svg +13 -0
  6378. skills/ppt-master/templates/icons/tabler-filled/flag.svg +13 -0
  6379. skills/ppt-master/templates/icons/tabler-filled/flame.svg +13 -0
  6380. skills/ppt-master/templates/icons/tabler-filled/flare.svg +13 -0
  6381. skills/ppt-master/templates/icons/tabler-filled/flask-2.svg +13 -0
  6382. skills/ppt-master/templates/icons/tabler-filled/flask.svg +13 -0
  6383. skills/ppt-master/templates/icons/tabler-filled/flower.svg +13 -0
  6384. skills/ppt-master/templates/icons/tabler-filled/folder-open.svg +13 -0
  6385. skills/ppt-master/templates/icons/tabler-filled/folder.svg +13 -0
  6386. skills/ppt-master/templates/icons/tabler-filled/folders.svg +13 -0
  6387. skills/ppt-master/templates/icons/tabler-filled/forbid-2.svg +13 -0
  6388. skills/ppt-master/templates/icons/tabler-filled/forbid.svg +13 -0
  6389. skills/ppt-master/templates/icons/tabler-filled/fountain.svg +13 -0
  6390. skills/ppt-master/templates/icons/tabler-filled/function.svg +13 -0
  6391. skills/ppt-master/templates/icons/tabler-filled/garden-cart.svg +13 -0
  6392. skills/ppt-master/templates/icons/tabler-filled/gas-station.svg +13 -0
  6393. skills/ppt-master/templates/icons/tabler-filled/gauge.svg +13 -0
  6394. skills/ppt-master/templates/icons/tabler-filled/ghost-2.svg +13 -0
  6395. skills/ppt-master/templates/icons/tabler-filled/ghost-3.svg +13 -0
  6396. skills/ppt-master/templates/icons/tabler-filled/ghost.svg +13 -0
  6397. skills/ppt-master/templates/icons/tabler-filled/gift-card.svg +13 -0
  6398. skills/ppt-master/templates/icons/tabler-filled/gift.svg +13 -0
  6399. skills/ppt-master/templates/icons/tabler-filled/glass-full.svg +13 -0
  6400. skills/ppt-master/templates/icons/tabler-filled/glass.svg +13 -0
  6401. skills/ppt-master/templates/icons/tabler-filled/globe.svg +16 -0
  6402. skills/ppt-master/templates/icons/tabler-filled/golf.svg +14 -0
  6403. skills/ppt-master/templates/icons/tabler-filled/gps.svg +13 -0
  6404. skills/ppt-master/templates/icons/tabler-filled/graph.svg +13 -0
  6405. skills/ppt-master/templates/icons/tabler-filled/grid-pattern.svg +13 -0
  6406. skills/ppt-master/templates/icons/tabler-filled/guitar-pick.svg +13 -0
  6407. skills/ppt-master/templates/icons/tabler-filled/hanger-2.svg +13 -0
  6408. skills/ppt-master/templates/icons/tabler-filled/headphones.svg +13 -0
  6409. skills/ppt-master/templates/icons/tabler-filled/headset.svg +13 -0
  6410. skills/ppt-master/templates/icons/tabler-filled/heart-broken.svg +13 -0
  6411. skills/ppt-master/templates/icons/tabler-filled/heart.svg +13 -0
  6412. skills/ppt-master/templates/icons/tabler-filled/helicopter-landing.svg +13 -0
  6413. skills/ppt-master/templates/icons/tabler-filled/helicopter.svg +13 -0
  6414. skills/ppt-master/templates/icons/tabler-filled/help-circle.svg +13 -0
  6415. skills/ppt-master/templates/icons/tabler-filled/help-hexagon.svg +13 -0
  6416. skills/ppt-master/templates/icons/tabler-filled/help-octagon.svg +13 -0
  6417. skills/ppt-master/templates/icons/tabler-filled/help-square-rounded.svg +13 -0
  6418. skills/ppt-master/templates/icons/tabler-filled/help-square.svg +13 -0
  6419. skills/ppt-master/templates/icons/tabler-filled/help-triangle.svg +13 -0
  6420. skills/ppt-master/templates/icons/tabler-filled/help.svg +13 -0
  6421. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-a.svg +13 -0
  6422. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-b.svg +13 -0
  6423. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-c.svg +13 -0
  6424. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-d.svg +13 -0
  6425. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-e.svg +13 -0
  6426. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-f.svg +13 -0
  6427. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-g.svg +13 -0
  6428. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-h.svg +13 -0
  6429. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-i.svg +13 -0
  6430. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-j.svg +13 -0
  6431. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-k.svg +13 -0
  6432. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-l.svg +13 -0
  6433. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-m.svg +13 -0
  6434. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-n.svg +13 -0
  6435. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-o.svg +13 -0
  6436. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-p.svg +13 -0
  6437. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-q.svg +13 -0
  6438. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-r.svg +13 -0
  6439. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-s.svg +13 -0
  6440. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-t.svg +13 -0
  6441. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-u.svg +13 -0
  6442. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-v.svg +13 -0
  6443. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-w.svg +13 -0
  6444. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-x.svg +13 -0
  6445. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-y.svg +13 -0
  6446. skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-z.svg +13 -0
  6447. skills/ppt-master/templates/icons/tabler-filled/hexagon-minus.svg +13 -0
  6448. skills/ppt-master/templates/icons/tabler-filled/hexagon-number-0.svg +13 -0
  6449. skills/ppt-master/templates/icons/tabler-filled/hexagon-number-1.svg +13 -0
  6450. skills/ppt-master/templates/icons/tabler-filled/hexagon-number-2.svg +13 -0
  6451. skills/ppt-master/templates/icons/tabler-filled/hexagon-number-3.svg +13 -0
  6452. skills/ppt-master/templates/icons/tabler-filled/hexagon-number-4.svg +13 -0
  6453. skills/ppt-master/templates/icons/tabler-filled/hexagon-number-5.svg +13 -0
  6454. skills/ppt-master/templates/icons/tabler-filled/hexagon-number-6.svg +13 -0
  6455. skills/ppt-master/templates/icons/tabler-filled/hexagon-number-7.svg +13 -0
  6456. skills/ppt-master/templates/icons/tabler-filled/hexagon-number-8.svg +13 -0
  6457. skills/ppt-master/templates/icons/tabler-filled/hexagon-number-9.svg +13 -0
  6458. skills/ppt-master/templates/icons/tabler-filled/hexagon-plus.svg +13 -0
  6459. skills/ppt-master/templates/icons/tabler-filled/hexagon.svg +13 -0
  6460. skills/ppt-master/templates/icons/tabler-filled/home-2.svg +13 -0
  6461. skills/ppt-master/templates/icons/tabler-filled/home.svg +13 -0
  6462. skills/ppt-master/templates/icons/tabler-filled/hospital-circle.svg +13 -0
  6463. skills/ppt-master/templates/icons/tabler-filled/hourglass.svg +13 -0
  6464. skills/ppt-master/templates/icons/tabler-filled/icons.svg +17 -0
  6465. skills/ppt-master/templates/icons/tabler-filled/id.svg +13 -0
  6466. skills/ppt-master/templates/icons/tabler-filled/info-circle.svg +13 -0
  6467. skills/ppt-master/templates/icons/tabler-filled/info-hexagon.svg +13 -0
  6468. skills/ppt-master/templates/icons/tabler-filled/info-octagon.svg +13 -0
  6469. skills/ppt-master/templates/icons/tabler-filled/info-square-rounded.svg +13 -0
  6470. skills/ppt-master/templates/icons/tabler-filled/info-square.svg +13 -0
  6471. skills/ppt-master/templates/icons/tabler-filled/info-triangle.svg +13 -0
  6472. skills/ppt-master/templates/icons/tabler-filled/inner-shadow-bottom-left.svg +13 -0
  6473. skills/ppt-master/templates/icons/tabler-filled/inner-shadow-bottom-right.svg +13 -0
  6474. skills/ppt-master/templates/icons/tabler-filled/inner-shadow-bottom.svg +13 -0
  6475. skills/ppt-master/templates/icons/tabler-filled/inner-shadow-left.svg +13 -0
  6476. skills/ppt-master/templates/icons/tabler-filled/inner-shadow-right.svg +13 -0
  6477. skills/ppt-master/templates/icons/tabler-filled/inner-shadow-top-left.svg +13 -0
  6478. skills/ppt-master/templates/icons/tabler-filled/inner-shadow-top-right.svg +13 -0
  6479. skills/ppt-master/templates/icons/tabler-filled/inner-shadow-top.svg +13 -0
  6480. skills/ppt-master/templates/icons/tabler-filled/ironing-1.svg +13 -0
  6481. skills/ppt-master/templates/icons/tabler-filled/ironing-2.svg +13 -0
  6482. skills/ppt-master/templates/icons/tabler-filled/ironing-3.svg +13 -0
  6483. skills/ppt-master/templates/icons/tabler-filled/ironing-steam.svg +16 -0
  6484. skills/ppt-master/templates/icons/tabler-filled/ironing.svg +13 -0
  6485. skills/ppt-master/templates/icons/tabler-filled/jetpack.svg +13 -0
  6486. skills/ppt-master/templates/icons/tabler-filled/jewish-star.svg +13 -0
  6487. skills/ppt-master/templates/icons/tabler-filled/key.svg +13 -0
  6488. skills/ppt-master/templates/icons/tabler-filled/keyboard.svg +13 -0
  6489. skills/ppt-master/templates/icons/tabler-filled/keyframe-align-center.svg +17 -0
  6490. skills/ppt-master/templates/icons/tabler-filled/keyframe-align-horizontal.svg +15 -0
  6491. skills/ppt-master/templates/icons/tabler-filled/keyframe-align-vertical.svg +15 -0
  6492. skills/ppt-master/templates/icons/tabler-filled/keyframe.svg +13 -0
  6493. skills/ppt-master/templates/icons/tabler-filled/keyframes.svg +15 -0
  6494. skills/ppt-master/templates/icons/tabler-filled/label-important.svg +13 -0
  6495. skills/ppt-master/templates/icons/tabler-filled/label.svg +13 -0
  6496. skills/ppt-master/templates/icons/tabler-filled/lasso-polygon.svg +13 -0
  6497. skills/ppt-master/templates/icons/tabler-filled/laurel-wreath-1.svg +13 -0
  6498. skills/ppt-master/templates/icons/tabler-filled/laurel-wreath-2.svg +13 -0
  6499. skills/ppt-master/templates/icons/tabler-filled/laurel-wreath-3.svg +13 -0
  6500. skills/ppt-master/templates/icons/tabler-filled/laurel-wreath.svg +13 -0
  6501. skills/ppt-master/templates/icons/tabler-filled/layout-2.svg +16 -0
  6502. skills/ppt-master/templates/icons/tabler-filled/layout-align-bottom.svg +14 -0
  6503. skills/ppt-master/templates/icons/tabler-filled/layout-align-center.svg +13 -0
  6504. skills/ppt-master/templates/icons/tabler-filled/layout-align-left.svg +14 -0
  6505. skills/ppt-master/templates/icons/tabler-filled/layout-align-middle.svg +13 -0
  6506. skills/ppt-master/templates/icons/tabler-filled/layout-align-right.svg +14 -0
  6507. skills/ppt-master/templates/icons/tabler-filled/layout-align-top.svg +14 -0
  6508. skills/ppt-master/templates/icons/tabler-filled/layout-board-split.svg +17 -0
  6509. skills/ppt-master/templates/icons/tabler-filled/layout-board.svg +16 -0
  6510. skills/ppt-master/templates/icons/tabler-filled/layout-bottombar-collapse.svg +13 -0
  6511. skills/ppt-master/templates/icons/tabler-filled/layout-bottombar-expand.svg +13 -0
  6512. skills/ppt-master/templates/icons/tabler-filled/layout-bottombar.svg +13 -0
  6513. skills/ppt-master/templates/icons/tabler-filled/layout-cards.svg +14 -0
  6514. skills/ppt-master/templates/icons/tabler-filled/layout-dashboard.svg +13 -0
  6515. skills/ppt-master/templates/icons/tabler-filled/layout-distribute-horizontal.svg +15 -0
  6516. skills/ppt-master/templates/icons/tabler-filled/layout-distribute-vertical.svg +15 -0
  6517. skills/ppt-master/templates/icons/tabler-filled/layout-grid.svg +16 -0
  6518. skills/ppt-master/templates/icons/tabler-filled/layout-kanban.svg +16 -0
  6519. skills/ppt-master/templates/icons/tabler-filled/layout-list.svg +14 -0
  6520. skills/ppt-master/templates/icons/tabler-filled/layout-navbar-collapse.svg +13 -0
  6521. skills/ppt-master/templates/icons/tabler-filled/layout-navbar-expand.svg +13 -0
  6522. skills/ppt-master/templates/icons/tabler-filled/layout-navbar.svg +13 -0
  6523. skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-left-collapse.svg +13 -0
  6524. skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-left-expand.svg +13 -0
  6525. skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-right-collapse.svg +13 -0
  6526. skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-right-expand.svg +13 -0
  6527. skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-right.svg +13 -0
  6528. skills/ppt-master/templates/icons/tabler-filled/layout-sidebar.svg +13 -0
  6529. skills/ppt-master/templates/icons/tabler-filled/layout.svg +15 -0
  6530. skills/ppt-master/templates/icons/tabler-filled/leaf.svg +13 -0
  6531. skills/ppt-master/templates/icons/tabler-filled/lego.svg +13 -0
  6532. skills/ppt-master/templates/icons/tabler-filled/lemon-2.svg +13 -0
  6533. skills/ppt-master/templates/icons/tabler-filled/library-plus.svg +14 -0
  6534. skills/ppt-master/templates/icons/tabler-filled/library.svg +14 -0
  6535. skills/ppt-master/templates/icons/tabler-filled/lifebuoy.svg +13 -0
  6536. skills/ppt-master/templates/icons/tabler-filled/link.svg +15 -0
  6537. skills/ppt-master/templates/icons/tabler-filled/list-check.svg +18 -0
  6538. skills/ppt-master/templates/icons/tabler-filled/list-details.svg +13 -0
  6539. skills/ppt-master/templates/icons/tabler-filled/list.svg +18 -0
  6540. skills/ppt-master/templates/icons/tabler-filled/live-photo.svg +13 -0
  6541. skills/ppt-master/templates/icons/tabler-filled/live-view.svg +17 -0
  6542. skills/ppt-master/templates/icons/tabler-filled/location.svg +13 -0
  6543. skills/ppt-master/templates/icons/tabler-filled/lock-square-rounded.svg +13 -0
  6544. skills/ppt-master/templates/icons/tabler-filled/lock.svg +13 -0
  6545. skills/ppt-master/templates/icons/tabler-filled/lungs.svg +13 -0
  6546. skills/ppt-master/templates/icons/tabler-filled/macro.svg +13 -0
  6547. skills/ppt-master/templates/icons/tabler-filled/magnet.svg +13 -0
  6548. skills/ppt-master/templates/icons/tabler-filled/mail-opened.svg +16 -0
  6549. skills/ppt-master/templates/icons/tabler-filled/mail.svg +14 -0
  6550. skills/ppt-master/templates/icons/tabler-filled/man.svg +14 -0
  6551. skills/ppt-master/templates/icons/tabler-filled/manual-gearbox.svg +13 -0
  6552. skills/ppt-master/templates/icons/tabler-filled/map-pin.svg +13 -0
  6553. skills/ppt-master/templates/icons/tabler-filled/medical-cross.svg +13 -0
  6554. skills/ppt-master/templates/icons/tabler-filled/meeple.svg +13 -0
  6555. skills/ppt-master/templates/icons/tabler-filled/melon.svg +13 -0
  6556. skills/ppt-master/templates/icons/tabler-filled/menu-2.svg +15 -0
  6557. skills/ppt-master/templates/icons/tabler-filled/message-2.svg +13 -0
  6558. skills/ppt-master/templates/icons/tabler-filled/message-chatbot.svg +13 -0
  6559. skills/ppt-master/templates/icons/tabler-filled/message-circle.svg +13 -0
  6560. skills/ppt-master/templates/icons/tabler-filled/message-report.svg +13 -0
  6561. skills/ppt-master/templates/icons/tabler-filled/message.svg +13 -0
  6562. skills/ppt-master/templates/icons/tabler-filled/messages.svg +14 -0
  6563. skills/ppt-master/templates/icons/tabler-filled/meteor.svg +13 -0
  6564. skills/ppt-master/templates/icons/tabler-filled/michelin-star.svg +13 -0
  6565. skills/ppt-master/templates/icons/tabler-filled/mickey.svg +13 -0
  6566. skills/ppt-master/templates/icons/tabler-filled/microphone.svg +13 -0
  6567. skills/ppt-master/templates/icons/tabler-filled/microscope.svg +13 -0
  6568. skills/ppt-master/templates/icons/tabler-filled/microwave.svg +15 -0
  6569. skills/ppt-master/templates/icons/tabler-filled/military-rank.svg +13 -0
  6570. skills/ppt-master/templates/icons/tabler-filled/milk.svg +13 -0
  6571. skills/ppt-master/templates/icons/tabler-filled/mood-angry.svg +13 -0
  6572. skills/ppt-master/templates/icons/tabler-filled/mood-confuzed.svg +13 -0
  6573. skills/ppt-master/templates/icons/tabler-filled/mood-crazy-happy.svg +13 -0
  6574. skills/ppt-master/templates/icons/tabler-filled/mood-empty.svg +13 -0
  6575. skills/ppt-master/templates/icons/tabler-filled/mood-happy.svg +13 -0
  6576. skills/ppt-master/templates/icons/tabler-filled/mood-kid.svg +13 -0
  6577. skills/ppt-master/templates/icons/tabler-filled/mood-neutral.svg +13 -0
  6578. skills/ppt-master/templates/icons/tabler-filled/mood-sad.svg +13 -0
  6579. skills/ppt-master/templates/icons/tabler-filled/mood-smile.svg +13 -0
  6580. skills/ppt-master/templates/icons/tabler-filled/mood-wrrr.svg +13 -0
  6581. skills/ppt-master/templates/icons/tabler-filled/moon.svg +13 -0
  6582. skills/ppt-master/templates/icons/tabler-filled/motorbike.svg +13 -0
  6583. skills/ppt-master/templates/icons/tabler-filled/mountain.svg +13 -0
  6584. skills/ppt-master/templates/icons/tabler-filled/mouse.svg +13 -0
  6585. skills/ppt-master/templates/icons/tabler-filled/mug.svg +13 -0
  6586. skills/ppt-master/templates/icons/tabler-filled/mushroom.svg +13 -0
  6587. skills/ppt-master/templates/icons/tabler-filled/navigation.svg +13 -0
  6588. skills/ppt-master/templates/icons/tabler-filled/nurse.svg +13 -0
  6589. skills/ppt-master/templates/icons/tabler-filled/octagon-minus.svg +13 -0
  6590. skills/ppt-master/templates/icons/tabler-filled/octagon-plus.svg +13 -0
  6591. skills/ppt-master/templates/icons/tabler-filled/octagon.svg +13 -0
  6592. skills/ppt-master/templates/icons/tabler-filled/oval-vertical.svg +13 -0
  6593. skills/ppt-master/templates/icons/tabler-filled/oval.svg +13 -0
  6594. skills/ppt-master/templates/icons/tabler-filled/pacman.svg +13 -0
  6595. skills/ppt-master/templates/icons/tabler-filled/paint.svg +13 -0
  6596. skills/ppt-master/templates/icons/tabler-filled/palette.svg +13 -0
  6597. skills/ppt-master/templates/icons/tabler-filled/panorama-horizontal.svg +13 -0
  6598. skills/ppt-master/templates/icons/tabler-filled/panorama-vertical.svg +13 -0
  6599. skills/ppt-master/templates/icons/tabler-filled/parking-circle.svg +13 -0
  6600. skills/ppt-master/templates/icons/tabler-filled/paw.svg +17 -0
  6601. skills/ppt-master/templates/icons/tabler-filled/pencil.svg +13 -0
  6602. skills/ppt-master/templates/icons/tabler-filled/pennant-2.svg +13 -0
  6603. skills/ppt-master/templates/icons/tabler-filled/pennant.svg +13 -0
  6604. skills/ppt-master/templates/icons/tabler-filled/pentagon.svg +13 -0
  6605. skills/ppt-master/templates/icons/tabler-filled/phone-call.svg +15 -0
  6606. skills/ppt-master/templates/icons/tabler-filled/phone-calling.svg +16 -0
  6607. skills/ppt-master/templates/icons/tabler-filled/phone-check.svg +14 -0
  6608. skills/ppt-master/templates/icons/tabler-filled/phone-x.svg +14 -0
  6609. skills/ppt-master/templates/icons/tabler-filled/phone.svg +13 -0
  6610. skills/ppt-master/templates/icons/tabler-filled/photo.svg +13 -0
  6611. skills/ppt-master/templates/icons/tabler-filled/picture-in-picture-top.svg +14 -0
  6612. skills/ppt-master/templates/icons/tabler-filled/picture-in-picture.svg +14 -0
  6613. skills/ppt-master/templates/icons/tabler-filled/pig.svg +13 -0
  6614. skills/ppt-master/templates/icons/tabler-filled/pill.svg +13 -0
  6615. skills/ppt-master/templates/icons/tabler-filled/pin.svg +13 -0
  6616. skills/ppt-master/templates/icons/tabler-filled/pinned.svg +13 -0
  6617. skills/ppt-master/templates/icons/tabler-filled/pizza.svg +13 -0
  6618. skills/ppt-master/templates/icons/tabler-filled/plane-arrival.svg +14 -0
  6619. skills/ppt-master/templates/icons/tabler-filled/plane-departure.svg +14 -0
  6620. skills/ppt-master/templates/icons/tabler-filled/plane-tilt.svg +13 -0
  6621. skills/ppt-master/templates/icons/tabler-filled/plane.svg +13 -0
  6622. skills/ppt-master/templates/icons/tabler-filled/play-card-1.svg +13 -0
  6623. skills/ppt-master/templates/icons/tabler-filled/play-card-10.svg +13 -0
  6624. skills/ppt-master/templates/icons/tabler-filled/play-card-2.svg +13 -0
  6625. skills/ppt-master/templates/icons/tabler-filled/play-card-3.svg +13 -0
  6626. skills/ppt-master/templates/icons/tabler-filled/play-card-4.svg +13 -0
  6627. skills/ppt-master/templates/icons/tabler-filled/play-card-5.svg +13 -0
  6628. skills/ppt-master/templates/icons/tabler-filled/play-card-6.svg +13 -0
  6629. skills/ppt-master/templates/icons/tabler-filled/play-card-7.svg +13 -0
  6630. skills/ppt-master/templates/icons/tabler-filled/play-card-8.svg +13 -0
  6631. skills/ppt-master/templates/icons/tabler-filled/play-card-9.svg +13 -0
  6632. skills/ppt-master/templates/icons/tabler-filled/play-card-a.svg +13 -0
  6633. skills/ppt-master/templates/icons/tabler-filled/play-card-j.svg +13 -0
  6634. skills/ppt-master/templates/icons/tabler-filled/play-card-k.svg +13 -0
  6635. skills/ppt-master/templates/icons/tabler-filled/play-card-q.svg +13 -0
  6636. skills/ppt-master/templates/icons/tabler-filled/play-card-star.svg +13 -0
  6637. skills/ppt-master/templates/icons/tabler-filled/play-card.svg +13 -0
  6638. skills/ppt-master/templates/icons/tabler-filled/player-eject.svg +14 -0
  6639. skills/ppt-master/templates/icons/tabler-filled/player-pause.svg +14 -0
  6640. skills/ppt-master/templates/icons/tabler-filled/player-play.svg +13 -0
  6641. skills/ppt-master/templates/icons/tabler-filled/player-record.svg +13 -0
  6642. skills/ppt-master/templates/icons/tabler-filled/player-skip-back.svg +14 -0
  6643. skills/ppt-master/templates/icons/tabler-filled/player-skip-forward.svg +14 -0
  6644. skills/ppt-master/templates/icons/tabler-filled/player-stop.svg +13 -0
  6645. skills/ppt-master/templates/icons/tabler-filled/player-track-next.svg +14 -0
  6646. skills/ppt-master/templates/icons/tabler-filled/player-track-prev.svg +14 -0
  6647. skills/ppt-master/templates/icons/tabler-filled/playlist.svg +16 -0
  6648. skills/ppt-master/templates/icons/tabler-filled/plus.svg +13 -0
  6649. skills/ppt-master/templates/icons/tabler-filled/point.svg +13 -0
  6650. skills/ppt-master/templates/icons/tabler-filled/pointer.svg +13 -0
  6651. skills/ppt-master/templates/icons/tabler-filled/polaroid.svg +16 -0
  6652. skills/ppt-master/templates/icons/tabler-filled/poo.svg +13 -0
  6653. skills/ppt-master/templates/icons/tabler-filled/presentation-analytics.svg +13 -0
  6654. skills/ppt-master/templates/icons/tabler-filled/presentation.svg +13 -0
  6655. skills/ppt-master/templates/icons/tabler-filled/puzzle.svg +13 -0
  6656. skills/ppt-master/templates/icons/tabler-filled/quote.svg +14 -0
  6657. skills/ppt-master/templates/icons/tabler-filled/radar.svg +13 -0
  6658. skills/ppt-master/templates/icons/tabler-filled/radioactive.svg +15 -0
  6659. skills/ppt-master/templates/icons/tabler-filled/receipt-dollar.svg +13 -0
  6660. skills/ppt-master/templates/icons/tabler-filled/receipt-euro.svg +13 -0
  6661. skills/ppt-master/templates/icons/tabler-filled/receipt-pound.svg +13 -0
  6662. skills/ppt-master/templates/icons/tabler-filled/receipt-rupee.svg +13 -0
  6663. skills/ppt-master/templates/icons/tabler-filled/receipt-yen.svg +13 -0
  6664. skills/ppt-master/templates/icons/tabler-filled/receipt-yuan.svg +13 -0
  6665. skills/ppt-master/templates/icons/tabler-filled/receipt.svg +13 -0
  6666. skills/ppt-master/templates/icons/tabler-filled/rectangle-vertical.svg +13 -0
  6667. skills/ppt-master/templates/icons/tabler-filled/rectangle.svg +13 -0
  6668. skills/ppt-master/templates/icons/tabler-filled/registered.svg +13 -0
  6669. skills/ppt-master/templates/icons/tabler-filled/relation-many-to-many.svg +13 -0
  6670. skills/ppt-master/templates/icons/tabler-filled/relation-one-to-many.svg +13 -0
  6671. skills/ppt-master/templates/icons/tabler-filled/relation-one-to-one.svg +13 -0
  6672. skills/ppt-master/templates/icons/tabler-filled/replace.svg +16 -0
  6673. skills/ppt-master/templates/icons/tabler-filled/report-analytics.svg +13 -0
  6674. skills/ppt-master/templates/icons/tabler-filled/report-money.svg +13 -0
  6675. skills/ppt-master/templates/icons/tabler-filled/rollercoaster.svg +13 -0
  6676. skills/ppt-master/templates/icons/tabler-filled/rosette-discount-check.svg +13 -0
  6677. skills/ppt-master/templates/icons/tabler-filled/rosette-discount.svg +13 -0
  6678. skills/ppt-master/templates/icons/tabler-filled/rosette.svg +13 -0
  6679. skills/ppt-master/templates/icons/tabler-filled/salad.svg +13 -0
  6680. skills/ppt-master/templates/icons/tabler-filled/satellite.svg +13 -0
  6681. skills/ppt-master/templates/icons/tabler-filled/scale.svg +13 -0
  6682. skills/ppt-master/templates/icons/tabler-filled/school.svg +13 -0
  6683. skills/ppt-master/templates/icons/tabler-filled/scuba-diving-tank.svg +14 -0
  6684. skills/ppt-master/templates/icons/tabler-filled/search.svg +13 -0
  6685. skills/ppt-master/templates/icons/tabler-filled/section.svg +13 -0
  6686. skills/ppt-master/templates/icons/tabler-filled/seedling.svg +13 -0
  6687. skills/ppt-master/templates/icons/tabler-filled/send.svg +13 -0
  6688. skills/ppt-master/templates/icons/tabler-filled/settings.svg +13 -0
  6689. skills/ppt-master/templates/icons/tabler-filled/shield-check.svg +13 -0
  6690. skills/ppt-master/templates/icons/tabler-filled/shield-checkered.svg +13 -0
  6691. skills/ppt-master/templates/icons/tabler-filled/shield-half.svg +13 -0
  6692. skills/ppt-master/templates/icons/tabler-filled/shield-lock.svg +13 -0
  6693. skills/ppt-master/templates/icons/tabler-filled/shield.svg +13 -0
  6694. skills/ppt-master/templates/icons/tabler-filled/shirt.svg +13 -0
  6695. skills/ppt-master/templates/icons/tabler-filled/shopping-cart.svg +13 -0
  6696. skills/ppt-master/templates/icons/tabler-filled/sign-left.svg +13 -0
  6697. skills/ppt-master/templates/icons/tabler-filled/sign-right.svg +13 -0
  6698. skills/ppt-master/templates/icons/tabler-filled/sitemap.svg +16 -0
  6699. skills/ppt-master/templates/icons/tabler-filled/sort-ascending-2.svg +15 -0
  6700. skills/ppt-master/templates/icons/tabler-filled/sort-ascending-shapes.svg +13 -0
  6701. skills/ppt-master/templates/icons/tabler-filled/sort-descending-2.svg +15 -0
  6702. skills/ppt-master/templates/icons/tabler-filled/sort-descending-shapes.svg +13 -0
  6703. skills/ppt-master/templates/icons/tabler-filled/soup.svg +16 -0
  6704. skills/ppt-master/templates/icons/tabler-filled/spade.svg +13 -0
  6705. skills/ppt-master/templates/icons/tabler-filled/sparkles-2.svg +14 -0
  6706. skills/ppt-master/templates/icons/tabler-filled/sparkles.svg +15 -0
  6707. skills/ppt-master/templates/icons/tabler-filled/speedboat.svg +13 -0
  6708. skills/ppt-master/templates/icons/tabler-filled/spider.svg +13 -0
  6709. skills/ppt-master/templates/icons/tabler-filled/square-arrow-down.svg +13 -0
  6710. skills/ppt-master/templates/icons/tabler-filled/square-arrow-left.svg +13 -0
  6711. skills/ppt-master/templates/icons/tabler-filled/square-arrow-right.svg +13 -0
  6712. skills/ppt-master/templates/icons/tabler-filled/square-arrow-up.svg +13 -0
  6713. skills/ppt-master/templates/icons/tabler-filled/square-asterisk.svg +13 -0
  6714. skills/ppt-master/templates/icons/tabler-filled/square-check.svg +13 -0
  6715. skills/ppt-master/templates/icons/tabler-filled/square-chevron-down.svg +13 -0
  6716. skills/ppt-master/templates/icons/tabler-filled/square-chevron-left.svg +13 -0
  6717. skills/ppt-master/templates/icons/tabler-filled/square-chevron-right.svg +13 -0
  6718. skills/ppt-master/templates/icons/tabler-filled/square-chevron-up.svg +13 -0
  6719. skills/ppt-master/templates/icons/tabler-filled/square-chevrons-down.svg +13 -0
  6720. skills/ppt-master/templates/icons/tabler-filled/square-chevrons-left.svg +13 -0
  6721. skills/ppt-master/templates/icons/tabler-filled/square-chevrons-right.svg +13 -0
  6722. skills/ppt-master/templates/icons/tabler-filled/square-chevrons-up.svg +13 -0
  6723. skills/ppt-master/templates/icons/tabler-filled/square-dot.svg +13 -0
  6724. skills/ppt-master/templates/icons/tabler-filled/square-f0.svg +13 -0
  6725. skills/ppt-master/templates/icons/tabler-filled/square-f1.svg +13 -0
  6726. skills/ppt-master/templates/icons/tabler-filled/square-f2.svg +13 -0
  6727. skills/ppt-master/templates/icons/tabler-filled/square-f3.svg +13 -0
  6728. skills/ppt-master/templates/icons/tabler-filled/square-f4.svg +13 -0
  6729. skills/ppt-master/templates/icons/tabler-filled/square-f5.svg +13 -0
  6730. skills/ppt-master/templates/icons/tabler-filled/square-f6.svg +13 -0
  6731. skills/ppt-master/templates/icons/tabler-filled/square-f7.svg +13 -0
  6732. skills/ppt-master/templates/icons/tabler-filled/square-f8.svg +13 -0
  6733. skills/ppt-master/templates/icons/tabler-filled/square-f9.svg +13 -0
  6734. skills/ppt-master/templates/icons/tabler-filled/square-letter-a.svg +13 -0
  6735. skills/ppt-master/templates/icons/tabler-filled/square-letter-b.svg +13 -0
  6736. skills/ppt-master/templates/icons/tabler-filled/square-letter-c.svg +13 -0
  6737. skills/ppt-master/templates/icons/tabler-filled/square-letter-d.svg +13 -0
  6738. skills/ppt-master/templates/icons/tabler-filled/square-letter-e.svg +13 -0
  6739. skills/ppt-master/templates/icons/tabler-filled/square-letter-f.svg +13 -0
  6740. skills/ppt-master/templates/icons/tabler-filled/square-letter-g.svg +13 -0
  6741. skills/ppt-master/templates/icons/tabler-filled/square-letter-h.svg +13 -0
  6742. skills/ppt-master/templates/icons/tabler-filled/square-letter-i.svg +13 -0
  6743. skills/ppt-master/templates/icons/tabler-filled/square-letter-j.svg +13 -0
  6744. skills/ppt-master/templates/icons/tabler-filled/square-letter-k.svg +13 -0
  6745. skills/ppt-master/templates/icons/tabler-filled/square-letter-l.svg +13 -0
  6746. skills/ppt-master/templates/icons/tabler-filled/square-letter-m.svg +13 -0
  6747. skills/ppt-master/templates/icons/tabler-filled/square-letter-n.svg +13 -0
  6748. skills/ppt-master/templates/icons/tabler-filled/square-letter-o.svg +13 -0
  6749. skills/ppt-master/templates/icons/tabler-filled/square-letter-p.svg +13 -0
  6750. skills/ppt-master/templates/icons/tabler-filled/square-letter-q.svg +13 -0
  6751. skills/ppt-master/templates/icons/tabler-filled/square-letter-r.svg +13 -0
  6752. skills/ppt-master/templates/icons/tabler-filled/square-letter-s.svg +13 -0
  6753. skills/ppt-master/templates/icons/tabler-filled/square-letter-t.svg +13 -0
  6754. skills/ppt-master/templates/icons/tabler-filled/square-letter-u.svg +13 -0
  6755. skills/ppt-master/templates/icons/tabler-filled/square-letter-v.svg +13 -0
  6756. skills/ppt-master/templates/icons/tabler-filled/square-letter-w.svg +13 -0
  6757. skills/ppt-master/templates/icons/tabler-filled/square-letter-x.svg +13 -0
  6758. skills/ppt-master/templates/icons/tabler-filled/square-letter-y.svg +13 -0
  6759. skills/ppt-master/templates/icons/tabler-filled/square-letter-z.svg +13 -0
  6760. skills/ppt-master/templates/icons/tabler-filled/square-minus.svg +13 -0
  6761. skills/ppt-master/templates/icons/tabler-filled/square-number-0.svg +13 -0
  6762. skills/ppt-master/templates/icons/tabler-filled/square-number-1.svg +13 -0
  6763. skills/ppt-master/templates/icons/tabler-filled/square-number-2.svg +13 -0
  6764. skills/ppt-master/templates/icons/tabler-filled/square-number-3.svg +13 -0
  6765. skills/ppt-master/templates/icons/tabler-filled/square-number-4.svg +13 -0
  6766. skills/ppt-master/templates/icons/tabler-filled/square-number-5.svg +13 -0
  6767. skills/ppt-master/templates/icons/tabler-filled/square-number-6.svg +13 -0
  6768. skills/ppt-master/templates/icons/tabler-filled/square-number-7.svg +13 -0
  6769. skills/ppt-master/templates/icons/tabler-filled/square-number-8.svg +13 -0
  6770. skills/ppt-master/templates/icons/tabler-filled/square-number-9.svg +13 -0
  6771. skills/ppt-master/templates/icons/tabler-filled/square-rotated.svg +13 -0
  6772. skills/ppt-master/templates/icons/tabler-filled/square-rounded-arrow-down.svg +13 -0
  6773. skills/ppt-master/templates/icons/tabler-filled/square-rounded-arrow-left.svg +13 -0
  6774. skills/ppt-master/templates/icons/tabler-filled/square-rounded-arrow-right.svg +13 -0
  6775. skills/ppt-master/templates/icons/tabler-filled/square-rounded-arrow-up.svg +13 -0
  6776. skills/ppt-master/templates/icons/tabler-filled/square-rounded-check.svg +13 -0
  6777. skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevron-down.svg +13 -0
  6778. skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevron-left.svg +13 -0
  6779. skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevron-right.svg +13 -0
  6780. skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevron-up.svg +13 -0
  6781. skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevrons-down.svg +13 -0
  6782. skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevrons-left.svg +13 -0
  6783. skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevrons-right.svg +13 -0
  6784. skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevrons-up.svg +13 -0
  6785. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-a.svg +13 -0
  6786. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-b.svg +13 -0
  6787. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-c.svg +13 -0
  6788. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-d.svg +13 -0
  6789. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-e.svg +13 -0
  6790. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-f.svg +13 -0
  6791. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-g.svg +13 -0
  6792. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-h.svg +13 -0
  6793. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-i.svg +13 -0
  6794. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-j.svg +13 -0
  6795. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-k.svg +13 -0
  6796. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-l.svg +13 -0
  6797. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-m.svg +13 -0
  6798. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-n.svg +13 -0
  6799. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-o.svg +13 -0
  6800. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-p.svg +13 -0
  6801. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-q.svg +13 -0
  6802. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-r.svg +13 -0
  6803. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-s.svg +13 -0
  6804. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-t.svg +13 -0
  6805. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-u.svg +13 -0
  6806. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-v.svg +13 -0
  6807. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-w.svg +13 -0
  6808. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-x.svg +13 -0
  6809. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-y.svg +13 -0
  6810. skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-z.svg +13 -0
  6811. skills/ppt-master/templates/icons/tabler-filled/square-rounded-minus.svg +13 -0
  6812. skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-0.svg +13 -0
  6813. skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-1.svg +13 -0
  6814. skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-2.svg +13 -0
  6815. skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-3.svg +13 -0
  6816. skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-4.svg +13 -0
  6817. skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-5.svg +13 -0
  6818. skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-6.svg +13 -0
  6819. skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-7.svg +13 -0
  6820. skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-8.svg +13 -0
  6821. skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-9.svg +13 -0
  6822. skills/ppt-master/templates/icons/tabler-filled/square-rounded-plus.svg +13 -0
  6823. skills/ppt-master/templates/icons/tabler-filled/square-rounded-x.svg +13 -0
  6824. skills/ppt-master/templates/icons/tabler-filled/square-rounded.svg +13 -0
  6825. skills/ppt-master/templates/icons/tabler-filled/square-x.svg +13 -0
  6826. skills/ppt-master/templates/icons/tabler-filled/square.svg +13 -0
  6827. skills/ppt-master/templates/icons/tabler-filled/squares.svg +14 -0
  6828. skills/ppt-master/templates/icons/tabler-filled/stack-2.svg +13 -0
  6829. skills/ppt-master/templates/icons/tabler-filled/stack-3.svg +13 -0
  6830. skills/ppt-master/templates/icons/tabler-filled/stack.svg +13 -0
  6831. skills/ppt-master/templates/icons/tabler-filled/star-half.svg +13 -0
  6832. skills/ppt-master/templates/icons/tabler-filled/star.svg +13 -0
  6833. skills/ppt-master/templates/icons/tabler-filled/stars.svg +15 -0
  6834. skills/ppt-master/templates/icons/tabler-filled/steering-wheel.svg +13 -0
  6835. skills/ppt-master/templates/icons/tabler-filled/sun-high.svg +13 -0
  6836. skills/ppt-master/templates/icons/tabler-filled/sun-low.svg +13 -0
  6837. skills/ppt-master/templates/icons/tabler-filled/sun.svg +21 -0
  6838. skills/ppt-master/templates/icons/tabler-filled/sunglasses.svg +13 -0
  6839. skills/ppt-master/templates/icons/tabler-filled/sunrise.svg +20 -0
  6840. skills/ppt-master/templates/icons/tabler-filled/sunset-2.svg +21 -0
  6841. skills/ppt-master/templates/icons/tabler-filled/sunset.svg +19 -0
  6842. skills/ppt-master/templates/icons/tabler-filled/swipe-down.svg +13 -0
  6843. skills/ppt-master/templates/icons/tabler-filled/swipe-left.svg +13 -0
  6844. skills/ppt-master/templates/icons/tabler-filled/swipe-right.svg +13 -0
  6845. skills/ppt-master/templates/icons/tabler-filled/swipe-up.svg +13 -0
  6846. skills/ppt-master/templates/icons/tabler-filled/table.svg +16 -0
  6847. skills/ppt-master/templates/icons/tabler-filled/tag.svg +13 -0
  6848. skills/ppt-master/templates/icons/tabler-filled/tags.svg +14 -0
  6849. skills/ppt-master/templates/icons/tabler-filled/temperature-minus.svg +13 -0
  6850. skills/ppt-master/templates/icons/tabler-filled/temperature-plus.svg +13 -0
  6851. skills/ppt-master/templates/icons/tabler-filled/template.svg +17 -0
  6852. skills/ppt-master/templates/icons/tabler-filled/test-pipe-2.svg +13 -0
  6853. skills/ppt-master/templates/icons/tabler-filled/thumb-down.svg +14 -0
  6854. skills/ppt-master/templates/icons/tabler-filled/thumb-up.svg +14 -0
  6855. skills/ppt-master/templates/icons/tabler-filled/ticket.svg +13 -0
  6856. skills/ppt-master/templates/icons/tabler-filled/tilt-shift.svg +21 -0
  6857. skills/ppt-master/templates/icons/tabler-filled/timeline-event.svg +14 -0
  6858. skills/ppt-master/templates/icons/tabler-filled/toggle-left.svg +14 -0
  6859. skills/ppt-master/templates/icons/tabler-filled/toggle-right.svg +14 -0
  6860. skills/ppt-master/templates/icons/tabler-filled/tools-kitchen-2.svg +13 -0
  6861. skills/ppt-master/templates/icons/tabler-filled/train.svg +13 -0
  6862. skills/ppt-master/templates/icons/tabler-filled/transform.svg +16 -0
  6863. skills/ppt-master/templates/icons/tabler-filled/transition-bottom.svg +13 -0
  6864. skills/ppt-master/templates/icons/tabler-filled/transition-left.svg +13 -0
  6865. skills/ppt-master/templates/icons/tabler-filled/transition-right.svg +13 -0
  6866. skills/ppt-master/templates/icons/tabler-filled/transition-top.svg +13 -0
  6867. skills/ppt-master/templates/icons/tabler-filled/trash-x.svg +14 -0
  6868. skills/ppt-master/templates/icons/tabler-filled/trash.svg +14 -0
  6869. skills/ppt-master/templates/icons/tabler-filled/triangle-inverted.svg +13 -0
  6870. skills/ppt-master/templates/icons/tabler-filled/triangle-square-circle.svg +15 -0
  6871. skills/ppt-master/templates/icons/tabler-filled/triangle.svg +13 -0
  6872. skills/ppt-master/templates/icons/tabler-filled/trolley.svg +13 -0
  6873. skills/ppt-master/templates/icons/tabler-filled/trophy.svg +13 -0
  6874. skills/ppt-master/templates/icons/tabler-filled/truck.svg +13 -0
  6875. skills/ppt-master/templates/icons/tabler-filled/ufo.svg +13 -0
  6876. skills/ppt-master/templates/icons/tabler-filled/umbrella.svg +13 -0
  6877. skills/ppt-master/templates/icons/tabler-filled/user.svg +14 -0
  6878. skills/ppt-master/templates/icons/tabler-filled/versions.svg +15 -0
  6879. skills/ppt-master/templates/icons/tabler-filled/video-minus.svg +13 -0
  6880. skills/ppt-master/templates/icons/tabler-filled/video-plus.svg +13 -0
  6881. skills/ppt-master/templates/icons/tabler-filled/video.svg +14 -0
  6882. skills/ppt-master/templates/icons/tabler-filled/windmill.svg +13 -0
  6883. skills/ppt-master/templates/icons/tabler-filled/windsock.svg +13 -0
  6884. skills/ppt-master/templates/icons/tabler-filled/woman.svg +14 -0
  6885. skills/ppt-master/templates/icons/tabler-filled/world.svg +21 -0
  6886. skills/ppt-master/templates/icons/tabler-filled/writing-sign.svg +13 -0
  6887. skills/ppt-master/templates/icons/tabler-filled/writing.svg +13 -0
  6888. skills/ppt-master/templates/icons/tabler-filled/x.svg +13 -0
  6889. skills/ppt-master/templates/icons/tabler-filled/xbox-a.svg +13 -0
  6890. skills/ppt-master/templates/icons/tabler-filled/xbox-b.svg +13 -0
  6891. skills/ppt-master/templates/icons/tabler-filled/xbox-x.svg +13 -0
  6892. skills/ppt-master/templates/icons/tabler-filled/xbox-y.svg +13 -0
  6893. skills/ppt-master/templates/icons/tabler-filled/yin-yang.svg +14 -0
  6894. skills/ppt-master/templates/icons/tabler-filled/zeppelin.svg +13 -0
  6895. skills/ppt-master/templates/icons/tabler-filled/zoom-cancel.svg +13 -0
  6896. skills/ppt-master/templates/icons/tabler-filled/zoom-check.svg +13 -0
  6897. skills/ppt-master/templates/icons/tabler-filled/zoom-code.svg +13 -0
  6898. skills/ppt-master/templates/icons/tabler-filled/zoom-exclamation.svg +13 -0
  6899. skills/ppt-master/templates/icons/tabler-filled/zoom-in-area.svg +18 -0
  6900. skills/ppt-master/templates/icons/tabler-filled/zoom-in.svg +13 -0
  6901. skills/ppt-master/templates/icons/tabler-filled/zoom-money.svg +13 -0
  6902. skills/ppt-master/templates/icons/tabler-filled/zoom-out-area.svg +13 -0
  6903. skills/ppt-master/templates/icons/tabler-filled/zoom-out.svg +13 -0
  6904. skills/ppt-master/templates/icons/tabler-filled/zoom-pan.svg +17 -0
  6905. skills/ppt-master/templates/icons/tabler-filled/zoom-question.svg +13 -0
  6906. skills/ppt-master/templates/icons/tabler-filled/zoom-scan.svg +17 -0
  6907. skills/ppt-master/templates/icons/tabler-filled/zoom.svg +13 -0
  6908. skills/ppt-master/templates/icons/tabler-outline/a-b-2.svg +23 -0
  6909. skills/ppt-master/templates/icons/tabler-outline/a-b-off.svg +23 -0
  6910. skills/ppt-master/templates/icons/tabler-outline/a-b.svg +21 -0
  6911. skills/ppt-master/templates/icons/tabler-outline/abacus-off.svg +30 -0
  6912. skills/ppt-master/templates/icons/tabler-outline/abacus.svg +29 -0
  6913. skills/ppt-master/templates/icons/tabler-outline/abc.svg +22 -0
  6914. skills/ppt-master/templates/icons/tabler-outline/access-point-off.svg +23 -0
  6915. skills/ppt-master/templates/icons/tabler-outline/access-point.svg +23 -0
  6916. skills/ppt-master/templates/icons/tabler-outline/accessible-off.svg +22 -0
  6917. skills/ppt-master/templates/icons/tabler-outline/accessible.svg +21 -0
  6918. skills/ppt-master/templates/icons/tabler-outline/activity-heartbeat.svg +19 -0
  6919. skills/ppt-master/templates/icons/tabler-outline/activity.svg +19 -0
  6920. skills/ppt-master/templates/icons/tabler-outline/ad-2.svg +24 -0
  6921. skills/ppt-master/templates/icons/tabler-outline/ad-circle-off.svg +26 -0
  6922. skills/ppt-master/templates/icons/tabler-outline/ad-circle.svg +22 -0
  6923. skills/ppt-master/templates/icons/tabler-outline/ad-off.svg +24 -0
  6924. skills/ppt-master/templates/icons/tabler-outline/ad.svg +22 -0
  6925. skills/ppt-master/templates/icons/tabler-outline/address-book-off.svg +25 -0
  6926. skills/ppt-master/templates/icons/tabler-outline/address-book.svg +24 -0
  6927. skills/ppt-master/templates/icons/tabler-outline/adjustments-alt.svg +27 -0
  6928. skills/ppt-master/templates/icons/tabler-outline/adjustments-bolt.svg +28 -0
  6929. skills/ppt-master/templates/icons/tabler-outline/adjustments-cancel.svg +29 -0
  6930. skills/ppt-master/templates/icons/tabler-outline/adjustments-check.svg +27 -0
  6931. skills/ppt-master/templates/icons/tabler-outline/adjustments-code.svg +29 -0
  6932. skills/ppt-master/templates/icons/tabler-outline/adjustments-cog.svg +34 -0
  6933. skills/ppt-master/templates/icons/tabler-outline/adjustments-dollar.svg +29 -0
  6934. skills/ppt-master/templates/icons/tabler-outline/adjustments-down.svg +29 -0
  6935. skills/ppt-master/templates/icons/tabler-outline/adjustments-exclamation.svg +29 -0
  6936. skills/ppt-master/templates/icons/tabler-outline/adjustments-heart.svg +26 -0
  6937. skills/ppt-master/templates/icons/tabler-outline/adjustments-horizontal.svg +27 -0
  6938. skills/ppt-master/templates/icons/tabler-outline/adjustments-minus.svg +28 -0
  6939. skills/ppt-master/templates/icons/tabler-outline/adjustments-off.svg +28 -0
  6940. skills/ppt-master/templates/icons/tabler-outline/adjustments-pause.svg +29 -0
  6941. skills/ppt-master/templates/icons/tabler-outline/adjustments-pin.svg +29 -0
  6942. skills/ppt-master/templates/icons/tabler-outline/adjustments-plus.svg +29 -0
  6943. skills/ppt-master/templates/icons/tabler-outline/adjustments-question.svg +29 -0
  6944. skills/ppt-master/templates/icons/tabler-outline/adjustments-search.svg +28 -0
  6945. skills/ppt-master/templates/icons/tabler-outline/adjustments-share.svg +29 -0
  6946. skills/ppt-master/templates/icons/tabler-outline/adjustments-spark.svg +27 -0
  6947. skills/ppt-master/templates/icons/tabler-outline/adjustments-star.svg +26 -0
  6948. skills/ppt-master/templates/icons/tabler-outline/adjustments-up.svg +29 -0
  6949. skills/ppt-master/templates/icons/tabler-outline/adjustments-x.svg +29 -0
  6950. skills/ppt-master/templates/icons/tabler-outline/adjustments.svg +27 -0
  6951. skills/ppt-master/templates/icons/tabler-outline/aerial-lift.svg +22 -0
  6952. skills/ppt-master/templates/icons/tabler-outline/affiliate.svg +24 -0
  6953. skills/ppt-master/templates/icons/tabler-outline/ai-agent.svg +28 -0
  6954. skills/ppt-master/templates/icons/tabler-outline/ai-agents.svg +27 -0
  6955. skills/ppt-master/templates/icons/tabler-outline/ai-gateway.svg +23 -0
  6956. skills/ppt-master/templates/icons/tabler-outline/ai.svg +21 -0
  6957. skills/ppt-master/templates/icons/tabler-outline/air-balloon.svg +21 -0
  6958. skills/ppt-master/templates/icons/tabler-outline/air-conditioning-disabled.svg +20 -0
  6959. skills/ppt-master/templates/icons/tabler-outline/air-conditioning.svg +23 -0
  6960. skills/ppt-master/templates/icons/tabler-outline/air-traffic-control.svg +23 -0
  6961. skills/ppt-master/templates/icons/tabler-outline/alarm-average.svg +22 -0
  6962. skills/ppt-master/templates/icons/tabler-outline/alarm-minus.svg +22 -0
  6963. skills/ppt-master/templates/icons/tabler-outline/alarm-off.svg +23 -0
  6964. skills/ppt-master/templates/icons/tabler-outline/alarm-plus.svg +23 -0
  6965. skills/ppt-master/templates/icons/tabler-outline/alarm-smoke.svg +23 -0
  6966. skills/ppt-master/templates/icons/tabler-outline/alarm-snooze.svg +22 -0
  6967. skills/ppt-master/templates/icons/tabler-outline/alarm.svg +22 -0
  6968. skills/ppt-master/templates/icons/tabler-outline/album-off.svg +21 -0
  6969. skills/ppt-master/templates/icons/tabler-outline/album.svg +20 -0
  6970. skills/ppt-master/templates/icons/tabler-outline/alert-circle-off.svg +22 -0
  6971. skills/ppt-master/templates/icons/tabler-outline/alert-circle.svg +21 -0
  6972. skills/ppt-master/templates/icons/tabler-outline/alert-hexagon-off.svg +23 -0
  6973. skills/ppt-master/templates/icons/tabler-outline/alert-hexagon.svg +21 -0
  6974. skills/ppt-master/templates/icons/tabler-outline/alert-octagon.svg +21 -0
  6975. skills/ppt-master/templates/icons/tabler-outline/alert-small-off.svg +21 -0
  6976. skills/ppt-master/templates/icons/tabler-outline/alert-small.svg +20 -0
  6977. skills/ppt-master/templates/icons/tabler-outline/alert-square-rounded-off.svg +22 -0
  6978. skills/ppt-master/templates/icons/tabler-outline/alert-square-rounded.svg +21 -0
  6979. skills/ppt-master/templates/icons/tabler-outline/alert-square.svg +21 -0
  6980. skills/ppt-master/templates/icons/tabler-outline/alert-triangle-off.svg +22 -0
  6981. skills/ppt-master/templates/icons/tabler-outline/alert-triangle.svg +21 -0
  6982. skills/ppt-master/templates/icons/tabler-outline/alien.svg +22 -0
  6983. skills/ppt-master/templates/icons/tabler-outline/align-box-bottom-center.svg +22 -0
  6984. skills/ppt-master/templates/icons/tabler-outline/align-box-bottom-left.svg +22 -0
  6985. skills/ppt-master/templates/icons/tabler-outline/align-box-bottom-right.svg +22 -0
  6986. skills/ppt-master/templates/icons/tabler-outline/align-box-center-bottom.svg +22 -0
  6987. skills/ppt-master/templates/icons/tabler-outline/align-box-center-middle.svg +22 -0
  6988. skills/ppt-master/templates/icons/tabler-outline/align-box-center-stretch.svg +22 -0
  6989. skills/ppt-master/templates/icons/tabler-outline/align-box-center-top.svg +22 -0
  6990. skills/ppt-master/templates/icons/tabler-outline/align-box-left-bottom.svg +22 -0
  6991. skills/ppt-master/templates/icons/tabler-outline/align-box-left-middle.svg +22 -0
  6992. skills/ppt-master/templates/icons/tabler-outline/align-box-left-stretch.svg +22 -0
  6993. skills/ppt-master/templates/icons/tabler-outline/align-box-left-top.svg +22 -0
  6994. skills/ppt-master/templates/icons/tabler-outline/align-box-right-bottom.svg +22 -0
  6995. skills/ppt-master/templates/icons/tabler-outline/align-box-right-middle.svg +22 -0
  6996. skills/ppt-master/templates/icons/tabler-outline/align-box-right-stretch.svg +22 -0
  6997. skills/ppt-master/templates/icons/tabler-outline/align-box-right-top.svg +22 -0
  6998. skills/ppt-master/templates/icons/tabler-outline/align-box-top-center.svg +22 -0
  6999. skills/ppt-master/templates/icons/tabler-outline/align-box-top-left.svg +22 -0
  7000. skills/ppt-master/templates/icons/tabler-outline/align-box-top-right.svg +22 -0
  7001. skills/ppt-master/templates/icons/tabler-outline/align-center.svg +21 -0
  7002. skills/ppt-master/templates/icons/tabler-outline/align-justified.svg +21 -0
  7003. skills/ppt-master/templates/icons/tabler-outline/align-left-2.svg +22 -0
  7004. skills/ppt-master/templates/icons/tabler-outline/align-left.svg +21 -0
  7005. skills/ppt-master/templates/icons/tabler-outline/align-right-2.svg +22 -0
  7006. skills/ppt-master/templates/icons/tabler-outline/align-right.svg +21 -0
  7007. skills/ppt-master/templates/icons/tabler-outline/alpha.svg +19 -0
  7008. skills/ppt-master/templates/icons/tabler-outline/alphabet-arabic.svg +22 -0
  7009. skills/ppt-master/templates/icons/tabler-outline/alphabet-bangla.svg +22 -0
  7010. skills/ppt-master/templates/icons/tabler-outline/alphabet-cyrillic.svg +20 -0
  7011. skills/ppt-master/templates/icons/tabler-outline/alphabet-greek.svg +21 -0
  7012. skills/ppt-master/templates/icons/tabler-outline/alphabet-hebrew.svg +21 -0
  7013. skills/ppt-master/templates/icons/tabler-outline/alphabet-korean.svg +21 -0
  7014. skills/ppt-master/templates/icons/tabler-outline/alphabet-latin.svg +21 -0
  7015. skills/ppt-master/templates/icons/tabler-outline/alphabet-polish.svg +22 -0
  7016. skills/ppt-master/templates/icons/tabler-outline/alphabet-runes.svg +21 -0
  7017. skills/ppt-master/templates/icons/tabler-outline/alphabet-thai.svg +19 -0
  7018. skills/ppt-master/templates/icons/tabler-outline/alt.svg +23 -0
  7019. skills/ppt-master/templates/icons/tabler-outline/ambulance.svg +22 -0
  7020. skills/ppt-master/templates/icons/tabler-outline/ampersand.svg +19 -0
  7021. skills/ppt-master/templates/icons/tabler-outline/analyze-off.svg +24 -0
  7022. skills/ppt-master/templates/icons/tabler-outline/analyze.svg +23 -0
  7023. skills/ppt-master/templates/icons/tabler-outline/anchor-off.svg +24 -0
  7024. skills/ppt-master/templates/icons/tabler-outline/anchor.svg +20 -0
  7025. skills/ppt-master/templates/icons/tabler-outline/angle.svg +23 -0
  7026. skills/ppt-master/templates/icons/tabler-outline/ankh.svg +20 -0
  7027. skills/ppt-master/templates/icons/tabler-outline/antenna-bars-1.svg +22 -0
  7028. skills/ppt-master/templates/icons/tabler-outline/antenna-bars-2.svg +22 -0
  7029. skills/ppt-master/templates/icons/tabler-outline/antenna-bars-3.svg +22 -0
  7030. skills/ppt-master/templates/icons/tabler-outline/antenna-bars-4.svg +22 -0
  7031. skills/ppt-master/templates/icons/tabler-outline/antenna-bars-5.svg +22 -0
  7032. skills/ppt-master/templates/icons/tabler-outline/antenna-bars-off.svg +24 -0
  7033. skills/ppt-master/templates/icons/tabler-outline/antenna-off.svg +25 -0
  7034. skills/ppt-master/templates/icons/tabler-outline/antenna.svg +24 -0
  7035. skills/ppt-master/templates/icons/tabler-outline/aperture-off.svg +25 -0
  7036. skills/ppt-master/templates/icons/tabler-outline/aperture.svg +24 -0
  7037. skills/ppt-master/templates/icons/tabler-outline/api-app-off.svg +23 -0
  7038. skills/ppt-master/templates/icons/tabler-outline/api-app.svg +22 -0
  7039. skills/ppt-master/templates/icons/tabler-outline/api-book.svg +30 -0
  7040. skills/ppt-master/templates/icons/tabler-outline/api-off.svg +23 -0
  7041. skills/ppt-master/templates/icons/tabler-outline/api.svg +22 -0
  7042. skills/ppt-master/templates/icons/tabler-outline/app-window.svg +21 -0
  7043. skills/ppt-master/templates/icons/tabler-outline/apple.svg +21 -0
  7044. skills/ppt-master/templates/icons/tabler-outline/apps-off.svg +24 -0
  7045. skills/ppt-master/templates/icons/tabler-outline/apps.svg +23 -0
  7046. skills/ppt-master/templates/icons/tabler-outline/archery-arrow.svg +21 -0
  7047. skills/ppt-master/templates/icons/tabler-outline/archive-off.svg +22 -0
  7048. skills/ppt-master/templates/icons/tabler-outline/archive.svg +21 -0
  7049. skills/ppt-master/templates/icons/tabler-outline/armchair-2-off.svg +24 -0
  7050. skills/ppt-master/templates/icons/tabler-outline/armchair-2.svg +23 -0
  7051. skills/ppt-master/templates/icons/tabler-outline/armchair-off.svg +23 -0
  7052. skills/ppt-master/templates/icons/tabler-outline/armchair.svg +22 -0
  7053. skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-content.svg +23 -0
  7054. skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-down.svg +21 -0
  7055. skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-height.svg +23 -0
  7056. skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-left.svg +21 -0
  7057. skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-right.svg +21 -0
  7058. skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-up.svg +21 -0
  7059. skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-width.svg +23 -0
  7060. skills/ppt-master/templates/icons/tabler-outline/arrow-back-up-double.svg +21 -0
  7061. skills/ppt-master/templates/icons/tabler-outline/arrow-back-up.svg +20 -0
  7062. skills/ppt-master/templates/icons/tabler-outline/arrow-back.svg +19 -0
  7063. skills/ppt-master/templates/icons/tabler-outline/arrow-badge-down.svg +19 -0
  7064. skills/ppt-master/templates/icons/tabler-outline/arrow-badge-left.svg +19 -0
  7065. skills/ppt-master/templates/icons/tabler-outline/arrow-badge-right.svg +19 -0
  7066. skills/ppt-master/templates/icons/tabler-outline/arrow-badge-up.svg +19 -0
  7067. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-both.svg +23 -0
  7068. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-down.svg +22 -0
  7069. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-left.svg +22 -0
  7070. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-right.svg +22 -0
  7071. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-down-dashed.svg +22 -0
  7072. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-down.svg +22 -0
  7073. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-left-dashed.svg +22 -0
  7074. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-left.svg +22 -0
  7075. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-right-dashed.svg +22 -0
  7076. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-right.svg +22 -0
  7077. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-up-dashed.svg +22 -0
  7078. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-up.svg +22 -0
  7079. skills/ppt-master/templates/icons/tabler-outline/arrow-bar-up.svg +22 -0
  7080. skills/ppt-master/templates/icons/tabler-outline/arrow-bear-left-2.svg +21 -0
  7081. skills/ppt-master/templates/icons/tabler-outline/arrow-bear-left.svg +20 -0
  7082. skills/ppt-master/templates/icons/tabler-outline/arrow-bear-right-2.svg +21 -0
  7083. skills/ppt-master/templates/icons/tabler-outline/arrow-bear-right.svg +20 -0
  7084. skills/ppt-master/templates/icons/tabler-outline/arrow-big-down-line.svg +20 -0
  7085. skills/ppt-master/templates/icons/tabler-outline/arrow-big-down-lines.svg +21 -0
  7086. skills/ppt-master/templates/icons/tabler-outline/arrow-big-down.svg +19 -0
  7087. skills/ppt-master/templates/icons/tabler-outline/arrow-big-left-line.svg +20 -0
  7088. skills/ppt-master/templates/icons/tabler-outline/arrow-big-left-lines.svg +21 -0
  7089. skills/ppt-master/templates/icons/tabler-outline/arrow-big-left.svg +19 -0
  7090. skills/ppt-master/templates/icons/tabler-outline/arrow-big-right-line.svg +20 -0
  7091. skills/ppt-master/templates/icons/tabler-outline/arrow-big-right-lines.svg +21 -0
  7092. skills/ppt-master/templates/icons/tabler-outline/arrow-big-right.svg +19 -0
  7093. skills/ppt-master/templates/icons/tabler-outline/arrow-big-up-line.svg +20 -0
  7094. skills/ppt-master/templates/icons/tabler-outline/arrow-big-up-lines.svg +21 -0
  7095. skills/ppt-master/templates/icons/tabler-outline/arrow-big-up.svg +19 -0
  7096. skills/ppt-master/templates/icons/tabler-outline/arrow-bounce.svg +21 -0
  7097. skills/ppt-master/templates/icons/tabler-outline/arrow-capsule.svg +20 -0
  7098. skills/ppt-master/templates/icons/tabler-outline/arrow-curve-left.svg +20 -0
  7099. skills/ppt-master/templates/icons/tabler-outline/arrow-curve-right.svg +20 -0
  7100. skills/ppt-master/templates/icons/tabler-outline/arrow-down-bar.svg +21 -0
  7101. skills/ppt-master/templates/icons/tabler-outline/arrow-down-circle.svg +21 -0
  7102. skills/ppt-master/templates/icons/tabler-outline/arrow-down-dashed.svg +21 -0
  7103. skills/ppt-master/templates/icons/tabler-outline/arrow-down-from-arc.svg +21 -0
  7104. skills/ppt-master/templates/icons/tabler-outline/arrow-down-left-circle.svg +21 -0
  7105. skills/ppt-master/templates/icons/tabler-outline/arrow-down-left.svg +20 -0
  7106. skills/ppt-master/templates/icons/tabler-outline/arrow-down-rhombus.svg +21 -0
  7107. skills/ppt-master/templates/icons/tabler-outline/arrow-down-right-circle.svg +21 -0
  7108. skills/ppt-master/templates/icons/tabler-outline/arrow-down-right.svg +20 -0
  7109. skills/ppt-master/templates/icons/tabler-outline/arrow-down-square.svg +21 -0
  7110. skills/ppt-master/templates/icons/tabler-outline/arrow-down-tail.svg +21 -0
  7111. skills/ppt-master/templates/icons/tabler-outline/arrow-down-to-arc.svg +21 -0
  7112. skills/ppt-master/templates/icons/tabler-outline/arrow-down.svg +21 -0
  7113. skills/ppt-master/templates/icons/tabler-outline/arrow-elbow-left.svg +20 -0
  7114. skills/ppt-master/templates/icons/tabler-outline/arrow-elbow-right.svg +20 -0
  7115. skills/ppt-master/templates/icons/tabler-outline/arrow-fork.svg +22 -0
  7116. skills/ppt-master/templates/icons/tabler-outline/arrow-forward-up-double.svg +21 -0
  7117. skills/ppt-master/templates/icons/tabler-outline/arrow-forward-up.svg +20 -0
  7118. skills/ppt-master/templates/icons/tabler-outline/arrow-forward.svg +19 -0
  7119. skills/ppt-master/templates/icons/tabler-outline/arrow-guide.svg +21 -0
  7120. skills/ppt-master/templates/icons/tabler-outline/arrow-iteration.svg +21 -0
  7121. skills/ppt-master/templates/icons/tabler-outline/arrow-left-bar.svg +21 -0
  7122. skills/ppt-master/templates/icons/tabler-outline/arrow-left-circle.svg +21 -0
  7123. skills/ppt-master/templates/icons/tabler-outline/arrow-left-dashed.svg +21 -0
  7124. skills/ppt-master/templates/icons/tabler-outline/arrow-left-from-arc.svg +21 -0
  7125. skills/ppt-master/templates/icons/tabler-outline/arrow-left-rhombus.svg +21 -0
  7126. skills/ppt-master/templates/icons/tabler-outline/arrow-left-right.svg +22 -0
  7127. skills/ppt-master/templates/icons/tabler-outline/arrow-left-square.svg +21 -0
  7128. skills/ppt-master/templates/icons/tabler-outline/arrow-left-tail.svg +21 -0
  7129. skills/ppt-master/templates/icons/tabler-outline/arrow-left-to-arc.svg +21 -0
  7130. skills/ppt-master/templates/icons/tabler-outline/arrow-left.svg +21 -0
  7131. skills/ppt-master/templates/icons/tabler-outline/arrow-loop-left-2.svg +20 -0
  7132. skills/ppt-master/templates/icons/tabler-outline/arrow-loop-left.svg +20 -0
  7133. skills/ppt-master/templates/icons/tabler-outline/arrow-loop-right-2.svg +20 -0
  7134. skills/ppt-master/templates/icons/tabler-outline/arrow-loop-right.svg +20 -0
  7135. skills/ppt-master/templates/icons/tabler-outline/arrow-merge-alt-left.svg +24 -0
  7136. skills/ppt-master/templates/icons/tabler-outline/arrow-merge-alt-right.svg +24 -0
  7137. skills/ppt-master/templates/icons/tabler-outline/arrow-merge-both.svg +22 -0
  7138. skills/ppt-master/templates/icons/tabler-outline/arrow-merge-left.svg +21 -0
  7139. skills/ppt-master/templates/icons/tabler-outline/arrow-merge-right.svg +21 -0
  7140. skills/ppt-master/templates/icons/tabler-outline/arrow-merge.svg +21 -0
  7141. skills/ppt-master/templates/icons/tabler-outline/arrow-move-down.svg +21 -0
  7142. skills/ppt-master/templates/icons/tabler-outline/arrow-move-left.svg +21 -0
  7143. skills/ppt-master/templates/icons/tabler-outline/arrow-move-right.svg +21 -0
  7144. skills/ppt-master/templates/icons/tabler-outline/arrow-move-up.svg +21 -0
  7145. skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-down-dashed.svg +21 -0
  7146. skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-down.svg +21 -0
  7147. skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-left-dashed.svg +21 -0
  7148. skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-left.svg +21 -0
  7149. skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-right-dashed.svg +21 -0
  7150. skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-right.svg +21 -0
  7151. skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-up-dashed.svg +21 -0
  7152. skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-up.svg +21 -0
  7153. skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-left-2.svg +21 -0
  7154. skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-left-3.svg +21 -0
  7155. skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-left.svg +22 -0
  7156. skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-right-2.svg +21 -0
  7157. skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-right-3.svg +21 -0
  7158. skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-right.svg +22 -0
  7159. skills/ppt-master/templates/icons/tabler-outline/arrow-right-bar.svg +21 -0
  7160. skills/ppt-master/templates/icons/tabler-outline/arrow-right-circle.svg +21 -0
  7161. skills/ppt-master/templates/icons/tabler-outline/arrow-right-dashed.svg +21 -0
  7162. skills/ppt-master/templates/icons/tabler-outline/arrow-right-from-arc.svg +21 -0
  7163. skills/ppt-master/templates/icons/tabler-outline/arrow-right-rhombus.svg +21 -0
  7164. skills/ppt-master/templates/icons/tabler-outline/arrow-right-square.svg +21 -0
  7165. skills/ppt-master/templates/icons/tabler-outline/arrow-right-tail.svg +21 -0
  7166. skills/ppt-master/templates/icons/tabler-outline/arrow-right-to-arc.svg +21 -0
  7167. skills/ppt-master/templates/icons/tabler-outline/arrow-right.svg +21 -0
  7168. skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-first-left.svg +22 -0
  7169. skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-first-right.svg +22 -0
  7170. skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-last-left.svg +22 -0
  7171. skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-last-right.svg +22 -0
  7172. skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-left.svg +22 -0
  7173. skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-right.svg +22 -0
  7174. skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-straight.svg +22 -0
  7175. skills/ppt-master/templates/icons/tabler-outline/arrow-roundabout-left.svg +20 -0
  7176. skills/ppt-master/templates/icons/tabler-outline/arrow-roundabout-right.svg +20 -0
  7177. skills/ppt-master/templates/icons/tabler-outline/arrow-sharp-turn-left.svg +20 -0
  7178. skills/ppt-master/templates/icons/tabler-outline/arrow-sharp-turn-right.svg +20 -0
  7179. skills/ppt-master/templates/icons/tabler-outline/arrow-up-bar.svg +21 -0
  7180. skills/ppt-master/templates/icons/tabler-outline/arrow-up-circle.svg +21 -0
  7181. skills/ppt-master/templates/icons/tabler-outline/arrow-up-dashed.svg +21 -0
  7182. skills/ppt-master/templates/icons/tabler-outline/arrow-up-from-arc.svg +21 -0
  7183. skills/ppt-master/templates/icons/tabler-outline/arrow-up-left-circle.svg +21 -0
  7184. skills/ppt-master/templates/icons/tabler-outline/arrow-up-left.svg +20 -0
  7185. skills/ppt-master/templates/icons/tabler-outline/arrow-up-rhombus.svg +21 -0
  7186. skills/ppt-master/templates/icons/tabler-outline/arrow-up-right-circle.svg +21 -0
  7187. skills/ppt-master/templates/icons/tabler-outline/arrow-up-right.svg +20 -0
  7188. skills/ppt-master/templates/icons/tabler-outline/arrow-up-square.svg +21 -0
  7189. skills/ppt-master/templates/icons/tabler-outline/arrow-up-tail.svg +21 -0
  7190. skills/ppt-master/templates/icons/tabler-outline/arrow-up-to-arc.svg +21 -0
  7191. skills/ppt-master/templates/icons/tabler-outline/arrow-up.svg +21 -0
  7192. skills/ppt-master/templates/icons/tabler-outline/arrow-wave-left-down.svg +20 -0
  7193. skills/ppt-master/templates/icons/tabler-outline/arrow-wave-left-up.svg +20 -0
  7194. skills/ppt-master/templates/icons/tabler-outline/arrow-wave-right-down.svg +20 -0
  7195. skills/ppt-master/templates/icons/tabler-outline/arrow-wave-right-up.svg +20 -0
  7196. skills/ppt-master/templates/icons/tabler-outline/arrow-zig-zag.svg +20 -0
  7197. skills/ppt-master/templates/icons/tabler-outline/arrows-cross.svg +23 -0
  7198. skills/ppt-master/templates/icons/tabler-outline/arrows-diagonal-2.svg +22 -0
  7199. skills/ppt-master/templates/icons/tabler-outline/arrows-diagonal-minimize-2.svg +22 -0
  7200. skills/ppt-master/templates/icons/tabler-outline/arrows-diagonal-minimize.svg +22 -0
  7201. skills/ppt-master/templates/icons/tabler-outline/arrows-diagonal.svg +22 -0
  7202. skills/ppt-master/templates/icons/tabler-outline/arrows-diff.svg +24 -0
  7203. skills/ppt-master/templates/icons/tabler-outline/arrows-double-ne-sw.svg +22 -0
  7204. skills/ppt-master/templates/icons/tabler-outline/arrows-double-nw-se.svg +22 -0
  7205. skills/ppt-master/templates/icons/tabler-outline/arrows-double-se-nw.svg +22 -0
  7206. skills/ppt-master/templates/icons/tabler-outline/arrows-double-sw-ne.svg +22 -0
  7207. skills/ppt-master/templates/icons/tabler-outline/arrows-down-up.svg +22 -0
  7208. skills/ppt-master/templates/icons/tabler-outline/arrows-down.svg +22 -0
  7209. skills/ppt-master/templates/icons/tabler-outline/arrows-exchange-2.svg +20 -0
  7210. skills/ppt-master/templates/icons/tabler-outline/arrows-exchange.svg +20 -0
  7211. skills/ppt-master/templates/icons/tabler-outline/arrows-horizontal.svg +21 -0
  7212. skills/ppt-master/templates/icons/tabler-outline/arrows-join-2.svg +21 -0
  7213. skills/ppt-master/templates/icons/tabler-outline/arrows-join.svg +21 -0
  7214. skills/ppt-master/templates/icons/tabler-outline/arrows-left-down.svg +21 -0
  7215. skills/ppt-master/templates/icons/tabler-outline/arrows-left-right.svg +22 -0
  7216. skills/ppt-master/templates/icons/tabler-outline/arrows-left.svg +22 -0
  7217. skills/ppt-master/templates/icons/tabler-outline/arrows-maximize.svg +26 -0
  7218. skills/ppt-master/templates/icons/tabler-outline/arrows-minimize.svg +26 -0
  7219. skills/ppt-master/templates/icons/tabler-outline/arrows-move-horizontal.svg +22 -0
  7220. skills/ppt-master/templates/icons/tabler-outline/arrows-move-vertical.svg +22 -0
  7221. skills/ppt-master/templates/icons/tabler-outline/arrows-move.svg +26 -0
  7222. skills/ppt-master/templates/icons/tabler-outline/arrows-random.svg +26 -0
  7223. skills/ppt-master/templates/icons/tabler-outline/arrows-right-down.svg +21 -0
  7224. skills/ppt-master/templates/icons/tabler-outline/arrows-right-left.svg +22 -0
  7225. skills/ppt-master/templates/icons/tabler-outline/arrows-right.svg +22 -0
  7226. skills/ppt-master/templates/icons/tabler-outline/arrows-shuffle-2.svg +22 -0
  7227. skills/ppt-master/templates/icons/tabler-outline/arrows-shuffle.svg +22 -0
  7228. skills/ppt-master/templates/icons/tabler-outline/arrows-sort.svg +20 -0
  7229. skills/ppt-master/templates/icons/tabler-outline/arrows-split-2.svg +22 -0
  7230. skills/ppt-master/templates/icons/tabler-outline/arrows-split.svg +22 -0
  7231. skills/ppt-master/templates/icons/tabler-outline/arrows-transfer-down.svg +24 -0
  7232. skills/ppt-master/templates/icons/tabler-outline/arrows-transfer-up-down.svg +26 -0
  7233. skills/ppt-master/templates/icons/tabler-outline/arrows-transfer-up.svg +24 -0
  7234. skills/ppt-master/templates/icons/tabler-outline/arrows-up-down.svg +22 -0
  7235. skills/ppt-master/templates/icons/tabler-outline/arrows-up-left.svg +21 -0
  7236. skills/ppt-master/templates/icons/tabler-outline/arrows-up-right.svg +21 -0
  7237. skills/ppt-master/templates/icons/tabler-outline/arrows-up.svg +22 -0
  7238. skills/ppt-master/templates/icons/tabler-outline/arrows-vertical.svg +21 -0
  7239. skills/ppt-master/templates/icons/tabler-outline/artboard-off.svg +29 -0
  7240. skills/ppt-master/templates/icons/tabler-outline/artboard.svg +27 -0
  7241. skills/ppt-master/templates/icons/tabler-outline/article-off.svg +23 -0
  7242. skills/ppt-master/templates/icons/tabler-outline/article.svg +22 -0
  7243. skills/ppt-master/templates/icons/tabler-outline/aspect-ratio-off.svg +22 -0
  7244. skills/ppt-master/templates/icons/tabler-outline/aspect-ratio.svg +21 -0
  7245. skills/ppt-master/templates/icons/tabler-outline/assembly-off.svg +21 -0
  7246. skills/ppt-master/templates/icons/tabler-outline/assembly.svg +20 -0
  7247. skills/ppt-master/templates/icons/tabler-outline/asset.svg +24 -0
  7248. skills/ppt-master/templates/icons/tabler-outline/asterisk-simple.svg +23 -0
  7249. skills/ppt-master/templates/icons/tabler-outline/asterisk.svg +24 -0
  7250. skills/ppt-master/templates/icons/tabler-outline/at-off.svg +21 -0
  7251. skills/ppt-master/templates/icons/tabler-outline/at.svg +20 -0
  7252. skills/ppt-master/templates/icons/tabler-outline/atom-2.svg +25 -0
  7253. skills/ppt-master/templates/icons/tabler-outline/atom-off.svg +22 -0
  7254. skills/ppt-master/templates/icons/tabler-outline/atom.svg +21 -0
  7255. skills/ppt-master/templates/icons/tabler-outline/augmented-reality-2.svg +23 -0
  7256. skills/ppt-master/templates/icons/tabler-outline/augmented-reality-off.svg +26 -0
  7257. skills/ppt-master/templates/icons/tabler-outline/augmented-reality.svg +25 -0
  7258. skills/ppt-master/templates/icons/tabler-outline/auth-2fa.svg +23 -0
  7259. skills/ppt-master/templates/icons/tabler-outline/automatic-gearbox.svg +23 -0
  7260. skills/ppt-master/templates/icons/tabler-outline/automation.svg +21 -0
  7261. skills/ppt-master/templates/icons/tabler-outline/avocado.svg +20 -0
  7262. skills/ppt-master/templates/icons/tabler-outline/award-off.svg +22 -0
  7263. skills/ppt-master/templates/icons/tabler-outline/award.svg +21 -0
  7264. skills/ppt-master/templates/icons/tabler-outline/axe.svg +20 -0
  7265. skills/ppt-master/templates/icons/tabler-outline/axis-x.svg +23 -0
  7266. skills/ppt-master/templates/icons/tabler-outline/axis-y.svg +23 -0
  7267. skills/ppt-master/templates/icons/tabler-outline/baby-bottle.svg +21 -0
  7268. skills/ppt-master/templates/icons/tabler-outline/baby-carriage.svg +24 -0
  7269. skills/ppt-master/templates/icons/tabler-outline/background.svg +23 -0
  7270. skills/ppt-master/templates/icons/tabler-outline/backhoe.svg +26 -0
  7271. skills/ppt-master/templates/icons/tabler-outline/backpack-off.svg +22 -0
  7272. skills/ppt-master/templates/icons/tabler-outline/backpack.svg +22 -0
  7273. skills/ppt-master/templates/icons/tabler-outline/backslash.svg +19 -0
  7274. skills/ppt-master/templates/icons/tabler-outline/backspace.svg +20 -0
  7275. skills/ppt-master/templates/icons/tabler-outline/badge-2k.svg +23 -0
  7276. skills/ppt-master/templates/icons/tabler-outline/badge-3d.svg +21 -0
  7277. skills/ppt-master/templates/icons/tabler-outline/badge-3k.svg +23 -0
  7278. skills/ppt-master/templates/icons/tabler-outline/badge-4k.svg +24 -0
  7279. skills/ppt-master/templates/icons/tabler-outline/badge-5k.svg +23 -0
  7280. skills/ppt-master/templates/icons/tabler-outline/badge-8k.svg +23 -0
  7281. skills/ppt-master/templates/icons/tabler-outline/badge-ad-off.svg +23 -0
  7282. skills/ppt-master/templates/icons/tabler-outline/badge-ad.svg +22 -0
  7283. skills/ppt-master/templates/icons/tabler-outline/badge-ar.svg +22 -0
  7284. skills/ppt-master/templates/icons/tabler-outline/badge-cc.svg +21 -0
  7285. skills/ppt-master/templates/icons/tabler-outline/badge-hd.svg +23 -0
  7286. skills/ppt-master/templates/icons/tabler-outline/badge-off.svg +20 -0
  7287. skills/ppt-master/templates/icons/tabler-outline/badge-sd.svg +21 -0
  7288. skills/ppt-master/templates/icons/tabler-outline/badge-tm.svg +22 -0
  7289. skills/ppt-master/templates/icons/tabler-outline/badge-vo.svg +21 -0
  7290. skills/ppt-master/templates/icons/tabler-outline/badge-vr.svg +21 -0
  7291. skills/ppt-master/templates/icons/tabler-outline/badge-wc.svg +21 -0
  7292. skills/ppt-master/templates/icons/tabler-outline/badge.svg +19 -0
  7293. skills/ppt-master/templates/icons/tabler-outline/badges-off.svg +21 -0
  7294. skills/ppt-master/templates/icons/tabler-outline/badges.svg +20 -0
  7295. skills/ppt-master/templates/icons/tabler-outline/baguette.svg +22 -0
  7296. skills/ppt-master/templates/icons/tabler-outline/ball-american-football-off.svg +24 -0
  7297. skills/ppt-master/templates/icons/tabler-outline/ball-american-football.svg +24 -0
  7298. skills/ppt-master/templates/icons/tabler-outline/ball-baseball.svg +27 -0
  7299. skills/ppt-master/templates/icons/tabler-outline/ball-basketball.svg +23 -0
  7300. skills/ppt-master/templates/icons/tabler-outline/ball-bowling.svg +22 -0
  7301. skills/ppt-master/templates/icons/tabler-outline/ball-football-off.svg +26 -0
  7302. skills/ppt-master/templates/icons/tabler-outline/ball-football.svg +21 -0
  7303. skills/ppt-master/templates/icons/tabler-outline/ball-tennis.svg +21 -0
  7304. skills/ppt-master/templates/icons/tabler-outline/ball-volleyball.svg +25 -0
  7305. skills/ppt-master/templates/icons/tabler-outline/balloon-off.svg +22 -0
  7306. skills/ppt-master/templates/icons/tabler-outline/balloon.svg +21 -0
  7307. skills/ppt-master/templates/icons/tabler-outline/ballpen-off.svg +23 -0
  7308. skills/ppt-master/templates/icons/tabler-outline/ballpen.svg +21 -0
  7309. skills/ppt-master/templates/icons/tabler-outline/ban.svg +20 -0
  7310. skills/ppt-master/templates/icons/tabler-outline/bandage-off.svg +22 -0
  7311. skills/ppt-master/templates/icons/tabler-outline/bandage.svg +23 -0
  7312. skills/ppt-master/templates/icons/tabler-outline/barbell-off.svg +26 -0
  7313. skills/ppt-master/templates/icons/tabler-outline/barbell.svg +25 -0
  7314. skills/ppt-master/templates/icons/tabler-outline/barcode-off.svg +27 -0
  7315. skills/ppt-master/templates/icons/tabler-outline/barcode.svg +26 -0
  7316. skills/ppt-master/templates/icons/tabler-outline/barrel-off.svg +24 -0
  7317. skills/ppt-master/templates/icons/tabler-outline/barrel.svg +23 -0
  7318. skills/ppt-master/templates/icons/tabler-outline/barrier-block-off.svg +31 -0
  7319. skills/ppt-master/templates/icons/tabler-outline/barrier-block.svg +28 -0
  7320. skills/ppt-master/templates/icons/tabler-outline/baseline-density-large.svg +20 -0
  7321. skills/ppt-master/templates/icons/tabler-outline/baseline-density-medium.svg +21 -0
  7322. skills/ppt-master/templates/icons/tabler-outline/baseline-density-small.svg +22 -0
  7323. skills/ppt-master/templates/icons/tabler-outline/baseline.svg +21 -0
  7324. skills/ppt-master/templates/icons/tabler-outline/basket-bolt.svg +23 -0
  7325. skills/ppt-master/templates/icons/tabler-outline/basket-cancel.svg +24 -0
  7326. skills/ppt-master/templates/icons/tabler-outline/basket-check.svg +23 -0
  7327. skills/ppt-master/templates/icons/tabler-outline/basket-code.svg +24 -0
  7328. skills/ppt-master/templates/icons/tabler-outline/basket-cog.svg +29 -0
  7329. skills/ppt-master/templates/icons/tabler-outline/basket-discount.svg +25 -0
  7330. skills/ppt-master/templates/icons/tabler-outline/basket-dollar.svg +24 -0
  7331. skills/ppt-master/templates/icons/tabler-outline/basket-down.svg +24 -0
  7332. skills/ppt-master/templates/icons/tabler-outline/basket-exclamation.svg +24 -0
  7333. skills/ppt-master/templates/icons/tabler-outline/basket-heart.svg +23 -0
  7334. skills/ppt-master/templates/icons/tabler-outline/basket-minus.svg +23 -0
  7335. skills/ppt-master/templates/icons/tabler-outline/basket-off.svg +23 -0
  7336. skills/ppt-master/templates/icons/tabler-outline/basket-pause.svg +24 -0
  7337. skills/ppt-master/templates/icons/tabler-outline/basket-pin.svg +24 -0
  7338. skills/ppt-master/templates/icons/tabler-outline/basket-plus.svg +24 -0
  7339. skills/ppt-master/templates/icons/tabler-outline/basket-question.svg +24 -0
  7340. skills/ppt-master/templates/icons/tabler-outline/basket-search.svg +24 -0
  7341. skills/ppt-master/templates/icons/tabler-outline/basket-share.svg +24 -0
  7342. skills/ppt-master/templates/icons/tabler-outline/basket-star.svg +23 -0
  7343. skills/ppt-master/templates/icons/tabler-outline/basket-up.svg +24 -0
  7344. skills/ppt-master/templates/icons/tabler-outline/basket-x.svg +24 -0
  7345. skills/ppt-master/templates/icons/tabler-outline/basket.svg +22 -0
  7346. skills/ppt-master/templates/icons/tabler-outline/bat.svg +20 -0
  7347. skills/ppt-master/templates/icons/tabler-outline/bath-off.svg +23 -0
  7348. skills/ppt-master/templates/icons/tabler-outline/bath.svg +22 -0
  7349. skills/ppt-master/templates/icons/tabler-outline/battery-1.svg +20 -0
  7350. skills/ppt-master/templates/icons/tabler-outline/battery-2.svg +21 -0
  7351. skills/ppt-master/templates/icons/tabler-outline/battery-3.svg +22 -0
  7352. skills/ppt-master/templates/icons/tabler-outline/battery-4.svg +23 -0
  7353. skills/ppt-master/templates/icons/tabler-outline/battery-automotive.svg +24 -0
  7354. skills/ppt-master/templates/icons/tabler-outline/battery-charging-2.svg +23 -0
  7355. skills/ppt-master/templates/icons/tabler-outline/battery-charging.svg +21 -0
  7356. skills/ppt-master/templates/icons/tabler-outline/battery-eco.svg +21 -0
  7357. skills/ppt-master/templates/icons/tabler-outline/battery-exclamation.svg +21 -0
  7358. skills/ppt-master/templates/icons/tabler-outline/battery-off.svg +20 -0
  7359. skills/ppt-master/templates/icons/tabler-outline/battery-spark.svg +20 -0
  7360. skills/ppt-master/templates/icons/tabler-outline/battery-vertical-1.svg +20 -0
  7361. skills/ppt-master/templates/icons/tabler-outline/battery-vertical-2.svg +21 -0
  7362. skills/ppt-master/templates/icons/tabler-outline/battery-vertical-3.svg +22 -0
  7363. skills/ppt-master/templates/icons/tabler-outline/battery-vertical-4.svg +23 -0
  7364. skills/ppt-master/templates/icons/tabler-outline/battery-vertical-charging-2.svg +23 -0
  7365. skills/ppt-master/templates/icons/tabler-outline/battery-vertical-charging.svg +20 -0
  7366. skills/ppt-master/templates/icons/tabler-outline/battery-vertical-eco.svg +21 -0
  7367. skills/ppt-master/templates/icons/tabler-outline/battery-vertical-exclamation.svg +21 -0
  7368. skills/ppt-master/templates/icons/tabler-outline/battery-vertical-off.svg +20 -0
  7369. skills/ppt-master/templates/icons/tabler-outline/battery-vertical.svg +19 -0
  7370. skills/ppt-master/templates/icons/tabler-outline/battery.svg +19 -0
  7371. skills/ppt-master/templates/icons/tabler-outline/beach-off.svg +25 -0
  7372. skills/ppt-master/templates/icons/tabler-outline/beach.svg +23 -0
  7373. skills/ppt-master/templates/icons/tabler-outline/bed-flat.svg +21 -0
  7374. skills/ppt-master/templates/icons/tabler-outline/bed-off.svg +23 -0
  7375. skills/ppt-master/templates/icons/tabler-outline/bed.svg +22 -0
  7376. skills/ppt-master/templates/icons/tabler-outline/beer-off.svg +21 -0
  7377. skills/ppt-master/templates/icons/tabler-outline/beer.svg +20 -0
  7378. skills/ppt-master/templates/icons/tabler-outline/bell-bolt.svg +21 -0
  7379. skills/ppt-master/templates/icons/tabler-outline/bell-cancel.svg +22 -0
  7380. skills/ppt-master/templates/icons/tabler-outline/bell-check.svg +21 -0
  7381. skills/ppt-master/templates/icons/tabler-outline/bell-code.svg +22 -0
  7382. skills/ppt-master/templates/icons/tabler-outline/bell-cog.svg +27 -0
  7383. skills/ppt-master/templates/icons/tabler-outline/bell-dollar.svg +22 -0
  7384. skills/ppt-master/templates/icons/tabler-outline/bell-down.svg +22 -0
  7385. skills/ppt-master/templates/icons/tabler-outline/bell-exclamation.svg +22 -0
  7386. skills/ppt-master/templates/icons/tabler-outline/bell-heart.svg +21 -0
  7387. skills/ppt-master/templates/icons/tabler-outline/bell-minus.svg +21 -0
  7388. skills/ppt-master/templates/icons/tabler-outline/bell-off.svg +21 -0
  7389. skills/ppt-master/templates/icons/tabler-outline/bell-pause.svg +22 -0
  7390. skills/ppt-master/templates/icons/tabler-outline/bell-pin.svg +22 -0
  7391. skills/ppt-master/templates/icons/tabler-outline/bell-plus.svg +22 -0
  7392. skills/ppt-master/templates/icons/tabler-outline/bell-question.svg +22 -0
  7393. skills/ppt-master/templates/icons/tabler-outline/bell-ringing-2.svg +20 -0
  7394. skills/ppt-master/templates/icons/tabler-outline/bell-ringing.svg +22 -0
  7395. skills/ppt-master/templates/icons/tabler-outline/bell-school.svg +23 -0
  7396. skills/ppt-master/templates/icons/tabler-outline/bell-search.svg +22 -0
  7397. skills/ppt-master/templates/icons/tabler-outline/bell-share.svg +22 -0
  7398. skills/ppt-master/templates/icons/tabler-outline/bell-star.svg +21 -0
  7399. skills/ppt-master/templates/icons/tabler-outline/bell-up.svg +22 -0
  7400. skills/ppt-master/templates/icons/tabler-outline/bell-x.svg +22 -0
  7401. skills/ppt-master/templates/icons/tabler-outline/bell-z.svg +21 -0
  7402. skills/ppt-master/templates/icons/tabler-outline/bell.svg +20 -0
  7403. skills/ppt-master/templates/icons/tabler-outline/beta.svg +19 -0
  7404. skills/ppt-master/templates/icons/tabler-outline/bible.svg +22 -0
  7405. skills/ppt-master/templates/icons/tabler-outline/bike-off.svg +23 -0
  7406. skills/ppt-master/templates/icons/tabler-outline/bike.svg +22 -0
  7407. skills/ppt-master/templates/icons/tabler-outline/binary-off.svg +25 -0
  7408. skills/ppt-master/templates/icons/tabler-outline/binary-tree-2.svg +25 -0
  7409. skills/ppt-master/templates/icons/tabler-outline/binary-tree.svg +27 -0
  7410. skills/ppt-master/templates/icons/tabler-outline/binary.svg +22 -0
  7411. skills/ppt-master/templates/icons/tabler-outline/binoculars.svg +25 -0
  7412. skills/ppt-master/templates/icons/tabler-outline/biohazard-off.svg +26 -0
  7413. skills/ppt-master/templates/icons/tabler-outline/biohazard.svg +20 -0
  7414. skills/ppt-master/templates/icons/tabler-outline/blade.svg +24 -0
  7415. skills/ppt-master/templates/icons/tabler-outline/bleach-chlorine.svg +21 -0
  7416. skills/ppt-master/templates/icons/tabler-outline/bleach-no-chlorine.svg +21 -0
  7417. skills/ppt-master/templates/icons/tabler-outline/bleach-off.svg +20 -0
  7418. skills/ppt-master/templates/icons/tabler-outline/bleach.svg +19 -0
  7419. skills/ppt-master/templates/icons/tabler-outline/blend-mode.svg +20 -0
  7420. skills/ppt-master/templates/icons/tabler-outline/blender.svg +23 -0
  7421. skills/ppt-master/templates/icons/tabler-outline/blind.svg +23 -0
  7422. skills/ppt-master/templates/icons/tabler-outline/blob.svg +19 -0
  7423. skills/ppt-master/templates/icons/tabler-outline/blockquote.svg +24 -0
  7424. skills/ppt-master/templates/icons/tabler-outline/blocks.svg +20 -0
  7425. skills/ppt-master/templates/icons/tabler-outline/bluetooth-connected.svg +21 -0
  7426. skills/ppt-master/templates/icons/tabler-outline/bluetooth-off.svg +20 -0
  7427. skills/ppt-master/templates/icons/tabler-outline/bluetooth-x.svg +21 -0
  7428. skills/ppt-master/templates/icons/tabler-outline/bluetooth.svg +19 -0
  7429. skills/ppt-master/templates/icons/tabler-outline/blur-off.svg +26 -0
  7430. skills/ppt-master/templates/icons/tabler-outline/blur.svg +25 -0
  7431. skills/ppt-master/templates/icons/tabler-outline/bmp.svg +21 -0
  7432. skills/ppt-master/templates/icons/tabler-outline/body-scan.svg +26 -0
  7433. skills/ppt-master/templates/icons/tabler-outline/bold-off.svg +21 -0
  7434. skills/ppt-master/templates/icons/tabler-outline/bold.svg +20 -0
  7435. skills/ppt-master/templates/icons/tabler-outline/bolt-off.svg +20 -0
  7436. skills/ppt-master/templates/icons/tabler-outline/bolt.svg +19 -0
  7437. skills/ppt-master/templates/icons/tabler-outline/bomb.svg +21 -0
  7438. skills/ppt-master/templates/icons/tabler-outline/bone-off.svg +20 -0
  7439. skills/ppt-master/templates/icons/tabler-outline/bone.svg +19 -0
  7440. skills/ppt-master/templates/icons/tabler-outline/bong-off.svg +22 -0
  7441. skills/ppt-master/templates/icons/tabler-outline/bong.svg +21 -0
  7442. skills/ppt-master/templates/icons/tabler-outline/book-2.svg +21 -0
  7443. skills/ppt-master/templates/icons/tabler-outline/book-download.svg +22 -0
  7444. skills/ppt-master/templates/icons/tabler-outline/book-off.svg +24 -0
  7445. skills/ppt-master/templates/icons/tabler-outline/book-upload.svg +22 -0
  7446. skills/ppt-master/templates/icons/tabler-outline/book.svg +23 -0
  7447. skills/ppt-master/templates/icons/tabler-outline/bookmark-ai.svg +22 -0
  7448. skills/ppt-master/templates/icons/tabler-outline/bookmark-edit.svg +20 -0
  7449. skills/ppt-master/templates/icons/tabler-outline/bookmark-minus.svg +20 -0
  7450. skills/ppt-master/templates/icons/tabler-outline/bookmark-off.svg +20 -0
  7451. skills/ppt-master/templates/icons/tabler-outline/bookmark-plus.svg +21 -0
  7452. skills/ppt-master/templates/icons/tabler-outline/bookmark-question.svg +21 -0
  7453. skills/ppt-master/templates/icons/tabler-outline/bookmark.svg +19 -0
  7454. skills/ppt-master/templates/icons/tabler-outline/bookmarks-off.svg +21 -0
  7455. skills/ppt-master/templates/icons/tabler-outline/bookmarks.svg +20 -0
  7456. skills/ppt-master/templates/icons/tabler-outline/books-off.svg +29 -0
  7457. skills/ppt-master/templates/icons/tabler-outline/books.svg +25 -0
  7458. skills/ppt-master/templates/icons/tabler-outline/boom.svg +19 -0
  7459. skills/ppt-master/templates/icons/tabler-outline/border-all.svg +21 -0
  7460. skills/ppt-master/templates/icons/tabler-outline/border-bottom-plus.svg +32 -0
  7461. skills/ppt-master/templates/icons/tabler-outline/border-bottom.svg +35 -0
  7462. skills/ppt-master/templates/icons/tabler-outline/border-corner-ios.svg +19 -0
  7463. skills/ppt-master/templates/icons/tabler-outline/border-corner-pill.svg +19 -0
  7464. skills/ppt-master/templates/icons/tabler-outline/border-corner-rounded.svg +19 -0
  7465. skills/ppt-master/templates/icons/tabler-outline/border-corner-square.svg +19 -0
  7466. skills/ppt-master/templates/icons/tabler-outline/border-corners.svg +22 -0
  7467. skills/ppt-master/templates/icons/tabler-outline/border-horizontal.svg +35 -0
  7468. skills/ppt-master/templates/icons/tabler-outline/border-inner.svg +32 -0
  7469. skills/ppt-master/templates/icons/tabler-outline/border-left-plus.svg +32 -0
  7470. skills/ppt-master/templates/icons/tabler-outline/border-left.svg +35 -0
  7471. skills/ppt-master/templates/icons/tabler-outline/border-none.svg +39 -0
  7472. skills/ppt-master/templates/icons/tabler-outline/border-outer.svg +24 -0
  7473. skills/ppt-master/templates/icons/tabler-outline/border-radius.svg +30 -0
  7474. skills/ppt-master/templates/icons/tabler-outline/border-right-plus.svg +32 -0
  7475. skills/ppt-master/templates/icons/tabler-outline/border-right.svg +35 -0
  7476. skills/ppt-master/templates/icons/tabler-outline/border-sides.svg +22 -0
  7477. skills/ppt-master/templates/icons/tabler-outline/border-style-2.svg +27 -0
  7478. skills/ppt-master/templates/icons/tabler-outline/border-style.svg +26 -0
  7479. skills/ppt-master/templates/icons/tabler-outline/border-top-plus.svg +32 -0
  7480. skills/ppt-master/templates/icons/tabler-outline/border-top.svg +35 -0
  7481. skills/ppt-master/templates/icons/tabler-outline/border-vertical.svg +35 -0
  7482. skills/ppt-master/templates/icons/tabler-outline/bot-id.svg +26 -0
  7483. skills/ppt-master/templates/icons/tabler-outline/bottle-off.svg +22 -0
  7484. skills/ppt-master/templates/icons/tabler-outline/bottle.svg +21 -0
  7485. skills/ppt-master/templates/icons/tabler-outline/bounce-left.svg +20 -0
  7486. skills/ppt-master/templates/icons/tabler-outline/bounce-right.svg +20 -0
  7487. skills/ppt-master/templates/icons/tabler-outline/bow.svg +22 -0
  7488. skills/ppt-master/templates/icons/tabler-outline/bowl-chopsticks.svg +21 -0
  7489. skills/ppt-master/templates/icons/tabler-outline/bowl-spoon.svg +21 -0
  7490. skills/ppt-master/templates/icons/tabler-outline/bowl.svg +19 -0
  7491. skills/ppt-master/templates/icons/tabler-outline/bowling.svg +24 -0
  7492. skills/ppt-master/templates/icons/tabler-outline/box-align-bottom-left.svg +28 -0
  7493. skills/ppt-master/templates/icons/tabler-outline/box-align-bottom-right.svg +28 -0
  7494. skills/ppt-master/templates/icons/tabler-outline/box-align-bottom.svg +25 -0
  7495. skills/ppt-master/templates/icons/tabler-outline/box-align-left.svg +25 -0
  7496. skills/ppt-master/templates/icons/tabler-outline/box-align-right.svg +25 -0
  7497. skills/ppt-master/templates/icons/tabler-outline/box-align-top-left.svg +28 -0
  7498. skills/ppt-master/templates/icons/tabler-outline/box-align-top-right.svg +28 -0
  7499. skills/ppt-master/templates/icons/tabler-outline/box-align-top.svg +25 -0
  7500. skills/ppt-master/templates/icons/tabler-outline/box-margin.svg +35 -0
  7501. skills/ppt-master/templates/icons/tabler-outline/box-model-2-off.svg +21 -0
  7502. skills/ppt-master/templates/icons/tabler-outline/box-model-2.svg +20 -0
  7503. skills/ppt-master/templates/icons/tabler-outline/box-model-off.svg +25 -0
  7504. skills/ppt-master/templates/icons/tabler-outline/box-model.svg +24 -0
  7505. skills/ppt-master/templates/icons/tabler-outline/box-multiple-0.svg +21 -0
  7506. skills/ppt-master/templates/icons/tabler-outline/box-multiple-1.svg +21 -0
  7507. skills/ppt-master/templates/icons/tabler-outline/box-multiple-2.svg +21 -0
  7508. skills/ppt-master/templates/icons/tabler-outline/box-multiple-3.svg +22 -0
  7509. skills/ppt-master/templates/icons/tabler-outline/box-multiple-4.svg +21 -0
  7510. skills/ppt-master/templates/icons/tabler-outline/box-multiple-5.svg +21 -0
  7511. skills/ppt-master/templates/icons/tabler-outline/box-multiple-6.svg +22 -0
  7512. skills/ppt-master/templates/icons/tabler-outline/box-multiple-7.svg +21 -0
  7513. skills/ppt-master/templates/icons/tabler-outline/box-multiple-8.svg +22 -0
  7514. skills/ppt-master/templates/icons/tabler-outline/box-multiple-9.svg +22 -0
  7515. skills/ppt-master/templates/icons/tabler-outline/box-multiple.svg +20 -0
  7516. skills/ppt-master/templates/icons/tabler-outline/box-off.svg +23 -0
  7517. skills/ppt-master/templates/icons/tabler-outline/box-padding.svg +27 -0
  7518. skills/ppt-master/templates/icons/tabler-outline/box.svg +22 -0
  7519. skills/ppt-master/templates/icons/tabler-outline/braces-off.svg +21 -0
  7520. skills/ppt-master/templates/icons/tabler-outline/braces.svg +20 -0
  7521. skills/ppt-master/templates/icons/tabler-outline/brackets-angle-off.svg +23 -0
  7522. skills/ppt-master/templates/icons/tabler-outline/brackets-angle.svg +20 -0
  7523. skills/ppt-master/templates/icons/tabler-outline/brackets-contain-end.svg +22 -0
  7524. skills/ppt-master/templates/icons/tabler-outline/brackets-contain-start.svg +22 -0
  7525. skills/ppt-master/templates/icons/tabler-outline/brackets-contain.svg +23 -0
  7526. skills/ppt-master/templates/icons/tabler-outline/brackets-off.svg +21 -0
  7527. skills/ppt-master/templates/icons/tabler-outline/brackets.svg +20 -0
  7528. skills/ppt-master/templates/icons/tabler-outline/braille.svg +24 -0
  7529. skills/ppt-master/templates/icons/tabler-outline/brain.svg +24 -0
  7530. skills/ppt-master/templates/icons/tabler-outline/brand-4chan.svg +23 -0
  7531. skills/ppt-master/templates/icons/tabler-outline/brand-abstract.svg +21 -0
  7532. skills/ppt-master/templates/icons/tabler-outline/brand-adobe-after-effect.svg +21 -0
  7533. skills/ppt-master/templates/icons/tabler-outline/brand-adobe-illustrator.svg +22 -0
  7534. skills/ppt-master/templates/icons/tabler-outline/brand-adobe-indesign.svg +22 -0
  7535. skills/ppt-master/templates/icons/tabler-outline/brand-adobe-photoshop.svg +21 -0
  7536. skills/ppt-master/templates/icons/tabler-outline/brand-adobe-premiere.svg +21 -0
  7537. skills/ppt-master/templates/icons/tabler-outline/brand-adobe-xd.svg +22 -0
  7538. skills/ppt-master/templates/icons/tabler-outline/brand-adobe.svg +19 -0
  7539. skills/ppt-master/templates/icons/tabler-outline/brand-adonis-js.svg +20 -0
  7540. skills/ppt-master/templates/icons/tabler-outline/brand-airbnb.svg +19 -0
  7541. skills/ppt-master/templates/icons/tabler-outline/brand-airtable.svg +21 -0
  7542. skills/ppt-master/templates/icons/tabler-outline/brand-algolia.svg +19 -0
  7543. skills/ppt-master/templates/icons/tabler-outline/brand-alipay.svg +22 -0
  7544. skills/ppt-master/templates/icons/tabler-outline/brand-alpine-js.svg +20 -0
  7545. skills/ppt-master/templates/icons/tabler-outline/brand-amazon.svg +20 -0
  7546. skills/ppt-master/templates/icons/tabler-outline/brand-amd.svg +20 -0
  7547. skills/ppt-master/templates/icons/tabler-outline/brand-amie.svg +20 -0
  7548. skills/ppt-master/templates/icons/tabler-outline/brand-amigo.svg +20 -0
  7549. skills/ppt-master/templates/icons/tabler-outline/brand-among-us.svg +21 -0
  7550. skills/ppt-master/templates/icons/tabler-outline/brand-android.svg +25 -0
  7551. skills/ppt-master/templates/icons/tabler-outline/brand-angular.svg +21 -0
  7552. skills/ppt-master/templates/icons/tabler-outline/brand-ansible.svg +20 -0
  7553. skills/ppt-master/templates/icons/tabler-outline/brand-ao3.svg +21 -0
  7554. skills/ppt-master/templates/icons/tabler-outline/brand-appgallery.svg +20 -0
  7555. skills/ppt-master/templates/icons/tabler-outline/brand-apple-arcade.svg +22 -0
  7556. skills/ppt-master/templates/icons/tabler-outline/brand-apple-news.svg +21 -0
  7557. skills/ppt-master/templates/icons/tabler-outline/brand-apple-podcast.svg +21 -0
  7558. skills/ppt-master/templates/icons/tabler-outline/brand-apple.svg +20 -0
  7559. skills/ppt-master/templates/icons/tabler-outline/brand-appstore.svg +22 -0
  7560. skills/ppt-master/templates/icons/tabler-outline/brand-arc.svg +22 -0
  7561. skills/ppt-master/templates/icons/tabler-outline/brand-asana.svg +21 -0
  7562. skills/ppt-master/templates/icons/tabler-outline/brand-astro.svg +20 -0
  7563. skills/ppt-master/templates/icons/tabler-outline/brand-auth0.svg +20 -0
  7564. skills/ppt-master/templates/icons/tabler-outline/brand-aws.svg +24 -0
  7565. skills/ppt-master/templates/icons/tabler-outline/brand-azure.svg +20 -0
  7566. skills/ppt-master/templates/icons/tabler-outline/brand-backbone.svg +20 -0
  7567. skills/ppt-master/templates/icons/tabler-outline/brand-badoo.svg +20 -0
  7568. skills/ppt-master/templates/icons/tabler-outline/brand-baidu.svg +23 -0
  7569. skills/ppt-master/templates/icons/tabler-outline/brand-bandcamp.svg +19 -0
  7570. skills/ppt-master/templates/icons/tabler-outline/brand-bandlab.svg +20 -0
  7571. skills/ppt-master/templates/icons/tabler-outline/brand-beats.svg +21 -0
  7572. skills/ppt-master/templates/icons/tabler-outline/brand-bebo.svg +19 -0
  7573. skills/ppt-master/templates/icons/tabler-outline/brand-behance.svg +22 -0
  7574. skills/ppt-master/templates/icons/tabler-outline/brand-bilibili.svg +23 -0
  7575. skills/ppt-master/templates/icons/tabler-outline/brand-binance.svg +23 -0
  7576. skills/ppt-master/templates/icons/tabler-outline/brand-bing.svg +19 -0
  7577. skills/ppt-master/templates/icons/tabler-outline/brand-bitbucket.svg +20 -0
  7578. skills/ppt-master/templates/icons/tabler-outline/brand-blackberry.svg +25 -0
  7579. skills/ppt-master/templates/icons/tabler-outline/brand-blender.svg +23 -0
  7580. skills/ppt-master/templates/icons/tabler-outline/brand-blogger.svg +21 -0
  7581. skills/ppt-master/templates/icons/tabler-outline/brand-bluesky.svg +19 -0
  7582. skills/ppt-master/templates/icons/tabler-outline/brand-booking.svg +21 -0
  7583. skills/ppt-master/templates/icons/tabler-outline/brand-bootstrap.svg +21 -0
  7584. skills/ppt-master/templates/icons/tabler-outline/brand-bulma.svg +19 -0
  7585. skills/ppt-master/templates/icons/tabler-outline/brand-bumble.svg +22 -0
  7586. skills/ppt-master/templates/icons/tabler-outline/brand-bunpo.svg +19 -0
  7587. skills/ppt-master/templates/icons/tabler-outline/brand-c-sharp.svg +23 -0
  7588. skills/ppt-master/templates/icons/tabler-outline/brand-cake.svg +19 -0
  7589. skills/ppt-master/templates/icons/tabler-outline/brand-cakephp.svg +23 -0
  7590. skills/ppt-master/templates/icons/tabler-outline/brand-campaignmonitor.svg +19 -0
  7591. skills/ppt-master/templates/icons/tabler-outline/brand-carbon.svg +20 -0
  7592. skills/ppt-master/templates/icons/tabler-outline/brand-cashapp.svg +19 -0
  7593. skills/ppt-master/templates/icons/tabler-outline/brand-chrome.svg +23 -0
  7594. skills/ppt-master/templates/icons/tabler-outline/brand-cinema-4d.svg +23 -0
  7595. skills/ppt-master/templates/icons/tabler-outline/brand-citymapper.svg +22 -0
  7596. skills/ppt-master/templates/icons/tabler-outline/brand-cloudflare.svg +21 -0
  7597. skills/ppt-master/templates/icons/tabler-outline/brand-codecov.svg +19 -0
  7598. skills/ppt-master/templates/icons/tabler-outline/brand-codepen.svg +24 -0
  7599. skills/ppt-master/templates/icons/tabler-outline/brand-codesandbox.svg +25 -0
  7600. skills/ppt-master/templates/icons/tabler-outline/brand-cohost.svg +21 -0
  7601. skills/ppt-master/templates/icons/tabler-outline/brand-coinbase.svg +19 -0
  7602. skills/ppt-master/templates/icons/tabler-outline/brand-comedy-central.svg +20 -0
  7603. skills/ppt-master/templates/icons/tabler-outline/brand-coreos.svg +21 -0
  7604. skills/ppt-master/templates/icons/tabler-outline/brand-couchdb.svg +23 -0
  7605. skills/ppt-master/templates/icons/tabler-outline/brand-couchsurfing.svg +20 -0
  7606. skills/ppt-master/templates/icons/tabler-outline/brand-cpp.svg +23 -0
  7607. skills/ppt-master/templates/icons/tabler-outline/brand-craft.svg +21 -0
  7608. skills/ppt-master/templates/icons/tabler-outline/brand-crunchbase.svg +22 -0
  7609. skills/ppt-master/templates/icons/tabler-outline/brand-css3.svg +20 -0
  7610. skills/ppt-master/templates/icons/tabler-outline/brand-ctemplar.svg +22 -0
  7611. skills/ppt-master/templates/icons/tabler-outline/brand-cucumber.svg +26 -0
  7612. skills/ppt-master/templates/icons/tabler-outline/brand-cupra.svg +20 -0
  7613. skills/ppt-master/templates/icons/tabler-outline/brand-cypress.svg +21 -0
  7614. skills/ppt-master/templates/icons/tabler-outline/brand-d3.svg +23 -0
  7615. skills/ppt-master/templates/icons/tabler-outline/brand-databricks.svg +19 -0
  7616. skills/ppt-master/templates/icons/tabler-outline/brand-days-counter.svg +21 -0
  7617. skills/ppt-master/templates/icons/tabler-outline/brand-dcos.svg +19 -0
  7618. skills/ppt-master/templates/icons/tabler-outline/brand-debian.svg +20 -0
  7619. skills/ppt-master/templates/icons/tabler-outline/brand-deezer.svg +28 -0
  7620. skills/ppt-master/templates/icons/tabler-outline/brand-deliveroo.svg +21 -0
  7621. skills/ppt-master/templates/icons/tabler-outline/brand-deno.svg +21 -0
  7622. skills/ppt-master/templates/icons/tabler-outline/brand-denodo.svg +25 -0
  7623. skills/ppt-master/templates/icons/tabler-outline/brand-deviantart.svg +19 -0
  7624. skills/ppt-master/templates/icons/tabler-outline/brand-digg.svg +25 -0
  7625. skills/ppt-master/templates/icons/tabler-outline/brand-dingtalk.svg +20 -0
  7626. skills/ppt-master/templates/icons/tabler-outline/brand-discord.svg +22 -0
  7627. skills/ppt-master/templates/icons/tabler-outline/brand-disney.svg +20 -0
  7628. skills/ppt-master/templates/icons/tabler-outline/brand-disqus.svg +20 -0
  7629. skills/ppt-master/templates/icons/tabler-outline/brand-django.svg +22 -0
  7630. skills/ppt-master/templates/icons/tabler-outline/brand-docker.svg +27 -0
  7631. skills/ppt-master/templates/icons/tabler-outline/brand-doctrine.svg +22 -0
  7632. skills/ppt-master/templates/icons/tabler-outline/brand-dolby-digital.svg +20 -0
  7633. skills/ppt-master/templates/icons/tabler-outline/brand-douban.svg +23 -0
  7634. skills/ppt-master/templates/icons/tabler-outline/brand-dribbble.svg +22 -0
  7635. skills/ppt-master/templates/icons/tabler-outline/brand-dropbox.svg +20 -0
  7636. skills/ppt-master/templates/icons/tabler-outline/brand-drops.svg +20 -0
  7637. skills/ppt-master/templates/icons/tabler-outline/brand-drupal.svg +20 -0
  7638. skills/ppt-master/templates/icons/tabler-outline/brand-edge.svg +22 -0
  7639. skills/ppt-master/templates/icons/tabler-outline/brand-elastic.svg +24 -0
  7640. skills/ppt-master/templates/icons/tabler-outline/brand-electronic-arts.svg +23 -0
  7641. skills/ppt-master/templates/icons/tabler-outline/brand-ember.svg +19 -0
  7642. skills/ppt-master/templates/icons/tabler-outline/brand-envato.svg +20 -0
  7643. skills/ppt-master/templates/icons/tabler-outline/brand-etsy.svg +21 -0
  7644. skills/ppt-master/templates/icons/tabler-outline/brand-evernote.svg +21 -0
  7645. skills/ppt-master/templates/icons/tabler-outline/brand-facebook.svg +19 -0
  7646. skills/ppt-master/templates/icons/tabler-outline/brand-feedly.svg +22 -0
  7647. skills/ppt-master/templates/icons/tabler-outline/brand-figma.svg +21 -0
  7648. skills/ppt-master/templates/icons/tabler-outline/brand-filezilla.svg +21 -0
  7649. skills/ppt-master/templates/icons/tabler-outline/brand-finder.svg +23 -0
  7650. skills/ppt-master/templates/icons/tabler-outline/brand-firebase.svg +21 -0
  7651. skills/ppt-master/templates/icons/tabler-outline/brand-firefox.svg +20 -0
  7652. skills/ppt-master/templates/icons/tabler-outline/brand-fiverr.svg +19 -0
  7653. skills/ppt-master/templates/icons/tabler-outline/brand-flickr.svg +20 -0
  7654. skills/ppt-master/templates/icons/tabler-outline/brand-flightradar24.svg +22 -0
  7655. skills/ppt-master/templates/icons/tabler-outline/brand-flipboard.svg +19 -0
  7656. skills/ppt-master/templates/icons/tabler-outline/brand-flutter.svg +20 -0
  7657. skills/ppt-master/templates/icons/tabler-outline/brand-fortnite.svg +19 -0
  7658. skills/ppt-master/templates/icons/tabler-outline/brand-foursquare.svg +20 -0
  7659. skills/ppt-master/templates/icons/tabler-outline/brand-framer-motion.svg +20 -0
  7660. skills/ppt-master/templates/icons/tabler-outline/brand-framer.svg +19 -0
  7661. skills/ppt-master/templates/icons/tabler-outline/brand-funimation.svg +20 -0
  7662. skills/ppt-master/templates/icons/tabler-outline/brand-gatsby.svg +20 -0
  7663. skills/ppt-master/templates/icons/tabler-outline/brand-git.svg +25 -0
  7664. skills/ppt-master/templates/icons/tabler-outline/brand-github-copilot.svg +25 -0
  7665. skills/ppt-master/templates/icons/tabler-outline/brand-github.svg +19 -0
  7666. skills/ppt-master/templates/icons/tabler-outline/brand-gitlab.svg +19 -0
  7667. skills/ppt-master/templates/icons/tabler-outline/brand-gmail.svg +22 -0
  7668. skills/ppt-master/templates/icons/tabler-outline/brand-golang.svg +23 -0
  7669. skills/ppt-master/templates/icons/tabler-outline/brand-google-analytics.svg +21 -0
  7670. skills/ppt-master/templates/icons/tabler-outline/brand-google-big-query.svg +21 -0
  7671. skills/ppt-master/templates/icons/tabler-outline/brand-google-drive.svg +21 -0
  7672. skills/ppt-master/templates/icons/tabler-outline/brand-google-fit.svg +19 -0
  7673. skills/ppt-master/templates/icons/tabler-outline/brand-google-home.svg +23 -0
  7674. skills/ppt-master/templates/icons/tabler-outline/brand-google-maps.svg +23 -0
  7675. skills/ppt-master/templates/icons/tabler-outline/brand-google-one.svg +20 -0
  7676. skills/ppt-master/templates/icons/tabler-outline/brand-google-photos.svg +22 -0
  7677. skills/ppt-master/templates/icons/tabler-outline/brand-google-play.svg +21 -0
  7678. skills/ppt-master/templates/icons/tabler-outline/brand-google-podcasts.svg +27 -0
  7679. skills/ppt-master/templates/icons/tabler-outline/brand-google.svg +19 -0
  7680. skills/ppt-master/templates/icons/tabler-outline/brand-grammarly.svg +21 -0
  7681. skills/ppt-master/templates/icons/tabler-outline/brand-graphql.svg +26 -0
  7682. skills/ppt-master/templates/icons/tabler-outline/brand-gravatar.svg +19 -0
  7683. skills/ppt-master/templates/icons/tabler-outline/brand-grindr.svg +21 -0
  7684. skills/ppt-master/templates/icons/tabler-outline/brand-guardian.svg +24 -0
  7685. skills/ppt-master/templates/icons/tabler-outline/brand-gumroad.svg +21 -0
  7686. skills/ppt-master/templates/icons/tabler-outline/brand-hackerrank.svg +24 -0
  7687. skills/ppt-master/templates/icons/tabler-outline/brand-hbo.svg +24 -0
  7688. skills/ppt-master/templates/icons/tabler-outline/brand-headlessui.svg +20 -0
  7689. skills/ppt-master/templates/icons/tabler-outline/brand-hexo.svg +22 -0
  7690. skills/ppt-master/templates/icons/tabler-outline/brand-hipchat.svg +20 -0
  7691. skills/ppt-master/templates/icons/tabler-outline/brand-html5.svg +20 -0
  7692. skills/ppt-master/templates/icons/tabler-outline/brand-inertia.svg +20 -0
  7693. skills/ppt-master/templates/icons/tabler-outline/brand-infakt.svg +20 -0
  7694. skills/ppt-master/templates/icons/tabler-outline/brand-instagram.svg +21 -0
  7695. skills/ppt-master/templates/icons/tabler-outline/brand-intercom.svg +24 -0
  7696. skills/ppt-master/templates/icons/tabler-outline/brand-itch.svg +22 -0
  7697. skills/ppt-master/templates/icons/tabler-outline/brand-javascript.svg +21 -0
  7698. skills/ppt-master/templates/icons/tabler-outline/brand-jira.svg +21 -0
  7699. skills/ppt-master/templates/icons/tabler-outline/brand-juejin.svg +21 -0
  7700. skills/ppt-master/templates/icons/tabler-outline/brand-kako-talk.svg +21 -0
  7701. skills/ppt-master/templates/icons/tabler-outline/brand-kbin.svg +20 -0
  7702. skills/ppt-master/templates/icons/tabler-outline/brand-kick.svg +19 -0
  7703. skills/ppt-master/templates/icons/tabler-outline/brand-kickstarter.svg +19 -0
  7704. skills/ppt-master/templates/icons/tabler-outline/brand-kotlin.svg +22 -0
  7705. skills/ppt-master/templates/icons/tabler-outline/brand-laravel.svg +26 -0
  7706. skills/ppt-master/templates/icons/tabler-outline/brand-lastfm.svg +19 -0
  7707. skills/ppt-master/templates/icons/tabler-outline/brand-leetcode.svg +21 -0
  7708. skills/ppt-master/templates/icons/tabler-outline/brand-letterboxd.svg +22 -0
  7709. skills/ppt-master/templates/icons/tabler-outline/brand-line.svg +19 -0
  7710. skills/ppt-master/templates/icons/tabler-outline/brand-linkedin.svg +23 -0
  7711. skills/ppt-master/templates/icons/tabler-outline/brand-linktree.svg +23 -0
  7712. skills/ppt-master/templates/icons/tabler-outline/brand-linqpad.svg +19 -0
  7713. skills/ppt-master/templates/icons/tabler-outline/brand-livewire.svg +22 -0
  7714. skills/ppt-master/templates/icons/tabler-outline/brand-loom.svg +22 -0
  7715. skills/ppt-master/templates/icons/tabler-outline/brand-mailgun.svg +22 -0
  7716. skills/ppt-master/templates/icons/tabler-outline/brand-mantine.svg +23 -0
  7717. skills/ppt-master/templates/icons/tabler-outline/brand-mastercard.svg +21 -0
  7718. skills/ppt-master/templates/icons/tabler-outline/brand-mastodon.svg +20 -0
  7719. skills/ppt-master/templates/icons/tabler-outline/brand-matrix.svg +23 -0
  7720. skills/ppt-master/templates/icons/tabler-outline/brand-mcdonalds.svg +19 -0
  7721. skills/ppt-master/templates/icons/tabler-outline/brand-medium.svg +24 -0
  7722. skills/ppt-master/templates/icons/tabler-outline/brand-meetup.svg +21 -0
  7723. skills/ppt-master/templates/icons/tabler-outline/brand-mercedes.svg +22 -0
  7724. skills/ppt-master/templates/icons/tabler-outline/brand-messenger.svg +20 -0
  7725. skills/ppt-master/templates/icons/tabler-outline/brand-meta.svg +20 -0
  7726. skills/ppt-master/templates/icons/tabler-outline/brand-metabrainz.svg +20 -0
  7727. skills/ppt-master/templates/icons/tabler-outline/brand-minecraft.svg +24 -0
  7728. skills/ppt-master/templates/icons/tabler-outline/brand-miniprogram.svg +20 -0
  7729. skills/ppt-master/templates/icons/tabler-outline/brand-mixpanel.svg +21 -0
  7730. skills/ppt-master/templates/icons/tabler-outline/brand-monday.svg +21 -0
  7731. skills/ppt-master/templates/icons/tabler-outline/brand-mongodb.svg +20 -0
  7732. skills/ppt-master/templates/icons/tabler-outline/brand-my-oppo.svg +20 -0
  7733. skills/ppt-master/templates/icons/tabler-outline/brand-mysql.svg +20 -0
  7734. skills/ppt-master/templates/icons/tabler-outline/brand-national-geographic.svg +19 -0
  7735. skills/ppt-master/templates/icons/tabler-outline/brand-nem.svg +21 -0
  7736. skills/ppt-master/templates/icons/tabler-outline/brand-netbeans.svg +25 -0
  7737. skills/ppt-master/templates/icons/tabler-outline/brand-netease-music.svg +19 -0
  7738. skills/ppt-master/templates/icons/tabler-outline/brand-netflix.svg +21 -0
  7739. skills/ppt-master/templates/icons/tabler-outline/brand-nexo.svg +20 -0
  7740. skills/ppt-master/templates/icons/tabler-outline/brand-nextcloud.svg +21 -0
  7741. skills/ppt-master/templates/icons/tabler-outline/brand-nextjs.svg +20 -0
  7742. skills/ppt-master/templates/icons/tabler-outline/brand-nodejs.svg +20 -0
  7743. skills/ppt-master/templates/icons/tabler-outline/brand-nord-vpn.svg +20 -0
  7744. skills/ppt-master/templates/icons/tabler-outline/brand-notion.svg +22 -0
  7745. skills/ppt-master/templates/icons/tabler-outline/brand-npm.svg +25 -0
  7746. skills/ppt-master/templates/icons/tabler-outline/brand-nuxt.svg +20 -0
  7747. skills/ppt-master/templates/icons/tabler-outline/brand-nytimes.svg +23 -0
  7748. skills/ppt-master/templates/icons/tabler-outline/brand-oauth.svg +20 -0
  7749. skills/ppt-master/templates/icons/tabler-outline/brand-office.svg +19 -0
  7750. skills/ppt-master/templates/icons/tabler-outline/brand-ok-ru.svg +23 -0
  7751. skills/ppt-master/templates/icons/tabler-outline/brand-onedrive.svg +19 -0
  7752. skills/ppt-master/templates/icons/tabler-outline/brand-onlyfans.svg +21 -0
  7753. skills/ppt-master/templates/icons/tabler-outline/brand-open-source.svg +19 -0
  7754. skills/ppt-master/templates/icons/tabler-outline/brand-openai.svg +24 -0
  7755. skills/ppt-master/templates/icons/tabler-outline/brand-openvpn.svg +20 -0
  7756. skills/ppt-master/templates/icons/tabler-outline/brand-opera.svg +20 -0
  7757. skills/ppt-master/templates/icons/tabler-outline/brand-pagekit.svg +19 -0
  7758. skills/ppt-master/templates/icons/tabler-outline/brand-parsinta.svg +21 -0
  7759. skills/ppt-master/templates/icons/tabler-outline/brand-patreon.svg +19 -0
  7760. skills/ppt-master/templates/icons/tabler-outline/brand-paypal.svg +19 -0
  7761. skills/ppt-master/templates/icons/tabler-outline/brand-paypay.svg +21 -0
  7762. skills/ppt-master/templates/icons/tabler-outline/brand-peanut.svg +19 -0
  7763. skills/ppt-master/templates/icons/tabler-outline/brand-pepsi.svg +21 -0
  7764. skills/ppt-master/templates/icons/tabler-outline/brand-php.svg +23 -0
  7765. skills/ppt-master/templates/icons/tabler-outline/brand-picsart.svg +21 -0
  7766. skills/ppt-master/templates/icons/tabler-outline/brand-pinterest.svg +21 -0
  7767. skills/ppt-master/templates/icons/tabler-outline/brand-planetscale.svg +21 -0
  7768. skills/ppt-master/templates/icons/tabler-outline/brand-pnpm.svg +26 -0
  7769. skills/ppt-master/templates/icons/tabler-outline/brand-pocket.svg +20 -0
  7770. skills/ppt-master/templates/icons/tabler-outline/brand-polymer.svg +19 -0
  7771. skills/ppt-master/templates/icons/tabler-outline/brand-powershell.svg +21 -0
  7772. skills/ppt-master/templates/icons/tabler-outline/brand-printables.svg +19 -0
  7773. skills/ppt-master/templates/icons/tabler-outline/brand-prisma.svg +20 -0
  7774. skills/ppt-master/templates/icons/tabler-outline/brand-producthunt.svg +20 -0
  7775. skills/ppt-master/templates/icons/tabler-outline/brand-pushbullet.svg +21 -0
  7776. skills/ppt-master/templates/icons/tabler-outline/brand-pushover.svg +20 -0
  7777. skills/ppt-master/templates/icons/tabler-outline/brand-python.svg +23 -0
  7778. skills/ppt-master/templates/icons/tabler-outline/brand-qq.svg +27 -0
  7779. skills/ppt-master/templates/icons/tabler-outline/brand-radix-ui.svg +21 -0
  7780. skills/ppt-master/templates/icons/tabler-outline/brand-react-native.svg +25 -0
  7781. skills/ppt-master/templates/icons/tabler-outline/brand-react.svg +25 -0
  7782. skills/ppt-master/templates/icons/tabler-outline/brand-reason.svg +23 -0
  7783. skills/ppt-master/templates/icons/tabler-outline/brand-reddit.svg +24 -0
  7784. skills/ppt-master/templates/icons/tabler-outline/brand-redhat.svg +20 -0
  7785. skills/ppt-master/templates/icons/tabler-outline/brand-redux.svg +24 -0
  7786. skills/ppt-master/templates/icons/tabler-outline/brand-revolut.svg +20 -0
  7787. skills/ppt-master/templates/icons/tabler-outline/brand-rumble.svg +20 -0
  7788. skills/ppt-master/templates/icons/tabler-outline/brand-rust.svg +23 -0
  7789. skills/ppt-master/templates/icons/tabler-outline/brand-safari.svg +20 -0
  7790. skills/ppt-master/templates/icons/tabler-outline/brand-samsungpass.svg +21 -0
  7791. skills/ppt-master/templates/icons/tabler-outline/brand-sass.svg +20 -0
  7792. skills/ppt-master/templates/icons/tabler-outline/brand-sentry.svg +19 -0
  7793. skills/ppt-master/templates/icons/tabler-outline/brand-sharik.svg +19 -0
  7794. skills/ppt-master/templates/icons/tabler-outline/brand-shazam.svg +21 -0
  7795. skills/ppt-master/templates/icons/tabler-outline/brand-shopee.svg +21 -0
  7796. skills/ppt-master/templates/icons/tabler-outline/brand-sketch.svg +19 -0
  7797. skills/ppt-master/templates/icons/tabler-outline/brand-skype.svg +20 -0
  7798. skills/ppt-master/templates/icons/tabler-outline/brand-slack.svg +22 -0
  7799. skills/ppt-master/templates/icons/tabler-outline/brand-snapchat.svg +19 -0
  7800. skills/ppt-master/templates/icons/tabler-outline/brand-snapseed.svg +20 -0
  7801. skills/ppt-master/templates/icons/tabler-outline/brand-snowflake.svg +25 -0
  7802. skills/ppt-master/templates/icons/tabler-outline/brand-socket-io.svg +21 -0
  7803. skills/ppt-master/templates/icons/tabler-outline/brand-solidjs.svg +25 -0
  7804. skills/ppt-master/templates/icons/tabler-outline/brand-soundcloud.svg +22 -0
  7805. skills/ppt-master/templates/icons/tabler-outline/brand-spacehey.svg +21 -0
  7806. skills/ppt-master/templates/icons/tabler-outline/brand-speedtest.svg +20 -0
  7807. skills/ppt-master/templates/icons/tabler-outline/brand-spotify.svg +22 -0
  7808. skills/ppt-master/templates/icons/tabler-outline/brand-stackoverflow.svg +23 -0
  7809. skills/ppt-master/templates/icons/tabler-outline/brand-stackshare.svg +23 -0
  7810. skills/ppt-master/templates/icons/tabler-outline/brand-steam.svg +20 -0
  7811. skills/ppt-master/templates/icons/tabler-outline/brand-stocktwits.svg +20 -0
  7812. skills/ppt-master/templates/icons/tabler-outline/brand-storj.svg +32 -0
  7813. skills/ppt-master/templates/icons/tabler-outline/brand-storybook.svg +21 -0
  7814. skills/ppt-master/templates/icons/tabler-outline/brand-storytel.svg +19 -0
  7815. skills/ppt-master/templates/icons/tabler-outline/brand-strava.svg +19 -0
  7816. skills/ppt-master/templates/icons/tabler-outline/brand-stripe.svg +19 -0
  7817. skills/ppt-master/templates/icons/tabler-outline/brand-sublime-text.svg +22 -0
  7818. skills/ppt-master/templates/icons/tabler-outline/brand-sugarizer.svg +20 -0
  7819. skills/ppt-master/templates/icons/tabler-outline/brand-supabase.svg +19 -0
  7820. skills/ppt-master/templates/icons/tabler-outline/brand-superhuman.svg +21 -0
  7821. skills/ppt-master/templates/icons/tabler-outline/brand-supernova.svg +23 -0
  7822. skills/ppt-master/templates/icons/tabler-outline/brand-surfshark.svg +20 -0
  7823. skills/ppt-master/templates/icons/tabler-outline/brand-svelte.svg +20 -0
  7824. skills/ppt-master/templates/icons/tabler-outline/brand-swift.svg +19 -0
  7825. skills/ppt-master/templates/icons/tabler-outline/brand-symfony.svg +21 -0
  7826. skills/ppt-master/templates/icons/tabler-outline/brand-tabler.svg +21 -0
  7827. skills/ppt-master/templates/icons/tabler-outline/brand-tabnine.svg +19 -0
  7828. skills/ppt-master/templates/icons/tabler-outline/brand-tailwind.svg +19 -0
  7829. skills/ppt-master/templates/icons/tabler-outline/brand-taobao.svg +28 -0
  7830. skills/ppt-master/templates/icons/tabler-outline/brand-teams.svg +25 -0
  7831. skills/ppt-master/templates/icons/tabler-outline/brand-ted.svg +23 -0
  7832. skills/ppt-master/templates/icons/tabler-outline/brand-telegram.svg +19 -0
  7833. skills/ppt-master/templates/icons/tabler-outline/brand-terraform.svg +20 -0
  7834. skills/ppt-master/templates/icons/tabler-outline/brand-tesla.svg +20 -0
  7835. skills/ppt-master/templates/icons/tabler-outline/brand-tether.svg +21 -0
  7836. skills/ppt-master/templates/icons/tabler-outline/brand-thingiverse.svg +20 -0
  7837. skills/ppt-master/templates/icons/tabler-outline/brand-threads.svg +19 -0
  7838. skills/ppt-master/templates/icons/tabler-outline/brand-threejs.svg +22 -0
  7839. skills/ppt-master/templates/icons/tabler-outline/brand-tidal.svg +19 -0
  7840. skills/ppt-master/templates/icons/tabler-outline/brand-tiktok.svg +19 -0
  7841. skills/ppt-master/templates/icons/tabler-outline/brand-tinder.svg +19 -0
  7842. skills/ppt-master/templates/icons/tabler-outline/brand-topbuzz.svg +19 -0
  7843. skills/ppt-master/templates/icons/tabler-outline/brand-torchain.svg +20 -0
  7844. skills/ppt-master/templates/icons/tabler-outline/brand-toyota.svg +21 -0
  7845. skills/ppt-master/templates/icons/tabler-outline/brand-trello.svg +21 -0
  7846. skills/ppt-master/templates/icons/tabler-outline/brand-tripadvisor.svg +24 -0
  7847. skills/ppt-master/templates/icons/tabler-outline/brand-tumblr.svg +19 -0
  7848. skills/ppt-master/templates/icons/tabler-outline/brand-twilio.svg +23 -0
  7849. skills/ppt-master/templates/icons/tabler-outline/brand-twitch.svg +21 -0
  7850. skills/ppt-master/templates/icons/tabler-outline/brand-twitter.svg +19 -0
  7851. skills/ppt-master/templates/icons/tabler-outline/brand-typescript.svg +22 -0
  7852. skills/ppt-master/templates/icons/tabler-outline/brand-uber.svg +21 -0
  7853. skills/ppt-master/templates/icons/tabler-outline/brand-ubuntu.svg +22 -0
  7854. skills/ppt-master/templates/icons/tabler-outline/brand-unity.svg +23 -0
  7855. skills/ppt-master/templates/icons/tabler-outline/brand-unsplash.svg +20 -0
  7856. skills/ppt-master/templates/icons/tabler-outline/brand-upwork.svg +19 -0
  7857. skills/ppt-master/templates/icons/tabler-outline/brand-valorant.svg +20 -0
  7858. skills/ppt-master/templates/icons/tabler-outline/brand-vercel.svg +19 -0
  7859. skills/ppt-master/templates/icons/tabler-outline/brand-vimeo.svg +19 -0
  7860. skills/ppt-master/templates/icons/tabler-outline/brand-vinted.svg +19 -0
  7861. skills/ppt-master/templates/icons/tabler-outline/brand-visa.svg +23 -0
  7862. skills/ppt-master/templates/icons/tabler-outline/brand-visual-studio.svg +19 -0
  7863. skills/ppt-master/templates/icons/tabler-outline/brand-vite.svg +20 -0
  7864. skills/ppt-master/templates/icons/tabler-outline/brand-vivaldi.svg +19 -0
  7865. skills/ppt-master/templates/icons/tabler-outline/brand-vk.svg +19 -0
  7866. skills/ppt-master/templates/icons/tabler-outline/brand-vlc.svg +20 -0
  7867. skills/ppt-master/templates/icons/tabler-outline/brand-volkswagen.svg +21 -0
  7868. skills/ppt-master/templates/icons/tabler-outline/brand-vsco.svg +28 -0
  7869. skills/ppt-master/templates/icons/tabler-outline/brand-vscode.svg +21 -0
  7870. skills/ppt-master/templates/icons/tabler-outline/brand-vue.svg +20 -0
  7871. skills/ppt-master/templates/icons/tabler-outline/brand-walmart.svg +24 -0
  7872. skills/ppt-master/templates/icons/tabler-outline/brand-waze.svg +24 -0
  7873. skills/ppt-master/templates/icons/tabler-outline/brand-webflow.svg +19 -0
  7874. skills/ppt-master/templates/icons/tabler-outline/brand-wechat.svg +24 -0
  7875. skills/ppt-master/templates/icons/tabler-outline/brand-weibo.svg +20 -0
  7876. skills/ppt-master/templates/icons/tabler-outline/brand-whatsapp.svg +20 -0
  7877. skills/ppt-master/templates/icons/tabler-outline/brand-wikipedia.svg +24 -0
  7878. skills/ppt-master/templates/icons/tabler-outline/brand-windows.svg +21 -0
  7879. skills/ppt-master/templates/icons/tabler-outline/brand-windy.svg +20 -0
  7880. skills/ppt-master/templates/icons/tabler-outline/brand-wish.svg +20 -0
  7881. skills/ppt-master/templates/icons/tabler-outline/brand-wix.svg +23 -0
  7882. skills/ppt-master/templates/icons/tabler-outline/brand-wordpress.svg +24 -0
  7883. skills/ppt-master/templates/icons/tabler-outline/brand-x.svg +20 -0
  7884. skills/ppt-master/templates/icons/tabler-outline/brand-xamarin.svg +21 -0
  7885. skills/ppt-master/templates/icons/tabler-outline/brand-xbox.svg +21 -0
  7886. skills/ppt-master/templates/icons/tabler-outline/brand-xdeep.svg +19 -0
  7887. skills/ppt-master/templates/icons/tabler-outline/brand-xing.svg +20 -0
  7888. skills/ppt-master/templates/icons/tabler-outline/brand-yahoo.svg +25 -0
  7889. skills/ppt-master/templates/icons/tabler-outline/brand-yandex.svg +20 -0
  7890. skills/ppt-master/templates/icons/tabler-outline/brand-yarn.svg +19 -0
  7891. skills/ppt-master/templates/icons/tabler-outline/brand-yatse.svg +19 -0
  7892. skills/ppt-master/templates/icons/tabler-outline/brand-ycombinator.svg +21 -0
  7893. skills/ppt-master/templates/icons/tabler-outline/brand-youtube-kids.svg +20 -0
  7894. skills/ppt-master/templates/icons/tabler-outline/brand-youtube.svg +20 -0
  7895. skills/ppt-master/templates/icons/tabler-outline/brand-zalando.svg +19 -0
  7896. skills/ppt-master/templates/icons/tabler-outline/brand-zapier.svg +26 -0
  7897. skills/ppt-master/templates/icons/tabler-outline/brand-zeit.svg +19 -0
  7898. skills/ppt-master/templates/icons/tabler-outline/brand-zhihu.svg +24 -0
  7899. skills/ppt-master/templates/icons/tabler-outline/brand-zoom.svg +20 -0
  7900. skills/ppt-master/templates/icons/tabler-outline/brand-zulip.svg +20 -0
  7901. skills/ppt-master/templates/icons/tabler-outline/brand-zwift.svg +19 -0
  7902. skills/ppt-master/templates/icons/tabler-outline/bread-off.svg +20 -0
  7903. skills/ppt-master/templates/icons/tabler-outline/bread.svg +19 -0
  7904. skills/ppt-master/templates/icons/tabler-outline/briefcase-2.svg +20 -0
  7905. skills/ppt-master/templates/icons/tabler-outline/briefcase-off.svg +23 -0
  7906. skills/ppt-master/templates/icons/tabler-outline/briefcase.svg +22 -0
  7907. skills/ppt-master/templates/icons/tabler-outline/brightness-2.svg +20 -0
  7908. skills/ppt-master/templates/icons/tabler-outline/brightness-auto.svg +21 -0
  7909. skills/ppt-master/templates/icons/tabler-outline/brightness-down.svg +27 -0
  7910. skills/ppt-master/templates/icons/tabler-outline/brightness-half.svg +20 -0
  7911. skills/ppt-master/templates/icons/tabler-outline/brightness-off.svg +24 -0
  7912. skills/ppt-master/templates/icons/tabler-outline/brightness-up.svg +27 -0
  7913. skills/ppt-master/templates/icons/tabler-outline/brightness.svg +23 -0
  7914. skills/ppt-master/templates/icons/tabler-outline/broadcast-off.svg +22 -0
  7915. skills/ppt-master/templates/icons/tabler-outline/broadcast.svg +21 -0
  7916. skills/ppt-master/templates/icons/tabler-outline/browser-check.svg +22 -0
  7917. skills/ppt-master/templates/icons/tabler-outline/browser-maximize.svg +23 -0
  7918. skills/ppt-master/templates/icons/tabler-outline/browser-minus.svg +22 -0
  7919. skills/ppt-master/templates/icons/tabler-outline/browser-off.svg +21 -0
  7920. skills/ppt-master/templates/icons/tabler-outline/browser-plus.svg +23 -0
  7921. skills/ppt-master/templates/icons/tabler-outline/browser-share.svg +23 -0
  7922. skills/ppt-master/templates/icons/tabler-outline/browser-x.svg +23 -0
  7923. skills/ppt-master/templates/icons/tabler-outline/browser.svg +21 -0
  7924. skills/ppt-master/templates/icons/tabler-outline/brush-off.svg +22 -0
  7925. skills/ppt-master/templates/icons/tabler-outline/brush.svg +22 -0
  7926. skills/ppt-master/templates/icons/tabler-outline/bubble-minus.svg +20 -0
  7927. skills/ppt-master/templates/icons/tabler-outline/bubble-plus.svg +21 -0
  7928. skills/ppt-master/templates/icons/tabler-outline/bubble-tea-2.svg +23 -0
  7929. skills/ppt-master/templates/icons/tabler-outline/bubble-tea.svg +25 -0
  7930. skills/ppt-master/templates/icons/tabler-outline/bubble-text.svg +21 -0
  7931. skills/ppt-master/templates/icons/tabler-outline/bubble-x.svg +21 -0
  7932. skills/ppt-master/templates/icons/tabler-outline/bubble.svg +19 -0
  7933. skills/ppt-master/templates/icons/tabler-outline/bucket-droplet.svg +21 -0
  7934. skills/ppt-master/templates/icons/tabler-outline/bucket-off.svg +21 -0
  7935. skills/ppt-master/templates/icons/tabler-outline/bucket.svg +20 -0
  7936. skills/ppt-master/templates/icons/tabler-outline/bug-off.svg +27 -0
  7937. skills/ppt-master/templates/icons/tabler-outline/bug.svg +27 -0
  7938. skills/ppt-master/templates/icons/tabler-outline/building-airport.svg +26 -0
  7939. skills/ppt-master/templates/icons/tabler-outline/building-arch.svg +21 -0
  7940. skills/ppt-master/templates/icons/tabler-outline/building-bank.svg +26 -0
  7941. skills/ppt-master/templates/icons/tabler-outline/building-bridge-2.svg +19 -0
  7942. skills/ppt-master/templates/icons/tabler-outline/building-bridge.svg +23 -0
  7943. skills/ppt-master/templates/icons/tabler-outline/building-broadcast-tower.svg +23 -0
  7944. skills/ppt-master/templates/icons/tabler-outline/building-burj-al-arab.svg +24 -0
  7945. skills/ppt-master/templates/icons/tabler-outline/building-carousel.svg +25 -0
  7946. skills/ppt-master/templates/icons/tabler-outline/building-castle.svg +20 -0
  7947. skills/ppt-master/templates/icons/tabler-outline/building-church.svg +23 -0
  7948. skills/ppt-master/templates/icons/tabler-outline/building-circus.svg +24 -0
  7949. skills/ppt-master/templates/icons/tabler-outline/building-cog.svg +32 -0
  7950. skills/ppt-master/templates/icons/tabler-outline/building-community.svg +23 -0
  7951. skills/ppt-master/templates/icons/tabler-outline/building-cottage.svg +22 -0
  7952. skills/ppt-master/templates/icons/tabler-outline/building-estate.svg +25 -0
  7953. skills/ppt-master/templates/icons/tabler-outline/building-factory-2.svg +23 -0
  7954. skills/ppt-master/templates/icons/tabler-outline/building-factory.svg +22 -0
  7955. skills/ppt-master/templates/icons/tabler-outline/building-fortress.svg +25 -0
  7956. skills/ppt-master/templates/icons/tabler-outline/building-hospital.svg +23 -0
  7957. skills/ppt-master/templates/icons/tabler-outline/building-lighthouse.svg +22 -0
  7958. skills/ppt-master/templates/icons/tabler-outline/building-minus.svg +26 -0
  7959. skills/ppt-master/templates/icons/tabler-outline/building-monument.svg +21 -0
  7960. skills/ppt-master/templates/icons/tabler-outline/building-mosque.svg +27 -0
  7961. skills/ppt-master/templates/icons/tabler-outline/building-off.svg +27 -0
  7962. skills/ppt-master/templates/icons/tabler-outline/building-pavilion.svg +22 -0
  7963. skills/ppt-master/templates/icons/tabler-outline/building-plus.svg +27 -0
  7964. skills/ppt-master/templates/icons/tabler-outline/building-skyscraper.svg +25 -0
  7965. skills/ppt-master/templates/icons/tabler-outline/building-stadium.svg +22 -0
  7966. skills/ppt-master/templates/icons/tabler-outline/building-store.svg +23 -0
  7967. skills/ppt-master/templates/icons/tabler-outline/building-tunnel.svg +27 -0
  7968. skills/ppt-master/templates/icons/tabler-outline/building-warehouse.svg +21 -0
  7969. skills/ppt-master/templates/icons/tabler-outline/building-wind-turbine.svg +25 -0
  7970. skills/ppt-master/templates/icons/tabler-outline/building.svg +26 -0
  7971. skills/ppt-master/templates/icons/tabler-outline/buildings.svg +29 -0
  7972. skills/ppt-master/templates/icons/tabler-outline/bulb-off.svg +22 -0
  7973. skills/ppt-master/templates/icons/tabler-outline/bulb.svg +21 -0
  7974. skills/ppt-master/templates/icons/tabler-outline/bulldozer.svg +26 -0
  7975. skills/ppt-master/templates/icons/tabler-outline/burger.svg +21 -0
  7976. skills/ppt-master/templates/icons/tabler-outline/bus-off.svg +26 -0
  7977. skills/ppt-master/templates/icons/tabler-outline/bus-stop.svg +26 -0
  7978. skills/ppt-master/templates/icons/tabler-outline/bus.svg +25 -0
  7979. skills/ppt-master/templates/icons/tabler-outline/businessplan.svg +24 -0
  7980. skills/ppt-master/templates/icons/tabler-outline/butterfly.svg +21 -0
  7981. skills/ppt-master/templates/icons/tabler-outline/cactus-off.svg +23 -0
  7982. skills/ppt-master/templates/icons/tabler-outline/cactus.svg +22 -0
  7983. skills/ppt-master/templates/icons/tabler-outline/cake-off.svg +22 -0
  7984. skills/ppt-master/templates/icons/tabler-outline/cake-roll.svg +21 -0
  7985. skills/ppt-master/templates/icons/tabler-outline/cake.svg +21 -0
  7986. skills/ppt-master/templates/icons/tabler-outline/calculator-off.svg +26 -0
  7987. skills/ppt-master/templates/icons/tabler-outline/calculator.svg +26 -0
  7988. skills/ppt-master/templates/icons/tabler-outline/calendar-bolt.svg +23 -0
  7989. skills/ppt-master/templates/icons/tabler-outline/calendar-cancel.svg +24 -0
  7990. skills/ppt-master/templates/icons/tabler-outline/calendar-check.svg +23 -0
  7991. skills/ppt-master/templates/icons/tabler-outline/calendar-clock.svg +24 -0
  7992. skills/ppt-master/templates/icons/tabler-outline/calendar-code.svg +24 -0
  7993. skills/ppt-master/templates/icons/tabler-outline/calendar-cog.svg +29 -0
  7994. skills/ppt-master/templates/icons/tabler-outline/calendar-dollar.svg +24 -0
  7995. skills/ppt-master/templates/icons/tabler-outline/calendar-dot.svg +23 -0
  7996. skills/ppt-master/templates/icons/tabler-outline/calendar-down.svg +24 -0
  7997. skills/ppt-master/templates/icons/tabler-outline/calendar-due.svg +23 -0
  7998. skills/ppt-master/templates/icons/tabler-outline/calendar-event.svg +23 -0
  7999. skills/ppt-master/templates/icons/tabler-outline/calendar-exclamation.svg +26 -0
  8000. skills/ppt-master/templates/icons/tabler-outline/calendar-heart.svg +23 -0
  8001. skills/ppt-master/templates/icons/tabler-outline/calendar-minus.svg +23 -0
  8002. skills/ppt-master/templates/icons/tabler-outline/calendar-month.svg +25 -0
  8003. skills/ppt-master/templates/icons/tabler-outline/calendar-off.svg +23 -0
  8004. skills/ppt-master/templates/icons/tabler-outline/calendar-pause.svg +24 -0
  8005. skills/ppt-master/templates/icons/tabler-outline/calendar-pin.svg +24 -0
  8006. skills/ppt-master/templates/icons/tabler-outline/calendar-plus.svg +24 -0
  8007. skills/ppt-master/templates/icons/tabler-outline/calendar-question.svg +24 -0
  8008. skills/ppt-master/templates/icons/tabler-outline/calendar-repeat.svg +25 -0
  8009. skills/ppt-master/templates/icons/tabler-outline/calendar-sad.svg +20 -0
  8010. skills/ppt-master/templates/icons/tabler-outline/calendar-search.svg +24 -0
  8011. skills/ppt-master/templates/icons/tabler-outline/calendar-share.svg +24 -0
  8012. skills/ppt-master/templates/icons/tabler-outline/calendar-smile.svg +20 -0
  8013. skills/ppt-master/templates/icons/tabler-outline/calendar-star.svg +23 -0
  8014. skills/ppt-master/templates/icons/tabler-outline/calendar-stats.svg +24 -0
  8015. skills/ppt-master/templates/icons/tabler-outline/calendar-time.svg +24 -0
  8016. skills/ppt-master/templates/icons/tabler-outline/calendar-up.svg +24 -0
  8017. skills/ppt-master/templates/icons/tabler-outline/calendar-user.svg +24 -0
  8018. skills/ppt-master/templates/icons/tabler-outline/calendar-week.svg +29 -0
  8019. skills/ppt-master/templates/icons/tabler-outline/calendar-x.svg +24 -0
  8020. skills/ppt-master/templates/icons/tabler-outline/calendar.svg +24 -0
  8021. skills/ppt-master/templates/icons/tabler-outline/camera-ai.svg +23 -0
  8022. skills/ppt-master/templates/icons/tabler-outline/camera-bitcoin.svg +26 -0
  8023. skills/ppt-master/templates/icons/tabler-outline/camera-bolt.svg +21 -0
  8024. skills/ppt-master/templates/icons/tabler-outline/camera-cancel.svg +22 -0
  8025. skills/ppt-master/templates/icons/tabler-outline/camera-check.svg +21 -0
  8026. skills/ppt-master/templates/icons/tabler-outline/camera-code.svg +22 -0
  8027. skills/ppt-master/templates/icons/tabler-outline/camera-cog.svg +27 -0
  8028. skills/ppt-master/templates/icons/tabler-outline/camera-dollar.svg +22 -0
  8029. skills/ppt-master/templates/icons/tabler-outline/camera-down.svg +22 -0
  8030. skills/ppt-master/templates/icons/tabler-outline/camera-exclamation.svg +22 -0
  8031. skills/ppt-master/templates/icons/tabler-outline/camera-heart.svg +21 -0
  8032. skills/ppt-master/templates/icons/tabler-outline/camera-minus.svg +21 -0
  8033. skills/ppt-master/templates/icons/tabler-outline/camera-moon.svg +21 -0
  8034. skills/ppt-master/templates/icons/tabler-outline/camera-off.svg +21 -0
  8035. skills/ppt-master/templates/icons/tabler-outline/camera-pause.svg +22 -0
  8036. skills/ppt-master/templates/icons/tabler-outline/camera-pin.svg +22 -0
  8037. skills/ppt-master/templates/icons/tabler-outline/camera-plus.svg +22 -0
  8038. skills/ppt-master/templates/icons/tabler-outline/camera-question.svg +22 -0
  8039. skills/ppt-master/templates/icons/tabler-outline/camera-rotate.svg +22 -0
  8040. skills/ppt-master/templates/icons/tabler-outline/camera-search.svg +22 -0
  8041. skills/ppt-master/templates/icons/tabler-outline/camera-selfie.svg +22 -0
  8042. skills/ppt-master/templates/icons/tabler-outline/camera-share.svg +22 -0
  8043. skills/ppt-master/templates/icons/tabler-outline/camera-spark.svg +21 -0
  8044. skills/ppt-master/templates/icons/tabler-outline/camera-star.svg +21 -0
  8045. skills/ppt-master/templates/icons/tabler-outline/camera-up.svg +22 -0
  8046. skills/ppt-master/templates/icons/tabler-outline/camera-x.svg +22 -0
  8047. skills/ppt-master/templates/icons/tabler-outline/camera.svg +20 -0
  8048. skills/ppt-master/templates/icons/tabler-outline/camper.svg +25 -0
  8049. skills/ppt-master/templates/icons/tabler-outline/campfire.svg +21 -0
  8050. skills/ppt-master/templates/icons/tabler-outline/canary.svg +21 -0
  8051. skills/ppt-master/templates/icons/tabler-outline/cancel.svg +20 -0
  8052. skills/ppt-master/templates/icons/tabler-outline/candle.svg +20 -0
  8053. skills/ppt-master/templates/icons/tabler-outline/candy-off.svg +22 -0
  8054. skills/ppt-master/templates/icons/tabler-outline/candy.svg +21 -0
  8055. skills/ppt-master/templates/icons/tabler-outline/cane.svg +19 -0
  8056. skills/ppt-master/templates/icons/tabler-outline/cannabis.svg +20 -0
  8057. skills/ppt-master/templates/icons/tabler-outline/cap-projecting.svg +21 -0
  8058. skills/ppt-master/templates/icons/tabler-outline/cap-rounded.svg +21 -0
  8059. skills/ppt-master/templates/icons/tabler-outline/cap-straight.svg +22 -0
  8060. skills/ppt-master/templates/icons/tabler-outline/capsule-horizontal.svg +19 -0
  8061. skills/ppt-master/templates/icons/tabler-outline/capsule.svg +19 -0
  8062. skills/ppt-master/templates/icons/tabler-outline/capture-off.svg +24 -0
  8063. skills/ppt-master/templates/icons/tabler-outline/capture.svg +23 -0
  8064. skills/ppt-master/templates/icons/tabler-outline/car-4wd.svg +25 -0
  8065. skills/ppt-master/templates/icons/tabler-outline/car-crane.svg +25 -0
  8066. skills/ppt-master/templates/icons/tabler-outline/car-crash.svg +24 -0
  8067. skills/ppt-master/templates/icons/tabler-outline/car-fan-1.svg +23 -0
  8068. skills/ppt-master/templates/icons/tabler-outline/car-fan-2.svg +23 -0
  8069. skills/ppt-master/templates/icons/tabler-outline/car-fan-3.svg +23 -0
  8070. skills/ppt-master/templates/icons/tabler-outline/car-fan-auto.svg +24 -0
  8071. skills/ppt-master/templates/icons/tabler-outline/car-fan.svg +22 -0
  8072. skills/ppt-master/templates/icons/tabler-outline/car-garage.svg +22 -0
  8073. skills/ppt-master/templates/icons/tabler-outline/car-off-road.svg +23 -0
  8074. skills/ppt-master/templates/icons/tabler-outline/car-off.svg +22 -0
  8075. skills/ppt-master/templates/icons/tabler-outline/car-suspension.svg +24 -0
  8076. skills/ppt-master/templates/icons/tabler-outline/car-suv.svg +25 -0
  8077. skills/ppt-master/templates/icons/tabler-outline/car-turbine.svg +27 -0
  8078. skills/ppt-master/templates/icons/tabler-outline/car.svg +21 -0
  8079. skills/ppt-master/templates/icons/tabler-outline/carambola.svg +19 -0
  8080. skills/ppt-master/templates/icons/tabler-outline/caravan.svg +23 -0
  8081. skills/ppt-master/templates/icons/tabler-outline/cardboards-off.svg +22 -0
  8082. skills/ppt-master/templates/icons/tabler-outline/cardboards.svg +21 -0
  8083. skills/ppt-master/templates/icons/tabler-outline/cards.svg +21 -0
  8084. skills/ppt-master/templates/icons/tabler-outline/caret-down.svg +19 -0
  8085. skills/ppt-master/templates/icons/tabler-outline/caret-left-right.svg +20 -0
  8086. skills/ppt-master/templates/icons/tabler-outline/caret-left.svg +19 -0
  8087. skills/ppt-master/templates/icons/tabler-outline/caret-right.svg +19 -0
  8088. skills/ppt-master/templates/icons/tabler-outline/caret-up-down.svg +20 -0
  8089. skills/ppt-master/templates/icons/tabler-outline/caret-up.svg +19 -0
  8090. skills/ppt-master/templates/icons/tabler-outline/carousel-horizontal.svg +21 -0
  8091. skills/ppt-master/templates/icons/tabler-outline/carousel-vertical.svg +21 -0
  8092. skills/ppt-master/templates/icons/tabler-outline/carrot-off.svg +23 -0
  8093. skills/ppt-master/templates/icons/tabler-outline/carrot.svg +23 -0
  8094. skills/ppt-master/templates/icons/tabler-outline/cash-banknote-edit.svg +22 -0
  8095. skills/ppt-master/templates/icons/tabler-outline/cash-banknote-heart.svg +22 -0
  8096. skills/ppt-master/templates/icons/tabler-outline/cash-banknote-minus.svg +23 -0
  8097. skills/ppt-master/templates/icons/tabler-outline/cash-banknote-move-back.svg +24 -0
  8098. skills/ppt-master/templates/icons/tabler-outline/cash-banknote-move.svg +24 -0
  8099. skills/ppt-master/templates/icons/tabler-outline/cash-banknote-off.svg +23 -0
  8100. skills/ppt-master/templates/icons/tabler-outline/cash-banknote-plus.svg +24 -0
  8101. skills/ppt-master/templates/icons/tabler-outline/cash-banknote.svg +22 -0
  8102. skills/ppt-master/templates/icons/tabler-outline/cash-edit.svg +21 -0
  8103. skills/ppt-master/templates/icons/tabler-outline/cash-heart.svg +21 -0
  8104. skills/ppt-master/templates/icons/tabler-outline/cash-minus.svg +22 -0
  8105. skills/ppt-master/templates/icons/tabler-outline/cash-move-back.svg +23 -0
  8106. skills/ppt-master/templates/icons/tabler-outline/cash-move.svg +23 -0
  8107. skills/ppt-master/templates/icons/tabler-outline/cash-off.svg +22 -0
  8108. skills/ppt-master/templates/icons/tabler-outline/cash-plus.svg +23 -0
  8109. skills/ppt-master/templates/icons/tabler-outline/cash-register.svg +26 -0
  8110. skills/ppt-master/templates/icons/tabler-outline/cash.svg +21 -0
  8111. skills/ppt-master/templates/icons/tabler-outline/cast-off.svg +23 -0
  8112. skills/ppt-master/templates/icons/tabler-outline/cast.svg +22 -0
  8113. skills/ppt-master/templates/icons/tabler-outline/cat.svg +24 -0
  8114. skills/ppt-master/templates/icons/tabler-outline/category-2.svg +22 -0
  8115. skills/ppt-master/templates/icons/tabler-outline/category-minus.svg +22 -0
  8116. skills/ppt-master/templates/icons/tabler-outline/category-plus.svg +22 -0
  8117. skills/ppt-master/templates/icons/tabler-outline/category.svg +22 -0
  8118. skills/ppt-master/templates/icons/tabler-outline/ce-off.svg +22 -0
  8119. skills/ppt-master/templates/icons/tabler-outline/ce.svg +21 -0
  8120. skills/ppt-master/templates/icons/tabler-outline/cell-signal-1.svg +19 -0
  8121. skills/ppt-master/templates/icons/tabler-outline/cell-signal-2.svg +20 -0
  8122. skills/ppt-master/templates/icons/tabler-outline/cell-signal-3.svg +20 -0
  8123. skills/ppt-master/templates/icons/tabler-outline/cell-signal-4.svg +20 -0
  8124. skills/ppt-master/templates/icons/tabler-outline/cell-signal-5.svg +22 -0
  8125. skills/ppt-master/templates/icons/tabler-outline/cell-signal-off.svg +20 -0
  8126. skills/ppt-master/templates/icons/tabler-outline/cell.svg +21 -0
  8127. skills/ppt-master/templates/icons/tabler-outline/certificate-2-off.svg +23 -0
  8128. skills/ppt-master/templates/icons/tabler-outline/certificate-2.svg +22 -0
  8129. skills/ppt-master/templates/icons/tabler-outline/certificate-off.svg +25 -0
  8130. skills/ppt-master/templates/icons/tabler-outline/certificate.svg +24 -0
  8131. skills/ppt-master/templates/icons/tabler-outline/chair-director.svg +25 -0
  8132. skills/ppt-master/templates/icons/tabler-outline/chalkboard-off.svg +21 -0
  8133. skills/ppt-master/templates/icons/tabler-outline/chalkboard-teacher.svg +21 -0
  8134. skills/ppt-master/templates/icons/tabler-outline/chalkboard.svg +20 -0
  8135. skills/ppt-master/templates/icons/tabler-outline/charging-pile.svg +24 -0
  8136. skills/ppt-master/templates/icons/tabler-outline/chart-arcs-3.svg +21 -0
  8137. skills/ppt-master/templates/icons/tabler-outline/chart-arcs.svg +21 -0
  8138. skills/ppt-master/templates/icons/tabler-outline/chart-area-line.svg +20 -0
  8139. skills/ppt-master/templates/icons/tabler-outline/chart-area.svg +20 -0
  8140. skills/ppt-master/templates/icons/tabler-outline/chart-arrows-vertical.svg +25 -0
  8141. skills/ppt-master/templates/icons/tabler-outline/chart-arrows.svg +25 -0
  8142. skills/ppt-master/templates/icons/tabler-outline/chart-bar-off.svg +23 -0
  8143. skills/ppt-master/templates/icons/tabler-outline/chart-bar-popular.svg +22 -0
  8144. skills/ppt-master/templates/icons/tabler-outline/chart-bar.svg +22 -0
  8145. skills/ppt-master/templates/icons/tabler-outline/chart-bubble.svg +21 -0
  8146. skills/ppt-master/templates/icons/tabler-outline/chart-candle.svg +27 -0
  8147. skills/ppt-master/templates/icons/tabler-outline/chart-circles.svg +20 -0
  8148. skills/ppt-master/templates/icons/tabler-outline/chart-cohort.svg +20 -0
  8149. skills/ppt-master/templates/icons/tabler-outline/chart-column.svg +30 -0
  8150. skills/ppt-master/templates/icons/tabler-outline/chart-covariate.svg +24 -0
  8151. skills/ppt-master/templates/icons/tabler-outline/chart-donut-2.svg +21 -0
  8152. skills/ppt-master/templates/icons/tabler-outline/chart-donut-3.svg +22 -0
  8153. skills/ppt-master/templates/icons/tabler-outline/chart-donut-4.svg +23 -0
  8154. skills/ppt-master/templates/icons/tabler-outline/chart-donut.svg +20 -0
  8155. skills/ppt-master/templates/icons/tabler-outline/chart-dots-2.svg +25 -0
  8156. skills/ppt-master/templates/icons/tabler-outline/chart-dots-3.svg +25 -0
  8157. skills/ppt-master/templates/icons/tabler-outline/chart-dots.svg +24 -0
  8158. skills/ppt-master/templates/icons/tabler-outline/chart-funnel.svg +21 -0
  8159. skills/ppt-master/templates/icons/tabler-outline/chart-grid-dots.svg +36 -0
  8160. skills/ppt-master/templates/icons/tabler-outline/chart-histogram.svg +24 -0
  8161. skills/ppt-master/templates/icons/tabler-outline/chart-infographic.svg +24 -0
  8162. skills/ppt-master/templates/icons/tabler-outline/chart-line.svg +20 -0
  8163. skills/ppt-master/templates/icons/tabler-outline/chart-pie-2.svg +20 -0
  8164. skills/ppt-master/templates/icons/tabler-outline/chart-pie-3.svg +21 -0
  8165. skills/ppt-master/templates/icons/tabler-outline/chart-pie-4.svg +22 -0
  8166. skills/ppt-master/templates/icons/tabler-outline/chart-pie-off.svg +21 -0
  8167. skills/ppt-master/templates/icons/tabler-outline/chart-pie.svg +20 -0
  8168. skills/ppt-master/templates/icons/tabler-outline/chart-ppf.svg +20 -0
  8169. skills/ppt-master/templates/icons/tabler-outline/chart-radar.svg +23 -0
  8170. skills/ppt-master/templates/icons/tabler-outline/chart-sankey.svg +21 -0
  8171. skills/ppt-master/templates/icons/tabler-outline/chart-scatter-3d.svg +27 -0
  8172. skills/ppt-master/templates/icons/tabler-outline/chart-scatter.svg +24 -0
  8173. skills/ppt-master/templates/icons/tabler-outline/chart-treemap.svg +24 -0
  8174. skills/ppt-master/templates/icons/tabler-outline/check.svg +19 -0
  8175. skills/ppt-master/templates/icons/tabler-outline/checkbox.svg +20 -0
  8176. skills/ppt-master/templates/icons/tabler-outline/checklist.svg +22 -0
  8177. skills/ppt-master/templates/icons/tabler-outline/checks.svg +20 -0
  8178. skills/ppt-master/templates/icons/tabler-outline/checkup-list.svg +23 -0
  8179. skills/ppt-master/templates/icons/tabler-outline/cheese.svg +23 -0
  8180. skills/ppt-master/templates/icons/tabler-outline/chef-hat-off.svg +21 -0
  8181. skills/ppt-master/templates/icons/tabler-outline/chef-hat.svg +20 -0
  8182. skills/ppt-master/templates/icons/tabler-outline/cherry.svg +23 -0
  8183. skills/ppt-master/templates/icons/tabler-outline/chess-bishop.svg +23 -0
  8184. skills/ppt-master/templates/icons/tabler-outline/chess-king.svg +22 -0
  8185. skills/ppt-master/templates/icons/tabler-outline/chess-knight.svg +20 -0
  8186. skills/ppt-master/templates/icons/tabler-outline/chess-queen.svg +23 -0
  8187. skills/ppt-master/templates/icons/tabler-outline/chess-rook.svg +23 -0
  8188. skills/ppt-master/templates/icons/tabler-outline/chess.svg +21 -0
  8189. skills/ppt-master/templates/icons/tabler-outline/chevron-compact-down.svg +19 -0
  8190. skills/ppt-master/templates/icons/tabler-outline/chevron-compact-left.svg +19 -0
  8191. skills/ppt-master/templates/icons/tabler-outline/chevron-compact-right.svg +19 -0
  8192. skills/ppt-master/templates/icons/tabler-outline/chevron-compact-up.svg +19 -0
  8193. skills/ppt-master/templates/icons/tabler-outline/chevron-down-left.svg +19 -0
  8194. skills/ppt-master/templates/icons/tabler-outline/chevron-down-right.svg +19 -0
  8195. skills/ppt-master/templates/icons/tabler-outline/chevron-down.svg +19 -0
  8196. skills/ppt-master/templates/icons/tabler-outline/chevron-left-pipe.svg +20 -0
  8197. skills/ppt-master/templates/icons/tabler-outline/chevron-left.svg +19 -0
  8198. skills/ppt-master/templates/icons/tabler-outline/chevron-right-pipe.svg +20 -0
  8199. skills/ppt-master/templates/icons/tabler-outline/chevron-right.svg +19 -0
  8200. skills/ppt-master/templates/icons/tabler-outline/chevron-up-left.svg +19 -0
  8201. skills/ppt-master/templates/icons/tabler-outline/chevron-up-right.svg +19 -0
  8202. skills/ppt-master/templates/icons/tabler-outline/chevron-up.svg +19 -0
  8203. skills/ppt-master/templates/icons/tabler-outline/chevrons-down-left.svg +20 -0
  8204. skills/ppt-master/templates/icons/tabler-outline/chevrons-down-right.svg +20 -0
  8205. skills/ppt-master/templates/icons/tabler-outline/chevrons-down.svg +20 -0
  8206. skills/ppt-master/templates/icons/tabler-outline/chevrons-left.svg +20 -0
  8207. skills/ppt-master/templates/icons/tabler-outline/chevrons-right.svg +20 -0
  8208. skills/ppt-master/templates/icons/tabler-outline/chevrons-up-left.svg +20 -0
  8209. skills/ppt-master/templates/icons/tabler-outline/chevrons-up-right.svg +20 -0
  8210. skills/ppt-master/templates/icons/tabler-outline/chevrons-up.svg +20 -0
  8211. skills/ppt-master/templates/icons/tabler-outline/chisel.svg +21 -0
  8212. skills/ppt-master/templates/icons/tabler-outline/christmas-ball.svg +22 -0
  8213. skills/ppt-master/templates/icons/tabler-outline/christmas-tree-off.svg +21 -0
  8214. skills/ppt-master/templates/icons/tabler-outline/christmas-tree.svg +20 -0
  8215. skills/ppt-master/templates/icons/tabler-outline/circle-arrow-down-left.svg +21 -0
  8216. skills/ppt-master/templates/icons/tabler-outline/circle-arrow-down-right.svg +21 -0
  8217. skills/ppt-master/templates/icons/tabler-outline/circle-arrow-down.svg +22 -0
  8218. skills/ppt-master/templates/icons/tabler-outline/circle-arrow-left.svg +22 -0
  8219. skills/ppt-master/templates/icons/tabler-outline/circle-arrow-right.svg +22 -0
  8220. skills/ppt-master/templates/icons/tabler-outline/circle-arrow-up-left.svg +21 -0
  8221. skills/ppt-master/templates/icons/tabler-outline/circle-arrow-up-right.svg +21 -0
  8222. skills/ppt-master/templates/icons/tabler-outline/circle-arrow-up.svg +22 -0
  8223. skills/ppt-master/templates/icons/tabler-outline/circle-asterisk.svg +22 -0
  8224. skills/ppt-master/templates/icons/tabler-outline/circle-caret-down.svg +20 -0
  8225. skills/ppt-master/templates/icons/tabler-outline/circle-caret-left.svg +20 -0
  8226. skills/ppt-master/templates/icons/tabler-outline/circle-caret-right.svg +20 -0
  8227. skills/ppt-master/templates/icons/tabler-outline/circle-caret-up.svg +20 -0
  8228. skills/ppt-master/templates/icons/tabler-outline/circle-check.svg +20 -0
  8229. skills/ppt-master/templates/icons/tabler-outline/circle-chevron-down.svg +20 -0
  8230. skills/ppt-master/templates/icons/tabler-outline/circle-chevron-left.svg +20 -0
  8231. skills/ppt-master/templates/icons/tabler-outline/circle-chevron-right.svg +20 -0
  8232. skills/ppt-master/templates/icons/tabler-outline/circle-chevron-up.svg +20 -0
  8233. skills/ppt-master/templates/icons/tabler-outline/circle-chevrons-down.svg +21 -0
  8234. skills/ppt-master/templates/icons/tabler-outline/circle-chevrons-left.svg +21 -0
  8235. skills/ppt-master/templates/icons/tabler-outline/circle-chevrons-right.svg +21 -0
  8236. skills/ppt-master/templates/icons/tabler-outline/circle-chevrons-up.svg +21 -0
  8237. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-check.svg +27 -0
  8238. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-a.svg +28 -0
  8239. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-b.svg +27 -0
  8240. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-c.svg +27 -0
  8241. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-d.svg +27 -0
  8242. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-e.svg +28 -0
  8243. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-f.svg +28 -0
  8244. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-g.svg +27 -0
  8245. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-h.svg +28 -0
  8246. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-i.svg +27 -0
  8247. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-j.svg +27 -0
  8248. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-k.svg +29 -0
  8249. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-l.svg +27 -0
  8250. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-m.svg +27 -0
  8251. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-n.svg +27 -0
  8252. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-o.svg +27 -0
  8253. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-p.svg +27 -0
  8254. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-q.svg +28 -0
  8255. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-r.svg +27 -0
  8256. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-s.svg +27 -0
  8257. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-t.svg +28 -0
  8258. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-u.svg +27 -0
  8259. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-v.svg +27 -0
  8260. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-w.svg +27 -0
  8261. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-x.svg +28 -0
  8262. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-y.svg +28 -0
  8263. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-z.svg +27 -0
  8264. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-minus.svg +27 -0
  8265. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-0.svg +27 -0
  8266. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-1.svg +27 -0
  8267. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-2.svg +27 -0
  8268. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-3.svg +27 -0
  8269. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-4.svg +28 -0
  8270. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-5.svg +27 -0
  8271. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-6.svg +27 -0
  8272. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-7.svg +27 -0
  8273. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-8.svg +27 -0
  8274. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-9.svg +27 -0
  8275. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-percentage.svg +29 -0
  8276. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-plus.svg +28 -0
  8277. skills/ppt-master/templates/icons/tabler-outline/circle-dashed-x.svg +28 -0
  8278. skills/ppt-master/templates/icons/tabler-outline/circle-dashed.svg +26 -0
  8279. skills/ppt-master/templates/icons/tabler-outline/circle-dot.svg +20 -0
  8280. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-a.svg +32 -0
  8281. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-b.svg +31 -0
  8282. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-c.svg +31 -0
  8283. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-d.svg +31 -0
  8284. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-e.svg +32 -0
  8285. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-f.svg +32 -0
  8286. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-g.svg +31 -0
  8287. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-h.svg +32 -0
  8288. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-i.svg +31 -0
  8289. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-j.svg +31 -0
  8290. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-k.svg +33 -0
  8291. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-l.svg +31 -0
  8292. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-m.svg +31 -0
  8293. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-n.svg +31 -0
  8294. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-o.svg +31 -0
  8295. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-p.svg +31 -0
  8296. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-q.svg +32 -0
  8297. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-r.svg +31 -0
  8298. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-s.svg +31 -0
  8299. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-t.svg +32 -0
  8300. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-u.svg +31 -0
  8301. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-v.svg +31 -0
  8302. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-w.svg +31 -0
  8303. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-x.svg +32 -0
  8304. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-y.svg +32 -0
  8305. skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-z.svg +31 -0
  8306. skills/ppt-master/templates/icons/tabler-outline/circle-dotted.svg +30 -0
  8307. skills/ppt-master/templates/icons/tabler-outline/circle-half-2.svg +23 -0
  8308. skills/ppt-master/templates/icons/tabler-outline/circle-half-vertical.svg +20 -0
  8309. skills/ppt-master/templates/icons/tabler-outline/circle-half.svg +20 -0
  8310. skills/ppt-master/templates/icons/tabler-outline/circle-key.svg +22 -0
  8311. skills/ppt-master/templates/icons/tabler-outline/circle-letter-a.svg +21 -0
  8312. skills/ppt-master/templates/icons/tabler-outline/circle-letter-b.svg +20 -0
  8313. skills/ppt-master/templates/icons/tabler-outline/circle-letter-c.svg +20 -0
  8314. skills/ppt-master/templates/icons/tabler-outline/circle-letter-d.svg +20 -0
  8315. skills/ppt-master/templates/icons/tabler-outline/circle-letter-e.svg +21 -0
  8316. skills/ppt-master/templates/icons/tabler-outline/circle-letter-f.svg +21 -0
  8317. skills/ppt-master/templates/icons/tabler-outline/circle-letter-g.svg +20 -0
  8318. skills/ppt-master/templates/icons/tabler-outline/circle-letter-h.svg +21 -0
  8319. skills/ppt-master/templates/icons/tabler-outline/circle-letter-i.svg +20 -0
  8320. skills/ppt-master/templates/icons/tabler-outline/circle-letter-j.svg +20 -0
  8321. skills/ppt-master/templates/icons/tabler-outline/circle-letter-k.svg +22 -0
  8322. skills/ppt-master/templates/icons/tabler-outline/circle-letter-l.svg +20 -0
  8323. skills/ppt-master/templates/icons/tabler-outline/circle-letter-m.svg +20 -0
  8324. skills/ppt-master/templates/icons/tabler-outline/circle-letter-n.svg +20 -0
  8325. skills/ppt-master/templates/icons/tabler-outline/circle-letter-o.svg +20 -0
  8326. skills/ppt-master/templates/icons/tabler-outline/circle-letter-p.svg +20 -0
  8327. skills/ppt-master/templates/icons/tabler-outline/circle-letter-q.svg +21 -0
  8328. skills/ppt-master/templates/icons/tabler-outline/circle-letter-r.svg +20 -0
  8329. skills/ppt-master/templates/icons/tabler-outline/circle-letter-s.svg +20 -0
  8330. skills/ppt-master/templates/icons/tabler-outline/circle-letter-t.svg +21 -0
  8331. skills/ppt-master/templates/icons/tabler-outline/circle-letter-u.svg +20 -0
  8332. skills/ppt-master/templates/icons/tabler-outline/circle-letter-v.svg +20 -0
  8333. skills/ppt-master/templates/icons/tabler-outline/circle-letter-w.svg +20 -0
  8334. skills/ppt-master/templates/icons/tabler-outline/circle-letter-x.svg +21 -0
  8335. skills/ppt-master/templates/icons/tabler-outline/circle-letter-y.svg +21 -0
  8336. skills/ppt-master/templates/icons/tabler-outline/circle-letter-z.svg +20 -0
  8337. skills/ppt-master/templates/icons/tabler-outline/circle-minus-2.svg +20 -0
  8338. skills/ppt-master/templates/icons/tabler-outline/circle-minus.svg +20 -0
  8339. skills/ppt-master/templates/icons/tabler-outline/circle-number-0.svg +20 -0
  8340. skills/ppt-master/templates/icons/tabler-outline/circle-number-1.svg +20 -0
  8341. skills/ppt-master/templates/icons/tabler-outline/circle-number-2.svg +20 -0
  8342. skills/ppt-master/templates/icons/tabler-outline/circle-number-3.svg +20 -0
  8343. skills/ppt-master/templates/icons/tabler-outline/circle-number-4.svg +21 -0
  8344. skills/ppt-master/templates/icons/tabler-outline/circle-number-5.svg +20 -0
  8345. skills/ppt-master/templates/icons/tabler-outline/circle-number-6.svg +20 -0
  8346. skills/ppt-master/templates/icons/tabler-outline/circle-number-7.svg +20 -0
  8347. skills/ppt-master/templates/icons/tabler-outline/circle-number-8.svg +20 -0
  8348. skills/ppt-master/templates/icons/tabler-outline/circle-number-9.svg +20 -0
  8349. skills/ppt-master/templates/icons/tabler-outline/circle-off.svg +20 -0
  8350. skills/ppt-master/templates/icons/tabler-outline/circle-open-arrow-down.svg +20 -0
  8351. skills/ppt-master/templates/icons/tabler-outline/circle-open-arrow-left.svg +20 -0
  8352. skills/ppt-master/templates/icons/tabler-outline/circle-open-arrow-right.svg +20 -0
  8353. skills/ppt-master/templates/icons/tabler-outline/circle-open-arrow-up.svg +20 -0
  8354. skills/ppt-master/templates/icons/tabler-outline/circle-percentage.svg +22 -0
  8355. skills/ppt-master/templates/icons/tabler-outline/circle-plus-2.svg +21 -0
  8356. skills/ppt-master/templates/icons/tabler-outline/circle-plus-minus.svg +22 -0
  8357. skills/ppt-master/templates/icons/tabler-outline/circle-plus.svg +21 -0
  8358. skills/ppt-master/templates/icons/tabler-outline/circle-rectangle-off.svg +21 -0
  8359. skills/ppt-master/templates/icons/tabler-outline/circle-rectangle.svg +20 -0
  8360. skills/ppt-master/templates/icons/tabler-outline/circle-square.svg +20 -0
  8361. skills/ppt-master/templates/icons/tabler-outline/circle-triangle.svg +20 -0
  8362. skills/ppt-master/templates/icons/tabler-outline/circle-x.svg +20 -0
  8363. skills/ppt-master/templates/icons/tabler-outline/circle.svg +19 -0
  8364. skills/ppt-master/templates/icons/tabler-outline/circles-relation.svg +20 -0
  8365. skills/ppt-master/templates/icons/tabler-outline/circles.svg +21 -0
  8366. skills/ppt-master/templates/icons/tabler-outline/circuit-ammeter.svg +23 -0
  8367. skills/ppt-master/templates/icons/tabler-outline/circuit-battery.svg +24 -0
  8368. skills/ppt-master/templates/icons/tabler-outline/circuit-bulb.svg +23 -0
  8369. skills/ppt-master/templates/icons/tabler-outline/circuit-capacitor-polarized.svg +24 -0
  8370. skills/ppt-master/templates/icons/tabler-outline/circuit-capacitor.svg +22 -0
  8371. skills/ppt-master/templates/icons/tabler-outline/circuit-cell-plus.svg +24 -0
  8372. skills/ppt-master/templates/icons/tabler-outline/circuit-cell.svg +22 -0
  8373. skills/ppt-master/templates/icons/tabler-outline/circuit-changeover.svg +25 -0
  8374. skills/ppt-master/templates/icons/tabler-outline/circuit-diode-zener.svg +22 -0
  8375. skills/ppt-master/templates/icons/tabler-outline/circuit-diode.svg +22 -0
  8376. skills/ppt-master/templates/icons/tabler-outline/circuit-ground-digital.svg +20 -0
  8377. skills/ppt-master/templates/icons/tabler-outline/circuit-ground.svg +22 -0
  8378. skills/ppt-master/templates/icons/tabler-outline/circuit-inductor.svg +19 -0
  8379. skills/ppt-master/templates/icons/tabler-outline/circuit-motor.svg +22 -0
  8380. skills/ppt-master/templates/icons/tabler-outline/circuit-pushbutton.svg +24 -0
  8381. skills/ppt-master/templates/icons/tabler-outline/circuit-resistor.svg +19 -0
  8382. skills/ppt-master/templates/icons/tabler-outline/circuit-switch-closed.svg +23 -0
  8383. skills/ppt-master/templates/icons/tabler-outline/circuit-switch-open.svg +23 -0
  8384. skills/ppt-master/templates/icons/tabler-outline/circuit-voltmeter.svg +22 -0
  8385. skills/ppt-master/templates/icons/tabler-outline/clear-all.svg +21 -0
  8386. skills/ppt-master/templates/icons/tabler-outline/clear-formatting.svg +22 -0
  8387. skills/ppt-master/templates/icons/tabler-outline/click.svg +24 -0
  8388. skills/ppt-master/templates/icons/tabler-outline/cliff-jumping.svg +23 -0
  8389. skills/ppt-master/templates/icons/tabler-outline/clipboard-check.svg +21 -0
  8390. skills/ppt-master/templates/icons/tabler-outline/clipboard-copy.svg +21 -0
  8391. skills/ppt-master/templates/icons/tabler-outline/clipboard-data.svg +24 -0
  8392. skills/ppt-master/templates/icons/tabler-outline/clipboard-heart.svg +21 -0
  8393. skills/ppt-master/templates/icons/tabler-outline/clipboard-list.svg +24 -0
  8394. skills/ppt-master/templates/icons/tabler-outline/clipboard-off.svg +21 -0
  8395. skills/ppt-master/templates/icons/tabler-outline/clipboard-plus.svg +22 -0
  8396. skills/ppt-master/templates/icons/tabler-outline/clipboard-search.svg +22 -0
  8397. skills/ppt-master/templates/icons/tabler-outline/clipboard-smile.svg +23 -0
  8398. skills/ppt-master/templates/icons/tabler-outline/clipboard-text.svg +22 -0
  8399. skills/ppt-master/templates/icons/tabler-outline/clipboard-typography.svg +23 -0
  8400. skills/ppt-master/templates/icons/tabler-outline/clipboard-x.svg +21 -0
  8401. skills/ppt-master/templates/icons/tabler-outline/clipboard.svg +20 -0
  8402. skills/ppt-master/templates/icons/tabler-outline/clock-12.svg +22 -0
  8403. skills/ppt-master/templates/icons/tabler-outline/clock-2.svg +23 -0
  8404. skills/ppt-master/templates/icons/tabler-outline/clock-24.svg +23 -0
  8405. skills/ppt-master/templates/icons/tabler-outline/clock-bitcoin.svg +21 -0
  8406. skills/ppt-master/templates/icons/tabler-outline/clock-bolt.svg +21 -0
  8407. skills/ppt-master/templates/icons/tabler-outline/clock-cancel.svg +22 -0
  8408. skills/ppt-master/templates/icons/tabler-outline/clock-check.svg +21 -0
  8409. skills/ppt-master/templates/icons/tabler-outline/clock-code.svg +22 -0
  8410. skills/ppt-master/templates/icons/tabler-outline/clock-cog.svg +27 -0
  8411. skills/ppt-master/templates/icons/tabler-outline/clock-dollar.svg +22 -0
  8412. skills/ppt-master/templates/icons/tabler-outline/clock-down.svg +22 -0
  8413. skills/ppt-master/templates/icons/tabler-outline/clock-edit.svg +21 -0
  8414. skills/ppt-master/templates/icons/tabler-outline/clock-exclamation.svg +22 -0
  8415. skills/ppt-master/templates/icons/tabler-outline/clock-heart.svg +21 -0
  8416. skills/ppt-master/templates/icons/tabler-outline/clock-hour-1.svg +21 -0
  8417. skills/ppt-master/templates/icons/tabler-outline/clock-hour-10.svg +21 -0
  8418. skills/ppt-master/templates/icons/tabler-outline/clock-hour-11.svg +21 -0
  8419. skills/ppt-master/templates/icons/tabler-outline/clock-hour-12.svg +20 -0
  8420. skills/ppt-master/templates/icons/tabler-outline/clock-hour-2.svg +21 -0
  8421. skills/ppt-master/templates/icons/tabler-outline/clock-hour-3.svg +21 -0
  8422. skills/ppt-master/templates/icons/tabler-outline/clock-hour-4.svg +21 -0
  8423. skills/ppt-master/templates/icons/tabler-outline/clock-hour-5.svg +21 -0
  8424. skills/ppt-master/templates/icons/tabler-outline/clock-hour-6.svg +21 -0
  8425. skills/ppt-master/templates/icons/tabler-outline/clock-hour-7.svg +21 -0
  8426. skills/ppt-master/templates/icons/tabler-outline/clock-hour-8.svg +21 -0
  8427. skills/ppt-master/templates/icons/tabler-outline/clock-hour-9.svg +21 -0
  8428. skills/ppt-master/templates/icons/tabler-outline/clock-minus.svg +21 -0
  8429. skills/ppt-master/templates/icons/tabler-outline/clock-off.svg +21 -0
  8430. skills/ppt-master/templates/icons/tabler-outline/clock-pause.svg +22 -0
  8431. skills/ppt-master/templates/icons/tabler-outline/clock-pin.svg +22 -0
  8432. skills/ppt-master/templates/icons/tabler-outline/clock-play.svg +21 -0
  8433. skills/ppt-master/templates/icons/tabler-outline/clock-plus.svg +22 -0
  8434. skills/ppt-master/templates/icons/tabler-outline/clock-question.svg +22 -0
  8435. skills/ppt-master/templates/icons/tabler-outline/clock-record.svg +21 -0
  8436. skills/ppt-master/templates/icons/tabler-outline/clock-search.svg +22 -0
  8437. skills/ppt-master/templates/icons/tabler-outline/clock-share.svg +22 -0
  8438. skills/ppt-master/templates/icons/tabler-outline/clock-shield.svg +21 -0
  8439. skills/ppt-master/templates/icons/tabler-outline/clock-star.svg +21 -0
  8440. skills/ppt-master/templates/icons/tabler-outline/clock-stop.svg +21 -0
  8441. skills/ppt-master/templates/icons/tabler-outline/clock-up.svg +22 -0
  8442. skills/ppt-master/templates/icons/tabler-outline/clock-x.svg +22 -0
  8443. skills/ppt-master/templates/icons/tabler-outline/clock.svg +20 -0
  8444. skills/ppt-master/templates/icons/tabler-outline/clothes-rack-off.svg +23 -0
  8445. skills/ppt-master/templates/icons/tabler-outline/clothes-rack.svg +22 -0
  8446. skills/ppt-master/templates/icons/tabler-outline/cloud-bitcoin.svg +20 -0
  8447. skills/ppt-master/templates/icons/tabler-outline/cloud-bolt.svg +20 -0
  8448. skills/ppt-master/templates/icons/tabler-outline/cloud-cancel.svg +21 -0
  8449. skills/ppt-master/templates/icons/tabler-outline/cloud-check.svg +20 -0
  8450. skills/ppt-master/templates/icons/tabler-outline/cloud-code.svg +21 -0
  8451. skills/ppt-master/templates/icons/tabler-outline/cloud-cog.svg +26 -0
  8452. skills/ppt-master/templates/icons/tabler-outline/cloud-computing.svg +22 -0
  8453. skills/ppt-master/templates/icons/tabler-outline/cloud-data-connection.svg +23 -0
  8454. skills/ppt-master/templates/icons/tabler-outline/cloud-dollar.svg +21 -0
  8455. skills/ppt-master/templates/icons/tabler-outline/cloud-down.svg +21 -0
  8456. skills/ppt-master/templates/icons/tabler-outline/cloud-download.svg +21 -0
  8457. skills/ppt-master/templates/icons/tabler-outline/cloud-exclamation.svg +21 -0
  8458. skills/ppt-master/templates/icons/tabler-outline/cloud-fog.svg +20 -0
  8459. skills/ppt-master/templates/icons/tabler-outline/cloud-heart.svg +20 -0
  8460. skills/ppt-master/templates/icons/tabler-outline/cloud-lock-open.svg +21 -0
  8461. skills/ppt-master/templates/icons/tabler-outline/cloud-lock.svg +21 -0
  8462. skills/ppt-master/templates/icons/tabler-outline/cloud-minus.svg +20 -0
  8463. skills/ppt-master/templates/icons/tabler-outline/cloud-network.svg +23 -0
  8464. skills/ppt-master/templates/icons/tabler-outline/cloud-off.svg +20 -0
  8465. skills/ppt-master/templates/icons/tabler-outline/cloud-pause.svg +21 -0
  8466. skills/ppt-master/templates/icons/tabler-outline/cloud-pin.svg +21 -0
  8467. skills/ppt-master/templates/icons/tabler-outline/cloud-plus.svg +21 -0
  8468. skills/ppt-master/templates/icons/tabler-outline/cloud-question.svg +21 -0
  8469. skills/ppt-master/templates/icons/tabler-outline/cloud-rain.svg +20 -0
  8470. skills/ppt-master/templates/icons/tabler-outline/cloud-search.svg +21 -0
  8471. skills/ppt-master/templates/icons/tabler-outline/cloud-share.svg +21 -0
  8472. skills/ppt-master/templates/icons/tabler-outline/cloud-snow.svg +20 -0
  8473. skills/ppt-master/templates/icons/tabler-outline/cloud-star.svg +20 -0
  8474. skills/ppt-master/templates/icons/tabler-outline/cloud-storm.svg +20 -0
  8475. skills/ppt-master/templates/icons/tabler-outline/cloud-up.svg +21 -0
  8476. skills/ppt-master/templates/icons/tabler-outline/cloud-upload.svg +21 -0
  8477. skills/ppt-master/templates/icons/tabler-outline/cloud-x.svg +21 -0
  8478. skills/ppt-master/templates/icons/tabler-outline/cloud.svg +19 -0
  8479. skills/ppt-master/templates/icons/tabler-outline/clover-2.svg +23 -0
  8480. skills/ppt-master/templates/icons/tabler-outline/clover.svg +22 -0
  8481. skills/ppt-master/templates/icons/tabler-outline/clubs.svg +19 -0
  8482. skills/ppt-master/templates/icons/tabler-outline/code-asterisk.svg +26 -0
  8483. skills/ppt-master/templates/icons/tabler-outline/code-circle-2.svg +22 -0
  8484. skills/ppt-master/templates/icons/tabler-outline/code-circle.svg +21 -0
  8485. skills/ppt-master/templates/icons/tabler-outline/code-dots.svg +23 -0
  8486. skills/ppt-master/templates/icons/tabler-outline/code-minus.svg +21 -0
  8487. skills/ppt-master/templates/icons/tabler-outline/code-off.svg +22 -0
  8488. skills/ppt-master/templates/icons/tabler-outline/code-plus.svg +22 -0
  8489. skills/ppt-master/templates/icons/tabler-outline/code-variable-minus.svg +20 -0
  8490. skills/ppt-master/templates/icons/tabler-outline/code-variable-plus.svg +21 -0
  8491. skills/ppt-master/templates/icons/tabler-outline/code-variable.svg +19 -0
  8492. skills/ppt-master/templates/icons/tabler-outline/code.svg +21 -0
  8493. skills/ppt-master/templates/icons/tabler-outline/codeblock.svg +22 -0
  8494. skills/ppt-master/templates/icons/tabler-outline/coffee-off.svg +24 -0
  8495. skills/ppt-master/templates/icons/tabler-outline/coffee.svg +23 -0
  8496. skills/ppt-master/templates/icons/tabler-outline/coffin.svg +22 -0
  8497. skills/ppt-master/templates/icons/tabler-outline/coin-bitcoin.svg +24 -0
  8498. skills/ppt-master/templates/icons/tabler-outline/coin-euro.svg +22 -0
  8499. skills/ppt-master/templates/icons/tabler-outline/coin-monero.svg +20 -0
  8500. skills/ppt-master/templates/icons/tabler-outline/coin-off.svg +22 -0
  8501. skills/ppt-master/templates/icons/tabler-outline/coin-pound.svg +21 -0
  8502. skills/ppt-master/templates/icons/tabler-outline/coin-rupee.svg +21 -0
  8503. skills/ppt-master/templates/icons/tabler-outline/coin-taka.svg +21 -0
  8504. skills/ppt-master/templates/icons/tabler-outline/coin-yen.svg +23 -0
  8505. skills/ppt-master/templates/icons/tabler-outline/coin-yuan.svg +22 -0
  8506. skills/ppt-master/templates/icons/tabler-outline/coin.svg +21 -0
  8507. skills/ppt-master/templates/icons/tabler-outline/coins.svg +23 -0
  8508. skills/ppt-master/templates/icons/tabler-outline/color-filter.svg +21 -0
  8509. skills/ppt-master/templates/icons/tabler-outline/color-picker-off.svg +21 -0
  8510. skills/ppt-master/templates/icons/tabler-outline/color-picker.svg +20 -0
  8511. skills/ppt-master/templates/icons/tabler-outline/color-swatch-off.svg +23 -0
  8512. skills/ppt-master/templates/icons/tabler-outline/color-swatch.svg +22 -0
  8513. skills/ppt-master/templates/icons/tabler-outline/column-insert-left.svg +21 -0
  8514. skills/ppt-master/templates/icons/tabler-outline/column-insert-right.svg +21 -0
  8515. skills/ppt-master/templates/icons/tabler-outline/column-remove.svg +21 -0
  8516. skills/ppt-master/templates/icons/tabler-outline/columns-1.svg +19 -0
  8517. skills/ppt-master/templates/icons/tabler-outline/columns-2.svg +20 -0
  8518. skills/ppt-master/templates/icons/tabler-outline/columns-3.svg +21 -0
  8519. skills/ppt-master/templates/icons/tabler-outline/columns-off.svg +27 -0
  8520. skills/ppt-master/templates/icons/tabler-outline/columns.svg +26 -0
  8521. skills/ppt-master/templates/icons/tabler-outline/comet.svg +22 -0
  8522. skills/ppt-master/templates/icons/tabler-outline/command-off.svg +20 -0
  8523. skills/ppt-master/templates/icons/tabler-outline/command.svg +19 -0
  8524. skills/ppt-master/templates/icons/tabler-outline/compass-off.svg +25 -0
  8525. skills/ppt-master/templates/icons/tabler-outline/compass.svg +24 -0
  8526. skills/ppt-master/templates/icons/tabler-outline/components-off.svg +23 -0
  8527. skills/ppt-master/templates/icons/tabler-outline/components.svg +22 -0
  8528. skills/ppt-master/templates/icons/tabler-outline/cone-2.svg +19 -0
  8529. skills/ppt-master/templates/icons/tabler-outline/cone-off.svg +20 -0
  8530. skills/ppt-master/templates/icons/tabler-outline/cone-plus.svg +21 -0
  8531. skills/ppt-master/templates/icons/tabler-outline/cone.svg +19 -0
  8532. skills/ppt-master/templates/icons/tabler-outline/confetti-off.svg +29 -0
  8533. skills/ppt-master/templates/icons/tabler-outline/confetti.svg +28 -0
  8534. skills/ppt-master/templates/icons/tabler-outline/confucius.svg +22 -0
  8535. skills/ppt-master/templates/icons/tabler-outline/congruent-to.svg +21 -0
  8536. skills/ppt-master/templates/icons/tabler-outline/connection.svg +21 -0
  8537. skills/ppt-master/templates/icons/tabler-outline/container-off.svg +30 -0
  8538. skills/ppt-master/templates/icons/tabler-outline/container.svg +29 -0
  8539. skills/ppt-master/templates/icons/tabler-outline/contract.svg +24 -0
  8540. skills/ppt-master/templates/icons/tabler-outline/contrast-2-off.svg +21 -0
  8541. skills/ppt-master/templates/icons/tabler-outline/contrast-2.svg +20 -0
  8542. skills/ppt-master/templates/icons/tabler-outline/contrast-off.svg +21 -0
  8543. skills/ppt-master/templates/icons/tabler-outline/contrast.svg +20 -0
  8544. skills/ppt-master/templates/icons/tabler-outline/cooker.svg +24 -0
  8545. skills/ppt-master/templates/icons/tabler-outline/cookie-man.svg +24 -0
  8546. skills/ppt-master/templates/icons/tabler-outline/cookie-off.svg +23 -0
  8547. skills/ppt-master/templates/icons/tabler-outline/cookie.svg +24 -0
  8548. skills/ppt-master/templates/icons/tabler-outline/copy-check.svg +21 -0
  8549. skills/ppt-master/templates/icons/tabler-outline/copy-minus.svg +21 -0
  8550. skills/ppt-master/templates/icons/tabler-outline/copy-off.svg +21 -0
  8551. skills/ppt-master/templates/icons/tabler-outline/copy-plus.svg +22 -0
  8552. skills/ppt-master/templates/icons/tabler-outline/copy-x.svg +22 -0
  8553. skills/ppt-master/templates/icons/tabler-outline/copy.svg +20 -0
  8554. skills/ppt-master/templates/icons/tabler-outline/copyleft-off.svg +21 -0
  8555. skills/ppt-master/templates/icons/tabler-outline/copyleft.svg +20 -0
  8556. skills/ppt-master/templates/icons/tabler-outline/copyright-off.svg +21 -0
  8557. skills/ppt-master/templates/icons/tabler-outline/copyright.svg +20 -0
  8558. skills/ppt-master/templates/icons/tabler-outline/corner-down-left-double.svg +20 -0
  8559. skills/ppt-master/templates/icons/tabler-outline/corner-down-left.svg +19 -0
  8560. skills/ppt-master/templates/icons/tabler-outline/corner-down-right-double.svg +20 -0
  8561. skills/ppt-master/templates/icons/tabler-outline/corner-down-right.svg +19 -0
  8562. skills/ppt-master/templates/icons/tabler-outline/corner-left-down-double.svg +20 -0
  8563. skills/ppt-master/templates/icons/tabler-outline/corner-left-down.svg +19 -0
  8564. skills/ppt-master/templates/icons/tabler-outline/corner-left-up-double.svg +20 -0
  8565. skills/ppt-master/templates/icons/tabler-outline/corner-left-up.svg +19 -0
  8566. skills/ppt-master/templates/icons/tabler-outline/corner-right-down-double.svg +20 -0
  8567. skills/ppt-master/templates/icons/tabler-outline/corner-right-down.svg +19 -0
  8568. skills/ppt-master/templates/icons/tabler-outline/corner-right-up-double.svg +20 -0
  8569. skills/ppt-master/templates/icons/tabler-outline/corner-right-up.svg +19 -0
  8570. skills/ppt-master/templates/icons/tabler-outline/corner-up-left-double.svg +20 -0
  8571. skills/ppt-master/templates/icons/tabler-outline/corner-up-left.svg +19 -0
  8572. skills/ppt-master/templates/icons/tabler-outline/corner-up-right-double.svg +20 -0
  8573. skills/ppt-master/templates/icons/tabler-outline/corner-up-right.svg +19 -0
  8574. skills/ppt-master/templates/icons/tabler-outline/cpu-2.svg +28 -0
  8575. skills/ppt-master/templates/icons/tabler-outline/cpu-off.svg +29 -0
  8576. skills/ppt-master/templates/icons/tabler-outline/cpu.svg +28 -0
  8577. skills/ppt-master/templates/icons/tabler-outline/crane-off.svg +26 -0
  8578. skills/ppt-master/templates/icons/tabler-outline/crane.svg +22 -0
  8579. skills/ppt-master/templates/icons/tabler-outline/creative-commons-by.svg +21 -0
  8580. skills/ppt-master/templates/icons/tabler-outline/creative-commons-nc.svg +24 -0
  8581. skills/ppt-master/templates/icons/tabler-outline/creative-commons-nd.svg +21 -0
  8582. skills/ppt-master/templates/icons/tabler-outline/creative-commons-off.svg +22 -0
  8583. skills/ppt-master/templates/icons/tabler-outline/creative-commons-sa.svg +21 -0
  8584. skills/ppt-master/templates/icons/tabler-outline/creative-commons-zero.svg +21 -0
  8585. skills/ppt-master/templates/icons/tabler-outline/creative-commons.svg +21 -0
  8586. skills/ppt-master/templates/icons/tabler-outline/credit-card-hand.svg +22 -0
  8587. skills/ppt-master/templates/icons/tabler-outline/credit-card-off.svg +25 -0
  8588. skills/ppt-master/templates/icons/tabler-outline/credit-card-pay.svg +24 -0
  8589. skills/ppt-master/templates/icons/tabler-outline/credit-card-refund.svg +24 -0
  8590. skills/ppt-master/templates/icons/tabler-outline/credit-card.svg +22 -0
  8591. skills/ppt-master/templates/icons/tabler-outline/credits.svg +23 -0
  8592. skills/ppt-master/templates/icons/tabler-outline/cricket.svg +21 -0
  8593. skills/ppt-master/templates/icons/tabler-outline/crop-1-1.svg +19 -0
  8594. skills/ppt-master/templates/icons/tabler-outline/crop-16-9.svg +19 -0
  8595. skills/ppt-master/templates/icons/tabler-outline/crop-3-2.svg +19 -0
  8596. skills/ppt-master/templates/icons/tabler-outline/crop-5-4.svg +19 -0
  8597. skills/ppt-master/templates/icons/tabler-outline/crop-7-5.svg +19 -0
  8598. skills/ppt-master/templates/icons/tabler-outline/crop-landscape.svg +19 -0
  8599. skills/ppt-master/templates/icons/tabler-outline/crop-portrait.svg +19 -0
  8600. skills/ppt-master/templates/icons/tabler-outline/crop.svg +20 -0
  8601. skills/ppt-master/templates/icons/tabler-outline/cross-off.svg +20 -0
  8602. skills/ppt-master/templates/icons/tabler-outline/cross.svg +19 -0
  8603. skills/ppt-master/templates/icons/tabler-outline/crosshair.svg +24 -0
  8604. skills/ppt-master/templates/icons/tabler-outline/crown-off.svg +20 -0
  8605. skills/ppt-master/templates/icons/tabler-outline/crown.svg +19 -0
  8606. skills/ppt-master/templates/icons/tabler-outline/crutches-off.svg +24 -0
  8607. skills/ppt-master/templates/icons/tabler-outline/crutches.svg +23 -0
  8608. skills/ppt-master/templates/icons/tabler-outline/crystal-ball.svg +21 -0
  8609. skills/ppt-master/templates/icons/tabler-outline/csv.svg +21 -0
  8610. skills/ppt-master/templates/icons/tabler-outline/cube-3d-sphere-off.svg +30 -0
  8611. skills/ppt-master/templates/icons/tabler-outline/cube-3d-sphere.svg +30 -0
  8612. skills/ppt-master/templates/icons/tabler-outline/cube-off.svg +23 -0
  8613. skills/ppt-master/templates/icons/tabler-outline/cube-plus.svg +24 -0
  8614. skills/ppt-master/templates/icons/tabler-outline/cube-send.svg +24 -0
  8615. skills/ppt-master/templates/icons/tabler-outline/cube-spark.svg +23 -0
  8616. skills/ppt-master/templates/icons/tabler-outline/cube-unfolded.svg +20 -0
  8617. skills/ppt-master/templates/icons/tabler-outline/cube.svg +22 -0
  8618. skills/ppt-master/templates/icons/tabler-outline/cup-off.svg +23 -0
  8619. skills/ppt-master/templates/icons/tabler-outline/cup.svg +22 -0
  8620. skills/ppt-master/templates/icons/tabler-outline/curling.svg +21 -0
  8621. skills/ppt-master/templates/icons/tabler-outline/curly-loop.svg +19 -0
  8622. skills/ppt-master/templates/icons/tabler-outline/currency-afghani.svg +21 -0
  8623. skills/ppt-master/templates/icons/tabler-outline/currency-bahraini.svg +22 -0
  8624. skills/ppt-master/templates/icons/tabler-outline/currency-baht.svg +23 -0
  8625. skills/ppt-master/templates/icons/tabler-outline/currency-bitcoin.svg +25 -0
  8626. skills/ppt-master/templates/icons/tabler-outline/currency-cent.svg +21 -0
  8627. skills/ppt-master/templates/icons/tabler-outline/currency-dinar.svg +22 -0
  8628. skills/ppt-master/templates/icons/tabler-outline/currency-dirham.svg +23 -0
  8629. skills/ppt-master/templates/icons/tabler-outline/currency-dogecoin.svg +21 -0
  8630. skills/ppt-master/templates/icons/tabler-outline/currency-dollar-australian.svg +23 -0
  8631. skills/ppt-master/templates/icons/tabler-outline/currency-dollar-brunei.svg +22 -0
  8632. skills/ppt-master/templates/icons/tabler-outline/currency-dollar-canadian.svg +22 -0
  8633. skills/ppt-master/templates/icons/tabler-outline/currency-dollar-guyanese.svg +22 -0
  8634. skills/ppt-master/templates/icons/tabler-outline/currency-dollar-off.svg +21 -0
  8635. skills/ppt-master/templates/icons/tabler-outline/currency-dollar-singapore.svg +22 -0
  8636. skills/ppt-master/templates/icons/tabler-outline/currency-dollar-zimbabwean.svg +22 -0
  8637. skills/ppt-master/templates/icons/tabler-outline/currency-dollar.svg +20 -0
  8638. skills/ppt-master/templates/icons/tabler-outline/currency-dong.svg +22 -0
  8639. skills/ppt-master/templates/icons/tabler-outline/currency-dram.svg +21 -0
  8640. skills/ppt-master/templates/icons/tabler-outline/currency-ethereum.svg +20 -0
  8641. skills/ppt-master/templates/icons/tabler-outline/currency-euro-off.svg +21 -0
  8642. skills/ppt-master/templates/icons/tabler-outline/currency-euro.svg +20 -0
  8643. skills/ppt-master/templates/icons/tabler-outline/currency-florin.svg +20 -0
  8644. skills/ppt-master/templates/icons/tabler-outline/currency-forint.svg +22 -0
  8645. skills/ppt-master/templates/icons/tabler-outline/currency-frank.svg +21 -0
  8646. skills/ppt-master/templates/icons/tabler-outline/currency-guarani.svg +20 -0
  8647. skills/ppt-master/templates/icons/tabler-outline/currency-hryvnia.svg +21 -0
  8648. skills/ppt-master/templates/icons/tabler-outline/currency-iranian-rial.svg +23 -0
  8649. skills/ppt-master/templates/icons/tabler-outline/currency-kip.svg +21 -0
  8650. skills/ppt-master/templates/icons/tabler-outline/currency-krone-czech.svg +23 -0
  8651. skills/ppt-master/templates/icons/tabler-outline/currency-krone-danish.svg +24 -0
  8652. skills/ppt-master/templates/icons/tabler-outline/currency-krone-swedish.svg +23 -0
  8653. skills/ppt-master/templates/icons/tabler-outline/currency-lari.svg +22 -0
  8654. skills/ppt-master/templates/icons/tabler-outline/currency-leu.svg +19 -0
  8655. skills/ppt-master/templates/icons/tabler-outline/currency-lira.svg +21 -0
  8656. skills/ppt-master/templates/icons/tabler-outline/currency-litecoin.svg +20 -0
  8657. skills/ppt-master/templates/icons/tabler-outline/currency-lyd.svg +21 -0
  8658. skills/ppt-master/templates/icons/tabler-outline/currency-manat.svg +20 -0
  8659. skills/ppt-master/templates/icons/tabler-outline/currency-monero.svg +19 -0
  8660. skills/ppt-master/templates/icons/tabler-outline/currency-naira.svg +21 -0
  8661. skills/ppt-master/templates/icons/tabler-outline/currency-nano.svg +22 -0
  8662. skills/ppt-master/templates/icons/tabler-outline/currency-off.svg +24 -0
  8663. skills/ppt-master/templates/icons/tabler-outline/currency-paanga.svg +23 -0
  8664. skills/ppt-master/templates/icons/tabler-outline/currency-peso.svg +21 -0
  8665. skills/ppt-master/templates/icons/tabler-outline/currency-pound-off.svg +20 -0
  8666. skills/ppt-master/templates/icons/tabler-outline/currency-pound.svg +19 -0
  8667. skills/ppt-master/templates/icons/tabler-outline/currency-quetzal.svg +20 -0
  8668. skills/ppt-master/templates/icons/tabler-outline/currency-real.svg +22 -0
  8669. skills/ppt-master/templates/icons/tabler-outline/currency-renminbi.svg +22 -0
  8670. skills/ppt-master/templates/icons/tabler-outline/currency-ripple.svg +23 -0
  8671. skills/ppt-master/templates/icons/tabler-outline/currency-riyal.svg +21 -0
  8672. skills/ppt-master/templates/icons/tabler-outline/currency-rubel.svg +20 -0
  8673. skills/ppt-master/templates/icons/tabler-outline/currency-rufiyaa.svg +21 -0
  8674. skills/ppt-master/templates/icons/tabler-outline/currency-rupee-nepalese.svg +20 -0
  8675. skills/ppt-master/templates/icons/tabler-outline/currency-rupee.svg +20 -0
  8676. skills/ppt-master/templates/icons/tabler-outline/currency-shekel.svg +20 -0
  8677. skills/ppt-master/templates/icons/tabler-outline/currency-solana.svg +21 -0
  8678. skills/ppt-master/templates/icons/tabler-outline/currency-som.svg +20 -0
  8679. skills/ppt-master/templates/icons/tabler-outline/currency-taka.svg +21 -0
  8680. skills/ppt-master/templates/icons/tabler-outline/currency-tenge.svg +21 -0
  8681. skills/ppt-master/templates/icons/tabler-outline/currency-tugrik.svg +22 -0
  8682. skills/ppt-master/templates/icons/tabler-outline/currency-won.svg +21 -0
  8683. skills/ppt-master/templates/icons/tabler-outline/currency-xrp.svg +20 -0
  8684. skills/ppt-master/templates/icons/tabler-outline/currency-yen-off.svg +22 -0
  8685. skills/ppt-master/templates/icons/tabler-outline/currency-yen.svg +21 -0
  8686. skills/ppt-master/templates/icons/tabler-outline/currency-yuan.svg +21 -0
  8687. skills/ppt-master/templates/icons/tabler-outline/currency-zloty.svg +21 -0
  8688. skills/ppt-master/templates/icons/tabler-outline/currency.svg +23 -0
  8689. skills/ppt-master/templates/icons/tabler-outline/current-location-off.svg +25 -0
  8690. skills/ppt-master/templates/icons/tabler-outline/current-location.svg +24 -0
  8691. skills/ppt-master/templates/icons/tabler-outline/cursor-off.svg +21 -0
  8692. skills/ppt-master/templates/icons/tabler-outline/cursor-text.svg +21 -0
  8693. skills/ppt-master/templates/icons/tabler-outline/cut.svg +22 -0
  8694. skills/ppt-master/templates/icons/tabler-outline/cylinder-off.svg +21 -0
  8695. skills/ppt-master/templates/icons/tabler-outline/cylinder-plus.svg +22 -0
  8696. skills/ppt-master/templates/icons/tabler-outline/cylinder.svg +20 -0
  8697. skills/ppt-master/templates/icons/tabler-outline/dashboard-off.svg +22 -0
  8698. skills/ppt-master/templates/icons/tabler-outline/dashboard.svg +21 -0
  8699. skills/ppt-master/templates/icons/tabler-outline/database-cog.svg +29 -0
  8700. skills/ppt-master/templates/icons/tabler-outline/database-dollar.svg +24 -0
  8701. skills/ppt-master/templates/icons/tabler-outline/database-edit.svg +23 -0
  8702. skills/ppt-master/templates/icons/tabler-outline/database-exclamation.svg +23 -0
  8703. skills/ppt-master/templates/icons/tabler-outline/database-export.svg +24 -0
  8704. skills/ppt-master/templates/icons/tabler-outline/database-heart.svg +23 -0
  8705. skills/ppt-master/templates/icons/tabler-outline/database-import.svg +23 -0
  8706. skills/ppt-master/templates/icons/tabler-outline/database-leak.svg +21 -0
  8707. skills/ppt-master/templates/icons/tabler-outline/database-minus.svg +23 -0
  8708. skills/ppt-master/templates/icons/tabler-outline/database-off.svg +22 -0
  8709. skills/ppt-master/templates/icons/tabler-outline/database-plus.svg +24 -0
  8710. skills/ppt-master/templates/icons/tabler-outline/database-search.svg +23 -0
  8711. skills/ppt-master/templates/icons/tabler-outline/database-share.svg +24 -0
  8712. skills/ppt-master/templates/icons/tabler-outline/database-smile.svg +23 -0
  8713. skills/ppt-master/templates/icons/tabler-outline/database-star.svg +23 -0
  8714. skills/ppt-master/templates/icons/tabler-outline/database-x.svg +24 -0
  8715. skills/ppt-master/templates/icons/tabler-outline/database.svg +21 -0
  8716. skills/ppt-master/templates/icons/tabler-outline/deaf.svg +22 -0
  8717. skills/ppt-master/templates/icons/tabler-outline/decimal.svg +21 -0
  8718. skills/ppt-master/templates/icons/tabler-outline/deer.svg +29 -0
  8719. skills/ppt-master/templates/icons/tabler-outline/delta.svg +19 -0
  8720. skills/ppt-master/templates/icons/tabler-outline/dental-broken.svg +20 -0
  8721. skills/ppt-master/templates/icons/tabler-outline/dental-off.svg +21 -0
  8722. skills/ppt-master/templates/icons/tabler-outline/dental.svg +20 -0
  8723. skills/ppt-master/templates/icons/tabler-outline/deselect.svg +35 -0
  8724. skills/ppt-master/templates/icons/tabler-outline/desk.svg +23 -0
  8725. skills/ppt-master/templates/icons/tabler-outline/details-off.svg +22 -0
  8726. skills/ppt-master/templates/icons/tabler-outline/details.svg +20 -0
  8727. skills/ppt-master/templates/icons/tabler-outline/device-3d-camera.svg +21 -0
  8728. skills/ppt-master/templates/icons/tabler-outline/device-3d-lens.svg +22 -0
  8729. skills/ppt-master/templates/icons/tabler-outline/device-airpods-case.svg +21 -0
  8730. skills/ppt-master/templates/icons/tabler-outline/device-airpods.svg +20 -0
  8731. skills/ppt-master/templates/icons/tabler-outline/device-airtag.svg +22 -0
  8732. skills/ppt-master/templates/icons/tabler-outline/device-analytics.svg +23 -0
  8733. skills/ppt-master/templates/icons/tabler-outline/device-audio-tape.svg +22 -0
  8734. skills/ppt-master/templates/icons/tabler-outline/device-camera-phone.svg +21 -0
  8735. skills/ppt-master/templates/icons/tabler-outline/device-cctv-off.svg +23 -0
  8736. skills/ppt-master/templates/icons/tabler-outline/device-cctv.svg +22 -0
  8737. skills/ppt-master/templates/icons/tabler-outline/device-computer-camera-off.svg +22 -0
  8738. skills/ppt-master/templates/icons/tabler-outline/device-computer-camera.svg +21 -0
  8739. skills/ppt-master/templates/icons/tabler-outline/device-desktop-analytics.svg +26 -0
  8740. skills/ppt-master/templates/icons/tabler-outline/device-desktop-bolt.svg +22 -0
  8741. skills/ppt-master/templates/icons/tabler-outline/device-desktop-cancel.svg +23 -0
  8742. skills/ppt-master/templates/icons/tabler-outline/device-desktop-check.svg +22 -0
  8743. skills/ppt-master/templates/icons/tabler-outline/device-desktop-code.svg +23 -0
  8744. skills/ppt-master/templates/icons/tabler-outline/device-desktop-cog.svg +28 -0
  8745. skills/ppt-master/templates/icons/tabler-outline/device-desktop-dollar.svg +23 -0
  8746. skills/ppt-master/templates/icons/tabler-outline/device-desktop-down.svg +23 -0
  8747. skills/ppt-master/templates/icons/tabler-outline/device-desktop-exclamation.svg +24 -0
  8748. skills/ppt-master/templates/icons/tabler-outline/device-desktop-heart.svg +22 -0
  8749. skills/ppt-master/templates/icons/tabler-outline/device-desktop-minus.svg +22 -0
  8750. skills/ppt-master/templates/icons/tabler-outline/device-desktop-off.svg +23 -0
  8751. skills/ppt-master/templates/icons/tabler-outline/device-desktop-pause.svg +23 -0
  8752. skills/ppt-master/templates/icons/tabler-outline/device-desktop-pin.svg +23 -0
  8753. skills/ppt-master/templates/icons/tabler-outline/device-desktop-plus.svg +23 -0
  8754. skills/ppt-master/templates/icons/tabler-outline/device-desktop-question.svg +23 -0
  8755. skills/ppt-master/templates/icons/tabler-outline/device-desktop-search.svg +23 -0
  8756. skills/ppt-master/templates/icons/tabler-outline/device-desktop-share.svg +23 -0
  8757. skills/ppt-master/templates/icons/tabler-outline/device-desktop-star.svg +22 -0
  8758. skills/ppt-master/templates/icons/tabler-outline/device-desktop-up.svg +23 -0
  8759. skills/ppt-master/templates/icons/tabler-outline/device-desktop-x.svg +23 -0
  8760. skills/ppt-master/templates/icons/tabler-outline/device-desktop.svg +22 -0
  8761. skills/ppt-master/templates/icons/tabler-outline/device-floppy.svg +21 -0
  8762. skills/ppt-master/templates/icons/tabler-outline/device-gamepad-2.svg +23 -0
  8763. skills/ppt-master/templates/icons/tabler-outline/device-gamepad-3.svg +22 -0
  8764. skills/ppt-master/templates/icons/tabler-outline/device-gamepad.svg +22 -0
  8765. skills/ppt-master/templates/icons/tabler-outline/device-heart-monitor.svg +23 -0
  8766. skills/ppt-master/templates/icons/tabler-outline/device-imac-bolt.svg +23 -0
  8767. skills/ppt-master/templates/icons/tabler-outline/device-imac-cancel.svg +24 -0
  8768. skills/ppt-master/templates/icons/tabler-outline/device-imac-check.svg +23 -0
  8769. skills/ppt-master/templates/icons/tabler-outline/device-imac-code.svg +24 -0
  8770. skills/ppt-master/templates/icons/tabler-outline/device-imac-cog.svg +29 -0
  8771. skills/ppt-master/templates/icons/tabler-outline/device-imac-dollar.svg +24 -0
  8772. skills/ppt-master/templates/icons/tabler-outline/device-imac-down.svg +24 -0
  8773. skills/ppt-master/templates/icons/tabler-outline/device-imac-exclamation.svg +25 -0
  8774. skills/ppt-master/templates/icons/tabler-outline/device-imac-heart.svg +23 -0
  8775. skills/ppt-master/templates/icons/tabler-outline/device-imac-minus.svg +23 -0
  8776. skills/ppt-master/templates/icons/tabler-outline/device-imac-off.svg +24 -0
  8777. skills/ppt-master/templates/icons/tabler-outline/device-imac-pause.svg +24 -0
  8778. skills/ppt-master/templates/icons/tabler-outline/device-imac-pin.svg +24 -0
  8779. skills/ppt-master/templates/icons/tabler-outline/device-imac-plus.svg +24 -0
  8780. skills/ppt-master/templates/icons/tabler-outline/device-imac-question.svg +25 -0
  8781. skills/ppt-master/templates/icons/tabler-outline/device-imac-search.svg +24 -0
  8782. skills/ppt-master/templates/icons/tabler-outline/device-imac-share.svg +24 -0
  8783. skills/ppt-master/templates/icons/tabler-outline/device-imac-star.svg +23 -0
  8784. skills/ppt-master/templates/icons/tabler-outline/device-imac-up.svg +24 -0
  8785. skills/ppt-master/templates/icons/tabler-outline/device-imac-x.svg +24 -0
  8786. skills/ppt-master/templates/icons/tabler-outline/device-imac.svg +23 -0
  8787. skills/ppt-master/templates/icons/tabler-outline/device-ipad-bolt.svg +21 -0
  8788. skills/ppt-master/templates/icons/tabler-outline/device-ipad-cancel.svg +22 -0
  8789. skills/ppt-master/templates/icons/tabler-outline/device-ipad-check.svg +21 -0
  8790. skills/ppt-master/templates/icons/tabler-outline/device-ipad-code.svg +22 -0
  8791. skills/ppt-master/templates/icons/tabler-outline/device-ipad-cog.svg +27 -0
  8792. skills/ppt-master/templates/icons/tabler-outline/device-ipad-dollar.svg +22 -0
  8793. skills/ppt-master/templates/icons/tabler-outline/device-ipad-down.svg +22 -0
  8794. skills/ppt-master/templates/icons/tabler-outline/device-ipad-exclamation.svg +22 -0
  8795. skills/ppt-master/templates/icons/tabler-outline/device-ipad-heart.svg +21 -0
  8796. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-bolt.svg +21 -0
  8797. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-cancel.svg +22 -0
  8798. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-check.svg +21 -0
  8799. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-code.svg +22 -0
  8800. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-cog.svg +27 -0
  8801. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-dollar.svg +22 -0
  8802. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-down.svg +22 -0
  8803. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-exclamation.svg +22 -0
  8804. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-heart.svg +21 -0
  8805. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-minus.svg +21 -0
  8806. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-off.svg +21 -0
  8807. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-pause.svg +22 -0
  8808. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-pin.svg +22 -0
  8809. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-plus.svg +22 -0
  8810. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-question.svg +22 -0
  8811. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-search.svg +22 -0
  8812. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-share.svg +22 -0
  8813. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-star.svg +21 -0
  8814. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-up.svg +22 -0
  8815. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-x.svg +22 -0
  8816. skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal.svg +20 -0
  8817. skills/ppt-master/templates/icons/tabler-outline/device-ipad-minus.svg +21 -0
  8818. skills/ppt-master/templates/icons/tabler-outline/device-ipad-off.svg +21 -0
  8819. skills/ppt-master/templates/icons/tabler-outline/device-ipad-pause.svg +22 -0
  8820. skills/ppt-master/templates/icons/tabler-outline/device-ipad-pin.svg +22 -0
  8821. skills/ppt-master/templates/icons/tabler-outline/device-ipad-plus.svg +22 -0
  8822. skills/ppt-master/templates/icons/tabler-outline/device-ipad-question.svg +22 -0
  8823. skills/ppt-master/templates/icons/tabler-outline/device-ipad-search.svg +22 -0
  8824. skills/ppt-master/templates/icons/tabler-outline/device-ipad-share.svg +22 -0
  8825. skills/ppt-master/templates/icons/tabler-outline/device-ipad-star.svg +21 -0
  8826. skills/ppt-master/templates/icons/tabler-outline/device-ipad-up.svg +22 -0
  8827. skills/ppt-master/templates/icons/tabler-outline/device-ipad-x.svg +22 -0
  8828. skills/ppt-master/templates/icons/tabler-outline/device-ipad.svg +20 -0
  8829. skills/ppt-master/templates/icons/tabler-outline/device-landline-phone.svg +27 -0
  8830. skills/ppt-master/templates/icons/tabler-outline/device-laptop-off.svg +21 -0
  8831. skills/ppt-master/templates/icons/tabler-outline/device-laptop.svg +20 -0
  8832. skills/ppt-master/templates/icons/tabler-outline/device-mobile-bolt.svg +22 -0
  8833. skills/ppt-master/templates/icons/tabler-outline/device-mobile-cancel.svg +23 -0
  8834. skills/ppt-master/templates/icons/tabler-outline/device-mobile-charging.svg +21 -0
  8835. skills/ppt-master/templates/icons/tabler-outline/device-mobile-check.svg +22 -0
  8836. skills/ppt-master/templates/icons/tabler-outline/device-mobile-code.svg +23 -0
  8837. skills/ppt-master/templates/icons/tabler-outline/device-mobile-cog.svg +28 -0
  8838. skills/ppt-master/templates/icons/tabler-outline/device-mobile-dollar.svg +23 -0
  8839. skills/ppt-master/templates/icons/tabler-outline/device-mobile-down.svg +23 -0
  8840. skills/ppt-master/templates/icons/tabler-outline/device-mobile-exclamation.svg +23 -0
  8841. skills/ppt-master/templates/icons/tabler-outline/device-mobile-heart.svg +21 -0
  8842. skills/ppt-master/templates/icons/tabler-outline/device-mobile-message.svg +21 -0
  8843. skills/ppt-master/templates/icons/tabler-outline/device-mobile-minus.svg +22 -0
  8844. skills/ppt-master/templates/icons/tabler-outline/device-mobile-off.svg +22 -0
  8845. skills/ppt-master/templates/icons/tabler-outline/device-mobile-pause.svg +23 -0
  8846. skills/ppt-master/templates/icons/tabler-outline/device-mobile-pin.svg +23 -0
  8847. skills/ppt-master/templates/icons/tabler-outline/device-mobile-plus.svg +23 -0
  8848. skills/ppt-master/templates/icons/tabler-outline/device-mobile-question.svg +23 -0
  8849. skills/ppt-master/templates/icons/tabler-outline/device-mobile-rotated.svg +21 -0
  8850. skills/ppt-master/templates/icons/tabler-outline/device-mobile-search.svg +23 -0
  8851. skills/ppt-master/templates/icons/tabler-outline/device-mobile-share.svg +23 -0
  8852. skills/ppt-master/templates/icons/tabler-outline/device-mobile-star.svg +21 -0
  8853. skills/ppt-master/templates/icons/tabler-outline/device-mobile-up.svg +23 -0
  8854. skills/ppt-master/templates/icons/tabler-outline/device-mobile-vibration.svg +22 -0
  8855. skills/ppt-master/templates/icons/tabler-outline/device-mobile-x.svg +23 -0
  8856. skills/ppt-master/templates/icons/tabler-outline/device-mobile.svg +21 -0
  8857. skills/ppt-master/templates/icons/tabler-outline/device-nintendo-off.svg +22 -0
  8858. skills/ppt-master/templates/icons/tabler-outline/device-nintendo.svg +22 -0
  8859. skills/ppt-master/templates/icons/tabler-outline/device-projector.svg +23 -0
  8860. skills/ppt-master/templates/icons/tabler-outline/device-remote.svg +25 -0
  8861. skills/ppt-master/templates/icons/tabler-outline/device-screen.svg +22 -0
  8862. skills/ppt-master/templates/icons/tabler-outline/device-sd-card.svg +22 -0
  8863. skills/ppt-master/templates/icons/tabler-outline/device-sim-1.svg +20 -0
  8864. skills/ppt-master/templates/icons/tabler-outline/device-sim-2.svg +20 -0
  8865. skills/ppt-master/templates/icons/tabler-outline/device-sim-3.svg +20 -0
  8866. skills/ppt-master/templates/icons/tabler-outline/device-sim.svg +25 -0
  8867. skills/ppt-master/templates/icons/tabler-outline/device-speaker-off.svg +22 -0
  8868. skills/ppt-master/templates/icons/tabler-outline/device-speaker.svg +21 -0
  8869. skills/ppt-master/templates/icons/tabler-outline/device-tablet-bolt.svg +21 -0
  8870. skills/ppt-master/templates/icons/tabler-outline/device-tablet-cancel.svg +22 -0
  8871. skills/ppt-master/templates/icons/tabler-outline/device-tablet-check.svg +21 -0
  8872. skills/ppt-master/templates/icons/tabler-outline/device-tablet-code.svg +22 -0
  8873. skills/ppt-master/templates/icons/tabler-outline/device-tablet-cog.svg +27 -0
  8874. skills/ppt-master/templates/icons/tabler-outline/device-tablet-dollar.svg +22 -0
  8875. skills/ppt-master/templates/icons/tabler-outline/device-tablet-down.svg +22 -0
  8876. skills/ppt-master/templates/icons/tabler-outline/device-tablet-exclamation.svg +22 -0
  8877. skills/ppt-master/templates/icons/tabler-outline/device-tablet-heart.svg +20 -0
  8878. skills/ppt-master/templates/icons/tabler-outline/device-tablet-minus.svg +21 -0
  8879. skills/ppt-master/templates/icons/tabler-outline/device-tablet-off.svg +21 -0
  8880. skills/ppt-master/templates/icons/tabler-outline/device-tablet-pause.svg +22 -0
  8881. skills/ppt-master/templates/icons/tabler-outline/device-tablet-pin.svg +22 -0
  8882. skills/ppt-master/templates/icons/tabler-outline/device-tablet-plus.svg +22 -0
  8883. skills/ppt-master/templates/icons/tabler-outline/device-tablet-question.svg +22 -0
  8884. skills/ppt-master/templates/icons/tabler-outline/device-tablet-search.svg +21 -0
  8885. skills/ppt-master/templates/icons/tabler-outline/device-tablet-share.svg +22 -0
  8886. skills/ppt-master/templates/icons/tabler-outline/device-tablet-star.svg +20 -0
  8887. skills/ppt-master/templates/icons/tabler-outline/device-tablet-up.svg +22 -0
  8888. skills/ppt-master/templates/icons/tabler-outline/device-tablet-x.svg +22 -0
  8889. skills/ppt-master/templates/icons/tabler-outline/device-tablet.svg +20 -0
  8890. skills/ppt-master/templates/icons/tabler-outline/device-tv-off.svg +21 -0
  8891. skills/ppt-master/templates/icons/tabler-outline/device-tv-old.svg +23 -0
  8892. skills/ppt-master/templates/icons/tabler-outline/device-tv.svg +20 -0
  8893. skills/ppt-master/templates/icons/tabler-outline/device-unknown.svg +21 -0
  8894. skills/ppt-master/templates/icons/tabler-outline/device-usb.svg +20 -0
  8895. skills/ppt-master/templates/icons/tabler-outline/device-vision-pro.svg +19 -0
  8896. skills/ppt-master/templates/icons/tabler-outline/device-watch-bolt.svg +22 -0
  8897. skills/ppt-master/templates/icons/tabler-outline/device-watch-cancel.svg +23 -0
  8898. skills/ppt-master/templates/icons/tabler-outline/device-watch-check.svg +22 -0
  8899. skills/ppt-master/templates/icons/tabler-outline/device-watch-code.svg +23 -0
  8900. skills/ppt-master/templates/icons/tabler-outline/device-watch-cog.svg +28 -0
  8901. skills/ppt-master/templates/icons/tabler-outline/device-watch-dollar.svg +23 -0
  8902. skills/ppt-master/templates/icons/tabler-outline/device-watch-down.svg +23 -0
  8903. skills/ppt-master/templates/icons/tabler-outline/device-watch-exclamation.svg +23 -0
  8904. skills/ppt-master/templates/icons/tabler-outline/device-watch-heart.svg +22 -0
  8905. skills/ppt-master/templates/icons/tabler-outline/device-watch-minus.svg +22 -0
  8906. skills/ppt-master/templates/icons/tabler-outline/device-watch-off.svg +22 -0
  8907. skills/ppt-master/templates/icons/tabler-outline/device-watch-pause.svg +23 -0
  8908. skills/ppt-master/templates/icons/tabler-outline/device-watch-pin.svg +23 -0
  8909. skills/ppt-master/templates/icons/tabler-outline/device-watch-plus.svg +23 -0
  8910. skills/ppt-master/templates/icons/tabler-outline/device-watch-question.svg +23 -0
  8911. skills/ppt-master/templates/icons/tabler-outline/device-watch-search.svg +23 -0
  8912. skills/ppt-master/templates/icons/tabler-outline/device-watch-share.svg +23 -0
  8913. skills/ppt-master/templates/icons/tabler-outline/device-watch-star.svg +22 -0
  8914. skills/ppt-master/templates/icons/tabler-outline/device-watch-stats-2.svg +22 -0
  8915. skills/ppt-master/templates/icons/tabler-outline/device-watch-stats.svg +24 -0
  8916. skills/ppt-master/templates/icons/tabler-outline/device-watch-up.svg +23 -0
  8917. skills/ppt-master/templates/icons/tabler-outline/device-watch-x.svg +23 -0
  8918. skills/ppt-master/templates/icons/tabler-outline/device-watch.svg +21 -0
  8919. skills/ppt-master/templates/icons/tabler-outline/devices-2.svg +24 -0
  8920. skills/ppt-master/templates/icons/tabler-outline/devices-bolt.svg +22 -0
  8921. skills/ppt-master/templates/icons/tabler-outline/devices-cancel.svg +23 -0
  8922. skills/ppt-master/templates/icons/tabler-outline/devices-check.svg +22 -0
  8923. skills/ppt-master/templates/icons/tabler-outline/devices-code.svg +23 -0
  8924. skills/ppt-master/templates/icons/tabler-outline/devices-cog.svg +28 -0
  8925. skills/ppt-master/templates/icons/tabler-outline/devices-dollar.svg +23 -0
  8926. skills/ppt-master/templates/icons/tabler-outline/devices-down.svg +23 -0
  8927. skills/ppt-master/templates/icons/tabler-outline/devices-exclamation.svg +23 -0
  8928. skills/ppt-master/templates/icons/tabler-outline/devices-heart.svg +22 -0
  8929. skills/ppt-master/templates/icons/tabler-outline/devices-minus.svg +22 -0
  8930. skills/ppt-master/templates/icons/tabler-outline/devices-off.svg +22 -0
  8931. skills/ppt-master/templates/icons/tabler-outline/devices-pause.svg +23 -0
  8932. skills/ppt-master/templates/icons/tabler-outline/devices-pc-off.svg +25 -0
  8933. skills/ppt-master/templates/icons/tabler-outline/devices-pc.svg +24 -0
  8934. skills/ppt-master/templates/icons/tabler-outline/devices-pin.svg +23 -0
  8935. skills/ppt-master/templates/icons/tabler-outline/devices-plus.svg +23 -0
  8936. skills/ppt-master/templates/icons/tabler-outline/devices-question.svg +23 -0
  8937. skills/ppt-master/templates/icons/tabler-outline/devices-search.svg +23 -0
  8938. skills/ppt-master/templates/icons/tabler-outline/devices-share.svg +23 -0
  8939. skills/ppt-master/templates/icons/tabler-outline/devices-star.svg +22 -0
  8940. skills/ppt-master/templates/icons/tabler-outline/devices-up.svg +23 -0
  8941. skills/ppt-master/templates/icons/tabler-outline/devices-x.svg +23 -0
  8942. skills/ppt-master/templates/icons/tabler-outline/devices.svg +21 -0
  8943. skills/ppt-master/templates/icons/tabler-outline/diabolo-off.svg +22 -0
  8944. skills/ppt-master/templates/icons/tabler-outline/diabolo-plus.svg +23 -0
  8945. skills/ppt-master/templates/icons/tabler-outline/diabolo.svg +21 -0
  8946. skills/ppt-master/templates/icons/tabler-outline/dialpad-off.svg +26 -0
  8947. skills/ppt-master/templates/icons/tabler-outline/dialpad.svg +25 -0
  8948. skills/ppt-master/templates/icons/tabler-outline/diamond-off.svg +21 -0
  8949. skills/ppt-master/templates/icons/tabler-outline/diamond.svg +20 -0
  8950. skills/ppt-master/templates/icons/tabler-outline/diamonds.svg +19 -0
  8951. skills/ppt-master/templates/icons/tabler-outline/diaper.svg +23 -0
  8952. skills/ppt-master/templates/icons/tabler-outline/dice-1.svg +20 -0
  8953. skills/ppt-master/templates/icons/tabler-outline/dice-2.svg +21 -0
  8954. skills/ppt-master/templates/icons/tabler-outline/dice-3.svg +22 -0
  8955. skills/ppt-master/templates/icons/tabler-outline/dice-4.svg +23 -0
  8956. skills/ppt-master/templates/icons/tabler-outline/dice-5.svg +24 -0
  8957. skills/ppt-master/templates/icons/tabler-outline/dice-6.svg +25 -0
  8958. skills/ppt-master/templates/icons/tabler-outline/dice.svg +23 -0
  8959. skills/ppt-master/templates/icons/tabler-outline/dimensions.svg +25 -0
  8960. skills/ppt-master/templates/icons/tabler-outline/direction-arrows.svg +23 -0
  8961. skills/ppt-master/templates/icons/tabler-outline/direction-horizontal.svg +20 -0
  8962. skills/ppt-master/templates/icons/tabler-outline/direction-sign-off.svg +22 -0
  8963. skills/ppt-master/templates/icons/tabler-outline/direction-sign.svg +21 -0
  8964. skills/ppt-master/templates/icons/tabler-outline/direction.svg +20 -0
  8965. skills/ppt-master/templates/icons/tabler-outline/directions-off.svg +25 -0
  8966. skills/ppt-master/templates/icons/tabler-outline/directions.svg +24 -0
  8967. skills/ppt-master/templates/icons/tabler-outline/disabled-2.svg +21 -0
  8968. skills/ppt-master/templates/icons/tabler-outline/disabled-off.svg +23 -0
  8969. skills/ppt-master/templates/icons/tabler-outline/disabled.svg +22 -0
  8970. skills/ppt-master/templates/icons/tabler-outline/disc-golf.svg +27 -0
  8971. skills/ppt-master/templates/icons/tabler-outline/disc-off.svg +23 -0
  8972. skills/ppt-master/templates/icons/tabler-outline/disc.svg +22 -0
  8973. skills/ppt-master/templates/icons/tabler-outline/discount-off.svg +23 -0
  8974. skills/ppt-master/templates/icons/tabler-outline/discount.svg +22 -0
  8975. skills/ppt-master/templates/icons/tabler-outline/divide.svg +21 -0
  8976. skills/ppt-master/templates/icons/tabler-outline/dna-2-off.svg +25 -0
  8977. skills/ppt-master/templates/icons/tabler-outline/dna-2.svg +24 -0
  8978. skills/ppt-master/templates/icons/tabler-outline/dna-off.svg +22 -0
  8979. skills/ppt-master/templates/icons/tabler-outline/dna.svg +21 -0
  8980. skills/ppt-master/templates/icons/tabler-outline/dog-bowl.svg +21 -0
  8981. skills/ppt-master/templates/icons/tabler-outline/dog.svg +26 -0
  8982. skills/ppt-master/templates/icons/tabler-outline/door-enter.svg +22 -0
  8983. skills/ppt-master/templates/icons/tabler-outline/door-exit.svg +22 -0
  8984. skills/ppt-master/templates/icons/tabler-outline/door-off.svg +23 -0
  8985. skills/ppt-master/templates/icons/tabler-outline/door.svg +21 -0
  8986. skills/ppt-master/templates/icons/tabler-outline/dots-circle-horizontal.svg +22 -0
  8987. skills/ppt-master/templates/icons/tabler-outline/dots-diagonal-2.svg +21 -0
  8988. skills/ppt-master/templates/icons/tabler-outline/dots-diagonal.svg +21 -0
  8989. skills/ppt-master/templates/icons/tabler-outline/dots-vertical.svg +21 -0
  8990. skills/ppt-master/templates/icons/tabler-outline/dots.svg +21 -0
  8991. skills/ppt-master/templates/icons/tabler-outline/download-off.svg +22 -0
  8992. skills/ppt-master/templates/icons/tabler-outline/download.svg +21 -0
  8993. skills/ppt-master/templates/icons/tabler-outline/drag-drop-2.svg +26 -0
  8994. skills/ppt-master/templates/icons/tabler-outline/drag-drop.svg +27 -0
  8995. skills/ppt-master/templates/icons/tabler-outline/drone-off.svg +28 -0
  8996. skills/ppt-master/templates/icons/tabler-outline/drone.svg +27 -0
  8997. skills/ppt-master/templates/icons/tabler-outline/drop-circle.svg +20 -0
  8998. skills/ppt-master/templates/icons/tabler-outline/droplet-bolt.svg +20 -0
  8999. skills/ppt-master/templates/icons/tabler-outline/droplet-cancel.svg +21 -0
  9000. skills/ppt-master/templates/icons/tabler-outline/droplet-check.svg +20 -0
  9001. skills/ppt-master/templates/icons/tabler-outline/droplet-code.svg +21 -0
  9002. skills/ppt-master/templates/icons/tabler-outline/droplet-cog.svg +26 -0
  9003. skills/ppt-master/templates/icons/tabler-outline/droplet-dollar.svg +21 -0
  9004. skills/ppt-master/templates/icons/tabler-outline/droplet-down.svg +21 -0
  9005. skills/ppt-master/templates/icons/tabler-outline/droplet-exclamation.svg +21 -0
  9006. skills/ppt-master/templates/icons/tabler-outline/droplet-half-2.svg +20 -0
  9007. skills/ppt-master/templates/icons/tabler-outline/droplet-half.svg +20 -0
  9008. skills/ppt-master/templates/icons/tabler-outline/droplet-heart.svg +20 -0
  9009. skills/ppt-master/templates/icons/tabler-outline/droplet-minus.svg +20 -0
  9010. skills/ppt-master/templates/icons/tabler-outline/droplet-off.svg +20 -0
  9011. skills/ppt-master/templates/icons/tabler-outline/droplet-pause.svg +21 -0
  9012. skills/ppt-master/templates/icons/tabler-outline/droplet-pin.svg +21 -0
  9013. skills/ppt-master/templates/icons/tabler-outline/droplet-plus.svg +21 -0
  9014. skills/ppt-master/templates/icons/tabler-outline/droplet-question.svg +21 -0
  9015. skills/ppt-master/templates/icons/tabler-outline/droplet-search.svg +21 -0
  9016. skills/ppt-master/templates/icons/tabler-outline/droplet-share.svg +21 -0
  9017. skills/ppt-master/templates/icons/tabler-outline/droplet-star.svg +20 -0
  9018. skills/ppt-master/templates/icons/tabler-outline/droplet-up.svg +21 -0
  9019. skills/ppt-master/templates/icons/tabler-outline/droplet-x.svg +21 -0
  9020. skills/ppt-master/templates/icons/tabler-outline/droplet.svg +19 -0
  9021. skills/ppt-master/templates/icons/tabler-outline/droplets.svg +21 -0
  9022. skills/ppt-master/templates/icons/tabler-outline/dual-screen.svg +20 -0
  9023. skills/ppt-master/templates/icons/tabler-outline/dumpling.svg +19 -0
  9024. skills/ppt-master/templates/icons/tabler-outline/e-passport.svg +22 -0
  9025. skills/ppt-master/templates/icons/tabler-outline/ear-off.svg +21 -0
  9026. skills/ppt-master/templates/icons/tabler-outline/ear-scan.svg +24 -0
  9027. skills/ppt-master/templates/icons/tabler-outline/ear.svg +20 -0
  9028. skills/ppt-master/templates/icons/tabler-outline/ease-in-control-point.svg +22 -0
  9029. skills/ppt-master/templates/icons/tabler-outline/ease-in-out-control-points.svg +25 -0
  9030. skills/ppt-master/templates/icons/tabler-outline/ease-in-out.svg +19 -0
  9031. skills/ppt-master/templates/icons/tabler-outline/ease-in.svg +19 -0
  9032. skills/ppt-master/templates/icons/tabler-outline/ease-out-control-point.svg +22 -0
  9033. skills/ppt-master/templates/icons/tabler-outline/ease-out.svg +19 -0
  9034. skills/ppt-master/templates/icons/tabler-outline/edit-circle-off.svg +22 -0
  9035. skills/ppt-master/templates/icons/tabler-outline/edit-circle.svg +21 -0
  9036. skills/ppt-master/templates/icons/tabler-outline/edit-off.svg +22 -0
  9037. skills/ppt-master/templates/icons/tabler-outline/edit.svg +21 -0
  9038. skills/ppt-master/templates/icons/tabler-outline/egg-cracked.svg +20 -0
  9039. skills/ppt-master/templates/icons/tabler-outline/egg-fried.svg +20 -0
  9040. skills/ppt-master/templates/icons/tabler-outline/egg-off.svg +21 -0
  9041. skills/ppt-master/templates/icons/tabler-outline/egg.svg +19 -0
  9042. skills/ppt-master/templates/icons/tabler-outline/eggs.svg +20 -0
  9043. skills/ppt-master/templates/icons/tabler-outline/elevator-off.svg +22 -0
  9044. skills/ppt-master/templates/icons/tabler-outline/elevator.svg +21 -0
  9045. skills/ppt-master/templates/icons/tabler-outline/emergency-bed.svg +25 -0
  9046. skills/ppt-master/templates/icons/tabler-outline/empathize-off.svg +21 -0
  9047. skills/ppt-master/templates/icons/tabler-outline/empathize.svg +20 -0
  9048. skills/ppt-master/templates/icons/tabler-outline/emphasis.svg +23 -0
  9049. skills/ppt-master/templates/icons/tabler-outline/engine-off.svg +24 -0
  9050. skills/ppt-master/templates/icons/tabler-outline/engine.svg +23 -0
  9051. skills/ppt-master/templates/icons/tabler-outline/equal-double.svg +22 -0
  9052. skills/ppt-master/templates/icons/tabler-outline/equal-not.svg +21 -0
  9053. skills/ppt-master/templates/icons/tabler-outline/equal.svg +20 -0
  9054. skills/ppt-master/templates/icons/tabler-outline/eraser-off.svg +21 -0
  9055. skills/ppt-master/templates/icons/tabler-outline/eraser.svg +20 -0
  9056. skills/ppt-master/templates/icons/tabler-outline/error-404-off.svg +24 -0
  9057. skills/ppt-master/templates/icons/tabler-outline/error-404.svg +23 -0
  9058. skills/ppt-master/templates/icons/tabler-outline/escalator-down.svg +21 -0
  9059. skills/ppt-master/templates/icons/tabler-outline/escalator-up.svg +21 -0
  9060. skills/ppt-master/templates/icons/tabler-outline/escalator.svg +19 -0
  9061. skills/ppt-master/templates/icons/tabler-outline/exchange-off.svg +25 -0
  9062. skills/ppt-master/templates/icons/tabler-outline/exchange.svg +22 -0
  9063. skills/ppt-master/templates/icons/tabler-outline/exclamation-circle.svg +21 -0
  9064. skills/ppt-master/templates/icons/tabler-outline/exclamation-mark-off.svg +21 -0
  9065. skills/ppt-master/templates/icons/tabler-outline/exclamation-mark.svg +20 -0
  9066. skills/ppt-master/templates/icons/tabler-outline/explicit-off.svg +22 -0
  9067. skills/ppt-master/templates/icons/tabler-outline/explicit.svg +21 -0
  9068. skills/ppt-master/templates/icons/tabler-outline/exposure-0.svg +19 -0
  9069. skills/ppt-master/templates/icons/tabler-outline/exposure-minus-1.svg +20 -0
  9070. skills/ppt-master/templates/icons/tabler-outline/exposure-minus-2.svg +20 -0
  9071. skills/ppt-master/templates/icons/tabler-outline/exposure-off.svg +23 -0
  9072. skills/ppt-master/templates/icons/tabler-outline/exposure-plus-1.svg +21 -0
  9073. skills/ppt-master/templates/icons/tabler-outline/exposure-plus-2.svg +21 -0
  9074. skills/ppt-master/templates/icons/tabler-outline/exposure.svg +22 -0
  9075. skills/ppt-master/templates/icons/tabler-outline/external-link-off.svg +22 -0
  9076. skills/ppt-master/templates/icons/tabler-outline/external-link.svg +21 -0
  9077. skills/ppt-master/templates/icons/tabler-outline/eye-bitcoin.svg +21 -0
  9078. skills/ppt-master/templates/icons/tabler-outline/eye-bolt.svg +21 -0
  9079. skills/ppt-master/templates/icons/tabler-outline/eye-cancel.svg +22 -0
  9080. skills/ppt-master/templates/icons/tabler-outline/eye-check.svg +21 -0
  9081. skills/ppt-master/templates/icons/tabler-outline/eye-closed.svg +23 -0
  9082. skills/ppt-master/templates/icons/tabler-outline/eye-code.svg +22 -0
  9083. skills/ppt-master/templates/icons/tabler-outline/eye-cog.svg +27 -0
  9084. skills/ppt-master/templates/icons/tabler-outline/eye-discount.svg +23 -0
  9085. skills/ppt-master/templates/icons/tabler-outline/eye-dollar.svg +22 -0
  9086. skills/ppt-master/templates/icons/tabler-outline/eye-dotted.svg +31 -0
  9087. skills/ppt-master/templates/icons/tabler-outline/eye-down.svg +22 -0
  9088. skills/ppt-master/templates/icons/tabler-outline/eye-edit.svg +21 -0
  9089. skills/ppt-master/templates/icons/tabler-outline/eye-exclamation.svg +22 -0
  9090. skills/ppt-master/templates/icons/tabler-outline/eye-heart.svg +21 -0
  9091. skills/ppt-master/templates/icons/tabler-outline/eye-minus.svg +21 -0
  9092. skills/ppt-master/templates/icons/tabler-outline/eye-off.svg +21 -0
  9093. skills/ppt-master/templates/icons/tabler-outline/eye-pause.svg +22 -0
  9094. skills/ppt-master/templates/icons/tabler-outline/eye-pin.svg +22 -0
  9095. skills/ppt-master/templates/icons/tabler-outline/eye-plus.svg +22 -0
  9096. skills/ppt-master/templates/icons/tabler-outline/eye-question.svg +22 -0
  9097. skills/ppt-master/templates/icons/tabler-outline/eye-search.svg +22 -0
  9098. skills/ppt-master/templates/icons/tabler-outline/eye-share.svg +22 -0
  9099. skills/ppt-master/templates/icons/tabler-outline/eye-spark.svg +21 -0
  9100. skills/ppt-master/templates/icons/tabler-outline/eye-star.svg +21 -0
  9101. skills/ppt-master/templates/icons/tabler-outline/eye-table.svg +27 -0
  9102. skills/ppt-master/templates/icons/tabler-outline/eye-up.svg +22 -0
  9103. skills/ppt-master/templates/icons/tabler-outline/eye-x.svg +22 -0
  9104. skills/ppt-master/templates/icons/tabler-outline/eye.svg +20 -0
  9105. skills/ppt-master/templates/icons/tabler-outline/eyeglass-2.svg +23 -0
  9106. skills/ppt-master/templates/icons/tabler-outline/eyeglass-off.svg +24 -0
  9107. skills/ppt-master/templates/icons/tabler-outline/eyeglass.svg +23 -0
  9108. skills/ppt-master/templates/icons/tabler-outline/face-id-error.svg +25 -0
  9109. skills/ppt-master/templates/icons/tabler-outline/face-id.svg +25 -0
  9110. skills/ppt-master/templates/icons/tabler-outline/face-mask-off.svg +24 -0
  9111. skills/ppt-master/templates/icons/tabler-outline/face-mask.svg +23 -0
  9112. skills/ppt-master/templates/icons/tabler-outline/fall.svg +22 -0
  9113. skills/ppt-master/templates/icons/tabler-outline/favicon.svg +22 -0
  9114. skills/ppt-master/templates/icons/tabler-outline/feather-off.svg +26 -0
  9115. skills/ppt-master/templates/icons/tabler-outline/feather.svg +20 -0
  9116. skills/ppt-master/templates/icons/tabler-outline/fence-off.svg +24 -0
  9117. skills/ppt-master/templates/icons/tabler-outline/fence.svg +21 -0
  9118. skills/ppt-master/templates/icons/tabler-outline/ferry.svg +21 -0
  9119. skills/ppt-master/templates/icons/tabler-outline/fidget-spinner.svg +23 -0
  9120. skills/ppt-master/templates/icons/tabler-outline/file-3d.svg +23 -0
  9121. skills/ppt-master/templates/icons/tabler-outline/file-ai.svg +23 -0
  9122. skills/ppt-master/templates/icons/tabler-outline/file-alert.svg +22 -0
  9123. skills/ppt-master/templates/icons/tabler-outline/file-analytics.svg +23 -0
  9124. skills/ppt-master/templates/icons/tabler-outline/file-arrow-left.svg +22 -0
  9125. skills/ppt-master/templates/icons/tabler-outline/file-arrow-right.svg +22 -0
  9126. skills/ppt-master/templates/icons/tabler-outline/file-barcode.svg +23 -0
  9127. skills/ppt-master/templates/icons/tabler-outline/file-bitcoin.svg +21 -0
  9128. skills/ppt-master/templates/icons/tabler-outline/file-broken.svg +26 -0
  9129. skills/ppt-master/templates/icons/tabler-outline/file-certificate.svg +22 -0
  9130. skills/ppt-master/templates/icons/tabler-outline/file-chart.svg +22 -0
  9131. skills/ppt-master/templates/icons/tabler-outline/file-check.svg +21 -0
  9132. skills/ppt-master/templates/icons/tabler-outline/file-code-2.svg +22 -0
  9133. skills/ppt-master/templates/icons/tabler-outline/file-code.svg +22 -0
  9134. skills/ppt-master/templates/icons/tabler-outline/file-cv.svg +22 -0
  9135. skills/ppt-master/templates/icons/tabler-outline/file-database.svg +22 -0
  9136. skills/ppt-master/templates/icons/tabler-outline/file-delta.svg +21 -0
  9137. skills/ppt-master/templates/icons/tabler-outline/file-description.svg +22 -0
  9138. skills/ppt-master/templates/icons/tabler-outline/file-diff.svg +23 -0
  9139. skills/ppt-master/templates/icons/tabler-outline/file-digit.svg +22 -0
  9140. skills/ppt-master/templates/icons/tabler-outline/file-dislike.svg +22 -0
  9141. skills/ppt-master/templates/icons/tabler-outline/file-dollar.svg +22 -0
  9142. skills/ppt-master/templates/icons/tabler-outline/file-dots.svg +23 -0
  9143. skills/ppt-master/templates/icons/tabler-outline/file-download.svg +22 -0
  9144. skills/ppt-master/templates/icons/tabler-outline/file-euro.svg +22 -0
  9145. skills/ppt-master/templates/icons/tabler-outline/file-excel.svg +22 -0
  9146. skills/ppt-master/templates/icons/tabler-outline/file-export.svg +20 -0
  9147. skills/ppt-master/templates/icons/tabler-outline/file-function.svg +22 -0
  9148. skills/ppt-master/templates/icons/tabler-outline/file-horizontal.svg +20 -0
  9149. skills/ppt-master/templates/icons/tabler-outline/file-import.svg +20 -0
  9150. skills/ppt-master/templates/icons/tabler-outline/file-infinity.svg +22 -0
  9151. skills/ppt-master/templates/icons/tabler-outline/file-info.svg +22 -0
  9152. skills/ppt-master/templates/icons/tabler-outline/file-invoice.svg +23 -0
  9153. skills/ppt-master/templates/icons/tabler-outline/file-isr.svg +22 -0
  9154. skills/ppt-master/templates/icons/tabler-outline/file-lambda.svg +22 -0
  9155. skills/ppt-master/templates/icons/tabler-outline/file-like.svg +22 -0
  9156. skills/ppt-master/templates/icons/tabler-outline/file-minus.svg +21 -0
  9157. skills/ppt-master/templates/icons/tabler-outline/file-music.svg +22 -0
  9158. skills/ppt-master/templates/icons/tabler-outline/file-neutral.svg +20 -0
  9159. skills/ppt-master/templates/icons/tabler-outline/file-off.svg +20 -0
  9160. skills/ppt-master/templates/icons/tabler-outline/file-orientation.svg +23 -0
  9161. skills/ppt-master/templates/icons/tabler-outline/file-pencil.svg +21 -0
  9162. skills/ppt-master/templates/icons/tabler-outline/file-percent.svg +23 -0
  9163. skills/ppt-master/templates/icons/tabler-outline/file-phone.svg +21 -0
  9164. skills/ppt-master/templates/icons/tabler-outline/file-plus.svg +22 -0
  9165. skills/ppt-master/templates/icons/tabler-outline/file-power.svg +21 -0
  9166. skills/ppt-master/templates/icons/tabler-outline/file-report.svg +22 -0
  9167. skills/ppt-master/templates/icons/tabler-outline/file-rss.svg +23 -0
  9168. skills/ppt-master/templates/icons/tabler-outline/file-sad.svg +21 -0
  9169. skills/ppt-master/templates/icons/tabler-outline/file-scissors.svg +24 -0
  9170. skills/ppt-master/templates/icons/tabler-outline/file-search.svg +22 -0
  9171. skills/ppt-master/templates/icons/tabler-outline/file-settings.svg +27 -0
  9172. skills/ppt-master/templates/icons/tabler-outline/file-shredder.svg +25 -0
  9173. skills/ppt-master/templates/icons/tabler-outline/file-signal.svg +22 -0
  9174. skills/ppt-master/templates/icons/tabler-outline/file-smile.svg +21 -0
  9175. skills/ppt-master/templates/icons/tabler-outline/file-spark.svg +21 -0
  9176. skills/ppt-master/templates/icons/tabler-outline/file-spreadsheet.svg +23 -0
  9177. skills/ppt-master/templates/icons/tabler-outline/file-stack.svg +23 -0
  9178. skills/ppt-master/templates/icons/tabler-outline/file-star.svg +21 -0
  9179. skills/ppt-master/templates/icons/tabler-outline/file-symlink.svg +22 -0
  9180. skills/ppt-master/templates/icons/tabler-outline/file-text-ai.svg +26 -0
  9181. skills/ppt-master/templates/icons/tabler-outline/file-text-shield.svg +24 -0
  9182. skills/ppt-master/templates/icons/tabler-outline/file-text-spark.svg +24 -0
  9183. skills/ppt-master/templates/icons/tabler-outline/file-text.svg +23 -0
  9184. skills/ppt-master/templates/icons/tabler-outline/file-time.svg +22 -0
  9185. skills/ppt-master/templates/icons/tabler-outline/file-type-bmp.svg +23 -0
  9186. skills/ppt-master/templates/icons/tabler-outline/file-type-css.svg +23 -0
  9187. skills/ppt-master/templates/icons/tabler-outline/file-type-csv.svg +23 -0
  9188. skills/ppt-master/templates/icons/tabler-outline/file-type-doc.svg +23 -0
  9189. skills/ppt-master/templates/icons/tabler-outline/file-type-docx.svg +25 -0
  9190. skills/ppt-master/templates/icons/tabler-outline/file-type-html.svg +27 -0
  9191. skills/ppt-master/templates/icons/tabler-outline/file-type-jpg.svg +23 -0
  9192. skills/ppt-master/templates/icons/tabler-outline/file-type-js.svg +22 -0
  9193. skills/ppt-master/templates/icons/tabler-outline/file-type-jsx.svg +24 -0
  9194. skills/ppt-master/templates/icons/tabler-outline/file-type-pdf.svg +24 -0
  9195. skills/ppt-master/templates/icons/tabler-outline/file-type-php.svg +25 -0
  9196. skills/ppt-master/templates/icons/tabler-outline/file-type-png.svg +23 -0
  9197. skills/ppt-master/templates/icons/tabler-outline/file-type-ppt.svg +25 -0
  9198. skills/ppt-master/templates/icons/tabler-outline/file-type-rs.svg +23 -0
  9199. skills/ppt-master/templates/icons/tabler-outline/file-type-sql.svg +25 -0
  9200. skills/ppt-master/templates/icons/tabler-outline/file-type-svg.svg +23 -0
  9201. skills/ppt-master/templates/icons/tabler-outline/file-type-ts.svg +24 -0
  9202. skills/ppt-master/templates/icons/tabler-outline/file-type-tsx.svg +25 -0
  9203. skills/ppt-master/templates/icons/tabler-outline/file-type-txt.svg +27 -0
  9204. skills/ppt-master/templates/icons/tabler-outline/file-type-vue.svg +24 -0
  9205. skills/ppt-master/templates/icons/tabler-outline/file-type-xls.svg +24 -0
  9206. skills/ppt-master/templates/icons/tabler-outline/file-type-xml.svg +24 -0
  9207. skills/ppt-master/templates/icons/tabler-outline/file-type-zip.svg +23 -0
  9208. skills/ppt-master/templates/icons/tabler-outline/file-typography.svg +23 -0
  9209. skills/ppt-master/templates/icons/tabler-outline/file-unknown.svg +22 -0
  9210. skills/ppt-master/templates/icons/tabler-outline/file-upload.svg +22 -0
  9211. skills/ppt-master/templates/icons/tabler-outline/file-vector.svg +23 -0
  9212. skills/ppt-master/templates/icons/tabler-outline/file-word.svg +21 -0
  9213. skills/ppt-master/templates/icons/tabler-outline/file-x.svg +21 -0
  9214. skills/ppt-master/templates/icons/tabler-outline/file-zip.svg +26 -0
  9215. skills/ppt-master/templates/icons/tabler-outline/file.svg +20 -0
  9216. skills/ppt-master/templates/icons/tabler-outline/files-off.svg +22 -0
  9217. skills/ppt-master/templates/icons/tabler-outline/files.svg +21 -0
  9218. skills/ppt-master/templates/icons/tabler-outline/filter-2-bolt.svg +22 -0
  9219. skills/ppt-master/templates/icons/tabler-outline/filter-2-cancel.svg +22 -0
  9220. skills/ppt-master/templates/icons/tabler-outline/filter-2-check.svg +22 -0
  9221. skills/ppt-master/templates/icons/tabler-outline/filter-2-code.svg +23 -0
  9222. skills/ppt-master/templates/icons/tabler-outline/filter-2-cog.svg +22 -0
  9223. skills/ppt-master/templates/icons/tabler-outline/filter-2-discount.svg +24 -0
  9224. skills/ppt-master/templates/icons/tabler-outline/filter-2-dollar.svg +22 -0
  9225. skills/ppt-master/templates/icons/tabler-outline/filter-2-down.svg +24 -0
  9226. skills/ppt-master/templates/icons/tabler-outline/filter-2-edit.svg +22 -0
  9227. skills/ppt-master/templates/icons/tabler-outline/filter-2-exclamation.svg +22 -0
  9228. skills/ppt-master/templates/icons/tabler-outline/filter-2-minus.svg +22 -0
  9229. skills/ppt-master/templates/icons/tabler-outline/filter-2-pause.svg +23 -0
  9230. skills/ppt-master/templates/icons/tabler-outline/filter-2-pin.svg +22 -0
  9231. skills/ppt-master/templates/icons/tabler-outline/filter-2-plus.svg +23 -0
  9232. skills/ppt-master/templates/icons/tabler-outline/filter-2-question.svg +23 -0
  9233. skills/ppt-master/templates/icons/tabler-outline/filter-2-search.svg +23 -0
  9234. skills/ppt-master/templates/icons/tabler-outline/filter-2-share.svg +24 -0
  9235. skills/ppt-master/templates/icons/tabler-outline/filter-2-spark.svg +22 -0
  9236. skills/ppt-master/templates/icons/tabler-outline/filter-2-up.svg +22 -0
  9237. skills/ppt-master/templates/icons/tabler-outline/filter-2-x.svg +22 -0
  9238. skills/ppt-master/templates/icons/tabler-outline/filter-2.svg +21 -0
  9239. skills/ppt-master/templates/icons/tabler-outline/filter-bolt.svg +20 -0
  9240. skills/ppt-master/templates/icons/tabler-outline/filter-cancel.svg +21 -0
  9241. skills/ppt-master/templates/icons/tabler-outline/filter-check.svg +20 -0
  9242. skills/ppt-master/templates/icons/tabler-outline/filter-code.svg +21 -0
  9243. skills/ppt-master/templates/icons/tabler-outline/filter-cog.svg +26 -0
  9244. skills/ppt-master/templates/icons/tabler-outline/filter-discount.svg +22 -0
  9245. skills/ppt-master/templates/icons/tabler-outline/filter-dollar.svg +21 -0
  9246. skills/ppt-master/templates/icons/tabler-outline/filter-down.svg +21 -0
  9247. skills/ppt-master/templates/icons/tabler-outline/filter-edit.svg +20 -0
  9248. skills/ppt-master/templates/icons/tabler-outline/filter-exclamation.svg +21 -0
  9249. skills/ppt-master/templates/icons/tabler-outline/filter-heart.svg +20 -0
  9250. skills/ppt-master/templates/icons/tabler-outline/filter-minus.svg +20 -0
  9251. skills/ppt-master/templates/icons/tabler-outline/filter-off.svg +20 -0
  9252. skills/ppt-master/templates/icons/tabler-outline/filter-pause.svg +21 -0
  9253. skills/ppt-master/templates/icons/tabler-outline/filter-pin.svg +21 -0
  9254. skills/ppt-master/templates/icons/tabler-outline/filter-plus.svg +21 -0
  9255. skills/ppt-master/templates/icons/tabler-outline/filter-question.svg +21 -0
  9256. skills/ppt-master/templates/icons/tabler-outline/filter-search.svg +21 -0
  9257. skills/ppt-master/templates/icons/tabler-outline/filter-share.svg +21 -0
  9258. skills/ppt-master/templates/icons/tabler-outline/filter-spark.svg +20 -0
  9259. skills/ppt-master/templates/icons/tabler-outline/filter-star.svg +20 -0
  9260. skills/ppt-master/templates/icons/tabler-outline/filter-up.svg +21 -0
  9261. skills/ppt-master/templates/icons/tabler-outline/filter-x.svg +21 -0
  9262. skills/ppt-master/templates/icons/tabler-outline/filter.svg +19 -0
  9263. skills/ppt-master/templates/icons/tabler-outline/filters.svg +21 -0
  9264. skills/ppt-master/templates/icons/tabler-outline/fingerprint-off.svg +24 -0
  9265. skills/ppt-master/templates/icons/tabler-outline/fingerprint-scan.svg +25 -0
  9266. skills/ppt-master/templates/icons/tabler-outline/fingerprint.svg +23 -0
  9267. skills/ppt-master/templates/icons/tabler-outline/fire-extinguisher.svg +23 -0
  9268. skills/ppt-master/templates/icons/tabler-outline/fire-hydrant-off.svg +23 -0
  9269. skills/ppt-master/templates/icons/tabler-outline/fire-hydrant.svg +22 -0
  9270. skills/ppt-master/templates/icons/tabler-outline/firetruck.svg +25 -0
  9271. skills/ppt-master/templates/icons/tabler-outline/firewall-check.svg +24 -0
  9272. skills/ppt-master/templates/icons/tabler-outline/firewall-flame.svg +24 -0
  9273. skills/ppt-master/templates/icons/tabler-outline/first-aid-kit-off.svg +23 -0
  9274. skills/ppt-master/templates/icons/tabler-outline/first-aid-kit.svg +22 -0
  9275. skills/ppt-master/templates/icons/tabler-outline/fish-bone.svg +24 -0
  9276. skills/ppt-master/templates/icons/tabler-outline/fish-christianity.svg +19 -0
  9277. skills/ppt-master/templates/icons/tabler-outline/fish-hook-off.svg +22 -0
  9278. skills/ppt-master/templates/icons/tabler-outline/fish-hook.svg +21 -0
  9279. skills/ppt-master/templates/icons/tabler-outline/fish-off.svg +23 -0
  9280. skills/ppt-master/templates/icons/tabler-outline/fish.svg +22 -0
  9281. skills/ppt-master/templates/icons/tabler-outline/flag-2-off.svg +20 -0
  9282. skills/ppt-master/templates/icons/tabler-outline/flag-2.svg +19 -0
  9283. skills/ppt-master/templates/icons/tabler-outline/flag-3.svg +19 -0
  9284. skills/ppt-master/templates/icons/tabler-outline/flag-bitcoin.svg +21 -0
  9285. skills/ppt-master/templates/icons/tabler-outline/flag-bolt.svg +21 -0
  9286. skills/ppt-master/templates/icons/tabler-outline/flag-cancel.svg +22 -0
  9287. skills/ppt-master/templates/icons/tabler-outline/flag-check.svg +21 -0
  9288. skills/ppt-master/templates/icons/tabler-outline/flag-code.svg +22 -0
  9289. skills/ppt-master/templates/icons/tabler-outline/flag-cog.svg +27 -0
  9290. skills/ppt-master/templates/icons/tabler-outline/flag-discount.svg +23 -0
  9291. skills/ppt-master/templates/icons/tabler-outline/flag-dollar.svg +22 -0
  9292. skills/ppt-master/templates/icons/tabler-outline/flag-down.svg +22 -0
  9293. skills/ppt-master/templates/icons/tabler-outline/flag-exclamation.svg +22 -0
  9294. skills/ppt-master/templates/icons/tabler-outline/flag-heart.svg +21 -0
  9295. skills/ppt-master/templates/icons/tabler-outline/flag-minus.svg +21 -0
  9296. skills/ppt-master/templates/icons/tabler-outline/flag-off.svg +23 -0
  9297. skills/ppt-master/templates/icons/tabler-outline/flag-pause.svg +22 -0
  9298. skills/ppt-master/templates/icons/tabler-outline/flag-pin.svg +22 -0
  9299. skills/ppt-master/templates/icons/tabler-outline/flag-plus.svg +22 -0
  9300. skills/ppt-master/templates/icons/tabler-outline/flag-question.svg +22 -0
  9301. skills/ppt-master/templates/icons/tabler-outline/flag-search.svg +22 -0
  9302. skills/ppt-master/templates/icons/tabler-outline/flag-share.svg +22 -0
  9303. skills/ppt-master/templates/icons/tabler-outline/flag-spark.svg +21 -0
  9304. skills/ppt-master/templates/icons/tabler-outline/flag-star.svg +21 -0
  9305. skills/ppt-master/templates/icons/tabler-outline/flag-up.svg +22 -0
  9306. skills/ppt-master/templates/icons/tabler-outline/flag-x.svg +22 -0
  9307. skills/ppt-master/templates/icons/tabler-outline/flag.svg +20 -0
  9308. skills/ppt-master/templates/icons/tabler-outline/flame-off.svg +20 -0
  9309. skills/ppt-master/templates/icons/tabler-outline/flame.svg +19 -0
  9310. skills/ppt-master/templates/icons/tabler-outline/flare.svg +19 -0
  9311. skills/ppt-master/templates/icons/tabler-outline/flask-2-off.svg +22 -0
  9312. skills/ppt-master/templates/icons/tabler-outline/flask-2.svg +21 -0
  9313. skills/ppt-master/templates/icons/tabler-outline/flask-off.svg +22 -0
  9314. skills/ppt-master/templates/icons/tabler-outline/flask.svg +21 -0
  9315. skills/ppt-master/templates/icons/tabler-outline/flip-flops.svg +24 -0
  9316. skills/ppt-master/templates/icons/tabler-outline/flip-horizontal.svg +21 -0
  9317. skills/ppt-master/templates/icons/tabler-outline/flip-vertical.svg +21 -0
  9318. skills/ppt-master/templates/icons/tabler-outline/float-center.svg +25 -0
  9319. skills/ppt-master/templates/icons/tabler-outline/float-left.svg +23 -0
  9320. skills/ppt-master/templates/icons/tabler-outline/float-none.svg +21 -0
  9321. skills/ppt-master/templates/icons/tabler-outline/float-right.svg +23 -0
  9322. skills/ppt-master/templates/icons/tabler-outline/flower-off.svg +21 -0
  9323. skills/ppt-master/templates/icons/tabler-outline/flower.svg +20 -0
  9324. skills/ppt-master/templates/icons/tabler-outline/focus-2.svg +24 -0
  9325. skills/ppt-master/templates/icons/tabler-outline/focus-auto.svg +24 -0
  9326. skills/ppt-master/templates/icons/tabler-outline/focus-centered.svg +23 -0
  9327. skills/ppt-master/templates/icons/tabler-outline/focus.svg +20 -0
  9328. skills/ppt-master/templates/icons/tabler-outline/fold-down.svg +23 -0
  9329. skills/ppt-master/templates/icons/tabler-outline/fold-up.svg +23 -0
  9330. skills/ppt-master/templates/icons/tabler-outline/fold.svg +24 -0
  9331. skills/ppt-master/templates/icons/tabler-outline/folder-bolt.svg +20 -0
  9332. skills/ppt-master/templates/icons/tabler-outline/folder-cancel.svg +21 -0
  9333. skills/ppt-master/templates/icons/tabler-outline/folder-check.svg +20 -0
  9334. skills/ppt-master/templates/icons/tabler-outline/folder-code.svg +21 -0
  9335. skills/ppt-master/templates/icons/tabler-outline/folder-cog.svg +26 -0
  9336. skills/ppt-master/templates/icons/tabler-outline/folder-dollar.svg +21 -0
  9337. skills/ppt-master/templates/icons/tabler-outline/folder-down.svg +21 -0
  9338. skills/ppt-master/templates/icons/tabler-outline/folder-exclamation.svg +21 -0
  9339. skills/ppt-master/templates/icons/tabler-outline/folder-heart.svg +20 -0
  9340. skills/ppt-master/templates/icons/tabler-outline/folder-minus.svg +20 -0
  9341. skills/ppt-master/templates/icons/tabler-outline/folder-off.svg +20 -0
  9342. skills/ppt-master/templates/icons/tabler-outline/folder-open.svg +19 -0
  9343. skills/ppt-master/templates/icons/tabler-outline/folder-pause.svg +21 -0
  9344. skills/ppt-master/templates/icons/tabler-outline/folder-pin.svg +21 -0
  9345. skills/ppt-master/templates/icons/tabler-outline/folder-plus.svg +21 -0
  9346. skills/ppt-master/templates/icons/tabler-outline/folder-question.svg +21 -0
  9347. skills/ppt-master/templates/icons/tabler-outline/folder-root.svg +21 -0
  9348. skills/ppt-master/templates/icons/tabler-outline/folder-search.svg +21 -0
  9349. skills/ppt-master/templates/icons/tabler-outline/folder-share.svg +21 -0
  9350. skills/ppt-master/templates/icons/tabler-outline/folder-star.svg +20 -0
  9351. skills/ppt-master/templates/icons/tabler-outline/folder-symlink.svg +21 -0
  9352. skills/ppt-master/templates/icons/tabler-outline/folder-up.svg +21 -0
  9353. skills/ppt-master/templates/icons/tabler-outline/folder-x.svg +21 -0
  9354. skills/ppt-master/templates/icons/tabler-outline/folder.svg +19 -0
  9355. skills/ppt-master/templates/icons/tabler-outline/folders-off.svg +21 -0
  9356. skills/ppt-master/templates/icons/tabler-outline/folders.svg +20 -0
  9357. skills/ppt-master/templates/icons/tabler-outline/forbid-2.svg +21 -0
  9358. skills/ppt-master/templates/icons/tabler-outline/forbid.svg +21 -0
  9359. skills/ppt-master/templates/icons/tabler-outline/forklift.svg +26 -0
  9360. skills/ppt-master/templates/icons/tabler-outline/forms.svg +24 -0
  9361. skills/ppt-master/templates/icons/tabler-outline/fountain-off.svg +24 -0
  9362. skills/ppt-master/templates/icons/tabler-outline/fountain.svg +23 -0
  9363. skills/ppt-master/templates/icons/tabler-outline/frame-off.svg +23 -0
  9364. skills/ppt-master/templates/icons/tabler-outline/frame.svg +22 -0
  9365. skills/ppt-master/templates/icons/tabler-outline/free-rights.svg +24 -0
  9366. skills/ppt-master/templates/icons/tabler-outline/freeze-column.svg +23 -0
  9367. skills/ppt-master/templates/icons/tabler-outline/freeze-row-column.svg +24 -0
  9368. skills/ppt-master/templates/icons/tabler-outline/freeze-row.svg +23 -0
  9369. skills/ppt-master/templates/icons/tabler-outline/fridge-off.svg +22 -0
  9370. skills/ppt-master/templates/icons/tabler-outline/fridge.svg +22 -0
  9371. skills/ppt-master/templates/icons/tabler-outline/friends-off.svg +23 -0
  9372. skills/ppt-master/templates/icons/tabler-outline/friends.svg +22 -0
  9373. skills/ppt-master/templates/icons/tabler-outline/frustum-off.svg +22 -0
  9374. skills/ppt-master/templates/icons/tabler-outline/frustum-plus.svg +23 -0
  9375. skills/ppt-master/templates/icons/tabler-outline/frustum.svg +21 -0
  9376. skills/ppt-master/templates/icons/tabler-outline/function-off.svg +22 -0
  9377. skills/ppt-master/templates/icons/tabler-outline/function.svg +21 -0
  9378. skills/ppt-master/templates/icons/tabler-outline/galaxy.svg +21 -0
  9379. skills/ppt-master/templates/icons/tabler-outline/garden-cart-off.svg +22 -0
  9380. skills/ppt-master/templates/icons/tabler-outline/garden-cart.svg +21 -0
  9381. skills/ppt-master/templates/icons/tabler-outline/gas-station-off.svg +24 -0
  9382. skills/ppt-master/templates/icons/tabler-outline/gas-station.svg +23 -0
  9383. skills/ppt-master/templates/icons/tabler-outline/gauge-off.svg +23 -0
  9384. skills/ppt-master/templates/icons/tabler-outline/gauge.svg +22 -0
  9385. skills/ppt-master/templates/icons/tabler-outline/gavel.svg +23 -0
  9386. skills/ppt-master/templates/icons/tabler-outline/gender-agender.svg +20 -0
  9387. skills/ppt-master/templates/icons/tabler-outline/gender-androgyne.svg +22 -0
  9388. skills/ppt-master/templates/icons/tabler-outline/gender-bigender.svg +23 -0
  9389. skills/ppt-master/templates/icons/tabler-outline/gender-demiboy.svg +21 -0
  9390. skills/ppt-master/templates/icons/tabler-outline/gender-demigirl.svg +21 -0
  9391. skills/ppt-master/templates/icons/tabler-outline/gender-epicene.svg +22 -0
  9392. skills/ppt-master/templates/icons/tabler-outline/gender-female.svg +21 -0
  9393. skills/ppt-master/templates/icons/tabler-outline/gender-femme.svg +21 -0
  9394. skills/ppt-master/templates/icons/tabler-outline/gender-genderfluid.svg +27 -0
  9395. skills/ppt-master/templates/icons/tabler-outline/gender-genderless.svg +21 -0
  9396. skills/ppt-master/templates/icons/tabler-outline/gender-genderqueer.svg +22 -0
  9397. skills/ppt-master/templates/icons/tabler-outline/gender-hermaphrodite.svg +22 -0
  9398. skills/ppt-master/templates/icons/tabler-outline/gender-intergender.svg +22 -0
  9399. skills/ppt-master/templates/icons/tabler-outline/gender-male.svg +22 -0
  9400. skills/ppt-master/templates/icons/tabler-outline/gender-neutrois.svg +20 -0
  9401. skills/ppt-master/templates/icons/tabler-outline/gender-third.svg +21 -0
  9402. skills/ppt-master/templates/icons/tabler-outline/gender-transgender.svg +26 -0
  9403. skills/ppt-master/templates/icons/tabler-outline/gender-trasvesti.svg +21 -0
  9404. skills/ppt-master/templates/icons/tabler-outline/geometry.svg +22 -0
  9405. skills/ppt-master/templates/icons/tabler-outline/ghost-2.svg +22 -0
  9406. skills/ppt-master/templates/icons/tabler-outline/ghost-3.svg +21 -0
  9407. skills/ppt-master/templates/icons/tabler-outline/ghost-off.svg +22 -0
  9408. skills/ppt-master/templates/icons/tabler-outline/ghost.svg +22 -0
  9409. skills/ppt-master/templates/icons/tabler-outline/gif.svg +22 -0
  9410. skills/ppt-master/templates/icons/tabler-outline/gift-card.svg +21 -0
  9411. skills/ppt-master/templates/icons/tabler-outline/gift-off.svg +23 -0
  9412. skills/ppt-master/templates/icons/tabler-outline/gift.svg +22 -0
  9413. skills/ppt-master/templates/icons/tabler-outline/git-branch-deleted.svg +25 -0
  9414. skills/ppt-master/templates/icons/tabler-outline/git-branch.svg +24 -0
  9415. skills/ppt-master/templates/icons/tabler-outline/git-cherry-pick.svg +23 -0
  9416. skills/ppt-master/templates/icons/tabler-outline/git-commit.svg +21 -0
  9417. skills/ppt-master/templates/icons/tabler-outline/git-compare.svg +24 -0
  9418. skills/ppt-master/templates/icons/tabler-outline/git-fork.svg +23 -0
  9419. skills/ppt-master/templates/icons/tabler-outline/git-merge.svg +23 -0
  9420. skills/ppt-master/templates/icons/tabler-outline/git-pull-request-closed.svg +24 -0
  9421. skills/ppt-master/templates/icons/tabler-outline/git-pull-request-draft.svg +24 -0
  9422. skills/ppt-master/templates/icons/tabler-outline/git-pull-request.svg +24 -0
  9423. skills/ppt-master/templates/icons/tabler-outline/gizmo.svg +23 -0
  9424. skills/ppt-master/templates/icons/tabler-outline/glass-champagne.svg +22 -0
  9425. skills/ppt-master/templates/icons/tabler-outline/glass-cocktail.svg +22 -0
  9426. skills/ppt-master/templates/icons/tabler-outline/glass-full.svg +22 -0
  9427. skills/ppt-master/templates/icons/tabler-outline/glass-gin.svg +22 -0
  9428. skills/ppt-master/templates/icons/tabler-outline/glass-off.svg +23 -0
  9429. skills/ppt-master/templates/icons/tabler-outline/glass.svg +22 -0
  9430. skills/ppt-master/templates/icons/tabler-outline/globe-off.svg +23 -0
  9431. skills/ppt-master/templates/icons/tabler-outline/globe.svg +22 -0
  9432. skills/ppt-master/templates/icons/tabler-outline/go-game.svg +28 -0
  9433. skills/ppt-master/templates/icons/tabler-outline/golf-off.svg +21 -0
  9434. skills/ppt-master/templates/icons/tabler-outline/golf.svg +20 -0
  9435. skills/ppt-master/templates/icons/tabler-outline/gps.svg +20 -0
  9436. skills/ppt-master/templates/icons/tabler-outline/gradienter.svg +21 -0
  9437. skills/ppt-master/templates/icons/tabler-outline/grain.svg +26 -0
  9438. skills/ppt-master/templates/icons/tabler-outline/graph-off.svg +21 -0
  9439. skills/ppt-master/templates/icons/tabler-outline/graph.svg +20 -0
  9440. skills/ppt-master/templates/icons/tabler-outline/grave-2.svg +22 -0
  9441. skills/ppt-master/templates/icons/tabler-outline/grave.svg +20 -0
  9442. skills/ppt-master/templates/icons/tabler-outline/grid-3x3.svg +22 -0
  9443. skills/ppt-master/templates/icons/tabler-outline/grid-4x4.svg +24 -0
  9444. skills/ppt-master/templates/icons/tabler-outline/grid-dots.svg +27 -0
  9445. skills/ppt-master/templates/icons/tabler-outline/grid-goldenratio.svg +22 -0
  9446. skills/ppt-master/templates/icons/tabler-outline/grid-pattern.svg +23 -0
  9447. skills/ppt-master/templates/icons/tabler-outline/grid-scan.svg +26 -0
  9448. skills/ppt-master/templates/icons/tabler-outline/grill-fork.svg +21 -0
  9449. skills/ppt-master/templates/icons/tabler-outline/grill-off.svg +26 -0
  9450. skills/ppt-master/templates/icons/tabler-outline/grill-spatula.svg +21 -0
  9451. skills/ppt-master/templates/icons/tabler-outline/grill.svg +26 -0
  9452. skills/ppt-master/templates/icons/tabler-outline/grip-horizontal.svg +24 -0
  9453. skills/ppt-master/templates/icons/tabler-outline/grip-vertical.svg +24 -0
  9454. skills/ppt-master/templates/icons/tabler-outline/growth.svg +19 -0
  9455. skills/ppt-master/templates/icons/tabler-outline/guitar-pick.svg +19 -0
  9456. skills/ppt-master/templates/icons/tabler-outline/gymnastics.svg +22 -0
  9457. skills/ppt-master/templates/icons/tabler-outline/h-1.svg +26 -0
  9458. skills/ppt-master/templates/icons/tabler-outline/h-2.svg +26 -0
  9459. skills/ppt-master/templates/icons/tabler-outline/h-3.svg +27 -0
  9460. skills/ppt-master/templates/icons/tabler-outline/h-4.svg +26 -0
  9461. skills/ppt-master/templates/icons/tabler-outline/h-5.svg +26 -0
  9462. skills/ppt-master/templates/icons/tabler-outline/h-6.svg +27 -0
  9463. skills/ppt-master/templates/icons/tabler-outline/hammer-off.svg +21 -0
  9464. skills/ppt-master/templates/icons/tabler-outline/hammer.svg +20 -0
  9465. skills/ppt-master/templates/icons/tabler-outline/hand-click-off.svg +27 -0
  9466. skills/ppt-master/templates/icons/tabler-outline/hand-click.svg +26 -0
  9467. skills/ppt-master/templates/icons/tabler-outline/hand-finger-down.svg +22 -0
  9468. skills/ppt-master/templates/icons/tabler-outline/hand-finger-left.svg +22 -0
  9469. skills/ppt-master/templates/icons/tabler-outline/hand-finger-off.svg +24 -0
  9470. skills/ppt-master/templates/icons/tabler-outline/hand-finger-right.svg +22 -0
  9471. skills/ppt-master/templates/icons/tabler-outline/hand-finger.svg +22 -0
  9472. skills/ppt-master/templates/icons/tabler-outline/hand-grab.svg +22 -0
  9473. skills/ppt-master/templates/icons/tabler-outline/hand-little-finger.svg +22 -0
  9474. skills/ppt-master/templates/icons/tabler-outline/hand-love-you.svg +22 -0
  9475. skills/ppt-master/templates/icons/tabler-outline/hand-middle-finger.svg +22 -0
  9476. skills/ppt-master/templates/icons/tabler-outline/hand-move.svg +24 -0
  9477. skills/ppt-master/templates/icons/tabler-outline/hand-off.svg +20 -0
  9478. skills/ppt-master/templates/icons/tabler-outline/hand-ring-finger.svg +22 -0
  9479. skills/ppt-master/templates/icons/tabler-outline/hand-sanitizer.svg +23 -0
  9480. skills/ppt-master/templates/icons/tabler-outline/hand-stop.svg +22 -0
  9481. skills/ppt-master/templates/icons/tabler-outline/hand-three-fingers.svg +22 -0
  9482. skills/ppt-master/templates/icons/tabler-outline/hand-two-fingers.svg +22 -0
  9483. skills/ppt-master/templates/icons/tabler-outline/hanger-2.svg +21 -0
  9484. skills/ppt-master/templates/icons/tabler-outline/hanger-off.svg +20 -0
  9485. skills/ppt-master/templates/icons/tabler-outline/hanger.svg +19 -0
  9486. skills/ppt-master/templates/icons/tabler-outline/hash.svg +22 -0
  9487. skills/ppt-master/templates/icons/tabler-outline/haze-moon.svg +21 -0
  9488. skills/ppt-master/templates/icons/tabler-outline/haze.svg +26 -0
  9489. skills/ppt-master/templates/icons/tabler-outline/hdr.svg +23 -0
  9490. skills/ppt-master/templates/icons/tabler-outline/heading-off.svg +25 -0
  9491. skills/ppt-master/templates/icons/tabler-outline/heading.svg +25 -0
  9492. skills/ppt-master/templates/icons/tabler-outline/headphones-off.svg +22 -0
  9493. skills/ppt-master/templates/icons/tabler-outline/headphones.svg +21 -0
  9494. skills/ppt-master/templates/icons/tabler-outline/headset-off.svg +23 -0
  9495. skills/ppt-master/templates/icons/tabler-outline/headset.svg +22 -0
  9496. skills/ppt-master/templates/icons/tabler-outline/health-recognition.svg +23 -0
  9497. skills/ppt-master/templates/icons/tabler-outline/heart-bitcoin.svg +20 -0
  9498. skills/ppt-master/templates/icons/tabler-outline/heart-bolt.svg +20 -0
  9499. skills/ppt-master/templates/icons/tabler-outline/heart-broken.svg +20 -0
  9500. skills/ppt-master/templates/icons/tabler-outline/heart-cancel.svg +21 -0
  9501. skills/ppt-master/templates/icons/tabler-outline/heart-check.svg +20 -0
  9502. skills/ppt-master/templates/icons/tabler-outline/heart-code.svg +21 -0
  9503. skills/ppt-master/templates/icons/tabler-outline/heart-cog.svg +26 -0
  9504. skills/ppt-master/templates/icons/tabler-outline/heart-discount.svg +22 -0
  9505. skills/ppt-master/templates/icons/tabler-outline/heart-dollar.svg +21 -0
  9506. skills/ppt-master/templates/icons/tabler-outline/heart-down.svg +21 -0
  9507. skills/ppt-master/templates/icons/tabler-outline/heart-exclamation.svg +21 -0
  9508. skills/ppt-master/templates/icons/tabler-outline/heart-handshake.svg +22 -0
  9509. skills/ppt-master/templates/icons/tabler-outline/heart-minus.svg +20 -0
  9510. skills/ppt-master/templates/icons/tabler-outline/heart-off.svg +20 -0
  9511. skills/ppt-master/templates/icons/tabler-outline/heart-pause.svg +21 -0
  9512. skills/ppt-master/templates/icons/tabler-outline/heart-pin.svg +21 -0
  9513. skills/ppt-master/templates/icons/tabler-outline/heart-plus.svg +21 -0
  9514. skills/ppt-master/templates/icons/tabler-outline/heart-question.svg +21 -0
  9515. skills/ppt-master/templates/icons/tabler-outline/heart-rate-monitor.svg +23 -0
  9516. skills/ppt-master/templates/icons/tabler-outline/heart-search.svg +21 -0
  9517. skills/ppt-master/templates/icons/tabler-outline/heart-share.svg +21 -0
  9518. skills/ppt-master/templates/icons/tabler-outline/heart-spark.svg +20 -0
  9519. skills/ppt-master/templates/icons/tabler-outline/heart-star.svg +20 -0
  9520. skills/ppt-master/templates/icons/tabler-outline/heart-up.svg +21 -0
  9521. skills/ppt-master/templates/icons/tabler-outline/heart-x.svg +21 -0
  9522. skills/ppt-master/templates/icons/tabler-outline/heart.svg +19 -0
  9523. skills/ppt-master/templates/icons/tabler-outline/heartbeat.svg +20 -0
  9524. skills/ppt-master/templates/icons/tabler-outline/hearts-off.svg +21 -0
  9525. skills/ppt-master/templates/icons/tabler-outline/hearts.svg +20 -0
  9526. skills/ppt-master/templates/icons/tabler-outline/helicopter-landing.svg +22 -0
  9527. skills/ppt-master/templates/icons/tabler-outline/helicopter.svg +25 -0
  9528. skills/ppt-master/templates/icons/tabler-outline/helmet-off.svg +21 -0
  9529. skills/ppt-master/templates/icons/tabler-outline/helmet.svg +20 -0
  9530. skills/ppt-master/templates/icons/tabler-outline/help-circle.svg +21 -0
  9531. skills/ppt-master/templates/icons/tabler-outline/help-hexagon.svg +21 -0
  9532. skills/ppt-master/templates/icons/tabler-outline/help-octagon.svg +21 -0
  9533. skills/ppt-master/templates/icons/tabler-outline/help-off.svg +22 -0
  9534. skills/ppt-master/templates/icons/tabler-outline/help-small.svg +20 -0
  9535. skills/ppt-master/templates/icons/tabler-outline/help-square-rounded.svg +21 -0
  9536. skills/ppt-master/templates/icons/tabler-outline/help-square.svg +21 -0
  9537. skills/ppt-master/templates/icons/tabler-outline/help-triangle.svg +21 -0
  9538. skills/ppt-master/templates/icons/tabler-outline/help.svg +21 -0
  9539. skills/ppt-master/templates/icons/tabler-outline/hemisphere-off.svg +21 -0
  9540. skills/ppt-master/templates/icons/tabler-outline/hemisphere-plus.svg +22 -0
  9541. skills/ppt-master/templates/icons/tabler-outline/hemisphere.svg +20 -0
  9542. skills/ppt-master/templates/icons/tabler-outline/hexagon-3d.svg +25 -0
  9543. skills/ppt-master/templates/icons/tabler-outline/hexagon-asterisk.svg +22 -0
  9544. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-a.svg +21 -0
  9545. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-b.svg +20 -0
  9546. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-c.svg +20 -0
  9547. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-d.svg +20 -0
  9548. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-e.svg +21 -0
  9549. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-f.svg +21 -0
  9550. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-g.svg +20 -0
  9551. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-h.svg +21 -0
  9552. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-i.svg +20 -0
  9553. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-j.svg +20 -0
  9554. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-k.svg +22 -0
  9555. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-l.svg +20 -0
  9556. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-m.svg +20 -0
  9557. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-n.svg +20 -0
  9558. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-o.svg +20 -0
  9559. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-p.svg +20 -0
  9560. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-q.svg +21 -0
  9561. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-r.svg +20 -0
  9562. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-s.svg +20 -0
  9563. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-t.svg +21 -0
  9564. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-u.svg +20 -0
  9565. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-v.svg +20 -0
  9566. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-w.svg +20 -0
  9567. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-x.svg +21 -0
  9568. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-y.svg +21 -0
  9569. skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-z.svg +20 -0
  9570. skills/ppt-master/templates/icons/tabler-outline/hexagon-minus-2.svg +20 -0
  9571. skills/ppt-master/templates/icons/tabler-outline/hexagon-minus.svg +20 -0
  9572. skills/ppt-master/templates/icons/tabler-outline/hexagon-number-0.svg +20 -0
  9573. skills/ppt-master/templates/icons/tabler-outline/hexagon-number-1.svg +20 -0
  9574. skills/ppt-master/templates/icons/tabler-outline/hexagon-number-2.svg +20 -0
  9575. skills/ppt-master/templates/icons/tabler-outline/hexagon-number-3.svg +20 -0
  9576. skills/ppt-master/templates/icons/tabler-outline/hexagon-number-4.svg +21 -0
  9577. skills/ppt-master/templates/icons/tabler-outline/hexagon-number-5.svg +20 -0
  9578. skills/ppt-master/templates/icons/tabler-outline/hexagon-number-6.svg +20 -0
  9579. skills/ppt-master/templates/icons/tabler-outline/hexagon-number-7.svg +20 -0
  9580. skills/ppt-master/templates/icons/tabler-outline/hexagon-number-8.svg +20 -0
  9581. skills/ppt-master/templates/icons/tabler-outline/hexagon-number-9.svg +20 -0
  9582. skills/ppt-master/templates/icons/tabler-outline/hexagon-off.svg +20 -0
  9583. skills/ppt-master/templates/icons/tabler-outline/hexagon-plus-2.svg +21 -0
  9584. skills/ppt-master/templates/icons/tabler-outline/hexagon-plus.svg +21 -0
  9585. skills/ppt-master/templates/icons/tabler-outline/hexagon.svg +19 -0
  9586. skills/ppt-master/templates/icons/tabler-outline/hexagonal-prism-off.svg +23 -0
  9587. skills/ppt-master/templates/icons/tabler-outline/hexagonal-prism-plus.svg +24 -0
  9588. skills/ppt-master/templates/icons/tabler-outline/hexagonal-prism.svg +22 -0
  9589. skills/ppt-master/templates/icons/tabler-outline/hexagonal-pyramid-off.svg +22 -0
  9590. skills/ppt-master/templates/icons/tabler-outline/hexagonal-pyramid-plus.svg +23 -0
  9591. skills/ppt-master/templates/icons/tabler-outline/hexagonal-pyramid.svg +21 -0
  9592. skills/ppt-master/templates/icons/tabler-outline/hexagons-off.svg +23 -0
  9593. skills/ppt-master/templates/icons/tabler-outline/hexagons.svg +21 -0
  9594. skills/ppt-master/templates/icons/tabler-outline/hierarchy-2.svg +23 -0
  9595. skills/ppt-master/templates/icons/tabler-outline/hierarchy-3.svg +30 -0
  9596. skills/ppt-master/templates/icons/tabler-outline/hierarchy-off.svg +24 -0
  9597. skills/ppt-master/templates/icons/tabler-outline/hierarchy.svg +23 -0
  9598. skills/ppt-master/templates/icons/tabler-outline/highlight-off.svg +23 -0
  9599. skills/ppt-master/templates/icons/tabler-outline/highlight.svg +22 -0
  9600. skills/ppt-master/templates/icons/tabler-outline/history-off.svg +20 -0
  9601. skills/ppt-master/templates/icons/tabler-outline/history-toggle.svg +24 -0
  9602. skills/ppt-master/templates/icons/tabler-outline/history.svg +20 -0
  9603. skills/ppt-master/templates/icons/tabler-outline/home-2.svg +21 -0
  9604. skills/ppt-master/templates/icons/tabler-outline/home-bitcoin.svg +22 -0
  9605. skills/ppt-master/templates/icons/tabler-outline/home-bolt.svg +21 -0
  9606. skills/ppt-master/templates/icons/tabler-outline/home-cancel.svg +22 -0
  9607. skills/ppt-master/templates/icons/tabler-outline/home-check.svg +21 -0
  9608. skills/ppt-master/templates/icons/tabler-outline/home-cog.svg +27 -0
  9609. skills/ppt-master/templates/icons/tabler-outline/home-dollar.svg +22 -0
  9610. skills/ppt-master/templates/icons/tabler-outline/home-dot.svg +21 -0
  9611. skills/ppt-master/templates/icons/tabler-outline/home-down.svg +22 -0
  9612. skills/ppt-master/templates/icons/tabler-outline/home-eco.svg +22 -0
  9613. skills/ppt-master/templates/icons/tabler-outline/home-edit.svg +21 -0
  9614. skills/ppt-master/templates/icons/tabler-outline/home-exclamation.svg +22 -0
  9615. skills/ppt-master/templates/icons/tabler-outline/home-hand.svg +21 -0
  9616. skills/ppt-master/templates/icons/tabler-outline/home-heart.svg +21 -0
  9617. skills/ppt-master/templates/icons/tabler-outline/home-infinity.svg +22 -0
  9618. skills/ppt-master/templates/icons/tabler-outline/home-link.svg +24 -0
  9619. skills/ppt-master/templates/icons/tabler-outline/home-lock.svg +23 -0
  9620. skills/ppt-master/templates/icons/tabler-outline/home-minus.svg +21 -0
  9621. skills/ppt-master/templates/icons/tabler-outline/home-move.svg +22 -0
  9622. skills/ppt-master/templates/icons/tabler-outline/home-off.svg +22 -0
  9623. skills/ppt-master/templates/icons/tabler-outline/home-plus.svg +22 -0
  9624. skills/ppt-master/templates/icons/tabler-outline/home-question.svg +22 -0
  9625. skills/ppt-master/templates/icons/tabler-outline/home-ribbon.svg +21 -0
  9626. skills/ppt-master/templates/icons/tabler-outline/home-search.svg +22 -0
  9627. skills/ppt-master/templates/icons/tabler-outline/home-share.svg +22 -0
  9628. skills/ppt-master/templates/icons/tabler-outline/home-shield.svg +22 -0
  9629. skills/ppt-master/templates/icons/tabler-outline/home-signal.svg +23 -0
  9630. skills/ppt-master/templates/icons/tabler-outline/home-spark.svg +22 -0
  9631. skills/ppt-master/templates/icons/tabler-outline/home-star.svg +21 -0
  9632. skills/ppt-master/templates/icons/tabler-outline/home-stats.svg +22 -0
  9633. skills/ppt-master/templates/icons/tabler-outline/home-up.svg +22 -0
  9634. skills/ppt-master/templates/icons/tabler-outline/home-x.svg +22 -0
  9635. skills/ppt-master/templates/icons/tabler-outline/home.svg +21 -0
  9636. skills/ppt-master/templates/icons/tabler-outline/horse-toy.svg +22 -0
  9637. skills/ppt-master/templates/icons/tabler-outline/horse.svg +20 -0
  9638. skills/ppt-master/templates/icons/tabler-outline/horseshoe.svg +19 -0
  9639. skills/ppt-master/templates/icons/tabler-outline/hospital-circle.svg +22 -0
  9640. skills/ppt-master/templates/icons/tabler-outline/hospital.svg +22 -0
  9641. skills/ppt-master/templates/icons/tabler-outline/hotel-service.svg +19 -0
  9642. skills/ppt-master/templates/icons/tabler-outline/hourglass-empty.svg +20 -0
  9643. skills/ppt-master/templates/icons/tabler-outline/hourglass-high.svg +21 -0
  9644. skills/ppt-master/templates/icons/tabler-outline/hourglass-low.svg +21 -0
  9645. skills/ppt-master/templates/icons/tabler-outline/hourglass-off.svg +21 -0
  9646. skills/ppt-master/templates/icons/tabler-outline/hourglass.svg +22 -0
  9647. skills/ppt-master/templates/icons/tabler-outline/hours-12.svg +22 -0
  9648. skills/ppt-master/templates/icons/tabler-outline/hours-24.svg +24 -0
  9649. skills/ppt-master/templates/icons/tabler-outline/html.svg +25 -0
  9650. skills/ppt-master/templates/icons/tabler-outline/http-connect-off.svg +22 -0
  9651. skills/ppt-master/templates/icons/tabler-outline/http-connect.svg +21 -0
  9652. skills/ppt-master/templates/icons/tabler-outline/http-delete-off.svg +23 -0
  9653. skills/ppt-master/templates/icons/tabler-outline/http-delete.svg +22 -0
  9654. skills/ppt-master/templates/icons/tabler-outline/http-get-off.svg +24 -0
  9655. skills/ppt-master/templates/icons/tabler-outline/http-get.svg +23 -0
  9656. skills/ppt-master/templates/icons/tabler-outline/http-head-off.svg +26 -0
  9657. skills/ppt-master/templates/icons/tabler-outline/http-head.svg +25 -0
  9658. skills/ppt-master/templates/icons/tabler-outline/http-options-off.svg +23 -0
  9659. skills/ppt-master/templates/icons/tabler-outline/http-options.svg +22 -0
  9660. skills/ppt-master/templates/icons/tabler-outline/http-patch-off.svg +24 -0
  9661. skills/ppt-master/templates/icons/tabler-outline/http-patch.svg +23 -0
  9662. skills/ppt-master/templates/icons/tabler-outline/http-post-off.svg +22 -0
  9663. skills/ppt-master/templates/icons/tabler-outline/http-post.svg +21 -0
  9664. skills/ppt-master/templates/icons/tabler-outline/http-put-off.svg +23 -0
  9665. skills/ppt-master/templates/icons/tabler-outline/http-put.svg +22 -0
  9666. skills/ppt-master/templates/icons/tabler-outline/http-que-off.svg +24 -0
  9667. skills/ppt-master/templates/icons/tabler-outline/http-que.svg +23 -0
  9668. skills/ppt-master/templates/icons/tabler-outline/http-trace-off.svg +25 -0
  9669. skills/ppt-master/templates/icons/tabler-outline/http-trace.svg +24 -0
  9670. skills/ppt-master/templates/icons/tabler-outline/ice-cream-2.svg +20 -0
  9671. skills/ppt-master/templates/icons/tabler-outline/ice-cream-off.svg +23 -0
  9672. skills/ppt-master/templates/icons/tabler-outline/ice-cream.svg +22 -0
  9673. skills/ppt-master/templates/icons/tabler-outline/ice-skating.svg +22 -0
  9674. skills/ppt-master/templates/icons/tabler-outline/iceberg.svg +20 -0
  9675. skills/ppt-master/templates/icons/tabler-outline/icons-off.svg +24 -0
  9676. skills/ppt-master/templates/icons/tabler-outline/icons.svg +23 -0
  9677. skills/ppt-master/templates/icons/tabler-outline/id-badge-2.svg +23 -0
  9678. skills/ppt-master/templates/icons/tabler-outline/id-badge-off.svg +23 -0
  9679. skills/ppt-master/templates/icons/tabler-outline/id-badge.svg +22 -0
  9680. skills/ppt-master/templates/icons/tabler-outline/id-off.svg +24 -0
  9681. skills/ppt-master/templates/icons/tabler-outline/id.svg +23 -0
  9682. skills/ppt-master/templates/icons/tabler-outline/ikosaedr.svg +26 -0
  9683. skills/ppt-master/templates/icons/tabler-outline/image-generation.svg +24 -0
  9684. skills/ppt-master/templates/icons/tabler-outline/image-in-picture.svg +25 -0
  9685. skills/ppt-master/templates/icons/tabler-outline/inbox-off.svg +21 -0
  9686. skills/ppt-master/templates/icons/tabler-outline/inbox.svg +20 -0
  9687. skills/ppt-master/templates/icons/tabler-outline/indent-decrease.svg +22 -0
  9688. skills/ppt-master/templates/icons/tabler-outline/indent-increase.svg +22 -0
  9689. skills/ppt-master/templates/icons/tabler-outline/infinity-off.svg +20 -0
  9690. skills/ppt-master/templates/icons/tabler-outline/infinity.svg +19 -0
  9691. skills/ppt-master/templates/icons/tabler-outline/info-circle.svg +21 -0
  9692. skills/ppt-master/templates/icons/tabler-outline/info-hexagon.svg +21 -0
  9693. skills/ppt-master/templates/icons/tabler-outline/info-octagon.svg +21 -0
  9694. skills/ppt-master/templates/icons/tabler-outline/info-small.svg +20 -0
  9695. skills/ppt-master/templates/icons/tabler-outline/info-square-rounded.svg +21 -0
  9696. skills/ppt-master/templates/icons/tabler-outline/info-square.svg +21 -0
  9697. skills/ppt-master/templates/icons/tabler-outline/info-triangle.svg +21 -0
  9698. skills/ppt-master/templates/icons/tabler-outline/inner-shadow-bottom-left.svg +20 -0
  9699. skills/ppt-master/templates/icons/tabler-outline/inner-shadow-bottom-right.svg +20 -0
  9700. skills/ppt-master/templates/icons/tabler-outline/inner-shadow-bottom.svg +20 -0
  9701. skills/ppt-master/templates/icons/tabler-outline/inner-shadow-left.svg +20 -0
  9702. skills/ppt-master/templates/icons/tabler-outline/inner-shadow-right.svg +20 -0
  9703. skills/ppt-master/templates/icons/tabler-outline/inner-shadow-top-left.svg +20 -0
  9704. skills/ppt-master/templates/icons/tabler-outline/inner-shadow-top-right.svg +20 -0
  9705. skills/ppt-master/templates/icons/tabler-outline/inner-shadow-top.svg +20 -0
  9706. skills/ppt-master/templates/icons/tabler-outline/input-ai.svg +22 -0
  9707. skills/ppt-master/templates/icons/tabler-outline/input-check.svg +20 -0
  9708. skills/ppt-master/templates/icons/tabler-outline/input-search.svg +21 -0
  9709. skills/ppt-master/templates/icons/tabler-outline/input-spark.svg +20 -0
  9710. skills/ppt-master/templates/icons/tabler-outline/input-x.svg +21 -0
  9711. skills/ppt-master/templates/icons/tabler-outline/invoice.svg +20 -0
  9712. skills/ppt-master/templates/icons/tabler-outline/ironing-1.svg +20 -0
  9713. skills/ppt-master/templates/icons/tabler-outline/ironing-2.svg +21 -0
  9714. skills/ppt-master/templates/icons/tabler-outline/ironing-3.svg +22 -0
  9715. skills/ppt-master/templates/icons/tabler-outline/ironing-off.svg +20 -0
  9716. skills/ppt-master/templates/icons/tabler-outline/ironing-steam-off.svg +25 -0
  9717. skills/ppt-master/templates/icons/tabler-outline/ironing-steam.svg +22 -0
  9718. skills/ppt-master/templates/icons/tabler-outline/ironing.svg +19 -0
  9719. skills/ppt-master/templates/icons/tabler-outline/irregular-polyhedron-off.svg +23 -0
  9720. skills/ppt-master/templates/icons/tabler-outline/irregular-polyhedron-plus.svg +24 -0
  9721. skills/ppt-master/templates/icons/tabler-outline/irregular-polyhedron.svg +22 -0
  9722. skills/ppt-master/templates/icons/tabler-outline/italic.svg +21 -0
  9723. skills/ppt-master/templates/icons/tabler-outline/jacket.svg +23 -0
  9724. skills/ppt-master/templates/icons/tabler-outline/jetpack.svg +24 -0
  9725. skills/ppt-master/templates/icons/tabler-outline/jetski.svg +21 -0
  9726. skills/ppt-master/templates/icons/tabler-outline/jewish-star.svg +19 -0
  9727. skills/ppt-master/templates/icons/tabler-outline/join-bevel.svg +19 -0
  9728. skills/ppt-master/templates/icons/tabler-outline/join-round.svg +19 -0
  9729. skills/ppt-master/templates/icons/tabler-outline/join-straight.svg +19 -0
  9730. skills/ppt-master/templates/icons/tabler-outline/joker.svg +22 -0
  9731. skills/ppt-master/templates/icons/tabler-outline/jpg.svg +21 -0
  9732. skills/ppt-master/templates/icons/tabler-outline/json.svg +22 -0
  9733. skills/ppt-master/templates/icons/tabler-outline/jump-rope.svg +21 -0
  9734. skills/ppt-master/templates/icons/tabler-outline/karate.svg +22 -0
  9735. skills/ppt-master/templates/icons/tabler-outline/kayak.svg +24 -0
  9736. skills/ppt-master/templates/icons/tabler-outline/kerning.svg +21 -0
  9737. skills/ppt-master/templates/icons/tabler-outline/key-off.svg +22 -0
  9738. skills/ppt-master/templates/icons/tabler-outline/key.svg +20 -0
  9739. skills/ppt-master/templates/icons/tabler-outline/keyboard-hide.svg +27 -0
  9740. skills/ppt-master/templates/icons/tabler-outline/keyboard-off.svg +27 -0
  9741. skills/ppt-master/templates/icons/tabler-outline/keyboard-show.svg +27 -0
  9742. skills/ppt-master/templates/icons/tabler-outline/keyboard.svg +26 -0
  9743. skills/ppt-master/templates/icons/tabler-outline/keyframe-align-center.svg +23 -0
  9744. skills/ppt-master/templates/icons/tabler-outline/keyframe-align-horizontal.svg +21 -0
  9745. skills/ppt-master/templates/icons/tabler-outline/keyframe-align-vertical.svg +21 -0
  9746. skills/ppt-master/templates/icons/tabler-outline/keyframe.svg +19 -0
  9747. skills/ppt-master/templates/icons/tabler-outline/keyframes.svg +21 -0
  9748. skills/ppt-master/templates/icons/tabler-outline/label-important.svg +19 -0
  9749. skills/ppt-master/templates/icons/tabler-outline/label-off.svg +20 -0
  9750. skills/ppt-master/templates/icons/tabler-outline/label.svg +19 -0
  9751. skills/ppt-master/templates/icons/tabler-outline/ladder-off.svg +25 -0
  9752. skills/ppt-master/templates/icons/tabler-outline/ladder.svg +24 -0
  9753. skills/ppt-master/templates/icons/tabler-outline/ladle.svg +20 -0
  9754. skills/ppt-master/templates/icons/tabler-outline/lambda.svg +20 -0
  9755. skills/ppt-master/templates/icons/tabler-outline/lamp-2.svg +23 -0
  9756. skills/ppt-master/templates/icons/tabler-outline/lamp-off.svg +22 -0
  9757. skills/ppt-master/templates/icons/tabler-outline/lamp.svg +21 -0
  9758. skills/ppt-master/templates/icons/tabler-outline/lane.svg +20 -0
  9759. skills/ppt-master/templates/icons/tabler-outline/language-hiragana.svg +23 -0
  9760. skills/ppt-master/templates/icons/tabler-outline/language-katakana.svg +22 -0
  9761. skills/ppt-master/templates/icons/tabler-outline/language-off.svg +24 -0
  9762. skills/ppt-master/templates/icons/tabler-outline/language.svg +24 -0
  9763. skills/ppt-master/templates/icons/tabler-outline/lasso-off.svg +22 -0
  9764. skills/ppt-master/templates/icons/tabler-outline/lasso-polygon.svg +21 -0
  9765. skills/ppt-master/templates/icons/tabler-outline/lasso.svg +21 -0
  9766. skills/ppt-master/templates/icons/tabler-outline/laurel-wreath-1.svg +27 -0
  9767. skills/ppt-master/templates/icons/tabler-outline/laurel-wreath-2.svg +27 -0
  9768. skills/ppt-master/templates/icons/tabler-outline/laurel-wreath-3.svg +27 -0
  9769. skills/ppt-master/templates/icons/tabler-outline/laurel-wreath.svg +26 -0
  9770. skills/ppt-master/templates/icons/tabler-outline/layers-difference.svg +23 -0
  9771. skills/ppt-master/templates/icons/tabler-outline/layers-intersect-2.svg +21 -0
  9772. skills/ppt-master/templates/icons/tabler-outline/layers-intersect.svg +20 -0
  9773. skills/ppt-master/templates/icons/tabler-outline/layers-linked.svg +20 -0
  9774. skills/ppt-master/templates/icons/tabler-outline/layers-off.svg +21 -0
  9775. skills/ppt-master/templates/icons/tabler-outline/layers-selected-bottom.svg +23 -0
  9776. skills/ppt-master/templates/icons/tabler-outline/layers-selected.svg +23 -0
  9777. skills/ppt-master/templates/icons/tabler-outline/layers-subtract.svg +20 -0
  9778. skills/ppt-master/templates/icons/tabler-outline/layers-union.svg +19 -0
  9779. skills/ppt-master/templates/icons/tabler-outline/layout-2.svg +22 -0
  9780. skills/ppt-master/templates/icons/tabler-outline/layout-align-bottom.svg +20 -0
  9781. skills/ppt-master/templates/icons/tabler-outline/layout-align-center.svg +21 -0
  9782. skills/ppt-master/templates/icons/tabler-outline/layout-align-left.svg +20 -0
  9783. skills/ppt-master/templates/icons/tabler-outline/layout-align-middle.svg +21 -0
  9784. skills/ppt-master/templates/icons/tabler-outline/layout-align-right.svg +20 -0
  9785. skills/ppt-master/templates/icons/tabler-outline/layout-align-top.svg +20 -0
  9786. skills/ppt-master/templates/icons/tabler-outline/layout-board-split.svg +23 -0
  9787. skills/ppt-master/templates/icons/tabler-outline/layout-board.svg +22 -0
  9788. skills/ppt-master/templates/icons/tabler-outline/layout-bottombar-collapse.svg +21 -0
  9789. skills/ppt-master/templates/icons/tabler-outline/layout-bottombar-expand.svg +21 -0
  9790. skills/ppt-master/templates/icons/tabler-outline/layout-bottombar-inactive.svg +23 -0
  9791. skills/ppt-master/templates/icons/tabler-outline/layout-bottombar.svg +20 -0
  9792. skills/ppt-master/templates/icons/tabler-outline/layout-cards.svg +20 -0
  9793. skills/ppt-master/templates/icons/tabler-outline/layout-collage.svg +21 -0
  9794. skills/ppt-master/templates/icons/tabler-outline/layout-columns.svg +20 -0
  9795. skills/ppt-master/templates/icons/tabler-outline/layout-dashboard.svg +22 -0
  9796. skills/ppt-master/templates/icons/tabler-outline/layout-distribute-horizontal.svg +21 -0
  9797. skills/ppt-master/templates/icons/tabler-outline/layout-distribute-vertical.svg +21 -0
  9798. skills/ppt-master/templates/icons/tabler-outline/layout-grid-add.svg +22 -0
  9799. skills/ppt-master/templates/icons/tabler-outline/layout-grid-remove.svg +22 -0
  9800. skills/ppt-master/templates/icons/tabler-outline/layout-grid.svg +22 -0
  9801. skills/ppt-master/templates/icons/tabler-outline/layout-kanban.svg +22 -0
  9802. skills/ppt-master/templates/icons/tabler-outline/layout-list.svg +20 -0
  9803. skills/ppt-master/templates/icons/tabler-outline/layout-navbar-collapse.svg +21 -0
  9804. skills/ppt-master/templates/icons/tabler-outline/layout-navbar-expand.svg +21 -0
  9805. skills/ppt-master/templates/icons/tabler-outline/layout-navbar-inactive.svg +23 -0
  9806. skills/ppt-master/templates/icons/tabler-outline/layout-navbar.svg +20 -0
  9807. skills/ppt-master/templates/icons/tabler-outline/layout-off.svg +22 -0
  9808. skills/ppt-master/templates/icons/tabler-outline/layout-rows.svg +20 -0
  9809. skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-inactive.svg +23 -0
  9810. skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-left-collapse.svg +21 -0
  9811. skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-left-expand.svg +21 -0
  9812. skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-right-collapse.svg +21 -0
  9813. skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-right-expand.svg +21 -0
  9814. skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-right-inactive.svg +23 -0
  9815. skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-right.svg +20 -0
  9816. skills/ppt-master/templates/icons/tabler-outline/layout-sidebar.svg +20 -0
  9817. skills/ppt-master/templates/icons/tabler-outline/layout.svg +21 -0
  9818. skills/ppt-master/templates/icons/tabler-outline/leaf-2.svg +20 -0
  9819. skills/ppt-master/templates/icons/tabler-outline/leaf-off.svg +21 -0
  9820. skills/ppt-master/templates/icons/tabler-outline/leaf.svg +20 -0
  9821. skills/ppt-master/templates/icons/tabler-outline/lego-off.svg +22 -0
  9822. skills/ppt-master/templates/icons/tabler-outline/lego.svg +22 -0
  9823. skills/ppt-master/templates/icons/tabler-outline/lemon-2.svg +19 -0
  9824. skills/ppt-master/templates/icons/tabler-outline/lemon.svg +23 -0
  9825. skills/ppt-master/templates/icons/tabler-outline/letter-a-small.svg +20 -0
  9826. skills/ppt-master/templates/icons/tabler-outline/letter-a.svg +20 -0
  9827. skills/ppt-master/templates/icons/tabler-outline/letter-b-small.svg +19 -0
  9828. skills/ppt-master/templates/icons/tabler-outline/letter-b.svg +20 -0
  9829. skills/ppt-master/templates/icons/tabler-outline/letter-c-small.svg +19 -0
  9830. skills/ppt-master/templates/icons/tabler-outline/letter-c.svg +19 -0
  9831. skills/ppt-master/templates/icons/tabler-outline/letter-case-lower.svg +22 -0
  9832. skills/ppt-master/templates/icons/tabler-outline/letter-case-toggle.svg +22 -0
  9833. skills/ppt-master/templates/icons/tabler-outline/letter-case-upper.svg +22 -0
  9834. skills/ppt-master/templates/icons/tabler-outline/letter-case.svg +22 -0
  9835. skills/ppt-master/templates/icons/tabler-outline/letter-d-small.svg +19 -0
  9836. skills/ppt-master/templates/icons/tabler-outline/letter-d.svg +19 -0
  9837. skills/ppt-master/templates/icons/tabler-outline/letter-e-small.svg +20 -0
  9838. skills/ppt-master/templates/icons/tabler-outline/letter-e.svg +20 -0
  9839. skills/ppt-master/templates/icons/tabler-outline/letter-f-small.svg +20 -0
  9840. skills/ppt-master/templates/icons/tabler-outline/letter-f.svg +20 -0
  9841. skills/ppt-master/templates/icons/tabler-outline/letter-g-small.svg +19 -0
  9842. skills/ppt-master/templates/icons/tabler-outline/letter-g.svg +19 -0
  9843. skills/ppt-master/templates/icons/tabler-outline/letter-h-small.svg +21 -0
  9844. skills/ppt-master/templates/icons/tabler-outline/letter-h.svg +21 -0
  9845. skills/ppt-master/templates/icons/tabler-outline/letter-i-small.svg +19 -0
  9846. skills/ppt-master/templates/icons/tabler-outline/letter-i.svg +19 -0
  9847. skills/ppt-master/templates/icons/tabler-outline/letter-j-small.svg +19 -0
  9848. skills/ppt-master/templates/icons/tabler-outline/letter-j.svg +19 -0
  9849. skills/ppt-master/templates/icons/tabler-outline/letter-k-small.svg +21 -0
  9850. skills/ppt-master/templates/icons/tabler-outline/letter-k.svg +21 -0
  9851. skills/ppt-master/templates/icons/tabler-outline/letter-l-small.svg +19 -0
  9852. skills/ppt-master/templates/icons/tabler-outline/letter-l.svg +19 -0
  9853. skills/ppt-master/templates/icons/tabler-outline/letter-m-small.svg +19 -0
  9854. skills/ppt-master/templates/icons/tabler-outline/letter-m.svg +19 -0
  9855. skills/ppt-master/templates/icons/tabler-outline/letter-n-small.svg +19 -0
  9856. skills/ppt-master/templates/icons/tabler-outline/letter-n.svg +19 -0
  9857. skills/ppt-master/templates/icons/tabler-outline/letter-o-small.svg +19 -0
  9858. skills/ppt-master/templates/icons/tabler-outline/letter-o.svg +19 -0
  9859. skills/ppt-master/templates/icons/tabler-outline/letter-p-small.svg +19 -0
  9860. skills/ppt-master/templates/icons/tabler-outline/letter-p.svg +19 -0
  9861. skills/ppt-master/templates/icons/tabler-outline/letter-q-small.svg +20 -0
  9862. skills/ppt-master/templates/icons/tabler-outline/letter-q.svg +20 -0
  9863. skills/ppt-master/templates/icons/tabler-outline/letter-r-small.svg +19 -0
  9864. skills/ppt-master/templates/icons/tabler-outline/letter-r.svg +20 -0
  9865. skills/ppt-master/templates/icons/tabler-outline/letter-s-small.svg +19 -0
  9866. skills/ppt-master/templates/icons/tabler-outline/letter-s.svg +19 -0
  9867. skills/ppt-master/templates/icons/tabler-outline/letter-spacing.svg +23 -0
  9868. skills/ppt-master/templates/icons/tabler-outline/letter-t-small.svg +20 -0
  9869. skills/ppt-master/templates/icons/tabler-outline/letter-t.svg +20 -0
  9870. skills/ppt-master/templates/icons/tabler-outline/letter-u-small.svg +19 -0
  9871. skills/ppt-master/templates/icons/tabler-outline/letter-u.svg +19 -0
  9872. skills/ppt-master/templates/icons/tabler-outline/letter-v-small.svg +19 -0
  9873. skills/ppt-master/templates/icons/tabler-outline/letter-v.svg +19 -0
  9874. skills/ppt-master/templates/icons/tabler-outline/letter-w-small.svg +19 -0
  9875. skills/ppt-master/templates/icons/tabler-outline/letter-w.svg +19 -0
  9876. skills/ppt-master/templates/icons/tabler-outline/letter-x-small.svg +20 -0
  9877. skills/ppt-master/templates/icons/tabler-outline/letter-x.svg +20 -0
  9878. skills/ppt-master/templates/icons/tabler-outline/letter-y-small.svg +20 -0
  9879. skills/ppt-master/templates/icons/tabler-outline/letter-y.svg +20 -0
  9880. skills/ppt-master/templates/icons/tabler-outline/letter-z-small.svg +19 -0
  9881. skills/ppt-master/templates/icons/tabler-outline/letter-z.svg +19 -0
  9882. skills/ppt-master/templates/icons/tabler-outline/library-minus.svg +21 -0
  9883. skills/ppt-master/templates/icons/tabler-outline/library-photo.svg +23 -0
  9884. skills/ppt-master/templates/icons/tabler-outline/library-plus.svg +22 -0
  9885. skills/ppt-master/templates/icons/tabler-outline/library.svg +23 -0
  9886. skills/ppt-master/templates/icons/tabler-outline/license-off.svg +22 -0
  9887. skills/ppt-master/templates/icons/tabler-outline/license.svg +21 -0
  9888. skills/ppt-master/templates/icons/tabler-outline/lifebuoy-off.svg +25 -0
  9889. skills/ppt-master/templates/icons/tabler-outline/lifebuoy.svg +24 -0
  9890. skills/ppt-master/templates/icons/tabler-outline/lighter.svg +20 -0
  9891. skills/ppt-master/templates/icons/tabler-outline/line-dashed.svg +21 -0
  9892. skills/ppt-master/templates/icons/tabler-outline/line-dotted.svg +23 -0
  9893. skills/ppt-master/templates/icons/tabler-outline/line-height.svg +24 -0
  9894. skills/ppt-master/templates/icons/tabler-outline/line-scan.svg +23 -0
  9895. skills/ppt-master/templates/icons/tabler-outline/line.svg +21 -0
  9896. skills/ppt-master/templates/icons/tabler-outline/link-minus.svg +22 -0
  9897. skills/ppt-master/templates/icons/tabler-outline/link-off.svg +22 -0
  9898. skills/ppt-master/templates/icons/tabler-outline/link-plus.svg +23 -0
  9899. skills/ppt-master/templates/icons/tabler-outline/link.svg +21 -0
  9900. skills/ppt-master/templates/icons/tabler-outline/list-check.svg +24 -0
  9901. skills/ppt-master/templates/icons/tabler-outline/list-details.svg +24 -0
  9902. skills/ppt-master/templates/icons/tabler-outline/list-letters.svg +24 -0
  9903. skills/ppt-master/templates/icons/tabler-outline/list-numbers.svg +23 -0
  9904. skills/ppt-master/templates/icons/tabler-outline/list-search.svg +23 -0
  9905. skills/ppt-master/templates/icons/tabler-outline/list-tree.svg +24 -0
  9906. skills/ppt-master/templates/icons/tabler-outline/list.svg +24 -0
  9907. skills/ppt-master/templates/icons/tabler-outline/live-photo-off.svg +35 -0
  9908. skills/ppt-master/templates/icons/tabler-outline/live-photo.svg +34 -0
  9909. skills/ppt-master/templates/icons/tabler-outline/live-view.svg +24 -0
  9910. skills/ppt-master/templates/icons/tabler-outline/load-balancer.svg +29 -0
  9911. skills/ppt-master/templates/icons/tabler-outline/loader-2.svg +19 -0
  9912. skills/ppt-master/templates/icons/tabler-outline/loader-3.svg +20 -0
  9913. skills/ppt-master/templates/icons/tabler-outline/loader-quarter.svg +21 -0
  9914. skills/ppt-master/templates/icons/tabler-outline/loader.svg +26 -0
  9915. skills/ppt-master/templates/icons/tabler-outline/location-bolt.svg +20 -0
  9916. skills/ppt-master/templates/icons/tabler-outline/location-broken.svg +21 -0
  9917. skills/ppt-master/templates/icons/tabler-outline/location-cancel.svg +21 -0
  9918. skills/ppt-master/templates/icons/tabler-outline/location-check.svg +20 -0
  9919. skills/ppt-master/templates/icons/tabler-outline/location-code.svg +21 -0
  9920. skills/ppt-master/templates/icons/tabler-outline/location-cog.svg +26 -0
  9921. skills/ppt-master/templates/icons/tabler-outline/location-discount.svg +22 -0
  9922. skills/ppt-master/templates/icons/tabler-outline/location-dollar.svg +21 -0
  9923. skills/ppt-master/templates/icons/tabler-outline/location-down.svg +21 -0
  9924. skills/ppt-master/templates/icons/tabler-outline/location-exclamation.svg +21 -0
  9925. skills/ppt-master/templates/icons/tabler-outline/location-heart.svg +20 -0
  9926. skills/ppt-master/templates/icons/tabler-outline/location-minus.svg +20 -0
  9927. skills/ppt-master/templates/icons/tabler-outline/location-off.svg +20 -0
  9928. skills/ppt-master/templates/icons/tabler-outline/location-pause.svg +21 -0
  9929. skills/ppt-master/templates/icons/tabler-outline/location-pin.svg +21 -0
  9930. skills/ppt-master/templates/icons/tabler-outline/location-plus.svg +21 -0
  9931. skills/ppt-master/templates/icons/tabler-outline/location-question.svg +21 -0
  9932. skills/ppt-master/templates/icons/tabler-outline/location-search.svg +21 -0
  9933. skills/ppt-master/templates/icons/tabler-outline/location-share.svg +21 -0
  9934. skills/ppt-master/templates/icons/tabler-outline/location-star.svg +20 -0
  9935. skills/ppt-master/templates/icons/tabler-outline/location-up.svg +21 -0
  9936. skills/ppt-master/templates/icons/tabler-outline/location-x.svg +21 -0
  9937. skills/ppt-master/templates/icons/tabler-outline/location.svg +19 -0
  9938. skills/ppt-master/templates/icons/tabler-outline/lock-access-off.svg +25 -0
  9939. skills/ppt-master/templates/icons/tabler-outline/lock-access.svg +24 -0
  9940. skills/ppt-master/templates/icons/tabler-outline/lock-bitcoin.svg +22 -0
  9941. skills/ppt-master/templates/icons/tabler-outline/lock-bolt.svg +22 -0
  9942. skills/ppt-master/templates/icons/tabler-outline/lock-cancel.svg +23 -0
  9943. skills/ppt-master/templates/icons/tabler-outline/lock-check.svg +22 -0
  9944. skills/ppt-master/templates/icons/tabler-outline/lock-code.svg +23 -0
  9945. skills/ppt-master/templates/icons/tabler-outline/lock-cog.svg +28 -0
  9946. skills/ppt-master/templates/icons/tabler-outline/lock-dollar.svg +23 -0
  9947. skills/ppt-master/templates/icons/tabler-outline/lock-down.svg +23 -0
  9948. skills/ppt-master/templates/icons/tabler-outline/lock-exclamation.svg +23 -0
  9949. skills/ppt-master/templates/icons/tabler-outline/lock-heart.svg +21 -0
  9950. skills/ppt-master/templates/icons/tabler-outline/lock-minus.svg +22 -0
  9951. skills/ppt-master/templates/icons/tabler-outline/lock-off.svg +22 -0
  9952. skills/ppt-master/templates/icons/tabler-outline/lock-open-2.svg +21 -0
  9953. skills/ppt-master/templates/icons/tabler-outline/lock-open-off.svg +22 -0
  9954. skills/ppt-master/templates/icons/tabler-outline/lock-open.svg +21 -0
  9955. skills/ppt-master/templates/icons/tabler-outline/lock-password.svg +23 -0
  9956. skills/ppt-master/templates/icons/tabler-outline/lock-pause.svg +23 -0
  9957. skills/ppt-master/templates/icons/tabler-outline/lock-pin.svg +23 -0
  9958. skills/ppt-master/templates/icons/tabler-outline/lock-plus.svg +23 -0
  9959. skills/ppt-master/templates/icons/tabler-outline/lock-question.svg +23 -0
  9960. skills/ppt-master/templates/icons/tabler-outline/lock-search.svg +22 -0
  9961. skills/ppt-master/templates/icons/tabler-outline/lock-share.svg +23 -0
  9962. skills/ppt-master/templates/icons/tabler-outline/lock-square-rounded.svg +21 -0
  9963. skills/ppt-master/templates/icons/tabler-outline/lock-square.svg +21 -0
  9964. skills/ppt-master/templates/icons/tabler-outline/lock-star.svg +21 -0
  9965. skills/ppt-master/templates/icons/tabler-outline/lock-up.svg +23 -0
  9966. skills/ppt-master/templates/icons/tabler-outline/lock-x.svg +23 -0
  9967. skills/ppt-master/templates/icons/tabler-outline/lock.svg +21 -0
  9968. skills/ppt-master/templates/icons/tabler-outline/logic-and.svg +22 -0
  9969. skills/ppt-master/templates/icons/tabler-outline/logic-buffer.svg +22 -0
  9970. skills/ppt-master/templates/icons/tabler-outline/logic-nand.svg +23 -0
  9971. skills/ppt-master/templates/icons/tabler-outline/logic-nor.svg +23 -0
  9972. skills/ppt-master/templates/icons/tabler-outline/logic-not.svg +23 -0
  9973. skills/ppt-master/templates/icons/tabler-outline/logic-or.svg +22 -0
  9974. skills/ppt-master/templates/icons/tabler-outline/logic-xnor.svg +24 -0
  9975. skills/ppt-master/templates/icons/tabler-outline/logic-xor.svg +23 -0
  9976. skills/ppt-master/templates/icons/tabler-outline/login-2.svg +21 -0
  9977. skills/ppt-master/templates/icons/tabler-outline/login.svg +21 -0
  9978. skills/ppt-master/templates/icons/tabler-outline/logout-2.svg +21 -0
  9979. skills/ppt-master/templates/icons/tabler-outline/logout.svg +21 -0
  9980. skills/ppt-master/templates/icons/tabler-outline/logs.svg +27 -0
  9981. skills/ppt-master/templates/icons/tabler-outline/lollipop-off.svg +25 -0
  9982. skills/ppt-master/templates/icons/tabler-outline/lollipop.svg +24 -0
  9983. skills/ppt-master/templates/icons/tabler-outline/luggage-off.svg +25 -0
  9984. skills/ppt-master/templates/icons/tabler-outline/luggage.svg +24 -0
  9985. skills/ppt-master/templates/icons/tabler-outline/lungs-off.svg +23 -0
  9986. skills/ppt-master/templates/icons/tabler-outline/lungs.svg +22 -0
  9987. skills/ppt-master/templates/icons/tabler-outline/macro-off.svg +24 -0
  9988. skills/ppt-master/templates/icons/tabler-outline/macro.svg +23 -0
  9989. skills/ppt-master/templates/icons/tabler-outline/magnet-off.svg +22 -0
  9990. skills/ppt-master/templates/icons/tabler-outline/magnet.svg +21 -0
  9991. skills/ppt-master/templates/icons/tabler-outline/magnetic.svg +23 -0
  9992. skills/ppt-master/templates/icons/tabler-outline/mail-ai.svg +23 -0
  9993. skills/ppt-master/templates/icons/tabler-outline/mail-bitcoin.svg +21 -0
  9994. skills/ppt-master/templates/icons/tabler-outline/mail-bolt.svg +21 -0
  9995. skills/ppt-master/templates/icons/tabler-outline/mail-cancel.svg +22 -0
  9996. skills/ppt-master/templates/icons/tabler-outline/mail-check.svg +21 -0
  9997. skills/ppt-master/templates/icons/tabler-outline/mail-code.svg +22 -0
  9998. skills/ppt-master/templates/icons/tabler-outline/mail-cog.svg +27 -0
  9999. skills/ppt-master/templates/icons/tabler-outline/mail-dollar.svg +22 -0
  10000. skills/ppt-master/templates/icons/tabler-outline/mail-down.svg +22 -0
  10001. skills/ppt-master/templates/icons/tabler-outline/mail-exclamation.svg +22 -0
  10002. skills/ppt-master/templates/icons/tabler-outline/mail-fast.svg +22 -0
  10003. skills/ppt-master/templates/icons/tabler-outline/mail-forward.svg +22 -0
  10004. skills/ppt-master/templates/icons/tabler-outline/mail-heart.svg +21 -0
  10005. skills/ppt-master/templates/icons/tabler-outline/mail-minus.svg +21 -0
  10006. skills/ppt-master/templates/icons/tabler-outline/mail-off.svg +21 -0
  10007. skills/ppt-master/templates/icons/tabler-outline/mail-opened.svg +22 -0
  10008. skills/ppt-master/templates/icons/tabler-outline/mail-pause.svg +22 -0
  10009. skills/ppt-master/templates/icons/tabler-outline/mail-pin.svg +22 -0
  10010. skills/ppt-master/templates/icons/tabler-outline/mail-plus.svg +22 -0
  10011. skills/ppt-master/templates/icons/tabler-outline/mail-question.svg +22 -0
  10012. skills/ppt-master/templates/icons/tabler-outline/mail-search.svg +22 -0
  10013. skills/ppt-master/templates/icons/tabler-outline/mail-share.svg +22 -0
  10014. skills/ppt-master/templates/icons/tabler-outline/mail-spark.svg +21 -0
  10015. skills/ppt-master/templates/icons/tabler-outline/mail-star.svg +21 -0
  10016. skills/ppt-master/templates/icons/tabler-outline/mail-up.svg +22 -0
  10017. skills/ppt-master/templates/icons/tabler-outline/mail-x.svg +22 -0
  10018. skills/ppt-master/templates/icons/tabler-outline/mail.svg +20 -0
  10019. skills/ppt-master/templates/icons/tabler-outline/mailbox-off.svg +22 -0
  10020. skills/ppt-master/templates/icons/tabler-outline/mailbox.svg +21 -0
  10021. skills/ppt-master/templates/icons/tabler-outline/man.svg +24 -0
  10022. skills/ppt-master/templates/icons/tabler-outline/manual-gearbox.svg +26 -0
  10023. skills/ppt-master/templates/icons/tabler-outline/map-2.svg +23 -0
  10024. skills/ppt-master/templates/icons/tabler-outline/map-bolt.svg +22 -0
  10025. skills/ppt-master/templates/icons/tabler-outline/map-cancel.svg +23 -0
  10026. skills/ppt-master/templates/icons/tabler-outline/map-check.svg +22 -0
  10027. skills/ppt-master/templates/icons/tabler-outline/map-code.svg +23 -0
  10028. skills/ppt-master/templates/icons/tabler-outline/map-cog.svg +28 -0
  10029. skills/ppt-master/templates/icons/tabler-outline/map-discount.svg +24 -0
  10030. skills/ppt-master/templates/icons/tabler-outline/map-dollar.svg +23 -0
  10031. skills/ppt-master/templates/icons/tabler-outline/map-down.svg +23 -0
  10032. skills/ppt-master/templates/icons/tabler-outline/map-east.svg +21 -0
  10033. skills/ppt-master/templates/icons/tabler-outline/map-exclamation.svg +23 -0
  10034. skills/ppt-master/templates/icons/tabler-outline/map-heart.svg +22 -0
  10035. skills/ppt-master/templates/icons/tabler-outline/map-lock.svg +22 -0
  10036. skills/ppt-master/templates/icons/tabler-outline/map-minus.svg +22 -0
  10037. skills/ppt-master/templates/icons/tabler-outline/map-north.svg +20 -0
  10038. skills/ppt-master/templates/icons/tabler-outline/map-off.svg +22 -0
  10039. skills/ppt-master/templates/icons/tabler-outline/map-pause.svg +23 -0
  10040. skills/ppt-master/templates/icons/tabler-outline/map-pin-2.svg +23 -0
  10041. skills/ppt-master/templates/icons/tabler-outline/map-pin-bolt.svg +21 -0
  10042. skills/ppt-master/templates/icons/tabler-outline/map-pin-cancel.svg +22 -0
  10043. skills/ppt-master/templates/icons/tabler-outline/map-pin-check.svg +21 -0
  10044. skills/ppt-master/templates/icons/tabler-outline/map-pin-code.svg +22 -0
  10045. skills/ppt-master/templates/icons/tabler-outline/map-pin-cog.svg +27 -0
  10046. skills/ppt-master/templates/icons/tabler-outline/map-pin-dollar.svg +22 -0
  10047. skills/ppt-master/templates/icons/tabler-outline/map-pin-down.svg +22 -0
  10048. skills/ppt-master/templates/icons/tabler-outline/map-pin-exclamation.svg +22 -0
  10049. skills/ppt-master/templates/icons/tabler-outline/map-pin-heart.svg +21 -0
  10050. skills/ppt-master/templates/icons/tabler-outline/map-pin-minus.svg +21 -0
  10051. skills/ppt-master/templates/icons/tabler-outline/map-pin-off.svg +21 -0
  10052. skills/ppt-master/templates/icons/tabler-outline/map-pin-pause.svg +22 -0
  10053. skills/ppt-master/templates/icons/tabler-outline/map-pin-pin.svg +22 -0
  10054. skills/ppt-master/templates/icons/tabler-outline/map-pin-plus.svg +22 -0
  10055. skills/ppt-master/templates/icons/tabler-outline/map-pin-question.svg +22 -0
  10056. skills/ppt-master/templates/icons/tabler-outline/map-pin-search.svg +22 -0
  10057. skills/ppt-master/templates/icons/tabler-outline/map-pin-share.svg +22 -0
  10058. skills/ppt-master/templates/icons/tabler-outline/map-pin-star.svg +21 -0
  10059. skills/ppt-master/templates/icons/tabler-outline/map-pin-up.svg +22 -0
  10060. skills/ppt-master/templates/icons/tabler-outline/map-pin-x.svg +22 -0
  10061. skills/ppt-master/templates/icons/tabler-outline/map-pin.svg +20 -0
  10062. skills/ppt-master/templates/icons/tabler-outline/map-pins.svg +22 -0
  10063. skills/ppt-master/templates/icons/tabler-outline/map-plus.svg +23 -0
  10064. skills/ppt-master/templates/icons/tabler-outline/map-question.svg +23 -0
  10065. skills/ppt-master/templates/icons/tabler-outline/map-route.svg +23 -0
  10066. skills/ppt-master/templates/icons/tabler-outline/map-search.svg +23 -0
  10067. skills/ppt-master/templates/icons/tabler-outline/map-share.svg +23 -0
  10068. skills/ppt-master/templates/icons/tabler-outline/map-shield.svg +21 -0
  10069. skills/ppt-master/templates/icons/tabler-outline/map-south.svg +20 -0
  10070. skills/ppt-master/templates/icons/tabler-outline/map-star.svg +22 -0
  10071. skills/ppt-master/templates/icons/tabler-outline/map-up.svg +23 -0
  10072. skills/ppt-master/templates/icons/tabler-outline/map-west.svg +20 -0
  10073. skills/ppt-master/templates/icons/tabler-outline/map-x.svg +23 -0
  10074. skills/ppt-master/templates/icons/tabler-outline/map.svg +21 -0
  10075. skills/ppt-master/templates/icons/tabler-outline/markdown-off.svg +23 -0
  10076. skills/ppt-master/templates/icons/tabler-outline/markdown.svg +21 -0
  10077. skills/ppt-master/templates/icons/tabler-outline/marquee-2.svg +19 -0
  10078. skills/ppt-master/templates/icons/tabler-outline/marquee-off.svg +31 -0
  10079. skills/ppt-master/templates/icons/tabler-outline/marquee.svg +19 -0
  10080. skills/ppt-master/templates/icons/tabler-outline/mars.svg +22 -0
  10081. skills/ppt-master/templates/icons/tabler-outline/mask-off.svg +21 -0
  10082. skills/ppt-master/templates/icons/tabler-outline/mask.svg +20 -0
  10083. skills/ppt-master/templates/icons/tabler-outline/masks-theater-off.svg +25 -0
  10084. skills/ppt-master/templates/icons/tabler-outline/masks-theater.svg +26 -0
  10085. skills/ppt-master/templates/icons/tabler-outline/massage.svg +23 -0
  10086. skills/ppt-master/templates/icons/tabler-outline/matchstick.svg +21 -0
  10087. skills/ppt-master/templates/icons/tabler-outline/math-1-divide-2.svg +21 -0
  10088. skills/ppt-master/templates/icons/tabler-outline/math-1-divide-3.svg +21 -0
  10089. skills/ppt-master/templates/icons/tabler-outline/math-avg.svg +20 -0
  10090. skills/ppt-master/templates/icons/tabler-outline/math-cos.svg +21 -0
  10091. skills/ppt-master/templates/icons/tabler-outline/math-ctg.svg +22 -0
  10092. skills/ppt-master/templates/icons/tabler-outline/math-equal-greater.svg +20 -0
  10093. skills/ppt-master/templates/icons/tabler-outline/math-equal-lower.svg +20 -0
  10094. skills/ppt-master/templates/icons/tabler-outline/math-function-off.svg +23 -0
  10095. skills/ppt-master/templates/icons/tabler-outline/math-function-y.svg +22 -0
  10096. skills/ppt-master/templates/icons/tabler-outline/math-function.svg +22 -0
  10097. skills/ppt-master/templates/icons/tabler-outline/math-greater.svg +19 -0
  10098. skills/ppt-master/templates/icons/tabler-outline/math-integral-x.svg +21 -0
  10099. skills/ppt-master/templates/icons/tabler-outline/math-integral.svg +19 -0
  10100. skills/ppt-master/templates/icons/tabler-outline/math-integrals.svg +20 -0
  10101. skills/ppt-master/templates/icons/tabler-outline/math-lower.svg +19 -0
  10102. skills/ppt-master/templates/icons/tabler-outline/math-max-min.svg +22 -0
  10103. skills/ppt-master/templates/icons/tabler-outline/math-max.svg +21 -0
  10104. skills/ppt-master/templates/icons/tabler-outline/math-min.svg +21 -0
  10105. skills/ppt-master/templates/icons/tabler-outline/math-not.svg +19 -0
  10106. skills/ppt-master/templates/icons/tabler-outline/math-off.svg +23 -0
  10107. skills/ppt-master/templates/icons/tabler-outline/math-pi-divide-2.svg +23 -0
  10108. skills/ppt-master/templates/icons/tabler-outline/math-pi.svg +21 -0
  10109. skills/ppt-master/templates/icons/tabler-outline/math-sec.svg +22 -0
  10110. skills/ppt-master/templates/icons/tabler-outline/math-sin.svg +21 -0
  10111. skills/ppt-master/templates/icons/tabler-outline/math-symbols.svg +27 -0
  10112. skills/ppt-master/templates/icons/tabler-outline/math-tg.svg +21 -0
  10113. skills/ppt-master/templates/icons/tabler-outline/math-x-divide-2.svg +22 -0
  10114. skills/ppt-master/templates/icons/tabler-outline/math-x-divide-y-2.svg +23 -0
  10115. skills/ppt-master/templates/icons/tabler-outline/math-x-divide-y.svg +23 -0
  10116. skills/ppt-master/templates/icons/tabler-outline/math-x-floor-divide-y.svg +24 -0
  10117. skills/ppt-master/templates/icons/tabler-outline/math-x-minus-x.svg +23 -0
  10118. skills/ppt-master/templates/icons/tabler-outline/math-x-minus-y.svg +23 -0
  10119. skills/ppt-master/templates/icons/tabler-outline/math-x-plus-x.svg +24 -0
  10120. skills/ppt-master/templates/icons/tabler-outline/math-x-plus-y.svg +24 -0
  10121. skills/ppt-master/templates/icons/tabler-outline/math-xy.svg +22 -0
  10122. skills/ppt-master/templates/icons/tabler-outline/math-y-minus-y.svg +23 -0
  10123. skills/ppt-master/templates/icons/tabler-outline/math-y-plus-y.svg +24 -0
  10124. skills/ppt-master/templates/icons/tabler-outline/math.svg +21 -0
  10125. skills/ppt-master/templates/icons/tabler-outline/matrix.svg +29 -0
  10126. skills/ppt-master/templates/icons/tabler-outline/maximize-off.svg +23 -0
  10127. skills/ppt-master/templates/icons/tabler-outline/maximize.svg +22 -0
  10128. skills/ppt-master/templates/icons/tabler-outline/meat-off.svg +25 -0
  10129. skills/ppt-master/templates/icons/tabler-outline/meat.svg +22 -0
  10130. skills/ppt-master/templates/icons/tabler-outline/medal-2.svg +22 -0
  10131. skills/ppt-master/templates/icons/tabler-outline/medal.svg +20 -0
  10132. skills/ppt-master/templates/icons/tabler-outline/medical-cross-circle.svg +22 -0
  10133. skills/ppt-master/templates/icons/tabler-outline/medical-cross-off.svg +20 -0
  10134. skills/ppt-master/templates/icons/tabler-outline/medical-cross.svg +19 -0
  10135. skills/ppt-master/templates/icons/tabler-outline/medicine-syrup.svg +22 -0
  10136. skills/ppt-master/templates/icons/tabler-outline/meeple.svg +19 -0
  10137. skills/ppt-master/templates/icons/tabler-outline/melon.svg +19 -0
  10138. skills/ppt-master/templates/icons/tabler-outline/menorah.svg +22 -0
  10139. skills/ppt-master/templates/icons/tabler-outline/menu-2.svg +21 -0
  10140. skills/ppt-master/templates/icons/tabler-outline/menu-3.svg +22 -0
  10141. skills/ppt-master/templates/icons/tabler-outline/menu-4.svg +22 -0
  10142. skills/ppt-master/templates/icons/tabler-outline/menu-deep.svg +21 -0
  10143. skills/ppt-master/templates/icons/tabler-outline/menu-order.svg +22 -0
  10144. skills/ppt-master/templates/icons/tabler-outline/menu.svg +20 -0
  10145. skills/ppt-master/templates/icons/tabler-outline/mesh.svg +23 -0
  10146. skills/ppt-master/templates/icons/tabler-outline/message-2-bolt.svg +22 -0
  10147. skills/ppt-master/templates/icons/tabler-outline/message-2-cancel.svg +23 -0
  10148. skills/ppt-master/templates/icons/tabler-outline/message-2-check.svg +22 -0
  10149. skills/ppt-master/templates/icons/tabler-outline/message-2-code.svg +23 -0
  10150. skills/ppt-master/templates/icons/tabler-outline/message-2-cog.svg +28 -0
  10151. skills/ppt-master/templates/icons/tabler-outline/message-2-dollar.svg +23 -0
  10152. skills/ppt-master/templates/icons/tabler-outline/message-2-down.svg +23 -0
  10153. skills/ppt-master/templates/icons/tabler-outline/message-2-exclamation.svg +23 -0
  10154. skills/ppt-master/templates/icons/tabler-outline/message-2-heart.svg +22 -0
  10155. skills/ppt-master/templates/icons/tabler-outline/message-2-minus.svg +22 -0
  10156. skills/ppt-master/templates/icons/tabler-outline/message-2-off.svg +22 -0
  10157. skills/ppt-master/templates/icons/tabler-outline/message-2-pause.svg +23 -0
  10158. skills/ppt-master/templates/icons/tabler-outline/message-2-pin.svg +23 -0
  10159. skills/ppt-master/templates/icons/tabler-outline/message-2-plus.svg +23 -0
  10160. skills/ppt-master/templates/icons/tabler-outline/message-2-question.svg +23 -0
  10161. skills/ppt-master/templates/icons/tabler-outline/message-2-search.svg +23 -0
  10162. skills/ppt-master/templates/icons/tabler-outline/message-2-share.svg +23 -0
  10163. skills/ppt-master/templates/icons/tabler-outline/message-2-star.svg +22 -0
  10164. skills/ppt-master/templates/icons/tabler-outline/message-2-up.svg +23 -0
  10165. skills/ppt-master/templates/icons/tabler-outline/message-2-x.svg +23 -0
  10166. skills/ppt-master/templates/icons/tabler-outline/message-2.svg +21 -0
  10167. skills/ppt-master/templates/icons/tabler-outline/message-bolt.svg +22 -0
  10168. skills/ppt-master/templates/icons/tabler-outline/message-cancel.svg +23 -0
  10169. skills/ppt-master/templates/icons/tabler-outline/message-chatbot.svg +22 -0
  10170. skills/ppt-master/templates/icons/tabler-outline/message-check.svg +22 -0
  10171. skills/ppt-master/templates/icons/tabler-outline/message-circle-bolt.svg +20 -0
  10172. skills/ppt-master/templates/icons/tabler-outline/message-circle-cancel.svg +21 -0
  10173. skills/ppt-master/templates/icons/tabler-outline/message-circle-check.svg +20 -0
  10174. skills/ppt-master/templates/icons/tabler-outline/message-circle-code.svg +21 -0
  10175. skills/ppt-master/templates/icons/tabler-outline/message-circle-cog.svg +26 -0
  10176. skills/ppt-master/templates/icons/tabler-outline/message-circle-dollar.svg +21 -0
  10177. skills/ppt-master/templates/icons/tabler-outline/message-circle-down.svg +21 -0
  10178. skills/ppt-master/templates/icons/tabler-outline/message-circle-exclamation.svg +21 -0
  10179. skills/ppt-master/templates/icons/tabler-outline/message-circle-heart.svg +20 -0
  10180. skills/ppt-master/templates/icons/tabler-outline/message-circle-minus.svg +20 -0
  10181. skills/ppt-master/templates/icons/tabler-outline/message-circle-off.svg +20 -0
  10182. skills/ppt-master/templates/icons/tabler-outline/message-circle-pause.svg +21 -0
  10183. skills/ppt-master/templates/icons/tabler-outline/message-circle-pin.svg +21 -0
  10184. skills/ppt-master/templates/icons/tabler-outline/message-circle-plus.svg +21 -0
  10185. skills/ppt-master/templates/icons/tabler-outline/message-circle-question.svg +21 -0
  10186. skills/ppt-master/templates/icons/tabler-outline/message-circle-search.svg +21 -0
  10187. skills/ppt-master/templates/icons/tabler-outline/message-circle-share.svg +21 -0
  10188. skills/ppt-master/templates/icons/tabler-outline/message-circle-star.svg +20 -0
  10189. skills/ppt-master/templates/icons/tabler-outline/message-circle-up.svg +21 -0
  10190. skills/ppt-master/templates/icons/tabler-outline/message-circle-user.svg +21 -0
  10191. skills/ppt-master/templates/icons/tabler-outline/message-circle-x.svg +21 -0
  10192. skills/ppt-master/templates/icons/tabler-outline/message-circle.svg +19 -0
  10193. skills/ppt-master/templates/icons/tabler-outline/message-code.svg +23 -0
  10194. skills/ppt-master/templates/icons/tabler-outline/message-cog.svg +28 -0
  10195. skills/ppt-master/templates/icons/tabler-outline/message-dollar.svg +23 -0
  10196. skills/ppt-master/templates/icons/tabler-outline/message-dots.svg +22 -0
  10197. skills/ppt-master/templates/icons/tabler-outline/message-down.svg +23 -0
  10198. skills/ppt-master/templates/icons/tabler-outline/message-exclamation.svg +23 -0
  10199. skills/ppt-master/templates/icons/tabler-outline/message-forward.svg +21 -0
  10200. skills/ppt-master/templates/icons/tabler-outline/message-heart.svg +22 -0
  10201. skills/ppt-master/templates/icons/tabler-outline/message-language.svg +21 -0
  10202. skills/ppt-master/templates/icons/tabler-outline/message-minus.svg +22 -0
  10203. skills/ppt-master/templates/icons/tabler-outline/message-off.svg +22 -0
  10204. skills/ppt-master/templates/icons/tabler-outline/message-pause.svg +23 -0
  10205. skills/ppt-master/templates/icons/tabler-outline/message-pin.svg +23 -0
  10206. skills/ppt-master/templates/icons/tabler-outline/message-plus.svg +23 -0
  10207. skills/ppt-master/templates/icons/tabler-outline/message-question.svg +23 -0
  10208. skills/ppt-master/templates/icons/tabler-outline/message-reply.svg +21 -0
  10209. skills/ppt-master/templates/icons/tabler-outline/message-report.svg +21 -0
  10210. skills/ppt-master/templates/icons/tabler-outline/message-search.svg +23 -0
  10211. skills/ppt-master/templates/icons/tabler-outline/message-share.svg +23 -0
  10212. skills/ppt-master/templates/icons/tabler-outline/message-star.svg +22 -0
  10213. skills/ppt-master/templates/icons/tabler-outline/message-up.svg +23 -0
  10214. skills/ppt-master/templates/icons/tabler-outline/message-user.svg +21 -0
  10215. skills/ppt-master/templates/icons/tabler-outline/message-x.svg +23 -0
  10216. skills/ppt-master/templates/icons/tabler-outline/message.svg +21 -0
  10217. skills/ppt-master/templates/icons/tabler-outline/messages-off.svg +21 -0
  10218. skills/ppt-master/templates/icons/tabler-outline/messages.svg +20 -0
  10219. skills/ppt-master/templates/icons/tabler-outline/meteor-off.svg +21 -0
  10220. skills/ppt-master/templates/icons/tabler-outline/meteor.svg +20 -0
  10221. skills/ppt-master/templates/icons/tabler-outline/meter-cube.svg +22 -0
  10222. skills/ppt-master/templates/icons/tabler-outline/meter-square.svg +22 -0
  10223. skills/ppt-master/templates/icons/tabler-outline/metronome.svg +20 -0
  10224. skills/ppt-master/templates/icons/tabler-outline/michelin-bib-gourmand.svg +23 -0
  10225. skills/ppt-master/templates/icons/tabler-outline/michelin-star-green.svg +20 -0
  10226. skills/ppt-master/templates/icons/tabler-outline/michelin-star.svg +19 -0
  10227. skills/ppt-master/templates/icons/tabler-outline/mickey.svg +21 -0
  10228. skills/ppt-master/templates/icons/tabler-outline/microfrontends.svg +25 -0
  10229. skills/ppt-master/templates/icons/tabler-outline/microphone-2-off.svg +21 -0
  10230. skills/ppt-master/templates/icons/tabler-outline/microphone-2.svg +20 -0
  10231. skills/ppt-master/templates/icons/tabler-outline/microphone-off.svg +23 -0
  10232. skills/ppt-master/templates/icons/tabler-outline/microphone.svg +22 -0
  10233. skills/ppt-master/templates/icons/tabler-outline/microscope-off.svg +26 -0
  10234. skills/ppt-master/templates/icons/tabler-outline/microscope.svg +25 -0
  10235. skills/ppt-master/templates/icons/tabler-outline/microwave-off.svg +25 -0
  10236. skills/ppt-master/templates/icons/tabler-outline/microwave.svg +25 -0
  10237. skills/ppt-master/templates/icons/tabler-outline/middleware.svg +27 -0
  10238. skills/ppt-master/templates/icons/tabler-outline/military-award.svg +21 -0
  10239. skills/ppt-master/templates/icons/tabler-outline/military-rank.svg +22 -0
  10240. skills/ppt-master/templates/icons/tabler-outline/milk-off.svg +22 -0
  10241. skills/ppt-master/templates/icons/tabler-outline/milk.svg +22 -0
  10242. skills/ppt-master/templates/icons/tabler-outline/milkshake.svg +22 -0
  10243. skills/ppt-master/templates/icons/tabler-outline/minimize.svg +22 -0
  10244. skills/ppt-master/templates/icons/tabler-outline/minus-vertical.svg +19 -0
  10245. skills/ppt-master/templates/icons/tabler-outline/minus.svg +19 -0
  10246. skills/ppt-master/templates/icons/tabler-outline/mist-off.svg +25 -0
  10247. skills/ppt-master/templates/icons/tabler-outline/mist.svg +22 -0
  10248. skills/ppt-master/templates/icons/tabler-outline/mobiledata-off.svg +23 -0
  10249. skills/ppt-master/templates/icons/tabler-outline/mobiledata.svg +22 -0
  10250. skills/ppt-master/templates/icons/tabler-outline/moneybag-edit.svg +21 -0
  10251. skills/ppt-master/templates/icons/tabler-outline/moneybag-heart.svg +21 -0
  10252. skills/ppt-master/templates/icons/tabler-outline/moneybag-minus.svg +21 -0
  10253. skills/ppt-master/templates/icons/tabler-outline/moneybag-move-back.svg +22 -0
  10254. skills/ppt-master/templates/icons/tabler-outline/moneybag-move.svg +22 -0
  10255. skills/ppt-master/templates/icons/tabler-outline/moneybag-plus.svg +22 -0
  10256. skills/ppt-master/templates/icons/tabler-outline/moneybag.svg +20 -0
  10257. skills/ppt-master/templates/icons/tabler-outline/monkeybar.svg +23 -0
  10258. skills/ppt-master/templates/icons/tabler-outline/mood-angry.svg +22 -0
  10259. skills/ppt-master/templates/icons/tabler-outline/mood-annoyed-2.svg +22 -0
  10260. skills/ppt-master/templates/icons/tabler-outline/mood-annoyed.svg +22 -0
  10261. skills/ppt-master/templates/icons/tabler-outline/mood-bitcoin.svg +23 -0
  10262. skills/ppt-master/templates/icons/tabler-outline/mood-boy.svg +24 -0
  10263. skills/ppt-master/templates/icons/tabler-outline/mood-check.svg +23 -0
  10264. skills/ppt-master/templates/icons/tabler-outline/mood-cog.svg +29 -0
  10265. skills/ppt-master/templates/icons/tabler-outline/mood-confuzed.svg +22 -0
  10266. skills/ppt-master/templates/icons/tabler-outline/mood-crazy-happy.svg +24 -0
  10267. skills/ppt-master/templates/icons/tabler-outline/mood-cry.svg +23 -0
  10268. skills/ppt-master/templates/icons/tabler-outline/mood-dollar.svg +24 -0
  10269. skills/ppt-master/templates/icons/tabler-outline/mood-edit.svg +23 -0
  10270. skills/ppt-master/templates/icons/tabler-outline/mood-empty.svg +22 -0
  10271. skills/ppt-master/templates/icons/tabler-outline/mood-happy.svg +22 -0
  10272. skills/ppt-master/templates/icons/tabler-outline/mood-heart.svg +23 -0
  10273. skills/ppt-master/templates/icons/tabler-outline/mood-kid.svg +23 -0
  10274. skills/ppt-master/templates/icons/tabler-outline/mood-look-down.svg +22 -0
  10275. skills/ppt-master/templates/icons/tabler-outline/mood-look-left.svg +21 -0
  10276. skills/ppt-master/templates/icons/tabler-outline/mood-look-right.svg +21 -0
  10277. skills/ppt-master/templates/icons/tabler-outline/mood-look-up.svg +22 -0
  10278. skills/ppt-master/templates/icons/tabler-outline/mood-minus.svg +23 -0
  10279. skills/ppt-master/templates/icons/tabler-outline/mood-nerd.svg +25 -0
  10280. skills/ppt-master/templates/icons/tabler-outline/mood-nervous.svg +22 -0
  10281. skills/ppt-master/templates/icons/tabler-outline/mood-neutral.svg +21 -0
  10282. skills/ppt-master/templates/icons/tabler-outline/mood-off.svg +23 -0
  10283. skills/ppt-master/templates/icons/tabler-outline/mood-pin.svg +24 -0
  10284. skills/ppt-master/templates/icons/tabler-outline/mood-plus.svg +24 -0
  10285. skills/ppt-master/templates/icons/tabler-outline/mood-puzzled.svg +24 -0
  10286. skills/ppt-master/templates/icons/tabler-outline/mood-sad-2.svg +22 -0
  10287. skills/ppt-master/templates/icons/tabler-outline/mood-sad-dizzy.svg +24 -0
  10288. skills/ppt-master/templates/icons/tabler-outline/mood-sad-squint.svg +22 -0
  10289. skills/ppt-master/templates/icons/tabler-outline/mood-sad.svg +22 -0
  10290. skills/ppt-master/templates/icons/tabler-outline/mood-search.svg +24 -0
  10291. skills/ppt-master/templates/icons/tabler-outline/mood-share.svg +24 -0
  10292. skills/ppt-master/templates/icons/tabler-outline/mood-sick.svg +22 -0
  10293. skills/ppt-master/templates/icons/tabler-outline/mood-silence.svg +25 -0
  10294. skills/ppt-master/templates/icons/tabler-outline/mood-sing.svg +22 -0
  10295. skills/ppt-master/templates/icons/tabler-outline/mood-smile-beam.svg +22 -0
  10296. skills/ppt-master/templates/icons/tabler-outline/mood-smile-dizzy.svg +24 -0
  10297. skills/ppt-master/templates/icons/tabler-outline/mood-smile.svg +22 -0
  10298. skills/ppt-master/templates/icons/tabler-outline/mood-spark.svg +23 -0
  10299. skills/ppt-master/templates/icons/tabler-outline/mood-surprised.svg +22 -0
  10300. skills/ppt-master/templates/icons/tabler-outline/mood-tongue-wink-2.svg +23 -0
  10301. skills/ppt-master/templates/icons/tabler-outline/mood-tongue-wink.svg +24 -0
  10302. skills/ppt-master/templates/icons/tabler-outline/mood-tongue.svg +22 -0
  10303. skills/ppt-master/templates/icons/tabler-outline/mood-unamused.svg +22 -0
  10304. skills/ppt-master/templates/icons/tabler-outline/mood-up.svg +24 -0
  10305. skills/ppt-master/templates/icons/tabler-outline/mood-wink-2.svg +22 -0
  10306. skills/ppt-master/templates/icons/tabler-outline/mood-wink.svg +22 -0
  10307. skills/ppt-master/templates/icons/tabler-outline/mood-wrrr.svg +22 -0
  10308. skills/ppt-master/templates/icons/tabler-outline/mood-x.svg +24 -0
  10309. skills/ppt-master/templates/icons/tabler-outline/mood-xd.svg +22 -0
  10310. skills/ppt-master/templates/icons/tabler-outline/moon-2.svg +20 -0
  10311. skills/ppt-master/templates/icons/tabler-outline/moon-off.svg +20 -0
  10312. skills/ppt-master/templates/icons/tabler-outline/moon-stars.svg +21 -0
  10313. skills/ppt-master/templates/icons/tabler-outline/moon.svg +19 -0
  10314. skills/ppt-master/templates/icons/tabler-outline/moped.svg +21 -0
  10315. skills/ppt-master/templates/icons/tabler-outline/motorbike.svg +22 -0
  10316. skills/ppt-master/templates/icons/tabler-outline/mountain-off.svg +21 -0
  10317. skills/ppt-master/templates/icons/tabler-outline/mountain.svg +20 -0
  10318. skills/ppt-master/templates/icons/tabler-outline/mouse-2.svg +21 -0
  10319. skills/ppt-master/templates/icons/tabler-outline/mouse-off.svg +21 -0
  10320. skills/ppt-master/templates/icons/tabler-outline/mouse.svg +20 -0
  10321. skills/ppt-master/templates/icons/tabler-outline/moustache.svg +20 -0
  10322. skills/ppt-master/templates/icons/tabler-outline/movie-off.svg +26 -0
  10323. skills/ppt-master/templates/icons/tabler-outline/movie.svg +26 -0
  10324. skills/ppt-master/templates/icons/tabler-outline/mug-off.svg +21 -0
  10325. skills/ppt-master/templates/icons/tabler-outline/mug.svg +20 -0
  10326. skills/ppt-master/templates/icons/tabler-outline/multiplier-0-5x.svg +22 -0
  10327. skills/ppt-master/templates/icons/tabler-outline/multiplier-1-5x.svg +23 -0
  10328. skills/ppt-master/templates/icons/tabler-outline/multiplier-1x.svg +21 -0
  10329. skills/ppt-master/templates/icons/tabler-outline/multiplier-2x.svg +21 -0
  10330. skills/ppt-master/templates/icons/tabler-outline/mushroom-off.svg +21 -0
  10331. skills/ppt-master/templates/icons/tabler-outline/mushroom.svg +20 -0
  10332. skills/ppt-master/templates/icons/tabler-outline/music-bolt.svg +22 -0
  10333. skills/ppt-master/templates/icons/tabler-outline/music-cancel.svg +23 -0
  10334. skills/ppt-master/templates/icons/tabler-outline/music-check.svg +22 -0
  10335. skills/ppt-master/templates/icons/tabler-outline/music-code.svg +23 -0
  10336. skills/ppt-master/templates/icons/tabler-outline/music-cog.svg +28 -0
  10337. skills/ppt-master/templates/icons/tabler-outline/music-discount.svg +24 -0
  10338. skills/ppt-master/templates/icons/tabler-outline/music-dollar.svg +23 -0
  10339. skills/ppt-master/templates/icons/tabler-outline/music-down.svg +23 -0
  10340. skills/ppt-master/templates/icons/tabler-outline/music-exclamation.svg +23 -0
  10341. skills/ppt-master/templates/icons/tabler-outline/music-heart.svg +22 -0
  10342. skills/ppt-master/templates/icons/tabler-outline/music-minus.svg +22 -0
  10343. skills/ppt-master/templates/icons/tabler-outline/music-off.svg +23 -0
  10344. skills/ppt-master/templates/icons/tabler-outline/music-pause.svg +23 -0
  10345. skills/ppt-master/templates/icons/tabler-outline/music-pin.svg +23 -0
  10346. skills/ppt-master/templates/icons/tabler-outline/music-plus.svg +23 -0
  10347. skills/ppt-master/templates/icons/tabler-outline/music-question.svg +23 -0
  10348. skills/ppt-master/templates/icons/tabler-outline/music-search.svg +23 -0
  10349. skills/ppt-master/templates/icons/tabler-outline/music-share.svg +23 -0
  10350. skills/ppt-master/templates/icons/tabler-outline/music-star.svg +22 -0
  10351. skills/ppt-master/templates/icons/tabler-outline/music-up.svg +23 -0
  10352. skills/ppt-master/templates/icons/tabler-outline/music-x.svg +23 -0
  10353. skills/ppt-master/templates/icons/tabler-outline/music.svg +22 -0
  10354. skills/ppt-master/templates/icons/tabler-outline/navigation-bolt.svg +20 -0
  10355. skills/ppt-master/templates/icons/tabler-outline/navigation-cancel.svg +21 -0
  10356. skills/ppt-master/templates/icons/tabler-outline/navigation-check.svg +20 -0
  10357. skills/ppt-master/templates/icons/tabler-outline/navigation-code.svg +21 -0
  10358. skills/ppt-master/templates/icons/tabler-outline/navigation-cog.svg +26 -0
  10359. skills/ppt-master/templates/icons/tabler-outline/navigation-discount.svg +22 -0
  10360. skills/ppt-master/templates/icons/tabler-outline/navigation-dollar.svg +21 -0
  10361. skills/ppt-master/templates/icons/tabler-outline/navigation-down.svg +21 -0
  10362. skills/ppt-master/templates/icons/tabler-outline/navigation-east.svg +21 -0
  10363. skills/ppt-master/templates/icons/tabler-outline/navigation-exclamation.svg +21 -0
  10364. skills/ppt-master/templates/icons/tabler-outline/navigation-heart.svg +20 -0
  10365. skills/ppt-master/templates/icons/tabler-outline/navigation-minus.svg +20 -0
  10366. skills/ppt-master/templates/icons/tabler-outline/navigation-north.svg +20 -0
  10367. skills/ppt-master/templates/icons/tabler-outline/navigation-off.svg +20 -0
  10368. skills/ppt-master/templates/icons/tabler-outline/navigation-pause.svg +21 -0
  10369. skills/ppt-master/templates/icons/tabler-outline/navigation-pin.svg +21 -0
  10370. skills/ppt-master/templates/icons/tabler-outline/navigation-plus.svg +21 -0
  10371. skills/ppt-master/templates/icons/tabler-outline/navigation-question.svg +21 -0
  10372. skills/ppt-master/templates/icons/tabler-outline/navigation-search.svg +21 -0
  10373. skills/ppt-master/templates/icons/tabler-outline/navigation-share.svg +21 -0
  10374. skills/ppt-master/templates/icons/tabler-outline/navigation-south.svg +20 -0
  10375. skills/ppt-master/templates/icons/tabler-outline/navigation-star.svg +20 -0
  10376. skills/ppt-master/templates/icons/tabler-outline/navigation-top.svg +20 -0
  10377. skills/ppt-master/templates/icons/tabler-outline/navigation-up.svg +21 -0
  10378. skills/ppt-master/templates/icons/tabler-outline/navigation-west.svg +20 -0
  10379. skills/ppt-master/templates/icons/tabler-outline/navigation-x.svg +21 -0
  10380. skills/ppt-master/templates/icons/tabler-outline/navigation.svg +19 -0
  10381. skills/ppt-master/templates/icons/tabler-outline/needle-thread.svg +23 -0
  10382. skills/ppt-master/templates/icons/tabler-outline/needle.svg +20 -0
  10383. skills/ppt-master/templates/icons/tabler-outline/network-off.svg +27 -0
  10384. skills/ppt-master/templates/icons/tabler-outline/network.svg +26 -0
  10385. skills/ppt-master/templates/icons/tabler-outline/new-section.svg +21 -0
  10386. skills/ppt-master/templates/icons/tabler-outline/news-off.svg +22 -0
  10387. skills/ppt-master/templates/icons/tabler-outline/news.svg +22 -0
  10388. skills/ppt-master/templates/icons/tabler-outline/nfc-off.svg +22 -0
  10389. skills/ppt-master/templates/icons/tabler-outline/nfc.svg +21 -0
  10390. skills/ppt-master/templates/icons/tabler-outline/no-copyright.svg +22 -0
  10391. skills/ppt-master/templates/icons/tabler-outline/no-creative-commons.svg +23 -0
  10392. skills/ppt-master/templates/icons/tabler-outline/no-derivatives.svg +21 -0
  10393. skills/ppt-master/templates/icons/tabler-outline/north-star.svg +22 -0
  10394. skills/ppt-master/templates/icons/tabler-outline/note-off.svg +21 -0
  10395. skills/ppt-master/templates/icons/tabler-outline/note.svg +20 -0
  10396. skills/ppt-master/templates/icons/tabler-outline/notebook-off.svg +21 -0
  10397. skills/ppt-master/templates/icons/tabler-outline/notebook.svg +21 -0
  10398. skills/ppt-master/templates/icons/tabler-outline/notes-off.svg +23 -0
  10399. skills/ppt-master/templates/icons/tabler-outline/notes.svg +22 -0
  10400. skills/ppt-master/templates/icons/tabler-outline/notification-off.svg +21 -0
  10401. skills/ppt-master/templates/icons/tabler-outline/notification.svg +20 -0
  10402. skills/ppt-master/templates/icons/tabler-outline/number-0-small.svg +19 -0
  10403. skills/ppt-master/templates/icons/tabler-outline/number-0.svg +20 -0
  10404. skills/ppt-master/templates/icons/tabler-outline/number-1-small.svg +19 -0
  10405. skills/ppt-master/templates/icons/tabler-outline/number-1.svg +19 -0
  10406. skills/ppt-master/templates/icons/tabler-outline/number-10-small.svg +20 -0
  10407. skills/ppt-master/templates/icons/tabler-outline/number-10.svg +20 -0
  10408. skills/ppt-master/templates/icons/tabler-outline/number-100-small.svg +21 -0
  10409. skills/ppt-master/templates/icons/tabler-outline/number-11-small.svg +20 -0
  10410. skills/ppt-master/templates/icons/tabler-outline/number-11.svg +20 -0
  10411. skills/ppt-master/templates/icons/tabler-outline/number-12-small.svg +20 -0
  10412. skills/ppt-master/templates/icons/tabler-outline/number-123.svg +21 -0
  10413. skills/ppt-master/templates/icons/tabler-outline/number-13-small.svg +20 -0
  10414. skills/ppt-master/templates/icons/tabler-outline/number-14-small.svg +21 -0
  10415. skills/ppt-master/templates/icons/tabler-outline/number-15-small.svg +20 -0
  10416. skills/ppt-master/templates/icons/tabler-outline/number-16-small.svg +20 -0
  10417. skills/ppt-master/templates/icons/tabler-outline/number-17-small.svg +20 -0
  10418. skills/ppt-master/templates/icons/tabler-outline/number-18-small.svg +20 -0
  10419. skills/ppt-master/templates/icons/tabler-outline/number-19-small.svg +20 -0
  10420. skills/ppt-master/templates/icons/tabler-outline/number-2-small.svg +19 -0
  10421. skills/ppt-master/templates/icons/tabler-outline/number-2.svg +19 -0
  10422. skills/ppt-master/templates/icons/tabler-outline/number-20-small.svg +20 -0
  10423. skills/ppt-master/templates/icons/tabler-outline/number-21-small.svg +20 -0
  10424. skills/ppt-master/templates/icons/tabler-outline/number-22-small.svg +20 -0
  10425. skills/ppt-master/templates/icons/tabler-outline/number-23-small.svg +20 -0
  10426. skills/ppt-master/templates/icons/tabler-outline/number-24-small.svg +21 -0
  10427. skills/ppt-master/templates/icons/tabler-outline/number-25-small.svg +20 -0
  10428. skills/ppt-master/templates/icons/tabler-outline/number-26-small.svg +20 -0
  10429. skills/ppt-master/templates/icons/tabler-outline/number-27-small.svg +20 -0
  10430. skills/ppt-master/templates/icons/tabler-outline/number-28-small.svg +20 -0
  10431. skills/ppt-master/templates/icons/tabler-outline/number-29-small.svg +20 -0
  10432. skills/ppt-master/templates/icons/tabler-outline/number-3-small.svg +19 -0
  10433. skills/ppt-master/templates/icons/tabler-outline/number-3.svg +20 -0
  10434. skills/ppt-master/templates/icons/tabler-outline/number-30-small.svg +20 -0
  10435. skills/ppt-master/templates/icons/tabler-outline/number-31-small.svg +20 -0
  10436. skills/ppt-master/templates/icons/tabler-outline/number-32-small.svg +20 -0
  10437. skills/ppt-master/templates/icons/tabler-outline/number-33-small.svg +20 -0
  10438. skills/ppt-master/templates/icons/tabler-outline/number-34-small.svg +21 -0
  10439. skills/ppt-master/templates/icons/tabler-outline/number-35-small.svg +20 -0
  10440. skills/ppt-master/templates/icons/tabler-outline/number-36-small.svg +20 -0
  10441. skills/ppt-master/templates/icons/tabler-outline/number-37-small.svg +20 -0
  10442. skills/ppt-master/templates/icons/tabler-outline/number-38-small.svg +20 -0
  10443. skills/ppt-master/templates/icons/tabler-outline/number-39-small.svg +20 -0
  10444. skills/ppt-master/templates/icons/tabler-outline/number-4-small.svg +20 -0
  10445. skills/ppt-master/templates/icons/tabler-outline/number-4.svg +19 -0
  10446. skills/ppt-master/templates/icons/tabler-outline/number-40-small.svg +21 -0
  10447. skills/ppt-master/templates/icons/tabler-outline/number-41-small.svg +21 -0
  10448. skills/ppt-master/templates/icons/tabler-outline/number-42-small.svg +21 -0
  10449. skills/ppt-master/templates/icons/tabler-outline/number-43-small.svg +21 -0
  10450. skills/ppt-master/templates/icons/tabler-outline/number-44-small.svg +22 -0
  10451. skills/ppt-master/templates/icons/tabler-outline/number-45-small.svg +21 -0
  10452. skills/ppt-master/templates/icons/tabler-outline/number-46-small.svg +21 -0
  10453. skills/ppt-master/templates/icons/tabler-outline/number-47-small.svg +21 -0
  10454. skills/ppt-master/templates/icons/tabler-outline/number-48-small.svg +21 -0
  10455. skills/ppt-master/templates/icons/tabler-outline/number-49-small.svg +21 -0
  10456. skills/ppt-master/templates/icons/tabler-outline/number-5-small.svg +19 -0
  10457. skills/ppt-master/templates/icons/tabler-outline/number-5.svg +19 -0
  10458. skills/ppt-master/templates/icons/tabler-outline/number-50-small.svg +20 -0
  10459. skills/ppt-master/templates/icons/tabler-outline/number-51-small.svg +20 -0
  10460. skills/ppt-master/templates/icons/tabler-outline/number-52-small.svg +20 -0
  10461. skills/ppt-master/templates/icons/tabler-outline/number-53-small.svg +20 -0
  10462. skills/ppt-master/templates/icons/tabler-outline/number-54-small.svg +21 -0
  10463. skills/ppt-master/templates/icons/tabler-outline/number-55-small.svg +20 -0
  10464. skills/ppt-master/templates/icons/tabler-outline/number-56-small.svg +20 -0
  10465. skills/ppt-master/templates/icons/tabler-outline/number-57-small.svg +20 -0
  10466. skills/ppt-master/templates/icons/tabler-outline/number-58-small.svg +20 -0
  10467. skills/ppt-master/templates/icons/tabler-outline/number-59-small.svg +20 -0
  10468. skills/ppt-master/templates/icons/tabler-outline/number-6-small.svg +19 -0
  10469. skills/ppt-master/templates/icons/tabler-outline/number-6.svg +20 -0
  10470. skills/ppt-master/templates/icons/tabler-outline/number-60-small.svg +20 -0
  10471. skills/ppt-master/templates/icons/tabler-outline/number-61-small.svg +20 -0
  10472. skills/ppt-master/templates/icons/tabler-outline/number-62-small.svg +20 -0
  10473. skills/ppt-master/templates/icons/tabler-outline/number-63-small.svg +20 -0
  10474. skills/ppt-master/templates/icons/tabler-outline/number-64-small.svg +21 -0
  10475. skills/ppt-master/templates/icons/tabler-outline/number-65-small.svg +20 -0
  10476. skills/ppt-master/templates/icons/tabler-outline/number-66-small.svg +20 -0
  10477. skills/ppt-master/templates/icons/tabler-outline/number-67-small.svg +20 -0
  10478. skills/ppt-master/templates/icons/tabler-outline/number-68-small.svg +20 -0
  10479. skills/ppt-master/templates/icons/tabler-outline/number-69-small.svg +20 -0
  10480. skills/ppt-master/templates/icons/tabler-outline/number-7-small.svg +19 -0
  10481. skills/ppt-master/templates/icons/tabler-outline/number-7.svg +19 -0
  10482. skills/ppt-master/templates/icons/tabler-outline/number-70-small.svg +20 -0
  10483. skills/ppt-master/templates/icons/tabler-outline/number-71-small.svg +20 -0
  10484. skills/ppt-master/templates/icons/tabler-outline/number-72-small.svg +20 -0
  10485. skills/ppt-master/templates/icons/tabler-outline/number-73-small.svg +20 -0
  10486. skills/ppt-master/templates/icons/tabler-outline/number-74-small.svg +21 -0
  10487. skills/ppt-master/templates/icons/tabler-outline/number-75-small.svg +20 -0
  10488. skills/ppt-master/templates/icons/tabler-outline/number-76-small.svg +20 -0
  10489. skills/ppt-master/templates/icons/tabler-outline/number-77-small.svg +20 -0
  10490. skills/ppt-master/templates/icons/tabler-outline/number-78-small.svg +20 -0
  10491. skills/ppt-master/templates/icons/tabler-outline/number-79-small.svg +20 -0
  10492. skills/ppt-master/templates/icons/tabler-outline/number-8-small.svg +19 -0
  10493. skills/ppt-master/templates/icons/tabler-outline/number-8.svg +20 -0
  10494. skills/ppt-master/templates/icons/tabler-outline/number-80-small.svg +20 -0
  10495. skills/ppt-master/templates/icons/tabler-outline/number-81-small.svg +20 -0
  10496. skills/ppt-master/templates/icons/tabler-outline/number-82-small.svg +20 -0
  10497. skills/ppt-master/templates/icons/tabler-outline/number-83-small.svg +20 -0
  10498. skills/ppt-master/templates/icons/tabler-outline/number-84-small.svg +21 -0
  10499. skills/ppt-master/templates/icons/tabler-outline/number-85-small.svg +20 -0
  10500. skills/ppt-master/templates/icons/tabler-outline/number-86-small.svg +20 -0
  10501. skills/ppt-master/templates/icons/tabler-outline/number-87-small.svg +20 -0
  10502. skills/ppt-master/templates/icons/tabler-outline/number-88-small.svg +20 -0
  10503. skills/ppt-master/templates/icons/tabler-outline/number-89-small.svg +20 -0
  10504. skills/ppt-master/templates/icons/tabler-outline/number-9-small.svg +19 -0
  10505. skills/ppt-master/templates/icons/tabler-outline/number-9.svg +20 -0
  10506. skills/ppt-master/templates/icons/tabler-outline/number-90-small.svg +20 -0
  10507. skills/ppt-master/templates/icons/tabler-outline/number-91-small.svg +20 -0
  10508. skills/ppt-master/templates/icons/tabler-outline/number-92-small.svg +20 -0
  10509. skills/ppt-master/templates/icons/tabler-outline/number-93-small.svg +20 -0
  10510. skills/ppt-master/templates/icons/tabler-outline/number-94-small.svg +21 -0
  10511. skills/ppt-master/templates/icons/tabler-outline/number-95-small.svg +20 -0
  10512. skills/ppt-master/templates/icons/tabler-outline/number-96-small.svg +20 -0
  10513. skills/ppt-master/templates/icons/tabler-outline/number-97-small.svg +20 -0
  10514. skills/ppt-master/templates/icons/tabler-outline/number-98-small.svg +20 -0
  10515. skills/ppt-master/templates/icons/tabler-outline/number-99-small.svg +20 -0
  10516. skills/ppt-master/templates/icons/tabler-outline/number.svg +21 -0
  10517. skills/ppt-master/templates/icons/tabler-outline/numbers.svg +22 -0
  10518. skills/ppt-master/templates/icons/tabler-outline/nurse.svg +21 -0
  10519. skills/ppt-master/templates/icons/tabler-outline/nut.svg +20 -0
  10520. skills/ppt-master/templates/icons/tabler-outline/object-scan.svg +23 -0
  10521. skills/ppt-master/templates/icons/tabler-outline/octagon-minus-2.svg +20 -0
  10522. skills/ppt-master/templates/icons/tabler-outline/octagon-minus.svg +20 -0
  10523. skills/ppt-master/templates/icons/tabler-outline/octagon-off.svg +20 -0
  10524. skills/ppt-master/templates/icons/tabler-outline/octagon-plus-2.svg +21 -0
  10525. skills/ppt-master/templates/icons/tabler-outline/octagon-plus.svg +21 -0
  10526. skills/ppt-master/templates/icons/tabler-outline/octagon.svg +19 -0
  10527. skills/ppt-master/templates/icons/tabler-outline/octahedron-off.svg +22 -0
  10528. skills/ppt-master/templates/icons/tabler-outline/octahedron-plus.svg +23 -0
  10529. skills/ppt-master/templates/icons/tabler-outline/octahedron.svg +21 -0
  10530. skills/ppt-master/templates/icons/tabler-outline/old.svg +23 -0
  10531. skills/ppt-master/templates/icons/tabler-outline/olympic-torch.svg +21 -0
  10532. skills/ppt-master/templates/icons/tabler-outline/olympics-off.svg +24 -0
  10533. skills/ppt-master/templates/icons/tabler-outline/olympics.svg +23 -0
  10534. skills/ppt-master/templates/icons/tabler-outline/om.svg +23 -0
  10535. skills/ppt-master/templates/icons/tabler-outline/omega.svg +19 -0
  10536. skills/ppt-master/templates/icons/tabler-outline/option.svg +19 -0
  10537. skills/ppt-master/templates/icons/tabler-outline/outbound.svg +21 -0
  10538. skills/ppt-master/templates/icons/tabler-outline/outlet.svg +21 -0
  10539. skills/ppt-master/templates/icons/tabler-outline/oval-vertical.svg +19 -0
  10540. skills/ppt-master/templates/icons/tabler-outline/oval.svg +19 -0
  10541. skills/ppt-master/templates/icons/tabler-outline/overline.svg +20 -0
  10542. skills/ppt-master/templates/icons/tabler-outline/package-export.svg +24 -0
  10543. skills/ppt-master/templates/icons/tabler-outline/package-import.svg +24 -0
  10544. skills/ppt-master/templates/icons/tabler-outline/package-off.svg +24 -0
  10545. skills/ppt-master/templates/icons/tabler-outline/package.svg +23 -0
  10546. skills/ppt-master/templates/icons/tabler-outline/packages.svg +27 -0
  10547. skills/ppt-master/templates/icons/tabler-outline/pacman.svg +20 -0
  10548. skills/ppt-master/templates/icons/tabler-outline/page-break.svg +22 -0
  10549. skills/ppt-master/templates/icons/tabler-outline/paint-off.svg +22 -0
  10550. skills/ppt-master/templates/icons/tabler-outline/paint.svg +21 -0
  10551. skills/ppt-master/templates/icons/tabler-outline/palette-off.svg +24 -0
  10552. skills/ppt-master/templates/icons/tabler-outline/palette.svg +22 -0
  10553. skills/ppt-master/templates/icons/tabler-outline/panorama-horizontal-off.svg +20 -0
  10554. skills/ppt-master/templates/icons/tabler-outline/panorama-horizontal.svg +19 -0
  10555. skills/ppt-master/templates/icons/tabler-outline/panorama-vertical-off.svg +20 -0
  10556. skills/ppt-master/templates/icons/tabler-outline/panorama-vertical.svg +19 -0
  10557. skills/ppt-master/templates/icons/tabler-outline/paper-bag-off.svg +23 -0
  10558. skills/ppt-master/templates/icons/tabler-outline/paper-bag.svg +22 -0
  10559. skills/ppt-master/templates/icons/tabler-outline/paperclip.svg +19 -0
  10560. skills/ppt-master/templates/icons/tabler-outline/parachute-off.svg +23 -0
  10561. skills/ppt-master/templates/icons/tabler-outline/parachute.svg +22 -0
  10562. skills/ppt-master/templates/icons/tabler-outline/parentheses-off.svg +21 -0
  10563. skills/ppt-master/templates/icons/tabler-outline/parentheses.svg +20 -0
  10564. skills/ppt-master/templates/icons/tabler-outline/parking-circle.svg +20 -0
  10565. skills/ppt-master/templates/icons/tabler-outline/parking-meter.svg +23 -0
  10566. skills/ppt-master/templates/icons/tabler-outline/parking-off.svg +21 -0
  10567. skills/ppt-master/templates/icons/tabler-outline/parking.svg +20 -0
  10568. skills/ppt-master/templates/icons/tabler-outline/password-fingerprint.svg +31 -0
  10569. skills/ppt-master/templates/icons/tabler-outline/password-mobile-phone.svg +30 -0
  10570. skills/ppt-master/templates/icons/tabler-outline/password-user.svg +29 -0
  10571. skills/ppt-master/templates/icons/tabler-outline/password.svg +27 -0
  10572. skills/ppt-master/templates/icons/tabler-outline/paw-off.svg +24 -0
  10573. skills/ppt-master/templates/icons/tabler-outline/paw.svg +23 -0
  10574. skills/ppt-master/templates/icons/tabler-outline/paywall.svg +24 -0
  10575. skills/ppt-master/templates/icons/tabler-outline/pdf.svg +22 -0
  10576. skills/ppt-master/templates/icons/tabler-outline/peace.svg +22 -0
  10577. skills/ppt-master/templates/icons/tabler-outline/pencil-bolt.svg +21 -0
  10578. skills/ppt-master/templates/icons/tabler-outline/pencil-cancel.svg +22 -0
  10579. skills/ppt-master/templates/icons/tabler-outline/pencil-check.svg +21 -0
  10580. skills/ppt-master/templates/icons/tabler-outline/pencil-code.svg +22 -0
  10581. skills/ppt-master/templates/icons/tabler-outline/pencil-cog.svg +27 -0
  10582. skills/ppt-master/templates/icons/tabler-outline/pencil-discount.svg +23 -0
  10583. skills/ppt-master/templates/icons/tabler-outline/pencil-dollar.svg +22 -0
  10584. skills/ppt-master/templates/icons/tabler-outline/pencil-down.svg +22 -0
  10585. skills/ppt-master/templates/icons/tabler-outline/pencil-exclamation.svg +22 -0
  10586. skills/ppt-master/templates/icons/tabler-outline/pencil-heart.svg +21 -0
  10587. skills/ppt-master/templates/icons/tabler-outline/pencil-minus.svg +21 -0
  10588. skills/ppt-master/templates/icons/tabler-outline/pencil-off.svg +21 -0
  10589. skills/ppt-master/templates/icons/tabler-outline/pencil-pause.svg +22 -0
  10590. skills/ppt-master/templates/icons/tabler-outline/pencil-pin.svg +22 -0
  10591. skills/ppt-master/templates/icons/tabler-outline/pencil-plus.svg +22 -0
  10592. skills/ppt-master/templates/icons/tabler-outline/pencil-question.svg +22 -0
  10593. skills/ppt-master/templates/icons/tabler-outline/pencil-search.svg +22 -0
  10594. skills/ppt-master/templates/icons/tabler-outline/pencil-share.svg +22 -0
  10595. skills/ppt-master/templates/icons/tabler-outline/pencil-star.svg +21 -0
  10596. skills/ppt-master/templates/icons/tabler-outline/pencil-up.svg +22 -0
  10597. skills/ppt-master/templates/icons/tabler-outline/pencil-x.svg +22 -0
  10598. skills/ppt-master/templates/icons/tabler-outline/pencil.svg +20 -0
  10599. skills/ppt-master/templates/icons/tabler-outline/pennant-2.svg +21 -0
  10600. skills/ppt-master/templates/icons/tabler-outline/pennant-off.svg +22 -0
  10601. skills/ppt-master/templates/icons/tabler-outline/pennant.svg +21 -0
  10602. skills/ppt-master/templates/icons/tabler-outline/pentagon-minus.svg +20 -0
  10603. skills/ppt-master/templates/icons/tabler-outline/pentagon-number-0.svg +20 -0
  10604. skills/ppt-master/templates/icons/tabler-outline/pentagon-number-1.svg +20 -0
  10605. skills/ppt-master/templates/icons/tabler-outline/pentagon-number-2.svg +20 -0
  10606. skills/ppt-master/templates/icons/tabler-outline/pentagon-number-3.svg +20 -0
  10607. skills/ppt-master/templates/icons/tabler-outline/pentagon-number-4.svg +21 -0
  10608. skills/ppt-master/templates/icons/tabler-outline/pentagon-number-5.svg +20 -0
  10609. skills/ppt-master/templates/icons/tabler-outline/pentagon-number-6.svg +20 -0
  10610. skills/ppt-master/templates/icons/tabler-outline/pentagon-number-7.svg +20 -0
  10611. skills/ppt-master/templates/icons/tabler-outline/pentagon-number-8.svg +20 -0
  10612. skills/ppt-master/templates/icons/tabler-outline/pentagon-number-9.svg +20 -0
  10613. skills/ppt-master/templates/icons/tabler-outline/pentagon-off.svg +20 -0
  10614. skills/ppt-master/templates/icons/tabler-outline/pentagon-plus.svg +21 -0
  10615. skills/ppt-master/templates/icons/tabler-outline/pentagon-x.svg +21 -0
  10616. skills/ppt-master/templates/icons/tabler-outline/pentagon.svg +19 -0
  10617. skills/ppt-master/templates/icons/tabler-outline/pentagram.svg +20 -0
  10618. skills/ppt-master/templates/icons/tabler-outline/pepper-off.svg +21 -0
  10619. skills/ppt-master/templates/icons/tabler-outline/pepper.svg +20 -0
  10620. skills/ppt-master/templates/icons/tabler-outline/percentage-0.svg +19 -0
  10621. skills/ppt-master/templates/icons/tabler-outline/percentage-10.svg +20 -0
  10622. skills/ppt-master/templates/icons/tabler-outline/percentage-100.svg +19 -0
  10623. skills/ppt-master/templates/icons/tabler-outline/percentage-20.svg +20 -0
  10624. skills/ppt-master/templates/icons/tabler-outline/percentage-25.svg +20 -0
  10625. skills/ppt-master/templates/icons/tabler-outline/percentage-30.svg +20 -0
  10626. skills/ppt-master/templates/icons/tabler-outline/percentage-33.svg +20 -0
  10627. skills/ppt-master/templates/icons/tabler-outline/percentage-40.svg +20 -0
  10628. skills/ppt-master/templates/icons/tabler-outline/percentage-50.svg +20 -0
  10629. skills/ppt-master/templates/icons/tabler-outline/percentage-60.svg +20 -0
  10630. skills/ppt-master/templates/icons/tabler-outline/percentage-66.svg +20 -0
  10631. skills/ppt-master/templates/icons/tabler-outline/percentage-70.svg +20 -0
  10632. skills/ppt-master/templates/icons/tabler-outline/percentage-75.svg +20 -0
  10633. skills/ppt-master/templates/icons/tabler-outline/percentage-80.svg +20 -0
  10634. skills/ppt-master/templates/icons/tabler-outline/percentage-90.svg +20 -0
  10635. skills/ppt-master/templates/icons/tabler-outline/percentage.svg +21 -0
  10636. skills/ppt-master/templates/icons/tabler-outline/perfume.svg +23 -0
  10637. skills/ppt-master/templates/icons/tabler-outline/perspective-off.svg +20 -0
  10638. skills/ppt-master/templates/icons/tabler-outline/perspective.svg +19 -0
  10639. skills/ppt-master/templates/icons/tabler-outline/phone-call.svg +21 -0
  10640. skills/ppt-master/templates/icons/tabler-outline/phone-calling.svg +22 -0
  10641. skills/ppt-master/templates/icons/tabler-outline/phone-check.svg +20 -0
  10642. skills/ppt-master/templates/icons/tabler-outline/phone-done.svg +20 -0
  10643. skills/ppt-master/templates/icons/tabler-outline/phone-end.svg +21 -0
  10644. skills/ppt-master/templates/icons/tabler-outline/phone-incoming.svg +21 -0
  10645. skills/ppt-master/templates/icons/tabler-outline/phone-off.svg +20 -0
  10646. skills/ppt-master/templates/icons/tabler-outline/phone-outgoing.svg +21 -0
  10647. skills/ppt-master/templates/icons/tabler-outline/phone-pause.svg +21 -0
  10648. skills/ppt-master/templates/icons/tabler-outline/phone-plus.svg +20 -0
  10649. skills/ppt-master/templates/icons/tabler-outline/phone-ringing.svg +22 -0
  10650. skills/ppt-master/templates/icons/tabler-outline/phone-spark.svg +20 -0
  10651. skills/ppt-master/templates/icons/tabler-outline/phone-x.svg +20 -0
  10652. skills/ppt-master/templates/icons/tabler-outline/phone.svg +19 -0
  10653. skills/ppt-master/templates/icons/tabler-outline/photo-ai.svg +24 -0
  10654. skills/ppt-master/templates/icons/tabler-outline/photo-bitcoin.svg +22 -0
  10655. skills/ppt-master/templates/icons/tabler-outline/photo-bolt.svg +23 -0
  10656. skills/ppt-master/templates/icons/tabler-outline/photo-cancel.svg +24 -0
  10657. skills/ppt-master/templates/icons/tabler-outline/photo-check.svg +23 -0
  10658. skills/ppt-master/templates/icons/tabler-outline/photo-circle-minus.svg +23 -0
  10659. skills/ppt-master/templates/icons/tabler-outline/photo-circle-plus.svg +24 -0
  10660. skills/ppt-master/templates/icons/tabler-outline/photo-circle.svg +22 -0
  10661. skills/ppt-master/templates/icons/tabler-outline/photo-code.svg +24 -0
  10662. skills/ppt-master/templates/icons/tabler-outline/photo-cog.svg +29 -0
  10663. skills/ppt-master/templates/icons/tabler-outline/photo-dollar.svg +23 -0
  10664. skills/ppt-master/templates/icons/tabler-outline/photo-down.svg +24 -0
  10665. skills/ppt-master/templates/icons/tabler-outline/photo-edit.svg +23 -0
  10666. skills/ppt-master/templates/icons/tabler-outline/photo-exclamation.svg +24 -0
  10667. skills/ppt-master/templates/icons/tabler-outline/photo-heart.svg +22 -0
  10668. skills/ppt-master/templates/icons/tabler-outline/photo-hexagon.svg +22 -0
  10669. skills/ppt-master/templates/icons/tabler-outline/photo-minus.svg +23 -0
  10670. skills/ppt-master/templates/icons/tabler-outline/photo-off.svg +23 -0
  10671. skills/ppt-master/templates/icons/tabler-outline/photo-pause.svg +24 -0
  10672. skills/ppt-master/templates/icons/tabler-outline/photo-pentagon.svg +22 -0
  10673. skills/ppt-master/templates/icons/tabler-outline/photo-pin.svg +23 -0
  10674. skills/ppt-master/templates/icons/tabler-outline/photo-plus.svg +24 -0
  10675. skills/ppt-master/templates/icons/tabler-outline/photo-question.svg +23 -0
  10676. skills/ppt-master/templates/icons/tabler-outline/photo-scan.svg +25 -0
  10677. skills/ppt-master/templates/icons/tabler-outline/photo-search.svg +23 -0
  10678. skills/ppt-master/templates/icons/tabler-outline/photo-sensor-2.svg +21 -0
  10679. skills/ppt-master/templates/icons/tabler-outline/photo-sensor-3.svg +27 -0
  10680. skills/ppt-master/templates/icons/tabler-outline/photo-sensor.svg +23 -0
  10681. skills/ppt-master/templates/icons/tabler-outline/photo-share.svg +24 -0
  10682. skills/ppt-master/templates/icons/tabler-outline/photo-shield.svg +22 -0
  10683. skills/ppt-master/templates/icons/tabler-outline/photo-spark.svg +23 -0
  10684. skills/ppt-master/templates/icons/tabler-outline/photo-square-rounded.svg +22 -0
  10685. skills/ppt-master/templates/icons/tabler-outline/photo-star.svg +22 -0
  10686. skills/ppt-master/templates/icons/tabler-outline/photo-up.svg +24 -0
  10687. skills/ppt-master/templates/icons/tabler-outline/photo-video.svg +23 -0
  10688. skills/ppt-master/templates/icons/tabler-outline/photo-x.svg +24 -0
  10689. skills/ppt-master/templates/icons/tabler-outline/photo.svg +22 -0
  10690. skills/ppt-master/templates/icons/tabler-outline/physotherapist.svg +24 -0
  10691. skills/ppt-master/templates/icons/tabler-outline/piano.svg +23 -0
  10692. skills/ppt-master/templates/icons/tabler-outline/pick.svg +20 -0
  10693. skills/ppt-master/templates/icons/tabler-outline/picnic-table.svg +19 -0
  10694. skills/ppt-master/templates/icons/tabler-outline/picture-in-picture-off.svg +22 -0
  10695. skills/ppt-master/templates/icons/tabler-outline/picture-in-picture-on.svg +22 -0
  10696. skills/ppt-master/templates/icons/tabler-outline/picture-in-picture-top.svg +20 -0
  10697. skills/ppt-master/templates/icons/tabler-outline/picture-in-picture.svg +20 -0
  10698. skills/ppt-master/templates/icons/tabler-outline/pig-money.svg +21 -0
  10699. skills/ppt-master/templates/icons/tabler-outline/pig-off.svg +21 -0
  10700. skills/ppt-master/templates/icons/tabler-outline/pig.svg +20 -0
  10701. skills/ppt-master/templates/icons/tabler-outline/pilcrow-left.svg +23 -0
  10702. skills/ppt-master/templates/icons/tabler-outline/pilcrow-right.svg +23 -0
  10703. skills/ppt-master/templates/icons/tabler-outline/pilcrow.svg +21 -0
  10704. skills/ppt-master/templates/icons/tabler-outline/pill-off.svg +21 -0
  10705. skills/ppt-master/templates/icons/tabler-outline/pill.svg +20 -0
  10706. skills/ppt-master/templates/icons/tabler-outline/pillow.svg +20 -0
  10707. skills/ppt-master/templates/icons/tabler-outline/pills.svg +22 -0
  10708. skills/ppt-master/templates/icons/tabler-outline/pin-end.svg +22 -0
  10709. skills/ppt-master/templates/icons/tabler-outline/pin-invoke.svg +22 -0
  10710. skills/ppt-master/templates/icons/tabler-outline/pin.svg +21 -0
  10711. skills/ppt-master/templates/icons/tabler-outline/ping-pong.svg +21 -0
  10712. skills/ppt-master/templates/icons/tabler-outline/pinned-off.svg +22 -0
  10713. skills/ppt-master/templates/icons/tabler-outline/pinned.svg +21 -0
  10714. skills/ppt-master/templates/icons/tabler-outline/pipeline.svg +23 -0
  10715. skills/ppt-master/templates/icons/tabler-outline/pizza-off.svg +22 -0
  10716. skills/ppt-master/templates/icons/tabler-outline/pizza.svg +22 -0
  10717. skills/ppt-master/templates/icons/tabler-outline/placeholder.svg +21 -0
  10718. skills/ppt-master/templates/icons/tabler-outline/plane-arrival.svg +20 -0
  10719. skills/ppt-master/templates/icons/tabler-outline/plane-departure.svg +20 -0
  10720. skills/ppt-master/templates/icons/tabler-outline/plane-inflight.svg +20 -0
  10721. skills/ppt-master/templates/icons/tabler-outline/plane-off.svg +20 -0
  10722. skills/ppt-master/templates/icons/tabler-outline/plane-tilt.svg +19 -0
  10723. skills/ppt-master/templates/icons/tabler-outline/plane.svg +19 -0
  10724. skills/ppt-master/templates/icons/tabler-outline/planet-off.svg +20 -0
  10725. skills/ppt-master/templates/icons/tabler-outline/planet.svg +20 -0
  10726. skills/ppt-master/templates/icons/tabler-outline/plant-2-off.svg +24 -0
  10727. skills/ppt-master/templates/icons/tabler-outline/plant-2.svg +23 -0
  10728. skills/ppt-master/templates/icons/tabler-outline/plant-off.svg +23 -0
  10729. skills/ppt-master/templates/icons/tabler-outline/plant.svg +22 -0
  10730. skills/ppt-master/templates/icons/tabler-outline/play-basketball.svg +23 -0
  10731. skills/ppt-master/templates/icons/tabler-outline/play-card-1.svg +22 -0
  10732. skills/ppt-master/templates/icons/tabler-outline/play-card-10.svg +23 -0
  10733. skills/ppt-master/templates/icons/tabler-outline/play-card-2.svg +22 -0
  10734. skills/ppt-master/templates/icons/tabler-outline/play-card-3.svg +22 -0
  10735. skills/ppt-master/templates/icons/tabler-outline/play-card-4.svg +23 -0
  10736. skills/ppt-master/templates/icons/tabler-outline/play-card-5.svg +22 -0
  10737. skills/ppt-master/templates/icons/tabler-outline/play-card-6.svg +22 -0
  10738. skills/ppt-master/templates/icons/tabler-outline/play-card-7.svg +22 -0
  10739. skills/ppt-master/templates/icons/tabler-outline/play-card-8.svg +23 -0
  10740. skills/ppt-master/templates/icons/tabler-outline/play-card-9.svg +22 -0
  10741. skills/ppt-master/templates/icons/tabler-outline/play-card-a.svg +23 -0
  10742. skills/ppt-master/templates/icons/tabler-outline/play-card-j.svg +22 -0
  10743. skills/ppt-master/templates/icons/tabler-outline/play-card-k.svg +24 -0
  10744. skills/ppt-master/templates/icons/tabler-outline/play-card-off.svg +22 -0
  10745. skills/ppt-master/templates/icons/tabler-outline/play-card-q.svg +23 -0
  10746. skills/ppt-master/templates/icons/tabler-outline/play-card-star.svg +22 -0
  10747. skills/ppt-master/templates/icons/tabler-outline/play-card.svg +22 -0
  10748. skills/ppt-master/templates/icons/tabler-outline/play-football.svg +23 -0
  10749. skills/ppt-master/templates/icons/tabler-outline/play-handball.svg +23 -0
  10750. skills/ppt-master/templates/icons/tabler-outline/play-volleyball.svg +22 -0
  10751. skills/ppt-master/templates/icons/tabler-outline/player-eject.svg +20 -0
  10752. skills/ppt-master/templates/icons/tabler-outline/player-pause.svg +20 -0
  10753. skills/ppt-master/templates/icons/tabler-outline/player-play.svg +19 -0
  10754. skills/ppt-master/templates/icons/tabler-outline/player-record.svg +19 -0
  10755. skills/ppt-master/templates/icons/tabler-outline/player-skip-back.svg +20 -0
  10756. skills/ppt-master/templates/icons/tabler-outline/player-skip-forward.svg +20 -0
  10757. skills/ppt-master/templates/icons/tabler-outline/player-stop.svg +19 -0
  10758. skills/ppt-master/templates/icons/tabler-outline/player-track-next.svg +20 -0
  10759. skills/ppt-master/templates/icons/tabler-outline/player-track-prev.svg +20 -0
  10760. skills/ppt-master/templates/icons/tabler-outline/playlist-add.svg +23 -0
  10761. skills/ppt-master/templates/icons/tabler-outline/playlist-off.svg +24 -0
  10762. skills/ppt-master/templates/icons/tabler-outline/playlist-x.svg +23 -0
  10763. skills/ppt-master/templates/icons/tabler-outline/playlist.svg +23 -0
  10764. skills/ppt-master/templates/icons/tabler-outline/playstation-circle.svg +20 -0
  10765. skills/ppt-master/templates/icons/tabler-outline/playstation-square.svg +20 -0
  10766. skills/ppt-master/templates/icons/tabler-outline/playstation-triangle.svg +20 -0
  10767. skills/ppt-master/templates/icons/tabler-outline/playstation-x.svg +21 -0
  10768. skills/ppt-master/templates/icons/tabler-outline/plug-connected-x.svg +26 -0
  10769. skills/ppt-master/templates/icons/tabler-outline/plug-connected.svg +24 -0
  10770. skills/ppt-master/templates/icons/tabler-outline/plug-off.svg +23 -0
  10771. skills/ppt-master/templates/icons/tabler-outline/plug-x.svg +24 -0
  10772. skills/ppt-master/templates/icons/tabler-outline/plug.svg +22 -0
  10773. skills/ppt-master/templates/icons/tabler-outline/plus-equal.svg +23 -0
  10774. skills/ppt-master/templates/icons/tabler-outline/plus-minus.svg +22 -0
  10775. skills/ppt-master/templates/icons/tabler-outline/plus.svg +20 -0
  10776. skills/ppt-master/templates/icons/tabler-outline/png.svg +21 -0
  10777. skills/ppt-master/templates/icons/tabler-outline/podium-off.svg +24 -0
  10778. skills/ppt-master/templates/icons/tabler-outline/podium.svg +23 -0
  10779. skills/ppt-master/templates/icons/tabler-outline/point-off.svg +20 -0
  10780. skills/ppt-master/templates/icons/tabler-outline/point.svg +19 -0
  10781. skills/ppt-master/templates/icons/tabler-outline/pointer-bolt.svg +20 -0
  10782. skills/ppt-master/templates/icons/tabler-outline/pointer-cancel.svg +21 -0
  10783. skills/ppt-master/templates/icons/tabler-outline/pointer-check.svg +20 -0
  10784. skills/ppt-master/templates/icons/tabler-outline/pointer-code.svg +21 -0
  10785. skills/ppt-master/templates/icons/tabler-outline/pointer-cog.svg +26 -0
  10786. skills/ppt-master/templates/icons/tabler-outline/pointer-dollar.svg +21 -0
  10787. skills/ppt-master/templates/icons/tabler-outline/pointer-down.svg +21 -0
  10788. skills/ppt-master/templates/icons/tabler-outline/pointer-exclamation.svg +21 -0
  10789. skills/ppt-master/templates/icons/tabler-outline/pointer-heart.svg +20 -0
  10790. skills/ppt-master/templates/icons/tabler-outline/pointer-minus.svg +20 -0
  10791. skills/ppt-master/templates/icons/tabler-outline/pointer-off.svg +20 -0
  10792. skills/ppt-master/templates/icons/tabler-outline/pointer-pause.svg +21 -0
  10793. skills/ppt-master/templates/icons/tabler-outline/pointer-pin.svg +21 -0
  10794. skills/ppt-master/templates/icons/tabler-outline/pointer-plus.svg +21 -0
  10795. skills/ppt-master/templates/icons/tabler-outline/pointer-question.svg +21 -0
  10796. skills/ppt-master/templates/icons/tabler-outline/pointer-search.svg +21 -0
  10797. skills/ppt-master/templates/icons/tabler-outline/pointer-share.svg +21 -0
  10798. skills/ppt-master/templates/icons/tabler-outline/pointer-star.svg +20 -0
  10799. skills/ppt-master/templates/icons/tabler-outline/pointer-up.svg +21 -0
  10800. skills/ppt-master/templates/icons/tabler-outline/pointer-x.svg +21 -0
  10801. skills/ppt-master/templates/icons/tabler-outline/pointer.svg +19 -0
  10802. skills/ppt-master/templates/icons/tabler-outline/pokeball-off.svg +22 -0
  10803. skills/ppt-master/templates/icons/tabler-outline/pokeball.svg +22 -0
  10804. skills/ppt-master/templates/icons/tabler-outline/poker-chip.svg +28 -0
  10805. skills/ppt-master/templates/icons/tabler-outline/polaroid.svg +23 -0
  10806. skills/ppt-master/templates/icons/tabler-outline/polygon-off.svg +27 -0
  10807. skills/ppt-master/templates/icons/tabler-outline/polygon.svg +26 -0
  10808. skills/ppt-master/templates/icons/tabler-outline/poo.svg +22 -0
  10809. skills/ppt-master/templates/icons/tabler-outline/pool-off.svg +25 -0
  10810. skills/ppt-master/templates/icons/tabler-outline/pool.svg +24 -0
  10811. skills/ppt-master/templates/icons/tabler-outline/power.svg +20 -0
  10812. skills/ppt-master/templates/icons/tabler-outline/pray.svg +20 -0
  10813. skills/ppt-master/templates/icons/tabler-outline/premium-rights.svg +22 -0
  10814. skills/ppt-master/templates/icons/tabler-outline/prescription.svg +21 -0
  10815. skills/ppt-master/templates/icons/tabler-outline/presentation-analytics.svg +25 -0
  10816. skills/ppt-master/templates/icons/tabler-outline/presentation-off.svg +24 -0
  10817. skills/ppt-master/templates/icons/tabler-outline/presentation.svg +23 -0
  10818. skills/ppt-master/templates/icons/tabler-outline/printer-off.svg +22 -0
  10819. skills/ppt-master/templates/icons/tabler-outline/printer.svg +21 -0
  10820. skills/ppt-master/templates/icons/tabler-outline/prism-light.svg +23 -0
  10821. skills/ppt-master/templates/icons/tabler-outline/prism-off.svg +22 -0
  10822. skills/ppt-master/templates/icons/tabler-outline/prism-plus.svg +23 -0
  10823. skills/ppt-master/templates/icons/tabler-outline/prism.svg +21 -0
  10824. skills/ppt-master/templates/icons/tabler-outline/prison.svg +26 -0
  10825. skills/ppt-master/templates/icons/tabler-outline/progress-alert.svg +25 -0
  10826. skills/ppt-master/templates/icons/tabler-outline/progress-bolt.svg +24 -0
  10827. skills/ppt-master/templates/icons/tabler-outline/progress-check.svg +24 -0
  10828. skills/ppt-master/templates/icons/tabler-outline/progress-down.svg +25 -0
  10829. skills/ppt-master/templates/icons/tabler-outline/progress-help.svg +25 -0
  10830. skills/ppt-master/templates/icons/tabler-outline/progress-x.svg +25 -0
  10831. skills/ppt-master/templates/icons/tabler-outline/progress.svg +23 -0
  10832. skills/ppt-master/templates/icons/tabler-outline/prompt.svg +20 -0
  10833. skills/ppt-master/templates/icons/tabler-outline/prong.svg +21 -0
  10834. skills/ppt-master/templates/icons/tabler-outline/propeller-off.svg +23 -0
  10835. skills/ppt-master/templates/icons/tabler-outline/propeller.svg +22 -0
  10836. skills/ppt-master/templates/icons/tabler-outline/protocol.svg +22 -0
  10837. skills/ppt-master/templates/icons/tabler-outline/pumpkin-scary.svg +23 -0
  10838. skills/ppt-master/templates/icons/tabler-outline/puzzle-2.svg +23 -0
  10839. skills/ppt-master/templates/icons/tabler-outline/puzzle-off.svg +20 -0
  10840. skills/ppt-master/templates/icons/tabler-outline/puzzle.svg +19 -0
  10841. skills/ppt-master/templates/icons/tabler-outline/pyramid-off.svg +21 -0
  10842. skills/ppt-master/templates/icons/tabler-outline/pyramid-plus.svg +22 -0
  10843. skills/ppt-master/templates/icons/tabler-outline/pyramid.svg +20 -0
  10844. skills/ppt-master/templates/icons/tabler-outline/qrcode-off.svg +28 -0
  10845. skills/ppt-master/templates/icons/tabler-outline/qrcode.svg +30 -0
  10846. skills/ppt-master/templates/icons/tabler-outline/question-mark.svg +20 -0
  10847. skills/ppt-master/templates/icons/tabler-outline/queue-pop-in.svg +22 -0
  10848. skills/ppt-master/templates/icons/tabler-outline/queue-pop-out.svg +22 -0
  10849. skills/ppt-master/templates/icons/tabler-outline/quote-off.svg +21 -0
  10850. skills/ppt-master/templates/icons/tabler-outline/quote-open.svg +20 -0
  10851. skills/ppt-master/templates/icons/tabler-outline/quote.svg +20 -0
  10852. skills/ppt-master/templates/icons/tabler-outline/quotes.svg +22 -0
  10853. skills/ppt-master/templates/icons/tabler-outline/radar-2.svg +22 -0
  10854. skills/ppt-master/templates/icons/tabler-outline/radar-off.svg +22 -0
  10855. skills/ppt-master/templates/icons/tabler-outline/radar.svg +21 -0
  10856. skills/ppt-master/templates/icons/tabler-outline/radio-off.svg +23 -0
  10857. skills/ppt-master/templates/icons/tabler-outline/radio.svg +23 -0
  10858. skills/ppt-master/templates/icons/tabler-outline/radioactive-off.svg +22 -0
  10859. skills/ppt-master/templates/icons/tabler-outline/radioactive.svg +21 -0
  10860. skills/ppt-master/templates/icons/tabler-outline/radius-bottom-left.svg +19 -0
  10861. skills/ppt-master/templates/icons/tabler-outline/radius-bottom-right.svg +19 -0
  10862. skills/ppt-master/templates/icons/tabler-outline/radius-top-left.svg +19 -0
  10863. skills/ppt-master/templates/icons/tabler-outline/radius-top-right.svg +19 -0
  10864. skills/ppt-master/templates/icons/tabler-outline/rainbow-off.svg +22 -0
  10865. skills/ppt-master/templates/icons/tabler-outline/rainbow.svg +21 -0
  10866. skills/ppt-master/templates/icons/tabler-outline/rating-12-plus.svg +23 -0
  10867. skills/ppt-master/templates/icons/tabler-outline/rating-14-plus.svg +23 -0
  10868. skills/ppt-master/templates/icons/tabler-outline/rating-16-plus.svg +24 -0
  10869. skills/ppt-master/templates/icons/tabler-outline/rating-18-plus.svg +24 -0
  10870. skills/ppt-master/templates/icons/tabler-outline/rating-21-plus.svg +23 -0
  10871. skills/ppt-master/templates/icons/tabler-outline/razor-electric.svg +24 -0
  10872. skills/ppt-master/templates/icons/tabler-outline/razor.svg +21 -0
  10873. skills/ppt-master/templates/icons/tabler-outline/receipt-2.svg +20 -0
  10874. skills/ppt-master/templates/icons/tabler-outline/receipt-bitcoin.svg +24 -0
  10875. skills/ppt-master/templates/icons/tabler-outline/receipt-dollar.svg +21 -0
  10876. skills/ppt-master/templates/icons/tabler-outline/receipt-euro.svg +21 -0
  10877. skills/ppt-master/templates/icons/tabler-outline/receipt-off.svg +24 -0
  10878. skills/ppt-master/templates/icons/tabler-outline/receipt-pound.svg +21 -0
  10879. skills/ppt-master/templates/icons/tabler-outline/receipt-refund.svg +20 -0
  10880. skills/ppt-master/templates/icons/tabler-outline/receipt-rupee.svg +21 -0
  10881. skills/ppt-master/templates/icons/tabler-outline/receipt-tax.svg +22 -0
  10882. skills/ppt-master/templates/icons/tabler-outline/receipt-yen.svg +23 -0
  10883. skills/ppt-master/templates/icons/tabler-outline/receipt-yuan.svg +22 -0
  10884. skills/ppt-master/templates/icons/tabler-outline/receipt.svg +19 -0
  10885. skills/ppt-master/templates/icons/tabler-outline/recharging.svg +28 -0
  10886. skills/ppt-master/templates/icons/tabler-outline/record-mail-off.svg +22 -0
  10887. skills/ppt-master/templates/icons/tabler-outline/record-mail.svg +21 -0
  10888. skills/ppt-master/templates/icons/tabler-outline/rectangle-rounded-bottom.svg +19 -0
  10889. skills/ppt-master/templates/icons/tabler-outline/rectangle-rounded-top.svg +19 -0
  10890. skills/ppt-master/templates/icons/tabler-outline/rectangle-vertical.svg +19 -0
  10891. skills/ppt-master/templates/icons/tabler-outline/rectangle.svg +19 -0
  10892. skills/ppt-master/templates/icons/tabler-outline/rectangular-prism-off.svg +23 -0
  10893. skills/ppt-master/templates/icons/tabler-outline/rectangular-prism-plus.svg +24 -0
  10894. skills/ppt-master/templates/icons/tabler-outline/rectangular-prism.svg +22 -0
  10895. skills/ppt-master/templates/icons/tabler-outline/recycle-off.svg +22 -0
  10896. skills/ppt-master/templates/icons/tabler-outline/recycle.svg +24 -0
  10897. skills/ppt-master/templates/icons/tabler-outline/refresh-alert.svg +22 -0
  10898. skills/ppt-master/templates/icons/tabler-outline/refresh-dot.svg +21 -0
  10899. skills/ppt-master/templates/icons/tabler-outline/refresh-off.svg +21 -0
  10900. skills/ppt-master/templates/icons/tabler-outline/refresh.svg +20 -0
  10901. skills/ppt-master/templates/icons/tabler-outline/regex-off.svg +26 -0
  10902. skills/ppt-master/templates/icons/tabler-outline/regex.svg +25 -0
  10903. skills/ppt-master/templates/icons/tabler-outline/registered.svg +21 -0
  10904. skills/ppt-master/templates/icons/tabler-outline/relation-many-to-many.svg +23 -0
  10905. skills/ppt-master/templates/icons/tabler-outline/relation-one-to-many.svg +23 -0
  10906. skills/ppt-master/templates/icons/tabler-outline/relation-one-to-one.svg +23 -0
  10907. skills/ppt-master/templates/icons/tabler-outline/reload.svg +20 -0
  10908. skills/ppt-master/templates/icons/tabler-outline/reorder.svg +23 -0
  10909. skills/ppt-master/templates/icons/tabler-outline/repeat-off.svg +21 -0
  10910. skills/ppt-master/templates/icons/tabler-outline/repeat-once.svg +21 -0
  10911. skills/ppt-master/templates/icons/tabler-outline/repeat.svg +20 -0
  10912. skills/ppt-master/templates/icons/tabler-outline/replace-off.svg +23 -0
  10913. skills/ppt-master/templates/icons/tabler-outline/replace-user.svg +24 -0
  10914. skills/ppt-master/templates/icons/tabler-outline/replace.svg +22 -0
  10915. skills/ppt-master/templates/icons/tabler-outline/report-analytics.svg +23 -0
  10916. skills/ppt-master/templates/icons/tabler-outline/report-medical.svg +22 -0
  10917. skills/ppt-master/templates/icons/tabler-outline/report-money.svg +22 -0
  10918. skills/ppt-master/templates/icons/tabler-outline/report-off.svg +21 -0
  10919. skills/ppt-master/templates/icons/tabler-outline/report-search.svg +25 -0
  10920. skills/ppt-master/templates/icons/tabler-outline/report.svg +25 -0
  10921. skills/ppt-master/templates/icons/tabler-outline/reserved-line.svg +22 -0
  10922. skills/ppt-master/templates/icons/tabler-outline/resize.svg +20 -0
  10923. skills/ppt-master/templates/icons/tabler-outline/restore.svg +21 -0
  10924. skills/ppt-master/templates/icons/tabler-outline/rewind-backward-10.svg +22 -0
  10925. skills/ppt-master/templates/icons/tabler-outline/rewind-backward-15.svg +22 -0
  10926. skills/ppt-master/templates/icons/tabler-outline/rewind-backward-20.svg +22 -0
  10927. skills/ppt-master/templates/icons/tabler-outline/rewind-backward-30.svg +22 -0
  10928. skills/ppt-master/templates/icons/tabler-outline/rewind-backward-40.svg +23 -0
  10929. skills/ppt-master/templates/icons/tabler-outline/rewind-backward-5.svg +21 -0
  10930. skills/ppt-master/templates/icons/tabler-outline/rewind-backward-50.svg +22 -0
  10931. skills/ppt-master/templates/icons/tabler-outline/rewind-backward-60.svg +22 -0
  10932. skills/ppt-master/templates/icons/tabler-outline/rewind-forward-10.svg +22 -0
  10933. skills/ppt-master/templates/icons/tabler-outline/rewind-forward-15.svg +22 -0
  10934. skills/ppt-master/templates/icons/tabler-outline/rewind-forward-20.svg +22 -0
  10935. skills/ppt-master/templates/icons/tabler-outline/rewind-forward-30.svg +22 -0
  10936. skills/ppt-master/templates/icons/tabler-outline/rewind-forward-40.svg +23 -0
  10937. skills/ppt-master/templates/icons/tabler-outline/rewind-forward-5.svg +21 -0
  10938. skills/ppt-master/templates/icons/tabler-outline/rewind-forward-50.svg +22 -0
  10939. skills/ppt-master/templates/icons/tabler-outline/rewind-forward-60.svg +22 -0
  10940. skills/ppt-master/templates/icons/tabler-outline/ribbon-health.svg +19 -0
  10941. skills/ppt-master/templates/icons/tabler-outline/rings.svg +23 -0
  10942. skills/ppt-master/templates/icons/tabler-outline/ripple-down.svg +23 -0
  10943. skills/ppt-master/templates/icons/tabler-outline/ripple-off.svg +22 -0
  10944. skills/ppt-master/templates/icons/tabler-outline/ripple-up.svg +23 -0
  10945. skills/ppt-master/templates/icons/tabler-outline/ripple.svg +21 -0
  10946. skills/ppt-master/templates/icons/tabler-outline/road-off.svg +24 -0
  10947. skills/ppt-master/templates/icons/tabler-outline/road-sign.svg +21 -0
  10948. skills/ppt-master/templates/icons/tabler-outline/road.svg +23 -0
  10949. skills/ppt-master/templates/icons/tabler-outline/robot-face.svg +24 -0
  10950. skills/ppt-master/templates/icons/tabler-outline/robot-off.svg +26 -0
  10951. skills/ppt-master/templates/icons/tabler-outline/robot.svg +27 -0
  10952. skills/ppt-master/templates/icons/tabler-outline/rocket-off.svg +22 -0
  10953. skills/ppt-master/templates/icons/tabler-outline/rocket.svg +21 -0
  10954. skills/ppt-master/templates/icons/tabler-outline/roller-skating.svg +21 -0
  10955. skills/ppt-master/templates/icons/tabler-outline/rollercoaster-off.svg +26 -0
  10956. skills/ppt-master/templates/icons/tabler-outline/rollercoaster.svg +25 -0
  10957. skills/ppt-master/templates/icons/tabler-outline/rosette-asterisk.svg +22 -0
  10958. skills/ppt-master/templates/icons/tabler-outline/rosette-discount-check-off.svg +21 -0
  10959. skills/ppt-master/templates/icons/tabler-outline/rosette-discount-check.svg +20 -0
  10960. skills/ppt-master/templates/icons/tabler-outline/rosette-discount-off.svg +23 -0
  10961. skills/ppt-master/templates/icons/tabler-outline/rosette-discount.svg +22 -0
  10962. skills/ppt-master/templates/icons/tabler-outline/rosette-number-0.svg +20 -0
  10963. skills/ppt-master/templates/icons/tabler-outline/rosette-number-1.svg +20 -0
  10964. skills/ppt-master/templates/icons/tabler-outline/rosette-number-2.svg +20 -0
  10965. skills/ppt-master/templates/icons/tabler-outline/rosette-number-3.svg +20 -0
  10966. skills/ppt-master/templates/icons/tabler-outline/rosette-number-4.svg +21 -0
  10967. skills/ppt-master/templates/icons/tabler-outline/rosette-number-5.svg +20 -0
  10968. skills/ppt-master/templates/icons/tabler-outline/rosette-number-6.svg +20 -0
  10969. skills/ppt-master/templates/icons/tabler-outline/rosette-number-7.svg +20 -0
  10970. skills/ppt-master/templates/icons/tabler-outline/rosette-number-8.svg +20 -0
  10971. skills/ppt-master/templates/icons/tabler-outline/rosette-number-9.svg +20 -0
  10972. skills/ppt-master/templates/icons/tabler-outline/rosette.svg +19 -0
  10973. skills/ppt-master/templates/icons/tabler-outline/rotate-2.svg +24 -0
  10974. skills/ppt-master/templates/icons/tabler-outline/rotate-360.svg +20 -0
  10975. skills/ppt-master/templates/icons/tabler-outline/rotate-3d.svg +23 -0
  10976. skills/ppt-master/templates/icons/tabler-outline/rotate-clockwise-2.svg +24 -0
  10977. skills/ppt-master/templates/icons/tabler-outline/rotate-clockwise.svg +19 -0
  10978. skills/ppt-master/templates/icons/tabler-outline/rotate-dot.svg +20 -0
  10979. skills/ppt-master/templates/icons/tabler-outline/rotate-rectangle.svg +20 -0
  10980. skills/ppt-master/templates/icons/tabler-outline/rotate.svg +19 -0
  10981. skills/ppt-master/templates/icons/tabler-outline/route-2.svg +21 -0
  10982. skills/ppt-master/templates/icons/tabler-outline/route-alt-left.svg +24 -0
  10983. skills/ppt-master/templates/icons/tabler-outline/route-alt-right.svg +24 -0
  10984. skills/ppt-master/templates/icons/tabler-outline/route-off.svg +22 -0
  10985. skills/ppt-master/templates/icons/tabler-outline/route-scan.svg +26 -0
  10986. skills/ppt-master/templates/icons/tabler-outline/route-square-2.svg +21 -0
  10987. skills/ppt-master/templates/icons/tabler-outline/route-square.svg +21 -0
  10988. skills/ppt-master/templates/icons/tabler-outline/route-x-2.svg +23 -0
  10989. skills/ppt-master/templates/icons/tabler-outline/route-x.svg +23 -0
  10990. skills/ppt-master/templates/icons/tabler-outline/route.svg +21 -0
  10991. skills/ppt-master/templates/icons/tabler-outline/router-off.svg +24 -0
  10992. skills/ppt-master/templates/icons/tabler-outline/router.svg +24 -0
  10993. skills/ppt-master/templates/icons/tabler-outline/row-insert-bottom.svg +21 -0
  10994. skills/ppt-master/templates/icons/tabler-outline/row-insert-top.svg +21 -0
  10995. skills/ppt-master/templates/icons/tabler-outline/row-remove.svg +21 -0
  10996. skills/ppt-master/templates/icons/tabler-outline/rss.svg +21 -0
  10997. skills/ppt-master/templates/icons/tabler-outline/rubber-stamp-off.svg +22 -0
  10998. skills/ppt-master/templates/icons/tabler-outline/rubber-stamp.svg +20 -0
  10999. skills/ppt-master/templates/icons/tabler-outline/ruler-2-off.svg +23 -0
  11000. skills/ppt-master/templates/icons/tabler-outline/ruler-2.svg +23 -0
  11001. skills/ppt-master/templates/icons/tabler-outline/ruler-3.svg +24 -0
  11002. skills/ppt-master/templates/icons/tabler-outline/ruler-measure-2.svg +27 -0
  11003. skills/ppt-master/templates/icons/tabler-outline/ruler-measure.svg +27 -0
  11004. skills/ppt-master/templates/icons/tabler-outline/ruler-off.svg +25 -0
  11005. skills/ppt-master/templates/icons/tabler-outline/ruler.svg +25 -0
  11006. skills/ppt-master/templates/icons/tabler-outline/run.svg +22 -0
  11007. skills/ppt-master/templates/icons/tabler-outline/rv-truck.svg +25 -0
  11008. skills/ppt-master/templates/icons/tabler-outline/s-turn-down.svg +21 -0
  11009. skills/ppt-master/templates/icons/tabler-outline/s-turn-left.svg +21 -0
  11010. skills/ppt-master/templates/icons/tabler-outline/s-turn-right.svg +21 -0
  11011. skills/ppt-master/templates/icons/tabler-outline/s-turn-up.svg +21 -0
  11012. skills/ppt-master/templates/icons/tabler-outline/sailboat-2.svg +23 -0
  11013. skills/ppt-master/templates/icons/tabler-outline/sailboat-off.svg +23 -0
  11014. skills/ppt-master/templates/icons/tabler-outline/sailboat.svg +22 -0
  11015. skills/ppt-master/templates/icons/tabler-outline/salad.svg +23 -0
  11016. skills/ppt-master/templates/icons/tabler-outline/salt.svg +23 -0
  11017. skills/ppt-master/templates/icons/tabler-outline/sandbox.svg +23 -0
  11018. skills/ppt-master/templates/icons/tabler-outline/satellite-off.svg +25 -0
  11019. skills/ppt-master/templates/icons/tabler-outline/satellite.svg +24 -0
  11020. skills/ppt-master/templates/icons/tabler-outline/sausage.svg +21 -0
  11021. skills/ppt-master/templates/icons/tabler-outline/scale-off.svg +24 -0
  11022. skills/ppt-master/templates/icons/tabler-outline/scale-outline-off.svg +21 -0
  11023. skills/ppt-master/templates/icons/tabler-outline/scale-outline.svg +20 -0
  11024. skills/ppt-master/templates/icons/tabler-outline/scale.svg +23 -0
  11025. skills/ppt-master/templates/icons/tabler-outline/scan-eye.svg +25 -0
  11026. skills/ppt-master/templates/icons/tabler-outline/scan-letter-a.svg +24 -0
  11027. skills/ppt-master/templates/icons/tabler-outline/scan-letter-t.svg +24 -0
  11028. skills/ppt-master/templates/icons/tabler-outline/scan-position.svg +23 -0
  11029. skills/ppt-master/templates/icons/tabler-outline/scan-traces.svg +25 -0
  11030. skills/ppt-master/templates/icons/tabler-outline/scan.svg +23 -0
  11031. skills/ppt-master/templates/icons/tabler-outline/schema-off.svg +26 -0
  11032. skills/ppt-master/templates/icons/tabler-outline/schema.svg +25 -0
  11033. skills/ppt-master/templates/icons/tabler-outline/school-bell.svg +21 -0
  11034. skills/ppt-master/templates/icons/tabler-outline/school-off.svg +21 -0
  11035. skills/ppt-master/templates/icons/tabler-outline/school.svg +20 -0
  11036. skills/ppt-master/templates/icons/tabler-outline/scissors-off.svg +22 -0
  11037. skills/ppt-master/templates/icons/tabler-outline/scissors.svg +22 -0
  11038. skills/ppt-master/templates/icons/tabler-outline/scooter-electric.svg +22 -0
  11039. skills/ppt-master/templates/icons/tabler-outline/scooter.svg +21 -0
  11040. skills/ppt-master/templates/icons/tabler-outline/scoreboard.svg +27 -0
  11041. skills/ppt-master/templates/icons/tabler-outline/screen-share-off.svg +23 -0
  11042. skills/ppt-master/templates/icons/tabler-outline/screen-share.svg +24 -0
  11043. skills/ppt-master/templates/icons/tabler-outline/screenshot.svg +27 -0
  11044. skills/ppt-master/templates/icons/tabler-outline/scribble-off.svg +20 -0
  11045. skills/ppt-master/templates/icons/tabler-outline/scribble.svg +19 -0
  11046. skills/ppt-master/templates/icons/tabler-outline/script-minus.svg +20 -0
  11047. skills/ppt-master/templates/icons/tabler-outline/script-plus.svg +21 -0
  11048. skills/ppt-master/templates/icons/tabler-outline/script-x.svg +20 -0
  11049. skills/ppt-master/templates/icons/tabler-outline/script.svg +19 -0
  11050. skills/ppt-master/templates/icons/tabler-outline/scuba-diving-tank.svg +24 -0
  11051. skills/ppt-master/templates/icons/tabler-outline/scuba-diving.svg +21 -0
  11052. skills/ppt-master/templates/icons/tabler-outline/scuba-mask-off.svg +21 -0
  11053. skills/ppt-master/templates/icons/tabler-outline/scuba-mask.svg +20 -0
  11054. skills/ppt-master/templates/icons/tabler-outline/sdk.svg +23 -0
  11055. skills/ppt-master/templates/icons/tabler-outline/search-off.svg +20 -0
  11056. skills/ppt-master/templates/icons/tabler-outline/search.svg +20 -0
  11057. skills/ppt-master/templates/icons/tabler-outline/section-sign.svg +21 -0
  11058. skills/ppt-master/templates/icons/tabler-outline/section.svg +29 -0
  11059. skills/ppt-master/templates/icons/tabler-outline/seedling-off.svg +22 -0
  11060. skills/ppt-master/templates/icons/tabler-outline/seedling.svg +21 -0
  11061. skills/ppt-master/templates/icons/tabler-outline/segway.svg +21 -0
  11062. skills/ppt-master/templates/icons/tabler-outline/select-all.svg +35 -0
  11063. skills/ppt-master/templates/icons/tabler-outline/select.svg +20 -0
  11064. skills/ppt-master/templates/icons/tabler-outline/selector.svg +20 -0
  11065. skills/ppt-master/templates/icons/tabler-outline/send-2.svg +20 -0
  11066. skills/ppt-master/templates/icons/tabler-outline/send-off.svg +21 -0
  11067. skills/ppt-master/templates/icons/tabler-outline/send.svg +20 -0
  11068. skills/ppt-master/templates/icons/tabler-outline/seo.svg +22 -0
  11069. skills/ppt-master/templates/icons/tabler-outline/separator-horizontal.svg +21 -0
  11070. skills/ppt-master/templates/icons/tabler-outline/separator-vertical.svg +21 -0
  11071. skills/ppt-master/templates/icons/tabler-outline/separator.svg +21 -0
  11072. skills/ppt-master/templates/icons/tabler-outline/server-2.svg +24 -0
  11073. skills/ppt-master/templates/icons/tabler-outline/server-bolt.svg +23 -0
  11074. skills/ppt-master/templates/icons/tabler-outline/server-cog.svg +29 -0
  11075. skills/ppt-master/templates/icons/tabler-outline/server-off.svg +23 -0
  11076. skills/ppt-master/templates/icons/tabler-outline/server-spark.svg +23 -0
  11077. skills/ppt-master/templates/icons/tabler-outline/server.svg +22 -0
  11078. skills/ppt-master/templates/icons/tabler-outline/serverless.svg +19 -0
  11079. skills/ppt-master/templates/icons/tabler-outline/servicemark.svg +20 -0
  11080. skills/ppt-master/templates/icons/tabler-outline/settings-2.svg +20 -0
  11081. skills/ppt-master/templates/icons/tabler-outline/settings-ai.svg +22 -0
  11082. skills/ppt-master/templates/icons/tabler-outline/settings-automation.svg +20 -0
  11083. skills/ppt-master/templates/icons/tabler-outline/settings-bolt.svg +21 -0
  11084. skills/ppt-master/templates/icons/tabler-outline/settings-cancel.svg +22 -0
  11085. skills/ppt-master/templates/icons/tabler-outline/settings-check.svg +21 -0
  11086. skills/ppt-master/templates/icons/tabler-outline/settings-code.svg +22 -0
  11087. skills/ppt-master/templates/icons/tabler-outline/settings-cog.svg +27 -0
  11088. skills/ppt-master/templates/icons/tabler-outline/settings-dollar.svg +22 -0
  11089. skills/ppt-master/templates/icons/tabler-outline/settings-down.svg +22 -0
  11090. skills/ppt-master/templates/icons/tabler-outline/settings-exclamation.svg +22 -0
  11091. skills/ppt-master/templates/icons/tabler-outline/settings-heart.svg +21 -0
  11092. skills/ppt-master/templates/icons/tabler-outline/settings-minus.svg +21 -0
  11093. skills/ppt-master/templates/icons/tabler-outline/settings-off.svg +21 -0
  11094. skills/ppt-master/templates/icons/tabler-outline/settings-pause.svg +22 -0
  11095. skills/ppt-master/templates/icons/tabler-outline/settings-pin.svg +22 -0
  11096. skills/ppt-master/templates/icons/tabler-outline/settings-plus.svg +22 -0
  11097. skills/ppt-master/templates/icons/tabler-outline/settings-question.svg +22 -0
  11098. skills/ppt-master/templates/icons/tabler-outline/settings-search.svg +22 -0
  11099. skills/ppt-master/templates/icons/tabler-outline/settings-share.svg +22 -0
  11100. skills/ppt-master/templates/icons/tabler-outline/settings-spark.svg +21 -0
  11101. skills/ppt-master/templates/icons/tabler-outline/settings-star.svg +21 -0
  11102. skills/ppt-master/templates/icons/tabler-outline/settings-up.svg +22 -0
  11103. skills/ppt-master/templates/icons/tabler-outline/settings-x.svg +22 -0
  11104. skills/ppt-master/templates/icons/tabler-outline/settings.svg +20 -0
  11105. skills/ppt-master/templates/icons/tabler-outline/shadow-off.svg +25 -0
  11106. skills/ppt-master/templates/icons/tabler-outline/shadow.svg +24 -0
  11107. skills/ppt-master/templates/icons/tabler-outline/shape-2.svg +23 -0
  11108. skills/ppt-master/templates/icons/tabler-outline/shape-3.svg +23 -0
  11109. skills/ppt-master/templates/icons/tabler-outline/shape-off.svg +27 -0
  11110. skills/ppt-master/templates/icons/tabler-outline/shape.svg +26 -0
  11111. skills/ppt-master/templates/icons/tabler-outline/share-2.svg +21 -0
  11112. skills/ppt-master/templates/icons/tabler-outline/share-3.svg +19 -0
  11113. skills/ppt-master/templates/icons/tabler-outline/share-off.svg +24 -0
  11114. skills/ppt-master/templates/icons/tabler-outline/share.svg +23 -0
  11115. skills/ppt-master/templates/icons/tabler-outline/shareplay.svg +20 -0
  11116. skills/ppt-master/templates/icons/tabler-outline/shield-bolt.svg +20 -0
  11117. skills/ppt-master/templates/icons/tabler-outline/shield-cancel.svg +21 -0
  11118. skills/ppt-master/templates/icons/tabler-outline/shield-check.svg +20 -0
  11119. skills/ppt-master/templates/icons/tabler-outline/shield-checkered.svg +21 -0
  11120. skills/ppt-master/templates/icons/tabler-outline/shield-chevron.svg +20 -0
  11121. skills/ppt-master/templates/icons/tabler-outline/shield-code.svg +21 -0
  11122. skills/ppt-master/templates/icons/tabler-outline/shield-cog.svg +26 -0
  11123. skills/ppt-master/templates/icons/tabler-outline/shield-dollar.svg +21 -0
  11124. skills/ppt-master/templates/icons/tabler-outline/shield-down.svg +21 -0
  11125. skills/ppt-master/templates/icons/tabler-outline/shield-exclamation.svg +21 -0
  11126. skills/ppt-master/templates/icons/tabler-outline/shield-half.svg +20 -0
  11127. skills/ppt-master/templates/icons/tabler-outline/shield-heart.svg +20 -0
  11128. skills/ppt-master/templates/icons/tabler-outline/shield-lock.svg +21 -0
  11129. skills/ppt-master/templates/icons/tabler-outline/shield-minus.svg +20 -0
  11130. skills/ppt-master/templates/icons/tabler-outline/shield-off.svg +20 -0
  11131. skills/ppt-master/templates/icons/tabler-outline/shield-pause.svg +21 -0
  11132. skills/ppt-master/templates/icons/tabler-outline/shield-pin.svg +21 -0
  11133. skills/ppt-master/templates/icons/tabler-outline/shield-plus.svg +21 -0
  11134. skills/ppt-master/templates/icons/tabler-outline/shield-question.svg +21 -0
  11135. skills/ppt-master/templates/icons/tabler-outline/shield-search.svg +21 -0
  11136. skills/ppt-master/templates/icons/tabler-outline/shield-share.svg +21 -0
  11137. skills/ppt-master/templates/icons/tabler-outline/shield-star.svg +20 -0
  11138. skills/ppt-master/templates/icons/tabler-outline/shield-up.svg +21 -0
  11139. skills/ppt-master/templates/icons/tabler-outline/shield-x.svg +21 -0
  11140. skills/ppt-master/templates/icons/tabler-outline/shield.svg +19 -0
  11141. skills/ppt-master/templates/icons/tabler-outline/ship-off.svg +22 -0
  11142. skills/ppt-master/templates/icons/tabler-outline/ship.svg +22 -0
  11143. skills/ppt-master/templates/icons/tabler-outline/shirt-off.svg +20 -0
  11144. skills/ppt-master/templates/icons/tabler-outline/shirt-sport.svg +20 -0
  11145. skills/ppt-master/templates/icons/tabler-outline/shirt.svg +19 -0
  11146. skills/ppt-master/templates/icons/tabler-outline/shoe-off.svg +22 -0
  11147. skills/ppt-master/templates/icons/tabler-outline/shoe.svg +22 -0
  11148. skills/ppt-master/templates/icons/tabler-outline/shopping-bag-check.svg +21 -0
  11149. skills/ppt-master/templates/icons/tabler-outline/shopping-bag-discount.svg +23 -0
  11150. skills/ppt-master/templates/icons/tabler-outline/shopping-bag-edit.svg +21 -0
  11151. skills/ppt-master/templates/icons/tabler-outline/shopping-bag-exclamation.svg +22 -0
  11152. skills/ppt-master/templates/icons/tabler-outline/shopping-bag-heart.svg +21 -0
  11153. skills/ppt-master/templates/icons/tabler-outline/shopping-bag-minus.svg +21 -0
  11154. skills/ppt-master/templates/icons/tabler-outline/shopping-bag-plus.svg +22 -0
  11155. skills/ppt-master/templates/icons/tabler-outline/shopping-bag-search.svg +22 -0
  11156. skills/ppt-master/templates/icons/tabler-outline/shopping-bag-x.svg +22 -0
  11157. skills/ppt-master/templates/icons/tabler-outline/shopping-bag.svg +20 -0
  11158. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-bolt.svg +22 -0
  11159. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-cancel.svg +23 -0
  11160. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-check.svg +22 -0
  11161. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-code.svg +23 -0
  11162. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-cog.svg +28 -0
  11163. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-copy.svg +22 -0
  11164. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-discount.svg +24 -0
  11165. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-dollar.svg +23 -0
  11166. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-down.svg +23 -0
  11167. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-exclamation.svg +23 -0
  11168. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-heart.svg +22 -0
  11169. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-minus.svg +22 -0
  11170. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-off.svg +23 -0
  11171. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-pause.svg +23 -0
  11172. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-pin.svg +23 -0
  11173. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-plus.svg +23 -0
  11174. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-question.svg +23 -0
  11175. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-search.svg +23 -0
  11176. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-share.svg +23 -0
  11177. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-star.svg +22 -0
  11178. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-up.svg +23 -0
  11179. skills/ppt-master/templates/icons/tabler-outline/shopping-cart-x.svg +23 -0
  11180. skills/ppt-master/templates/icons/tabler-outline/shopping-cart.svg +22 -0
  11181. skills/ppt-master/templates/icons/tabler-outline/shovel-pitchforks.svg +23 -0
  11182. skills/ppt-master/templates/icons/tabler-outline/shovel.svg +21 -0
  11183. skills/ppt-master/templates/icons/tabler-outline/shredder.svg +20 -0
  11184. skills/ppt-master/templates/icons/tabler-outline/sign-left.svg +22 -0
  11185. skills/ppt-master/templates/icons/tabler-outline/sign-right.svg +22 -0
  11186. skills/ppt-master/templates/icons/tabler-outline/signal-2g.svg +20 -0
  11187. skills/ppt-master/templates/icons/tabler-outline/signal-3g.svg +20 -0
  11188. skills/ppt-master/templates/icons/tabler-outline/signal-4g-plus.svg +23 -0
  11189. skills/ppt-master/templates/icons/tabler-outline/signal-4g.svg +21 -0
  11190. skills/ppt-master/templates/icons/tabler-outline/signal-5g.svg +20 -0
  11191. skills/ppt-master/templates/icons/tabler-outline/signal-6g.svg +20 -0
  11192. skills/ppt-master/templates/icons/tabler-outline/signal-e.svg +20 -0
  11193. skills/ppt-master/templates/icons/tabler-outline/signal-g.svg +19 -0
  11194. skills/ppt-master/templates/icons/tabler-outline/signal-h-plus.svg +23 -0
  11195. skills/ppt-master/templates/icons/tabler-outline/signal-h.svg +21 -0
  11196. skills/ppt-master/templates/icons/tabler-outline/signal-lte.svg +23 -0
  11197. skills/ppt-master/templates/icons/tabler-outline/signature-off.svg +20 -0
  11198. skills/ppt-master/templates/icons/tabler-outline/signature.svg +19 -0
  11199. skills/ppt-master/templates/icons/tabler-outline/sitemap-off.svg +23 -0
  11200. skills/ppt-master/templates/icons/tabler-outline/sitemap.svg +23 -0
  11201. skills/ppt-master/templates/icons/tabler-outline/skateboard-off.svg +22 -0
  11202. skills/ppt-master/templates/icons/tabler-outline/skateboard.svg +21 -0
  11203. skills/ppt-master/templates/icons/tabler-outline/skateboarding.svg +25 -0
  11204. skills/ppt-master/templates/icons/tabler-outline/skew-x.svg +19 -0
  11205. skills/ppt-master/templates/icons/tabler-outline/skew-y.svg +19 -0
  11206. skills/ppt-master/templates/icons/tabler-outline/ski-jumping.svg +24 -0
  11207. skills/ppt-master/templates/icons/tabler-outline/skull.svg +23 -0
  11208. skills/ppt-master/templates/icons/tabler-outline/slash.svg +19 -0
  11209. skills/ppt-master/templates/icons/tabler-outline/slashes.svg +20 -0
  11210. skills/ppt-master/templates/icons/tabler-outline/sleigh.svg +22 -0
  11211. skills/ppt-master/templates/icons/tabler-outline/slice.svg +19 -0
  11212. skills/ppt-master/templates/icons/tabler-outline/slideshow.svg +25 -0
  11213. skills/ppt-master/templates/icons/tabler-outline/smart-home-off.svg +21 -0
  11214. skills/ppt-master/templates/icons/tabler-outline/smart-home.svg +20 -0
  11215. skills/ppt-master/templates/icons/tabler-outline/smoking-no.svg +22 -0
  11216. skills/ppt-master/templates/icons/tabler-outline/smoking.svg +21 -0
  11217. skills/ppt-master/templates/icons/tabler-outline/snowboarding.svg +23 -0
  11218. skills/ppt-master/templates/icons/tabler-outline/snowflake-off.svg +31 -0
  11219. skills/ppt-master/templates/icons/tabler-outline/snowflake.svg +30 -0
  11220. skills/ppt-master/templates/icons/tabler-outline/snowman.svg +23 -0
  11221. skills/ppt-master/templates/icons/tabler-outline/soccer-field.svg +23 -0
  11222. skills/ppt-master/templates/icons/tabler-outline/social-off.svg +26 -0
  11223. skills/ppt-master/templates/icons/tabler-outline/social.svg +25 -0
  11224. skills/ppt-master/templates/icons/tabler-outline/sock.svg +20 -0
  11225. skills/ppt-master/templates/icons/tabler-outline/sofa-off.svg +22 -0
  11226. skills/ppt-master/templates/icons/tabler-outline/sofa.svg +21 -0
  11227. skills/ppt-master/templates/icons/tabler-outline/solar-electricity.svg +22 -0
  11228. skills/ppt-master/templates/icons/tabler-outline/solar-panel-2.svg +28 -0
  11229. skills/ppt-master/templates/icons/tabler-outline/solar-panel.svg +24 -0
  11230. skills/ppt-master/templates/icons/tabler-outline/sort-0-9.svg +21 -0
  11231. skills/ppt-master/templates/icons/tabler-outline/sort-9-0.svg +21 -0
  11232. skills/ppt-master/templates/icons/tabler-outline/sort-a-z.svg +22 -0
  11233. skills/ppt-master/templates/icons/tabler-outline/sort-ascending-2.svg +22 -0
  11234. skills/ppt-master/templates/icons/tabler-outline/sort-ascending-letters.svg +22 -0
  11235. skills/ppt-master/templates/icons/tabler-outline/sort-ascending-numbers.svg +23 -0
  11236. skills/ppt-master/templates/icons/tabler-outline/sort-ascending-shapes.svg +22 -0
  11237. skills/ppt-master/templates/icons/tabler-outline/sort-ascending-small-big.svg +22 -0
  11238. skills/ppt-master/templates/icons/tabler-outline/sort-ascending.svg +23 -0
  11239. skills/ppt-master/templates/icons/tabler-outline/sort-descending-2.svg +22 -0
  11240. skills/ppt-master/templates/icons/tabler-outline/sort-descending-letters.svg +22 -0
  11241. skills/ppt-master/templates/icons/tabler-outline/sort-descending-numbers.svg +23 -0
  11242. skills/ppt-master/templates/icons/tabler-outline/sort-descending-shapes.svg +22 -0
  11243. skills/ppt-master/templates/icons/tabler-outline/sort-descending-small-big.svg +22 -0
  11244. skills/ppt-master/templates/icons/tabler-outline/sort-descending.svg +23 -0
  11245. skills/ppt-master/templates/icons/tabler-outline/sort-z-a.svg +22 -0
  11246. skills/ppt-master/templates/icons/tabler-outline/sos.svg +21 -0
  11247. skills/ppt-master/templates/icons/tabler-outline/soup-off.svg +23 -0
  11248. skills/ppt-master/templates/icons/tabler-outline/soup.svg +22 -0
  11249. skills/ppt-master/templates/icons/tabler-outline/source-code.svg +21 -0
  11250. skills/ppt-master/templates/icons/tabler-outline/space-off.svg +20 -0
  11251. skills/ppt-master/templates/icons/tabler-outline/space.svg +19 -0
  11252. skills/ppt-master/templates/icons/tabler-outline/spaces.svg +21 -0
  11253. skills/ppt-master/templates/icons/tabler-outline/spacing-horizontal.svg +21 -0
  11254. skills/ppt-master/templates/icons/tabler-outline/spacing-vertical.svg +21 -0
  11255. skills/ppt-master/templates/icons/tabler-outline/spade.svg +19 -0
  11256. skills/ppt-master/templates/icons/tabler-outline/sparkles-2.svg +20 -0
  11257. skills/ppt-master/templates/icons/tabler-outline/sparkles.svg +19 -0
  11258. skills/ppt-master/templates/icons/tabler-outline/speakerphone.svg +21 -0
  11259. skills/ppt-master/templates/icons/tabler-outline/speedboat.svg +21 -0
  11260. skills/ppt-master/templates/icons/tabler-outline/sphere-off.svg +21 -0
  11261. skills/ppt-master/templates/icons/tabler-outline/sphere-plus.svg +22 -0
  11262. skills/ppt-master/templates/icons/tabler-outline/sphere.svg +20 -0
  11263. skills/ppt-master/templates/icons/tabler-outline/spider.svg +26 -0
  11264. skills/ppt-master/templates/icons/tabler-outline/spiral-off.svg +20 -0
  11265. skills/ppt-master/templates/icons/tabler-outline/spiral.svg +19 -0
  11266. skills/ppt-master/templates/icons/tabler-outline/sport-billard.svg +21 -0
  11267. skills/ppt-master/templates/icons/tabler-outline/spray.svg +27 -0
  11268. skills/ppt-master/templates/icons/tabler-outline/spy-off.svg +24 -0
  11269. skills/ppt-master/templates/icons/tabler-outline/spy.svg +23 -0
  11270. skills/ppt-master/templates/icons/tabler-outline/sql.svg +22 -0
  11271. skills/ppt-master/templates/icons/tabler-outline/square-arrow-down.svg +21 -0
  11272. skills/ppt-master/templates/icons/tabler-outline/square-arrow-left.svg +21 -0
  11273. skills/ppt-master/templates/icons/tabler-outline/square-arrow-right.svg +21 -0
  11274. skills/ppt-master/templates/icons/tabler-outline/square-arrow-up.svg +21 -0
  11275. skills/ppt-master/templates/icons/tabler-outline/square-asterisk.svg +22 -0
  11276. skills/ppt-master/templates/icons/tabler-outline/square-check.svg +20 -0
  11277. skills/ppt-master/templates/icons/tabler-outline/square-chevron-down.svg +20 -0
  11278. skills/ppt-master/templates/icons/tabler-outline/square-chevron-left.svg +20 -0
  11279. skills/ppt-master/templates/icons/tabler-outline/square-chevron-right.svg +20 -0
  11280. skills/ppt-master/templates/icons/tabler-outline/square-chevron-up.svg +20 -0
  11281. skills/ppt-master/templates/icons/tabler-outline/square-chevrons-down.svg +21 -0
  11282. skills/ppt-master/templates/icons/tabler-outline/square-chevrons-left.svg +21 -0
  11283. skills/ppt-master/templates/icons/tabler-outline/square-chevrons-right.svg +21 -0
  11284. skills/ppt-master/templates/icons/tabler-outline/square-chevrons-up.svg +21 -0
  11285. skills/ppt-master/templates/icons/tabler-outline/square-dashed.svg +19 -0
  11286. skills/ppt-master/templates/icons/tabler-outline/square-dot.svg +20 -0
  11287. skills/ppt-master/templates/icons/tabler-outline/square-f0.svg +22 -0
  11288. skills/ppt-master/templates/icons/tabler-outline/square-f1.svg +22 -0
  11289. skills/ppt-master/templates/icons/tabler-outline/square-f2.svg +22 -0
  11290. skills/ppt-master/templates/icons/tabler-outline/square-f3.svg +22 -0
  11291. skills/ppt-master/templates/icons/tabler-outline/square-f4.svg +23 -0
  11292. skills/ppt-master/templates/icons/tabler-outline/square-f5.svg +22 -0
  11293. skills/ppt-master/templates/icons/tabler-outline/square-f6.svg +22 -0
  11294. skills/ppt-master/templates/icons/tabler-outline/square-f7.svg +22 -0
  11295. skills/ppt-master/templates/icons/tabler-outline/square-f8.svg +22 -0
  11296. skills/ppt-master/templates/icons/tabler-outline/square-f9.svg +22 -0
  11297. skills/ppt-master/templates/icons/tabler-outline/square-forbid-2.svg +20 -0
  11298. skills/ppt-master/templates/icons/tabler-outline/square-forbid.svg +20 -0
  11299. skills/ppt-master/templates/icons/tabler-outline/square-half.svg +24 -0
  11300. skills/ppt-master/templates/icons/tabler-outline/square-key.svg +22 -0
  11301. skills/ppt-master/templates/icons/tabler-outline/square-letter-a.svg +21 -0
  11302. skills/ppt-master/templates/icons/tabler-outline/square-letter-b.svg +20 -0
  11303. skills/ppt-master/templates/icons/tabler-outline/square-letter-c.svg +20 -0
  11304. skills/ppt-master/templates/icons/tabler-outline/square-letter-d.svg +20 -0
  11305. skills/ppt-master/templates/icons/tabler-outline/square-letter-e.svg +21 -0
  11306. skills/ppt-master/templates/icons/tabler-outline/square-letter-f.svg +21 -0
  11307. skills/ppt-master/templates/icons/tabler-outline/square-letter-g.svg +20 -0
  11308. skills/ppt-master/templates/icons/tabler-outline/square-letter-h.svg +21 -0
  11309. skills/ppt-master/templates/icons/tabler-outline/square-letter-i.svg +20 -0
  11310. skills/ppt-master/templates/icons/tabler-outline/square-letter-j.svg +20 -0
  11311. skills/ppt-master/templates/icons/tabler-outline/square-letter-k.svg +22 -0
  11312. skills/ppt-master/templates/icons/tabler-outline/square-letter-l.svg +20 -0
  11313. skills/ppt-master/templates/icons/tabler-outline/square-letter-m.svg +20 -0
  11314. skills/ppt-master/templates/icons/tabler-outline/square-letter-n.svg +20 -0
  11315. skills/ppt-master/templates/icons/tabler-outline/square-letter-o.svg +20 -0
  11316. skills/ppt-master/templates/icons/tabler-outline/square-letter-p.svg +20 -0
  11317. skills/ppt-master/templates/icons/tabler-outline/square-letter-q.svg +21 -0
  11318. skills/ppt-master/templates/icons/tabler-outline/square-letter-r.svg +20 -0
  11319. skills/ppt-master/templates/icons/tabler-outline/square-letter-s.svg +20 -0
  11320. skills/ppt-master/templates/icons/tabler-outline/square-letter-t.svg +21 -0
  11321. skills/ppt-master/templates/icons/tabler-outline/square-letter-u.svg +20 -0
  11322. skills/ppt-master/templates/icons/tabler-outline/square-letter-v.svg +20 -0
  11323. skills/ppt-master/templates/icons/tabler-outline/square-letter-w.svg +20 -0
  11324. skills/ppt-master/templates/icons/tabler-outline/square-letter-x.svg +21 -0
  11325. skills/ppt-master/templates/icons/tabler-outline/square-letter-y.svg +21 -0
  11326. skills/ppt-master/templates/icons/tabler-outline/square-letter-z.svg +20 -0
  11327. skills/ppt-master/templates/icons/tabler-outline/square-minus-2.svg +20 -0
  11328. skills/ppt-master/templates/icons/tabler-outline/square-minus.svg +20 -0
  11329. skills/ppt-master/templates/icons/tabler-outline/square-number-0.svg +20 -0
  11330. skills/ppt-master/templates/icons/tabler-outline/square-number-1.svg +20 -0
  11331. skills/ppt-master/templates/icons/tabler-outline/square-number-2.svg +20 -0
  11332. skills/ppt-master/templates/icons/tabler-outline/square-number-3.svg +20 -0
  11333. skills/ppt-master/templates/icons/tabler-outline/square-number-4.svg +21 -0
  11334. skills/ppt-master/templates/icons/tabler-outline/square-number-5.svg +20 -0
  11335. skills/ppt-master/templates/icons/tabler-outline/square-number-6.svg +20 -0
  11336. skills/ppt-master/templates/icons/tabler-outline/square-number-7.svg +20 -0
  11337. skills/ppt-master/templates/icons/tabler-outline/square-number-8.svg +20 -0
  11338. skills/ppt-master/templates/icons/tabler-outline/square-number-9.svg +20 -0
  11339. skills/ppt-master/templates/icons/tabler-outline/square-off.svg +20 -0
  11340. skills/ppt-master/templates/icons/tabler-outline/square-percentage.svg +22 -0
  11341. skills/ppt-master/templates/icons/tabler-outline/square-plus-2.svg +21 -0
  11342. skills/ppt-master/templates/icons/tabler-outline/square-plus.svg +21 -0
  11343. skills/ppt-master/templates/icons/tabler-outline/square-root-2.svg +21 -0
  11344. skills/ppt-master/templates/icons/tabler-outline/square-root.svg +19 -0
  11345. skills/ppt-master/templates/icons/tabler-outline/square-rotated-asterisk.svg +22 -0
  11346. skills/ppt-master/templates/icons/tabler-outline/square-rotated-forbid-2.svg +20 -0
  11347. skills/ppt-master/templates/icons/tabler-outline/square-rotated-forbid.svg +20 -0
  11348. skills/ppt-master/templates/icons/tabler-outline/square-rotated-off.svg +20 -0
  11349. skills/ppt-master/templates/icons/tabler-outline/square-rotated.svg +19 -0
  11350. skills/ppt-master/templates/icons/tabler-outline/square-rounded-arrow-down.svg +21 -0
  11351. skills/ppt-master/templates/icons/tabler-outline/square-rounded-arrow-left.svg +21 -0
  11352. skills/ppt-master/templates/icons/tabler-outline/square-rounded-arrow-right.svg +21 -0
  11353. skills/ppt-master/templates/icons/tabler-outline/square-rounded-arrow-up.svg +21 -0
  11354. skills/ppt-master/templates/icons/tabler-outline/square-rounded-check.svg +20 -0
  11355. skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevron-down.svg +20 -0
  11356. skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevron-left.svg +20 -0
  11357. skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevron-right.svg +20 -0
  11358. skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevron-up.svg +20 -0
  11359. skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevrons-down.svg +21 -0
  11360. skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevrons-left.svg +21 -0
  11361. skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevrons-right.svg +21 -0
  11362. skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevrons-up.svg +21 -0
  11363. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-a.svg +21 -0
  11364. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-b.svg +20 -0
  11365. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-c.svg +20 -0
  11366. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-d.svg +20 -0
  11367. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-e.svg +21 -0
  11368. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-f.svg +21 -0
  11369. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-g.svg +20 -0
  11370. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-h.svg +21 -0
  11371. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-i.svg +20 -0
  11372. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-j.svg +20 -0
  11373. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-k.svg +22 -0
  11374. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-l.svg +20 -0
  11375. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-m.svg +20 -0
  11376. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-n.svg +20 -0
  11377. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-o.svg +20 -0
  11378. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-p.svg +20 -0
  11379. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-q.svg +21 -0
  11380. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-r.svg +20 -0
  11381. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-s.svg +20 -0
  11382. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-t.svg +21 -0
  11383. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-u.svg +20 -0
  11384. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-v.svg +20 -0
  11385. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-w.svg +20 -0
  11386. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-x.svg +21 -0
  11387. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-y.svg +21 -0
  11388. skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-z.svg +20 -0
  11389. skills/ppt-master/templates/icons/tabler-outline/square-rounded-minus-2.svg +20 -0
  11390. skills/ppt-master/templates/icons/tabler-outline/square-rounded-minus.svg +20 -0
  11391. skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-0.svg +20 -0
  11392. skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-1.svg +20 -0
  11393. skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-2.svg +20 -0
  11394. skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-3.svg +20 -0
  11395. skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-4.svg +21 -0
  11396. skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-5.svg +20 -0
  11397. skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-6.svg +20 -0
  11398. skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-7.svg +20 -0
  11399. skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-8.svg +20 -0
  11400. skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-9.svg +20 -0
  11401. skills/ppt-master/templates/icons/tabler-outline/square-rounded-percentage.svg +22 -0
  11402. skills/ppt-master/templates/icons/tabler-outline/square-rounded-plus-2.svg +21 -0
  11403. skills/ppt-master/templates/icons/tabler-outline/square-rounded-plus.svg +21 -0
  11404. skills/ppt-master/templates/icons/tabler-outline/square-rounded-x.svg +20 -0
  11405. skills/ppt-master/templates/icons/tabler-outline/square-rounded.svg +19 -0
  11406. skills/ppt-master/templates/icons/tabler-outline/square-toggle-horizontal.svg +23 -0
  11407. skills/ppt-master/templates/icons/tabler-outline/square-toggle.svg +23 -0
  11408. skills/ppt-master/templates/icons/tabler-outline/square-x.svg +20 -0
  11409. skills/ppt-master/templates/icons/tabler-outline/square.svg +19 -0
  11410. skills/ppt-master/templates/icons/tabler-outline/squares-diagonal.svg +21 -0
  11411. skills/ppt-master/templates/icons/tabler-outline/squares-selected.svg +23 -0
  11412. skills/ppt-master/templates/icons/tabler-outline/squares.svg +20 -0
  11413. skills/ppt-master/templates/icons/tabler-outline/stack-2.svg +21 -0
  11414. skills/ppt-master/templates/icons/tabler-outline/stack-3.svg +22 -0
  11415. skills/ppt-master/templates/icons/tabler-outline/stack-back.svg +21 -0
  11416. skills/ppt-master/templates/icons/tabler-outline/stack-backward.svg +20 -0
  11417. skills/ppt-master/templates/icons/tabler-outline/stack-forward.svg +20 -0
  11418. skills/ppt-master/templates/icons/tabler-outline/stack-front.svg +21 -0
  11419. skills/ppt-master/templates/icons/tabler-outline/stack-middle.svg +21 -0
  11420. skills/ppt-master/templates/icons/tabler-outline/stack-pop.svg +22 -0
  11421. skills/ppt-master/templates/icons/tabler-outline/stack-push.svg +22 -0
  11422. skills/ppt-master/templates/icons/tabler-outline/stack.svg +20 -0
  11423. skills/ppt-master/templates/icons/tabler-outline/stairs-down.svg +21 -0
  11424. skills/ppt-master/templates/icons/tabler-outline/stairs-up.svg +21 -0
  11425. skills/ppt-master/templates/icons/tabler-outline/stairs.svg +19 -0
  11426. skills/ppt-master/templates/icons/tabler-outline/star-half.svg +19 -0
  11427. skills/ppt-master/templates/icons/tabler-outline/star-off.svg +20 -0
  11428. skills/ppt-master/templates/icons/tabler-outline/star.svg +19 -0
  11429. skills/ppt-master/templates/icons/tabler-outline/stars-off.svg +22 -0
  11430. skills/ppt-master/templates/icons/tabler-outline/stars.svg +21 -0
  11431. skills/ppt-master/templates/icons/tabler-outline/status-change.svg +22 -0
  11432. skills/ppt-master/templates/icons/tabler-outline/steam.svg +26 -0
  11433. skills/ppt-master/templates/icons/tabler-outline/steering-wheel-off.svg +24 -0
  11434. skills/ppt-master/templates/icons/tabler-outline/steering-wheel.svg +23 -0
  11435. skills/ppt-master/templates/icons/tabler-outline/step-into.svg +22 -0
  11436. skills/ppt-master/templates/icons/tabler-outline/step-out.svg +22 -0
  11437. skills/ppt-master/templates/icons/tabler-outline/stereo-glasses.svg +23 -0
  11438. skills/ppt-master/templates/icons/tabler-outline/stethoscope-off.svg +23 -0
  11439. skills/ppt-master/templates/icons/tabler-outline/stethoscope.svg +23 -0
  11440. skills/ppt-master/templates/icons/tabler-outline/sticker-2.svg +20 -0
  11441. skills/ppt-master/templates/icons/tabler-outline/sticker.svg +20 -0
  11442. skills/ppt-master/templates/icons/tabler-outline/stopwatch.svg +22 -0
  11443. skills/ppt-master/templates/icons/tabler-outline/storm-off.svg +23 -0
  11444. skills/ppt-master/templates/icons/tabler-outline/storm.svg +22 -0
  11445. skills/ppt-master/templates/icons/tabler-outline/stretching-2.svg +22 -0
  11446. skills/ppt-master/templates/icons/tabler-outline/stretching.svg +21 -0
  11447. skills/ppt-master/templates/icons/tabler-outline/strikethrough.svg +20 -0
  11448. skills/ppt-master/templates/icons/tabler-outline/stroke-curved.svg +19 -0
  11449. skills/ppt-master/templates/icons/tabler-outline/stroke-dynamic.svg +19 -0
  11450. skills/ppt-master/templates/icons/tabler-outline/stroke-straight.svg +19 -0
  11451. skills/ppt-master/templates/icons/tabler-outline/submarine.svg +21 -0
  11452. skills/ppt-master/templates/icons/tabler-outline/subscript.svg +20 -0
  11453. skills/ppt-master/templates/icons/tabler-outline/subtask.svg +23 -0
  11454. skills/ppt-master/templates/icons/tabler-outline/subtitles-ai.svg +23 -0
  11455. skills/ppt-master/templates/icons/tabler-outline/subtitles-edit.svg +23 -0
  11456. skills/ppt-master/templates/icons/tabler-outline/subtitles-off.svg +23 -0
  11457. skills/ppt-master/templates/icons/tabler-outline/subtitles.svg +23 -0
  11458. skills/ppt-master/templates/icons/tabler-outline/sum-off.svg +20 -0
  11459. skills/ppt-master/templates/icons/tabler-outline/sum.svg +19 -0
  11460. skills/ppt-master/templates/icons/tabler-outline/sun-electricity.svg +25 -0
  11461. skills/ppt-master/templates/icons/tabler-outline/sun-high.svg +27 -0
  11462. skills/ppt-master/templates/icons/tabler-outline/sun-low.svg +27 -0
  11463. skills/ppt-master/templates/icons/tabler-outline/sun-moon.svg +24 -0
  11464. skills/ppt-master/templates/icons/tabler-outline/sun-off.svg +21 -0
  11465. skills/ppt-master/templates/icons/tabler-outline/sun-wind.svg +27 -0
  11466. skills/ppt-master/templates/icons/tabler-outline/sun.svg +20 -0
  11467. skills/ppt-master/templates/icons/tabler-outline/sunglasses.svg +25 -0
  11468. skills/ppt-master/templates/icons/tabler-outline/sunrise.svg +21 -0
  11469. skills/ppt-master/templates/icons/tabler-outline/sunset-2.svg +27 -0
  11470. skills/ppt-master/templates/icons/tabler-outline/sunset.svg +21 -0
  11471. skills/ppt-master/templates/icons/tabler-outline/superscript.svg +20 -0
  11472. skills/ppt-master/templates/icons/tabler-outline/svg.svg +21 -0
  11473. skills/ppt-master/templates/icons/tabler-outline/swimming.svg +21 -0
  11474. skills/ppt-master/templates/icons/tabler-outline/swipe-down.svg +21 -0
  11475. skills/ppt-master/templates/icons/tabler-outline/swipe-left.svg +21 -0
  11476. skills/ppt-master/templates/icons/tabler-outline/swipe-right.svg +21 -0
  11477. skills/ppt-master/templates/icons/tabler-outline/swipe-up.svg +21 -0
  11478. skills/ppt-master/templates/icons/tabler-outline/swipe.svg +20 -0
  11479. skills/ppt-master/templates/icons/tabler-outline/switch-2.svg +22 -0
  11480. skills/ppt-master/templates/icons/tabler-outline/switch-3.svg +22 -0
  11481. skills/ppt-master/templates/icons/tabler-outline/switch-horizontal.svg +22 -0
  11482. skills/ppt-master/templates/icons/tabler-outline/switch-vertical.svg +22 -0
  11483. skills/ppt-master/templates/icons/tabler-outline/switch.svg +23 -0
  11484. skills/ppt-master/templates/icons/tabler-outline/sword-off.svg +21 -0
  11485. skills/ppt-master/templates/icons/tabler-outline/sword.svg +20 -0
  11486. skills/ppt-master/templates/icons/tabler-outline/swords.svg +22 -0
  11487. skills/ppt-master/templates/icons/tabler-outline/table-alias.svg +22 -0
  11488. skills/ppt-master/templates/icons/tabler-outline/table-column.svg +25 -0
  11489. skills/ppt-master/templates/icons/tabler-outline/table-dashed.svg +21 -0
  11490. skills/ppt-master/templates/icons/tabler-outline/table-down.svg +23 -0
  11491. skills/ppt-master/templates/icons/tabler-outline/table-export.svg +23 -0
  11492. skills/ppt-master/templates/icons/tabler-outline/table-heart.svg +22 -0
  11493. skills/ppt-master/templates/icons/tabler-outline/table-import.svg +23 -0
  11494. skills/ppt-master/templates/icons/tabler-outline/table-minus.svg +22 -0
  11495. skills/ppt-master/templates/icons/tabler-outline/table-off.svg +22 -0
  11496. skills/ppt-master/templates/icons/tabler-outline/table-options.svg +28 -0
  11497. skills/ppt-master/templates/icons/tabler-outline/table-plus.svg +23 -0
  11498. skills/ppt-master/templates/icons/tabler-outline/table-row.svg +25 -0
  11499. skills/ppt-master/templates/icons/tabler-outline/table-share.svg +23 -0
  11500. skills/ppt-master/templates/icons/tabler-outline/table-shortcut.svg +23 -0
  11501. skills/ppt-master/templates/icons/tabler-outline/table-spark.svg +22 -0
  11502. skills/ppt-master/templates/icons/tabler-outline/table.svg +21 -0
  11503. skills/ppt-master/templates/icons/tabler-outline/tag-minus.svg +21 -0
  11504. skills/ppt-master/templates/icons/tabler-outline/tag-off.svg +21 -0
  11505. skills/ppt-master/templates/icons/tabler-outline/tag-plus.svg +22 -0
  11506. skills/ppt-master/templates/icons/tabler-outline/tag-starred.svg +21 -0
  11507. skills/ppt-master/templates/icons/tabler-outline/tag.svg +20 -0
  11508. skills/ppt-master/templates/icons/tabler-outline/tags-off.svg +24 -0
  11509. skills/ppt-master/templates/icons/tabler-outline/tags.svg +21 -0
  11510. skills/ppt-master/templates/icons/tabler-outline/tallymark-1.svg +19 -0
  11511. skills/ppt-master/templates/icons/tabler-outline/tallymark-2.svg +20 -0
  11512. skills/ppt-master/templates/icons/tabler-outline/tallymark-3.svg +21 -0
  11513. skills/ppt-master/templates/icons/tabler-outline/tallymark-4.svg +22 -0
  11514. skills/ppt-master/templates/icons/tabler-outline/tallymarks.svg +23 -0
  11515. skills/ppt-master/templates/icons/tabler-outline/tank.svg +21 -0
  11516. skills/ppt-master/templates/icons/tabler-outline/target-arrow.svg +23 -0
  11517. skills/ppt-master/templates/icons/tabler-outline/target-off.svg +22 -0
  11518. skills/ppt-master/templates/icons/tabler-outline/target.svg +21 -0
  11519. skills/ppt-master/templates/icons/tabler-outline/tax-euro.svg +22 -0
  11520. skills/ppt-master/templates/icons/tabler-outline/tax-pound.svg +22 -0
  11521. skills/ppt-master/templates/icons/tabler-outline/tax.svg +23 -0
  11522. skills/ppt-master/templates/icons/tabler-outline/teapot.svg +21 -0
  11523. skills/ppt-master/templates/icons/tabler-outline/telescope-off.svg +23 -0
  11524. skills/ppt-master/templates/icons/tabler-outline/telescope.svg +22 -0
  11525. skills/ppt-master/templates/icons/tabler-outline/temperature-celsius.svg +20 -0
  11526. skills/ppt-master/templates/icons/tabler-outline/temperature-fahrenheit.svg +21 -0
  11527. skills/ppt-master/templates/icons/tabler-outline/temperature-minus.svg +21 -0
  11528. skills/ppt-master/templates/icons/tabler-outline/temperature-off.svg +21 -0
  11529. skills/ppt-master/templates/icons/tabler-outline/temperature-plus.svg +22 -0
  11530. skills/ppt-master/templates/icons/tabler-outline/temperature-snow.svg +27 -0
  11531. skills/ppt-master/templates/icons/tabler-outline/temperature-sun.svg +26 -0
  11532. skills/ppt-master/templates/icons/tabler-outline/temperature.svg +20 -0
  11533. skills/ppt-master/templates/icons/tabler-outline/template-off.svg +24 -0
  11534. skills/ppt-master/templates/icons/tabler-outline/template.svg +23 -0
  11535. skills/ppt-master/templates/icons/tabler-outline/tent-off.svg +20 -0
  11536. skills/ppt-master/templates/icons/tabler-outline/tent.svg +19 -0
  11537. skills/ppt-master/templates/icons/tabler-outline/terminal-2.svg +21 -0
  11538. skills/ppt-master/templates/icons/tabler-outline/terminal.svg +20 -0
  11539. skills/ppt-master/templates/icons/tabler-outline/test-pipe-2.svg +21 -0
  11540. skills/ppt-master/templates/icons/tabler-outline/test-pipe-off.svg +23 -0
  11541. skills/ppt-master/templates/icons/tabler-outline/test-pipe.svg +22 -0
  11542. skills/ppt-master/templates/icons/tabler-outline/tex.svg +24 -0
  11543. skills/ppt-master/templates/icons/tabler-outline/text-caption.svg +21 -0
  11544. skills/ppt-master/templates/icons/tabler-outline/text-color.svg +21 -0
  11545. skills/ppt-master/templates/icons/tabler-outline/text-decrease.svg +21 -0
  11546. skills/ppt-master/templates/icons/tabler-outline/text-direction-ltr.svg +23 -0
  11547. skills/ppt-master/templates/icons/tabler-outline/text-direction-rtl.svg +23 -0
  11548. skills/ppt-master/templates/icons/tabler-outline/text-grammar.svg +25 -0
  11549. skills/ppt-master/templates/icons/tabler-outline/text-increase.svg +22 -0
  11550. skills/ppt-master/templates/icons/tabler-outline/text-orientation.svg +23 -0
  11551. skills/ppt-master/templates/icons/tabler-outline/text-plus.svg +24 -0
  11552. skills/ppt-master/templates/icons/tabler-outline/text-recognition.svg +24 -0
  11553. skills/ppt-master/templates/icons/tabler-outline/text-resize.svg +28 -0
  11554. skills/ppt-master/templates/icons/tabler-outline/text-scan-2.svg +25 -0
  11555. skills/ppt-master/templates/icons/tabler-outline/text-size.svg +24 -0
  11556. skills/ppt-master/templates/icons/tabler-outline/text-spellcheck.svg +21 -0
  11557. skills/ppt-master/templates/icons/tabler-outline/text-wrap-column.svg +22 -0
  11558. skills/ppt-master/templates/icons/tabler-outline/text-wrap-disabled.svg +21 -0
  11559. skills/ppt-master/templates/icons/tabler-outline/text-wrap.svg +21 -0
  11560. skills/ppt-master/templates/icons/tabler-outline/texture.svg +25 -0
  11561. skills/ppt-master/templates/icons/tabler-outline/theater.svg +20 -0
  11562. skills/ppt-master/templates/icons/tabler-outline/thermometer.svg +23 -0
  11563. skills/ppt-master/templates/icons/tabler-outline/thumb-down-off.svg +20 -0
  11564. skills/ppt-master/templates/icons/tabler-outline/thumb-down.svg +19 -0
  11565. skills/ppt-master/templates/icons/tabler-outline/thumb-up-off.svg +20 -0
  11566. skills/ppt-master/templates/icons/tabler-outline/thumb-up.svg +19 -0
  11567. skills/ppt-master/templates/icons/tabler-outline/tic-tac.svg +26 -0
  11568. skills/ppt-master/templates/icons/tabler-outline/ticket-off.svg +22 -0
  11569. skills/ppt-master/templates/icons/tabler-outline/ticket.svg +22 -0
  11570. skills/ppt-master/templates/icons/tabler-outline/tie.svg +20 -0
  11571. skills/ppt-master/templates/icons/tabler-outline/tilde.svg +19 -0
  11572. skills/ppt-master/templates/icons/tabler-outline/tilt-shift-off.svg +28 -0
  11573. skills/ppt-master/templates/icons/tabler-outline/tilt-shift.svg +27 -0
  11574. skills/ppt-master/templates/icons/tabler-outline/time-duration-0.svg +31 -0
  11575. skills/ppt-master/templates/icons/tabler-outline/time-duration-10.svg +30 -0
  11576. skills/ppt-master/templates/icons/tabler-outline/time-duration-15.svg +29 -0
  11577. skills/ppt-master/templates/icons/tabler-outline/time-duration-30.svg +26 -0
  11578. skills/ppt-master/templates/icons/tabler-outline/time-duration-45.svg +24 -0
  11579. skills/ppt-master/templates/icons/tabler-outline/time-duration-5.svg +30 -0
  11580. skills/ppt-master/templates/icons/tabler-outline/time-duration-60.svg +21 -0
  11581. skills/ppt-master/templates/icons/tabler-outline/time-duration-90.svg +21 -0
  11582. skills/ppt-master/templates/icons/tabler-outline/time-duration-off.svg +24 -0
  11583. skills/ppt-master/templates/icons/tabler-outline/timeline-event-exclamation.svg +24 -0
  11584. skills/ppt-master/templates/icons/tabler-outline/timeline-event-minus.svg +23 -0
  11585. skills/ppt-master/templates/icons/tabler-outline/timeline-event-plus.svg +24 -0
  11586. skills/ppt-master/templates/icons/tabler-outline/timeline-event-text.svg +24 -0
  11587. skills/ppt-master/templates/icons/tabler-outline/timeline-event-x.svg +24 -0
  11588. skills/ppt-master/templates/icons/tabler-outline/timeline-event.svg +22 -0
  11589. skills/ppt-master/templates/icons/tabler-outline/timeline.svg +23 -0
  11590. skills/ppt-master/templates/icons/tabler-outline/timezone.svg +25 -0
  11591. skills/ppt-master/templates/icons/tabler-outline/tip-jar-euro.svg +22 -0
  11592. skills/ppt-master/templates/icons/tabler-outline/tip-jar-pound.svg +22 -0
  11593. skills/ppt-master/templates/icons/tabler-outline/tip-jar.svg +23 -0
  11594. skills/ppt-master/templates/icons/tabler-outline/tir.svg +23 -0
  11595. skills/ppt-master/templates/icons/tabler-outline/toggle-left.svg +20 -0
  11596. skills/ppt-master/templates/icons/tabler-outline/toggle-right.svg +20 -0
  11597. skills/ppt-master/templates/icons/tabler-outline/toilet-paper-off.svg +24 -0
  11598. skills/ppt-master/templates/icons/tabler-outline/toilet-paper.svg +23 -0
  11599. skills/ppt-master/templates/icons/tabler-outline/toml.svg +23 -0
  11600. skills/ppt-master/templates/icons/tabler-outline/tool.svg +19 -0
  11601. skills/ppt-master/templates/icons/tabler-outline/tools-kitchen-2-off.svg +23 -0
  11602. skills/ppt-master/templates/icons/tabler-outline/tools-kitchen-2.svg +19 -0
  11603. skills/ppt-master/templates/icons/tabler-outline/tools-kitchen-3.svg +21 -0
  11604. skills/ppt-master/templates/icons/tabler-outline/tools-kitchen-off.svg +24 -0
  11605. skills/ppt-master/templates/icons/tabler-outline/tools-kitchen.svg +23 -0
  11606. skills/ppt-master/templates/icons/tabler-outline/tools-off.svg +25 -0
  11607. skills/ppt-master/templates/icons/tabler-outline/tools.svg +24 -0
  11608. skills/ppt-master/templates/icons/tabler-outline/tooltip.svg +20 -0
  11609. skills/ppt-master/templates/icons/tabler-outline/topology-bus.svg +25 -0
  11610. skills/ppt-master/templates/icons/tabler-outline/topology-complex.svg +28 -0
  11611. skills/ppt-master/templates/icons/tabler-outline/topology-full-hierarchy.svg +31 -0
  11612. skills/ppt-master/templates/icons/tabler-outline/topology-full.svg +28 -0
  11613. skills/ppt-master/templates/icons/tabler-outline/topology-ring-2.svg +24 -0
  11614. skills/ppt-master/templates/icons/tabler-outline/topology-ring-3.svg +26 -0
  11615. skills/ppt-master/templates/icons/tabler-outline/topology-ring.svg +26 -0
  11616. skills/ppt-master/templates/icons/tabler-outline/topology-star-2.svg +27 -0
  11617. skills/ppt-master/templates/icons/tabler-outline/topology-star-3.svg +31 -0
  11618. skills/ppt-master/templates/icons/tabler-outline/topology-star-ring-2.svg +31 -0
  11619. skills/ppt-master/templates/icons/tabler-outline/topology-star-ring-3.svg +37 -0
  11620. skills/ppt-master/templates/icons/tabler-outline/topology-star-ring.svg +31 -0
  11621. skills/ppt-master/templates/icons/tabler-outline/topology-star.svg +27 -0
  11622. skills/ppt-master/templates/icons/tabler-outline/torii.svg +23 -0
  11623. skills/ppt-master/templates/icons/tabler-outline/tornado.svg +23 -0
  11624. skills/ppt-master/templates/icons/tabler-outline/tournament.svg +25 -0
  11625. skills/ppt-master/templates/icons/tabler-outline/tower-off.svg +21 -0
  11626. skills/ppt-master/templates/icons/tabler-outline/tower.svg +20 -0
  11627. skills/ppt-master/templates/icons/tabler-outline/track.svg +19 -0
  11628. skills/ppt-master/templates/icons/tabler-outline/tractor.svg +24 -0
  11629. skills/ppt-master/templates/icons/tabler-outline/trademark.svg +20 -0
  11630. skills/ppt-master/templates/icons/tabler-outline/traffic-cone-off.svg +24 -0
  11631. skills/ppt-master/templates/icons/tabler-outline/traffic-cone.svg +22 -0
  11632. skills/ppt-master/templates/icons/tabler-outline/traffic-lights-off.svg +23 -0
  11633. skills/ppt-master/templates/icons/tabler-outline/traffic-lights.svg +22 -0
  11634. skills/ppt-master/templates/icons/tabler-outline/train.svg +25 -0
  11635. skills/ppt-master/templates/icons/tabler-outline/transaction-bitcoin.svg +27 -0
  11636. skills/ppt-master/templates/icons/tabler-outline/transaction-dollar.svg +24 -0
  11637. skills/ppt-master/templates/icons/tabler-outline/transaction-euro.svg +24 -0
  11638. skills/ppt-master/templates/icons/tabler-outline/transaction-pound.svg +24 -0
  11639. skills/ppt-master/templates/icons/tabler-outline/transaction-rupee.svg +24 -0
  11640. skills/ppt-master/templates/icons/tabler-outline/transaction-yen.svg +26 -0
  11641. skills/ppt-master/templates/icons/tabler-outline/transaction-yuan.svg +25 -0
  11642. skills/ppt-master/templates/icons/tabler-outline/transfer-in.svg +21 -0
  11643. skills/ppt-master/templates/icons/tabler-outline/transfer-out.svg +21 -0
  11644. skills/ppt-master/templates/icons/tabler-outline/transfer-vertical.svg +20 -0
  11645. skills/ppt-master/templates/icons/tabler-outline/transfer.svg +20 -0
  11646. skills/ppt-master/templates/icons/tabler-outline/transform-point-bottom-left.svg +26 -0
  11647. skills/ppt-master/templates/icons/tabler-outline/transform-point-bottom-right.svg +26 -0
  11648. skills/ppt-master/templates/icons/tabler-outline/transform-point-top-left.svg +26 -0
  11649. skills/ppt-master/templates/icons/tabler-outline/transform-point-top-right.svg +26 -0
  11650. skills/ppt-master/templates/icons/tabler-outline/transform-point.svg +26 -0
  11651. skills/ppt-master/templates/icons/tabler-outline/transform.svg +22 -0
  11652. skills/ppt-master/templates/icons/tabler-outline/transition-bottom.svg +22 -0
  11653. skills/ppt-master/templates/icons/tabler-outline/transition-left.svg +22 -0
  11654. skills/ppt-master/templates/icons/tabler-outline/transition-right.svg +22 -0
  11655. skills/ppt-master/templates/icons/tabler-outline/transition-top.svg +22 -0
  11656. skills/ppt-master/templates/icons/tabler-outline/trash-off.svg +25 -0
  11657. skills/ppt-master/templates/icons/tabler-outline/trash-x.svg +22 -0
  11658. skills/ppt-master/templates/icons/tabler-outline/trash.svg +23 -0
  11659. skills/ppt-master/templates/icons/tabler-outline/treadmill.svg +24 -0
  11660. skills/ppt-master/templates/icons/tabler-outline/tree.svg +22 -0
  11661. skills/ppt-master/templates/icons/tabler-outline/trees.svg +24 -0
  11662. skills/ppt-master/templates/icons/tabler-outline/trekking.svg +24 -0
  11663. skills/ppt-master/templates/icons/tabler-outline/trending-down-2.svg +20 -0
  11664. skills/ppt-master/templates/icons/tabler-outline/trending-down-3.svg +20 -0
  11665. skills/ppt-master/templates/icons/tabler-outline/trending-down.svg +20 -0
  11666. skills/ppt-master/templates/icons/tabler-outline/trending-up-2.svg +20 -0
  11667. skills/ppt-master/templates/icons/tabler-outline/trending-up-3.svg +20 -0
  11668. skills/ppt-master/templates/icons/tabler-outline/trending-up-down.svg +22 -0
  11669. skills/ppt-master/templates/icons/tabler-outline/trending-up.svg +20 -0
  11670. skills/ppt-master/templates/icons/tabler-outline/triangle-inverted.svg +19 -0
  11671. skills/ppt-master/templates/icons/tabler-outline/triangle-minus-2.svg +20 -0
  11672. skills/ppt-master/templates/icons/tabler-outline/triangle-minus.svg +20 -0
  11673. skills/ppt-master/templates/icons/tabler-outline/triangle-off.svg +20 -0
  11674. skills/ppt-master/templates/icons/tabler-outline/triangle-plus-2.svg +21 -0
  11675. skills/ppt-master/templates/icons/tabler-outline/triangle-plus.svg +21 -0
  11676. skills/ppt-master/templates/icons/tabler-outline/triangle-square-circle.svg +21 -0
  11677. skills/ppt-master/templates/icons/tabler-outline/triangle.svg +19 -0
  11678. skills/ppt-master/templates/icons/tabler-outline/triangles.svg +20 -0
  11679. skills/ppt-master/templates/icons/tabler-outline/trident.svg +20 -0
  11680. skills/ppt-master/templates/icons/tabler-outline/trolley.svg +23 -0
  11681. skills/ppt-master/templates/icons/tabler-outline/trophy-off.svg +25 -0
  11682. skills/ppt-master/templates/icons/tabler-outline/trophy.svg +24 -0
  11683. skills/ppt-master/templates/icons/tabler-outline/trowel.svg +21 -0
  11684. skills/ppt-master/templates/icons/tabler-outline/truck-delivery.svg +22 -0
  11685. skills/ppt-master/templates/icons/tabler-outline/truck-loading.svg +22 -0
  11686. skills/ppt-master/templates/icons/tabler-outline/truck-off.svg +22 -0
  11687. skills/ppt-master/templates/icons/tabler-outline/truck-return.svg +23 -0
  11688. skills/ppt-master/templates/icons/tabler-outline/truck.svg +21 -0
  11689. skills/ppt-master/templates/icons/tabler-outline/txt.svg +24 -0
  11690. skills/ppt-master/templates/icons/tabler-outline/typeface.svg +22 -0
  11691. skills/ppt-master/templates/icons/tabler-outline/typography-off.svg +25 -0
  11692. skills/ppt-master/templates/icons/tabler-outline/typography.svg +23 -0
  11693. skills/ppt-master/templates/icons/tabler-outline/u-turn-left.svg +20 -0
  11694. skills/ppt-master/templates/icons/tabler-outline/u-turn-right.svg +20 -0
  11695. skills/ppt-master/templates/icons/tabler-outline/ufo-off.svg +26 -0
  11696. skills/ppt-master/templates/icons/tabler-outline/ufo.svg +25 -0
  11697. skills/ppt-master/templates/icons/tabler-outline/uhd.svg +23 -0
  11698. skills/ppt-master/templates/icons/tabler-outline/umbrella-2.svg +20 -0
  11699. skills/ppt-master/templates/icons/tabler-outline/umbrella-closed-2.svg +20 -0
  11700. skills/ppt-master/templates/icons/tabler-outline/umbrella-closed.svg +20 -0
  11701. skills/ppt-master/templates/icons/tabler-outline/umbrella-off.svg +21 -0
  11702. skills/ppt-master/templates/icons/tabler-outline/umbrella.svg +20 -0
  11703. skills/ppt-master/templates/icons/tabler-outline/underline.svg +20 -0
  11704. skills/ppt-master/templates/icons/tabler-outline/universe.svg +23 -0
  11705. skills/ppt-master/templates/icons/tabler-outline/unlink.svg +25 -0
  11706. skills/ppt-master/templates/icons/tabler-outline/upload.svg +21 -0
  11707. skills/ppt-master/templates/icons/tabler-outline/urgent.svg +21 -0
  11708. skills/ppt-master/templates/icons/tabler-outline/usb.svg +25 -0
  11709. skills/ppt-master/templates/icons/tabler-outline/user-bitcoin.svg +21 -0
  11710. skills/ppt-master/templates/icons/tabler-outline/user-bolt.svg +21 -0
  11711. skills/ppt-master/templates/icons/tabler-outline/user-cancel.svg +22 -0
  11712. skills/ppt-master/templates/icons/tabler-outline/user-check.svg +21 -0
  11713. skills/ppt-master/templates/icons/tabler-outline/user-circle.svg +21 -0
  11714. skills/ppt-master/templates/icons/tabler-outline/user-code.svg +22 -0
  11715. skills/ppt-master/templates/icons/tabler-outline/user-cog.svg +27 -0
  11716. skills/ppt-master/templates/icons/tabler-outline/user-dollar.svg +22 -0
  11717. skills/ppt-master/templates/icons/tabler-outline/user-down.svg +22 -0
  11718. skills/ppt-master/templates/icons/tabler-outline/user-edit.svg +21 -0
  11719. skills/ppt-master/templates/icons/tabler-outline/user-exclamation.svg +22 -0
  11720. skills/ppt-master/templates/icons/tabler-outline/user-heart.svg +21 -0
  11721. skills/ppt-master/templates/icons/tabler-outline/user-hexagon.svg +21 -0
  11722. skills/ppt-master/templates/icons/tabler-outline/user-key.svg +23 -0
  11723. skills/ppt-master/templates/icons/tabler-outline/user-minus.svg +21 -0
  11724. skills/ppt-master/templates/icons/tabler-outline/user-off.svg +21 -0
  11725. skills/ppt-master/templates/icons/tabler-outline/user-pause.svg +22 -0
  11726. skills/ppt-master/templates/icons/tabler-outline/user-pentagon.svg +21 -0
  11727. skills/ppt-master/templates/icons/tabler-outline/user-pin.svg +22 -0
  11728. skills/ppt-master/templates/icons/tabler-outline/user-plus.svg +22 -0
  11729. skills/ppt-master/templates/icons/tabler-outline/user-question.svg +22 -0
  11730. skills/ppt-master/templates/icons/tabler-outline/user-scan.svg +24 -0
  11731. skills/ppt-master/templates/icons/tabler-outline/user-screen.svg +21 -0
  11732. skills/ppt-master/templates/icons/tabler-outline/user-search.svg +22 -0
  11733. skills/ppt-master/templates/icons/tabler-outline/user-share.svg +22 -0
  11734. skills/ppt-master/templates/icons/tabler-outline/user-shield.svg +21 -0
  11735. skills/ppt-master/templates/icons/tabler-outline/user-square-rounded.svg +21 -0
  11736. skills/ppt-master/templates/icons/tabler-outline/user-square.svg +21 -0
  11737. skills/ppt-master/templates/icons/tabler-outline/user-star.svg +21 -0
  11738. skills/ppt-master/templates/icons/tabler-outline/user-up.svg +22 -0
  11739. skills/ppt-master/templates/icons/tabler-outline/user-x.svg +22 -0
  11740. skills/ppt-master/templates/icons/tabler-outline/user.svg +20 -0
  11741. skills/ppt-master/templates/icons/tabler-outline/users-group.svg +24 -0
  11742. skills/ppt-master/templates/icons/tabler-outline/users-minus.svg +22 -0
  11743. skills/ppt-master/templates/icons/tabler-outline/users-plus.svg +23 -0
  11744. skills/ppt-master/templates/icons/tabler-outline/users.svg +22 -0
  11745. skills/ppt-master/templates/icons/tabler-outline/uv-index.svg +22 -0
  11746. skills/ppt-master/templates/icons/tabler-outline/ux-circle.svg +22 -0
  11747. skills/ppt-master/templates/icons/tabler-outline/vaccine-bottle-off.svg +24 -0
  11748. skills/ppt-master/templates/icons/tabler-outline/vaccine-bottle.svg +23 -0
  11749. skills/ppt-master/templates/icons/tabler-outline/vaccine-off.svg +25 -0
  11750. skills/ppt-master/templates/icons/tabler-outline/vaccine.svg +25 -0
  11751. skills/ppt-master/templates/icons/tabler-outline/vacuum-cleaner.svg +21 -0
  11752. skills/ppt-master/templates/icons/tabler-outline/variable-minus.svg +22 -0
  11753. skills/ppt-master/templates/icons/tabler-outline/variable-off.svg +23 -0
  11754. skills/ppt-master/templates/icons/tabler-outline/variable-plus.svg +22 -0
  11755. skills/ppt-master/templates/icons/tabler-outline/variable.svg +20 -0
  11756. skills/ppt-master/templates/icons/tabler-outline/vector-bezier-2.svg +25 -0
  11757. skills/ppt-master/templates/icons/tabler-outline/vector-bezier-arc.svg +25 -0
  11758. skills/ppt-master/templates/icons/tabler-outline/vector-bezier-circle.svg +26 -0
  11759. skills/ppt-master/templates/icons/tabler-outline/vector-bezier.svg +27 -0
  11760. skills/ppt-master/templates/icons/tabler-outline/vector-off.svg +27 -0
  11761. skills/ppt-master/templates/icons/tabler-outline/vector-spline.svg +21 -0
  11762. skills/ppt-master/templates/icons/tabler-outline/vector-triangle-off.svg +25 -0
  11763. skills/ppt-master/templates/icons/tabler-outline/vector-triangle.svg +24 -0
  11764. skills/ppt-master/templates/icons/tabler-outline/vector.svg +26 -0
  11765. skills/ppt-master/templates/icons/tabler-outline/venus.svg +21 -0
  11766. skills/ppt-master/templates/icons/tabler-outline/versions-off.svg +22 -0
  11767. skills/ppt-master/templates/icons/tabler-outline/versions.svg +21 -0
  11768. skills/ppt-master/templates/icons/tabler-outline/video-minus.svg +21 -0
  11769. skills/ppt-master/templates/icons/tabler-outline/video-off.svg +21 -0
  11770. skills/ppt-master/templates/icons/tabler-outline/video-plus.svg +22 -0
  11771. skills/ppt-master/templates/icons/tabler-outline/video.svg +20 -0
  11772. skills/ppt-master/templates/icons/tabler-outline/view-360-arrow.svg +20 -0
  11773. skills/ppt-master/templates/icons/tabler-outline/view-360-number.svg +22 -0
  11774. skills/ppt-master/templates/icons/tabler-outline/view-360-off.svg +22 -0
  11775. skills/ppt-master/templates/icons/tabler-outline/view-360.svg +21 -0
  11776. skills/ppt-master/templates/icons/tabler-outline/viewfinder-off.svg +25 -0
  11777. skills/ppt-master/templates/icons/tabler-outline/viewfinder.svg +24 -0
  11778. skills/ppt-master/templates/icons/tabler-outline/viewport-narrow.svg +24 -0
  11779. skills/ppt-master/templates/icons/tabler-outline/viewport-short.svg +24 -0
  11780. skills/ppt-master/templates/icons/tabler-outline/viewport-tall.svg +24 -0
  11781. skills/ppt-master/templates/icons/tabler-outline/viewport-wide.svg +24 -0
  11782. skills/ppt-master/templates/icons/tabler-outline/vinyl.svg +22 -0
  11783. skills/ppt-master/templates/icons/tabler-outline/vip-2.svg +25 -0
  11784. skills/ppt-master/templates/icons/tabler-outline/vip-off.svg +24 -0
  11785. skills/ppt-master/templates/icons/tabler-outline/vip.svg +23 -0
  11786. skills/ppt-master/templates/icons/tabler-outline/virus-off.svg +35 -0
  11787. skills/ppt-master/templates/icons/tabler-outline/virus-search.svg +35 -0
  11788. skills/ppt-master/templates/icons/tabler-outline/virus.svg +35 -0
  11789. skills/ppt-master/templates/icons/tabler-outline/vocabulary-off.svg +24 -0
  11790. skills/ppt-master/templates/icons/tabler-outline/vocabulary.svg +25 -0
  11791. skills/ppt-master/templates/icons/tabler-outline/volcano.svg +23 -0
  11792. skills/ppt-master/templates/icons/tabler-outline/volume-2.svg +20 -0
  11793. skills/ppt-master/templates/icons/tabler-outline/volume-3.svg +20 -0
  11794. skills/ppt-master/templates/icons/tabler-outline/volume-4.svg +19 -0
  11795. skills/ppt-master/templates/icons/tabler-outline/volume-off.svg +22 -0
  11796. skills/ppt-master/templates/icons/tabler-outline/volume.svg +21 -0
  11797. skills/ppt-master/templates/icons/tabler-outline/vs.svg +21 -0
  11798. skills/ppt-master/templates/icons/tabler-outline/walk.svg +22 -0
  11799. skills/ppt-master/templates/icons/tabler-outline/wall-off.svg +27 -0
  11800. skills/ppt-master/templates/icons/tabler-outline/wall.svg +27 -0
  11801. skills/ppt-master/templates/icons/tabler-outline/wallet-off.svg +22 -0
  11802. skills/ppt-master/templates/icons/tabler-outline/wallet.svg +20 -0
  11803. skills/ppt-master/templates/icons/tabler-outline/wallpaper-off.svg +22 -0
  11804. skills/ppt-master/templates/icons/tabler-outline/wallpaper.svg +21 -0
  11805. skills/ppt-master/templates/icons/tabler-outline/wand-off.svg +23 -0
  11806. skills/ppt-master/templates/icons/tabler-outline/wand.svg +22 -0
  11807. skills/ppt-master/templates/icons/tabler-outline/wash-dry-1.svg +21 -0
  11808. skills/ppt-master/templates/icons/tabler-outline/wash-dry-2.svg +22 -0
  11809. skills/ppt-master/templates/icons/tabler-outline/wash-dry-3.svg +23 -0
  11810. skills/ppt-master/templates/icons/tabler-outline/wash-dry-a.svg +21 -0
  11811. skills/ppt-master/templates/icons/tabler-outline/wash-dry-dip.svg +22 -0
  11812. skills/ppt-master/templates/icons/tabler-outline/wash-dry-f.svg +21 -0
  11813. skills/ppt-master/templates/icons/tabler-outline/wash-dry-flat.svg +20 -0
  11814. skills/ppt-master/templates/icons/tabler-outline/wash-dry-hang.svg +20 -0
  11815. skills/ppt-master/templates/icons/tabler-outline/wash-dry-off.svg +20 -0
  11816. skills/ppt-master/templates/icons/tabler-outline/wash-dry-p.svg +20 -0
  11817. skills/ppt-master/templates/icons/tabler-outline/wash-dry-shade.svg +21 -0
  11818. skills/ppt-master/templates/icons/tabler-outline/wash-dry-w.svg +20 -0
  11819. skills/ppt-master/templates/icons/tabler-outline/wash-dry.svg +19 -0
  11820. skills/ppt-master/templates/icons/tabler-outline/wash-dryclean-off.svg +20 -0
  11821. skills/ppt-master/templates/icons/tabler-outline/wash-dryclean.svg +19 -0
  11822. skills/ppt-master/templates/icons/tabler-outline/wash-eco.svg +22 -0
  11823. skills/ppt-master/templates/icons/tabler-outline/wash-gentle.svg +22 -0
  11824. skills/ppt-master/templates/icons/tabler-outline/wash-hand.svg +22 -0
  11825. skills/ppt-master/templates/icons/tabler-outline/wash-machine.svg +24 -0
  11826. skills/ppt-master/templates/icons/tabler-outline/wash-off.svg +21 -0
  11827. skills/ppt-master/templates/icons/tabler-outline/wash-press.svg +21 -0
  11828. skills/ppt-master/templates/icons/tabler-outline/wash-temperature-1.svg +21 -0
  11829. skills/ppt-master/templates/icons/tabler-outline/wash-temperature-2.svg +22 -0
  11830. skills/ppt-master/templates/icons/tabler-outline/wash-temperature-3.svg +23 -0
  11831. skills/ppt-master/templates/icons/tabler-outline/wash-temperature-4.svg +24 -0
  11832. skills/ppt-master/templates/icons/tabler-outline/wash-temperature-5.svg +25 -0
  11833. skills/ppt-master/templates/icons/tabler-outline/wash-temperature-6.svg +26 -0
  11834. skills/ppt-master/templates/icons/tabler-outline/wash-tumble-dry.svg +20 -0
  11835. skills/ppt-master/templates/icons/tabler-outline/wash-tumble-off.svg +21 -0
  11836. skills/ppt-master/templates/icons/tabler-outline/wash.svg +20 -0
  11837. skills/ppt-master/templates/icons/tabler-outline/waterpolo.svg +23 -0
  11838. skills/ppt-master/templates/icons/tabler-outline/wave-saw-tool.svg +19 -0
  11839. skills/ppt-master/templates/icons/tabler-outline/wave-sine.svg +19 -0
  11840. skills/ppt-master/templates/icons/tabler-outline/wave-square.svg +19 -0
  11841. skills/ppt-master/templates/icons/tabler-outline/waves-electricity.svg +22 -0
  11842. skills/ppt-master/templates/icons/tabler-outline/webhook-off.svg +22 -0
  11843. skills/ppt-master/templates/icons/tabler-outline/webhook.svg +21 -0
  11844. skills/ppt-master/templates/icons/tabler-outline/weight.svg +20 -0
  11845. skills/ppt-master/templates/icons/tabler-outline/wheat-off.svg +26 -0
  11846. skills/ppt-master/templates/icons/tabler-outline/wheat.svg +22 -0
  11847. skills/ppt-master/templates/icons/tabler-outline/wheel.svg +26 -0
  11848. skills/ppt-master/templates/icons/tabler-outline/wheelchair-off.svg +25 -0
  11849. skills/ppt-master/templates/icons/tabler-outline/wheelchair.svg +24 -0
  11850. skills/ppt-master/templates/icons/tabler-outline/whirl.svg +23 -0
  11851. skills/ppt-master/templates/icons/tabler-outline/whisk.svg +20 -0
  11852. skills/ppt-master/templates/icons/tabler-outline/wifi-0.svg +19 -0
  11853. skills/ppt-master/templates/icons/tabler-outline/wifi-1.svg +20 -0
  11854. skills/ppt-master/templates/icons/tabler-outline/wifi-2.svg +21 -0
  11855. skills/ppt-master/templates/icons/tabler-outline/wifi-off.svg +23 -0
  11856. skills/ppt-master/templates/icons/tabler-outline/wifi.svg +22 -0
  11857. skills/ppt-master/templates/icons/tabler-outline/wind-electricity.svg +22 -0
  11858. skills/ppt-master/templates/icons/tabler-outline/wind-off.svg +23 -0
  11859. skills/ppt-master/templates/icons/tabler-outline/wind.svg +21 -0
  11860. skills/ppt-master/templates/icons/tabler-outline/windmill-off.svg +23 -0
  11861. skills/ppt-master/templates/icons/tabler-outline/windmill.svg +22 -0
  11862. skills/ppt-master/templates/icons/tabler-outline/window-maximize.svg +22 -0
  11863. skills/ppt-master/templates/icons/tabler-outline/window-minimize.svg +22 -0
  11864. skills/ppt-master/templates/icons/tabler-outline/window-off.svg +22 -0
  11865. skills/ppt-master/templates/icons/tabler-outline/window.svg +21 -0
  11866. skills/ppt-master/templates/icons/tabler-outline/windsock.svg +23 -0
  11867. skills/ppt-master/templates/icons/tabler-outline/wiper-wash.svg +27 -0
  11868. skills/ppt-master/templates/icons/tabler-outline/wiper.svg +21 -0
  11869. skills/ppt-master/templates/icons/tabler-outline/woman.svg +24 -0
  11870. skills/ppt-master/templates/icons/tabler-outline/wood.svg +22 -0
  11871. skills/ppt-master/templates/icons/tabler-outline/world-bolt.svg +24 -0
  11872. skills/ppt-master/templates/icons/tabler-outline/world-cancel.svg +25 -0
  11873. skills/ppt-master/templates/icons/tabler-outline/world-check.svg +24 -0
  11874. skills/ppt-master/templates/icons/tabler-outline/world-code.svg +25 -0
  11875. skills/ppt-master/templates/icons/tabler-outline/world-cog.svg +30 -0
  11876. skills/ppt-master/templates/icons/tabler-outline/world-dollar.svg +25 -0
  11877. skills/ppt-master/templates/icons/tabler-outline/world-down.svg +25 -0
  11878. skills/ppt-master/templates/icons/tabler-outline/world-download.svg +24 -0
  11879. skills/ppt-master/templates/icons/tabler-outline/world-exclamation.svg +25 -0
  11880. skills/ppt-master/templates/icons/tabler-outline/world-heart.svg +24 -0
  11881. skills/ppt-master/templates/icons/tabler-outline/world-latitude.svg +22 -0
  11882. skills/ppt-master/templates/icons/tabler-outline/world-longitude.svg +22 -0
  11883. skills/ppt-master/templates/icons/tabler-outline/world-map.svg +22 -0
  11884. skills/ppt-master/templates/icons/tabler-outline/world-minus.svg +24 -0
  11885. skills/ppt-master/templates/icons/tabler-outline/world-off.svg +24 -0
  11886. skills/ppt-master/templates/icons/tabler-outline/world-pause.svg +25 -0
  11887. skills/ppt-master/templates/icons/tabler-outline/world-pin.svg +25 -0
  11888. skills/ppt-master/templates/icons/tabler-outline/world-plus.svg +25 -0
  11889. skills/ppt-master/templates/icons/tabler-outline/world-question.svg +25 -0
  11890. skills/ppt-master/templates/icons/tabler-outline/world-search.svg +25 -0
  11891. skills/ppt-master/templates/icons/tabler-outline/world-share.svg +25 -0
  11892. skills/ppt-master/templates/icons/tabler-outline/world-star.svg +24 -0
  11893. skills/ppt-master/templates/icons/tabler-outline/world-up.svg +25 -0
  11894. skills/ppt-master/templates/icons/tabler-outline/world-upload.svg +24 -0
  11895. skills/ppt-master/templates/icons/tabler-outline/world-www.svg +27 -0
  11896. skills/ppt-master/templates/icons/tabler-outline/world-x.svg +25 -0
  11897. skills/ppt-master/templates/icons/tabler-outline/world.svg +23 -0
  11898. skills/ppt-master/templates/icons/tabler-outline/wrecking-ball.svg +26 -0
  11899. skills/ppt-master/templates/icons/tabler-outline/writing-off.svg +22 -0
  11900. skills/ppt-master/templates/icons/tabler-outline/writing-sign-off.svg +22 -0
  11901. skills/ppt-master/templates/icons/tabler-outline/writing-sign.svg +21 -0
  11902. skills/ppt-master/templates/icons/tabler-outline/writing.svg +21 -0
  11903. skills/ppt-master/templates/icons/tabler-outline/x-mark.svg +19 -0
  11904. skills/ppt-master/templates/icons/tabler-outline/x-power-y.svg +22 -0
  11905. skills/ppt-master/templates/icons/tabler-outline/x.svg +20 -0
  11906. skills/ppt-master/templates/icons/tabler-outline/xbox-a.svg +21 -0
  11907. skills/ppt-master/templates/icons/tabler-outline/xbox-b.svg +22 -0
  11908. skills/ppt-master/templates/icons/tabler-outline/xbox-x.svg +21 -0
  11909. skills/ppt-master/templates/icons/tabler-outline/xbox-y.svg +21 -0
  11910. skills/ppt-master/templates/icons/tabler-outline/xd.svg +21 -0
  11911. skills/ppt-master/templates/icons/tabler-outline/xxx.svg +24 -0
  11912. skills/ppt-master/templates/icons/tabler-outline/yin-yang.svg +22 -0
  11913. skills/ppt-master/templates/icons/tabler-outline/yoga.svg +22 -0
  11914. skills/ppt-master/templates/icons/tabler-outline/zeppelin-off.svg +21 -0
  11915. skills/ppt-master/templates/icons/tabler-outline/zeppelin.svg +20 -0
  11916. skills/ppt-master/templates/icons/tabler-outline/zero-config.svg +20 -0
  11917. skills/ppt-master/templates/icons/tabler-outline/zip.svg +21 -0
  11918. skills/ppt-master/templates/icons/tabler-outline/zodiac-aquarius.svg +20 -0
  11919. skills/ppt-master/templates/icons/tabler-outline/zodiac-aries.svg +21 -0
  11920. skills/ppt-master/templates/icons/tabler-outline/zodiac-cancer.svg +22 -0
  11921. skills/ppt-master/templates/icons/tabler-outline/zodiac-capricorn.svg +21 -0
  11922. skills/ppt-master/templates/icons/tabler-outline/zodiac-gemini.svg +22 -0
  11923. skills/ppt-master/templates/icons/tabler-outline/zodiac-leo.svg +23 -0
  11924. skills/ppt-master/templates/icons/tabler-outline/zodiac-libra.svg +20 -0
  11925. skills/ppt-master/templates/icons/tabler-outline/zodiac-pisces.svg +21 -0
  11926. skills/ppt-master/templates/icons/tabler-outline/zodiac-sagittarius.svg +21 -0
  11927. skills/ppt-master/templates/icons/tabler-outline/zodiac-scorpio.svg +21 -0
  11928. skills/ppt-master/templates/icons/tabler-outline/zodiac-taurus.svg +20 -0
  11929. skills/ppt-master/templates/icons/tabler-outline/zodiac-virgo.svg +22 -0
  11930. skills/ppt-master/templates/icons/tabler-outline/zoom-cancel.svg +22 -0
  11931. skills/ppt-master/templates/icons/tabler-outline/zoom-check.svg +21 -0
  11932. skills/ppt-master/templates/icons/tabler-outline/zoom-code.svg +22 -0
  11933. skills/ppt-master/templates/icons/tabler-outline/zoom-exclamation.svg +22 -0
  11934. skills/ppt-master/templates/icons/tabler-outline/zoom-in-area.svg +27 -0
  11935. skills/ppt-master/templates/icons/tabler-outline/zoom-in.svg +22 -0
  11936. skills/ppt-master/templates/icons/tabler-outline/zoom-money.svg +22 -0
  11937. skills/ppt-master/templates/icons/tabler-outline/zoom-out-area.svg +26 -0
  11938. skills/ppt-master/templates/icons/tabler-outline/zoom-out.svg +21 -0
  11939. skills/ppt-master/templates/icons/tabler-outline/zoom-pan.svg +24 -0
  11940. skills/ppt-master/templates/icons/tabler-outline/zoom-question.svg +22 -0
  11941. skills/ppt-master/templates/icons/tabler-outline/zoom-replace.svg +23 -0
  11942. skills/ppt-master/templates/icons/tabler-outline/zoom-reset.svg +21 -0
  11943. skills/ppt-master/templates/icons/tabler-outline/zoom-scan.svg +24 -0
  11944. skills/ppt-master/templates/icons/tabler-outline/zoom.svg +20 -0
  11945. skills/ppt-master/templates/icons/tabler-outline/zzz-off.svg +21 -0
  11946. skills/ppt-master/templates/icons/tabler-outline/zzz.svg +20 -0
  11947. skills/ppt-master/templates/layouts/README.md +80 -0
  11948. skills/ppt-master/templates/layouts/academic_defense/01_cover.svg +49 -0
  11949. skills/ppt-master/templates/layouts/academic_defense/02_chapter.svg +36 -0
  11950. skills/ppt-master/templates/layouts/academic_defense/02_toc.svg +63 -0
  11951. skills/ppt-master/templates/layouts/academic_defense/03_content.svg +58 -0
  11952. skills/ppt-master/templates/layouts/academic_defense/04_ending.svg +52 -0
  11953. skills/ppt-master/templates/layouts/academic_defense/design_spec.md +235 -0
  11954. skills/ppt-master/templates/layouts/ai_ops/01_cover.svg +65 -0
  11955. skills/ppt-master/templates/layouts/ai_ops/02_chapter.svg +36 -0
  11956. skills/ppt-master/templates/layouts/ai_ops/02_toc.svg +51 -0
  11957. skills/ppt-master/templates/layouts/ai_ops/03_content.svg +37 -0
  11958. skills/ppt-master/templates/layouts/ai_ops/04_ending.svg +59 -0
  11959. skills/ppt-master/templates/layouts/ai_ops/design_spec.md +324 -0
  11960. skills/ppt-master/templates/layouts/ai_ops/reference_style.svg +154 -0
  11961. skills/ppt-master/templates/layouts/government_blue/01_cover.svg +93 -0
  11962. skills/ppt-master/templates/layouts/government_blue/02_chapter.svg +82 -0
  11963. skills/ppt-master/templates/layouts/government_blue/02_toc.svg +107 -0
  11964. skills/ppt-master/templates/layouts/government_blue/03_content.svg +78 -0
  11965. skills/ppt-master/templates/layouts/government_blue/04_ending.svg +81 -0
  11966. skills/ppt-master/templates/layouts/government_blue/design_spec.md +202 -0
  11967. skills/ppt-master/templates/layouts/government_red/01_cover.svg +73 -0
  11968. skills/ppt-master/templates/layouts/government_red/02_chapter.svg +66 -0
  11969. skills/ppt-master/templates/layouts/government_red/02_toc.svg +88 -0
  11970. skills/ppt-master/templates/layouts/government_red/03_content.svg +66 -0
  11971. skills/ppt-master/templates/layouts/government_red/04_ending.svg +75 -0
  11972. skills/ppt-master/templates/layouts/government_red/design_spec.md +195 -0
  11973. skills/ppt-master/templates/layouts/layouts_index.json +87 -0
  11974. skills/ppt-master/templates/layouts/medical_university/01_cover.svg +71 -0
  11975. skills/ppt-master/templates/layouts/medical_university/02_chapter.svg +50 -0
  11976. skills/ppt-master/templates/layouts/medical_university/02_toc.svg +97 -0
  11977. skills/ppt-master/templates/layouts/medical_university/03_content.svg +78 -0
  11978. skills/ppt-master/templates/layouts/medical_university/04_ending.svg +79 -0
  11979. skills/ppt-master/templates/layouts/medical_university/design_spec.md +237 -0
  11980. skills/ppt-master/templates/layouts/pixel_retro/01_cover.svg +138 -0
  11981. skills/ppt-master/templates/layouts/pixel_retro/02_chapter.svg +130 -0
  11982. skills/ppt-master/templates/layouts/pixel_retro/02_toc.svg +130 -0
  11983. skills/ppt-master/templates/layouts/pixel_retro/03_content.svg +50 -0
  11984. skills/ppt-master/templates/layouts/pixel_retro/04_ending.svg +167 -0
  11985. skills/ppt-master/templates/layouts/pixel_retro/design_spec.md +266 -0
  11986. skills/ppt-master/templates/layouts/psychology_attachment/01_cover.svg +78 -0
  11987. skills/ppt-master/templates/layouts/psychology_attachment/02_chapter.svg +82 -0
  11988. skills/ppt-master/templates/layouts/psychology_attachment/02_toc.svg +115 -0
  11989. skills/ppt-master/templates/layouts/psychology_attachment/03_content.svg +41 -0
  11990. skills/ppt-master/templates/layouts/psychology_attachment/04_ending.svg +100 -0
  11991. skills/ppt-master/templates/layouts/psychology_attachment/design_spec.md +341 -0
  11992. skills/ppt-master/templates/spec_lock_reference.md +143 -0
cli.py ADDED
@@ -0,0 +1,134 @@
1
+ #!/usr/bin/env python3
2
+ """ppt-master CLI — unified entry point for all scripts.
3
+
4
+ Usage:
5
+ ppt-master <command> [args...]
6
+ ppt-master --help
7
+
8
+ Examples:
9
+ ppt-master project init my-project --format ppt169
10
+ ppt-master pdf-to-md report.pdf
11
+ ppt-master svg-to-pptx projects/my-project
12
+ """
13
+
14
+ import os
15
+ import subprocess
16
+ import sys
17
+
18
+ SCRIPTS_DIR = os.path.join(
19
+ os.path.dirname(os.path.abspath(__file__)),
20
+ "skills", "ppt-master", "scripts"
21
+ )
22
+
23
+ COMMANDS = {
24
+ "project": "project_manager.py",
25
+ "pdf-to-md": "source_to_md/pdf_to_md.py",
26
+ "doc-to-md": "source_to_md/doc_to_md.py",
27
+ "excel-to-md": "source_to_md/excel_to_md.py",
28
+ "ppt-to-md": "source_to_md/ppt_to_md.py",
29
+ "web-to-md": "source_to_md/web_to_md.py",
30
+ "analyze-images": "analyze_images.py",
31
+ "image-gen": "image_gen.py",
32
+ "image-search": "image_search.py",
33
+ "latex-render": "latex_render.py",
34
+ "svg-quality-check": "svg_quality_checker.py",
35
+ "total-md-split": "total_md_split.py",
36
+ "finalize-svg": "finalize_svg.py",
37
+ "svg-to-pptx": "svg_to_pptx.py",
38
+ "check-annotations": "check_annotations.py",
39
+ "animation-config": "animation_config.py",
40
+ "notes-to-audio": "notes_to_audio.py",
41
+ "pptx-template-import": "pptx_template_import.py",
42
+ "template-fill-pptx": "template_fill_pptx.py",
43
+ "svg-editor": "svg_editor/server.py",
44
+ "update-spec": "update_spec.py",
45
+ "visual-review": "visual_review.py",
46
+ "svg-position-calc": "svg_position_calculator.py",
47
+ "rotate-images": "rotate_images.py",
48
+ "update-repo": "update_repo.py",
49
+ "generate-examples-index": "generate_examples_index.py",
50
+ "batch-validate": "batch_validate.py",
51
+ "gemini-watermark-remove": "gemini_watermark_remover.py",
52
+ "pptx-animations": "pptx_animations.py",
53
+ "check-deps-sync": "check_deps_sync.py",
54
+ "pptx-to-svg": "pptx_to_svg.py",
55
+ "error-helper": "error_helper.py",
56
+ "project-utils": "project_utils.py",
57
+ "config": "config.py",
58
+ "register-template": "register_template.py",
59
+ }
60
+
61
+ COMMAND_DESCRIPTIONS = {
62
+ "project": "Create/validate/manage PPT projects",
63
+ "pdf-to-md": "Convert PDF to Markdown",
64
+ "doc-to-md": "Convert DOCX/HTML/EPUB to Markdown",
65
+ "excel-to-md": "Convert Excel to Markdown",
66
+ "ppt-to-md": "Convert PPTX to Markdown",
67
+ "web-to-md": "Convert URL/webpage to Markdown",
68
+ "analyze-images": "Analyze images and compute layout sizes",
69
+ "image-gen": "AI image generation (multi-backend)",
70
+ "image-search": "Search and download web images",
71
+ "latex-render": "Render LaTeX formulas to PNG",
72
+ "svg-quality-check": "Validate SVG against PPT constraints",
73
+ "total-md-split": "Split total.md into per-page files",
74
+ "finalize-svg": "Post-process SVGs (icons, images, text)",
75
+ "svg-to-pptx": "Export SVGs to PPTX",
76
+ "check-annotations": "Scan SVGs for edit annotations",
77
+ "animation-config": "Create/validate animation configuration",
78
+ "notes-to-audio": "Generate per-slide narration audio (TTS)",
79
+ "pptx-template-import": "Extract SVG references from PPTX template",
80
+ "template-fill-pptx": "Fill content into PPTX template",
81
+ "svg-editor": "Launch web-based SVG editor (live preview)",
82
+ "update-spec": "Propagate color/font changes to all SVGs",
83
+ "visual-review": "Visual review via Playwright (PNG renderer)",
84
+ "svg-position-calc": "Chart coordinate calculator",
85
+ "rotate-images": "Rotate images (EXIF + manual)",
86
+ "update-repo": "Git pull + uv sync repository updater",
87
+ "generate-examples-index": "Generate examples README index",
88
+ "batch-validate": "Batch project validator",
89
+ "gemini-watermark-remove": "Remove watermarks from Gemini images",
90
+ "pptx-animations": "Animation demo and list utilities",
91
+ "check-deps-sync": "Verify dependency manifest sync",
92
+ "pptx-to-svg": "Convert PPTX to SVG",
93
+ "error-helper": "Error explanation lookup",
94
+ "project-utils": "Project utility helpers",
95
+ "config": "List canvas formats and color presets",
96
+ "register-template": "Register layout template",
97
+ }
98
+
99
+ def main(argv: list[str] | None = None) -> int:
100
+ if argv is None:
101
+ argv = sys.argv
102
+
103
+ if len(argv) < 2 or any(a in ("-h", "--help") for a in argv[1:]):
104
+ print("Usage: ppt-master <command> [args...]")
105
+ print("\nCommands:")
106
+ width = max(len(k) for k in COMMANDS) + 2
107
+ for name in sorted(COMMANDS):
108
+ desc = COMMAND_DESCRIPTIONS.get(name, "")
109
+ print(f" {name:<{width}}{desc}")
110
+ return 0
111
+
112
+ cmd = argv[1]
113
+ args = argv[2:]
114
+
115
+ script_rel = COMMANDS.get(cmd)
116
+ if script_rel is None:
117
+ print(f"Unknown command: {cmd}", file=sys.stderr)
118
+ print("Run 'ppt-master' without arguments to list commands.", file=sys.stderr)
119
+ return 1
120
+
121
+ script_path = os.path.join(SCRIPTS_DIR, script_rel)
122
+ if not os.path.isfile(script_path):
123
+ print(f"Script not found: {script_path}", file=sys.stderr)
124
+ return 1
125
+
126
+ try:
127
+ result = subprocess.run([sys.executable, script_path, *args])
128
+ except KeyboardInterrupt:
129
+ return 130
130
+ return result.returncode
131
+
132
+
133
+ if __name__ == "__main__":
134
+ raise SystemExit(main())
@@ -0,0 +1,406 @@
1
+ Metadata-Version: 2.4
2
+ Name: ppt-master
3
+ Version: 0.1.0
4
+ Summary: AI-driven multi-format SVG content generation system
5
+ Author: elvisw
6
+ License: MIT
7
+ Project-URL: Repository, https://github.com/elvisw/ppt-master
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.12
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.12
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: python-pptx>=0.6.21
16
+ Requires-Dist: edge-tts>=7.2.8
17
+ Requires-Dist: svglib>=1.5.0
18
+ Requires-Dist: reportlab>=4.0.0
19
+ Requires-Dist: PyMuPDF>=1.23.0
20
+ Requires-Dist: mammoth>=1.6.0
21
+ Requires-Dist: markdownify>=0.11.6
22
+ Requires-Dist: ebooklib>=0.18
23
+ Requires-Dist: nbconvert>=7.0.0
24
+ Requires-Dist: openpyxl>=3.1.0
25
+ Requires-Dist: Pillow>=9.0.0
26
+ Requires-Dist: numpy>=1.20.0
27
+ Requires-Dist: requests>=2.31.0
28
+ Requires-Dist: beautifulsoup4>=4.12.0
29
+ Requires-Dist: curl_cffi>=0.7.0
30
+ Requires-Dist: google-genai>=1.0.0
31
+ Requires-Dist: openai>=1.0.0
32
+ Requires-Dist: flask>=3.0.0
33
+ Dynamic: license-file
34
+
35
+ # PPT Master — AI generates natively editable PPTX from any document
36
+
37
+ [![Version](https://img.shields.io/badge/version-v2.9.0-blue.svg)](https://github.com/hugohe3/ppt-master/releases)
38
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
39
+ [![GitHub stars](https://img.shields.io/github/stars/hugohe3/ppt-master.svg)](https://github.com/hugohe3/ppt-master/stargazers)
40
+ [![AtomGit stars](https://atomgit.com/hugohe3/ppt-master/star/badge.svg)](https://atomgit.com/hugohe3/ppt-master)
41
+
42
+ English | [中文](./README_CN.md)
43
+
44
+ <p align="center">
45
+ <sub>This project is kept free and open source with the support of <a href="https://www.packyapi.com/register?aff=ppt-master">PackyCode</a>, <a href="https://apikey.fun/register?aff=PPT-MASTER">APIKEY.FUN</a> and other sponsors.</sub>
46
+ </p>
47
+
48
+ <table>
49
+ <tr>
50
+ <td width="180"><a href="https://www.packyapi.com/register?aff=ppt-master"><img src="docs/assets/sponsors/packycode.png" alt="PackyCode" width="150"></a></td>
51
+ <td>Thanks to PackyCode for sponsoring this project! PackyCode is a reliable and efficient API relay service provider, offering relay services for Claude Code, Codex, Gemini, and more. PackyCode provides special discounts for our project users: register using <a href="https://www.packyapi.com/register?aff=ppt-master">this link</a> and enter the promo code <strong>ppt-master</strong> during recharge to get 10% off.</td>
52
+ </tr>
53
+ <tr>
54
+ <td width="180"><a href="https://apikey.fun/register?aff=PPT-MASTER"><img src="docs/assets/sponsors/apikey-fun.png" alt="APIKEY.FUN" width="150"></a></td>
55
+ <td>Thanks to APIKEY.FUN for sponsoring this project! APIKEY.FUN is a professional enterprise-grade AI relay service committed to stable, efficient, and low-cost AI access for businesses and developers. The platform supports mainstream models including Claude, OpenAI, and Gemini, with prices as low as <strong>7% of official rates</strong>. Register through <a href="https://apikey.fun/register?aff=PPT-MASTER">our dedicated link</a> for an exclusive perk: <strong>up to 5% off on top-ups, permanently</strong>.</td>
56
+ </tr>
57
+ </table>
58
+
59
+ > [!IMPORTANT]
60
+ > ### This is a tool, not a wishing well
61
+ > Don't expect it to hand you a finished, perfect deck in one shot. Its real value is taking most of the tedious work off your plate; the polishing that's left is yours — a natively editable deck exists precisely so you can keep working on it, not a flat image you can't touch. The cheaper the model, the more there is to do. How good the result turns out comes down to your skill with this project and with PowerPoint.
62
+
63
+ <p align="center">
64
+ <a href="https://hugohe3.github.io/ppt-master/"><strong>Live Demo</strong></a> ·
65
+ <a href="https://www.hehugo.com/"><strong>About Hugo He</strong></a> ·
66
+ <a href="./examples/"><strong>Examples</strong></a> ·
67
+ <a href="./docs/faq.md"><strong>FAQ</strong></a> ·
68
+ <a href="./docs/roadmap.md"><strong>Roadmap</strong></a> ·
69
+ <a href="mailto:heyug3@gmail.com"><strong>Contact</strong></a>
70
+ </p>
71
+
72
+ <h3 align="center">Download the new <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_attention_is_all_you_need/exports/attention_is_all_you_need_narrated.pptx">narrated <em>Attention Is All You Need</em> deck</a> — play it in PowerPoint and every slide reads itself out loud. That's just the tip of what PPT Master can do.</h3>
73
+ <h3 align="center">Of course, you can also download any of the six example decks below — opening the raw .pptx in PowerPoint is the fastest way to see this project's real capability ceiling.</h3>
74
+
75
+ <table>
76
+ <tr>
77
+ <td align="center" width="33%">
78
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_pritzker_2026"><img src="docs/assets/screenshots/preview_pritzker_2026.png" alt="Editorial magazine — Pritzker 2026 architecture review" /></a><br/>
79
+ <sub><b>Editorial Magazine</b> — architecture photography, calm typographic grid<br/>
80
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_pritzker_2026">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_pritzker_2026/exports/pritzker_2026.pptx">Download .pptx</a></sub>
81
+ </td>
82
+ <td align="center" width="33%">
83
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_global_ai_capital_2026"><img src="docs/assets/screenshots/preview_global_ai_capital.png" alt="Data journalism — Global AI Capital 2026" /></a><br/>
84
+ <sub><b>Data Journalism</b> — Bloomberg-style dark dashboard, chart-driven<br/>
85
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_global_ai_capital_2026">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_global_ai_capital_2026/exports/global_ai_capital_2026.pptx">Download .pptx</a></sub>
86
+ </td>
87
+ <td align="center" width="33%">
88
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_swiss_grid_systems"><img src="docs/assets/screenshots/preview_swiss_grid.png" alt="Swiss typographic grid — Grid Systems primer" /></a><br/>
89
+ <sub><b>Swiss Grid</b> — strict modular grid, restrained type, red-accent<br/>
90
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_swiss_grid_systems">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_swiss_grid_systems/exports/swiss_grid_systems.pptx">Download .pptx</a></sub>
91
+ </td>
92
+ </tr>
93
+ <tr>
94
+ <td align="center" width="33%">
95
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_glassmorphism_demo"><img src="docs/assets/screenshots/preview_glassmorphism_demo.png" alt="Glassmorphism SaaS — AI Agent engineering demo" /></a><br/>
96
+ <sub><b>Glassmorphism SaaS</b> — translucent layers, gradient depth, product UI<br/>
97
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_glassmorphism_demo">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_glassmorphism_demo/exports/glassmorphism_demo.pptx">Download .pptx</a></sub>
98
+ </td>
99
+ <td align="center" width="33%">
100
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_sugar_rush_memphis"><img src="docs/assets/screenshots/preview_sugar_rush_memphis.png" alt="Memphis pop — Sugar Rush festival" /></a><br/>
101
+ <sub><b>Memphis Pop</b> — bold primaries, geometric patterns, playful energy<br/>
102
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_sugar_rush_memphis">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_sugar_rush_memphis/exports/sugar_rush_memphis.pptx">Download .pptx</a></sub>
103
+ </td>
104
+ <td align="center" width="33%">
105
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_indie_bookstore_zine_guide"><img src="docs/assets/screenshots/preview_indie_bookstore_zine.png" alt="Risograph zine — Indie bookstore guide" /></a><br/>
106
+ <sub><b>Risograph Zine</b> — duotone print, hand-made bookstore-culture feel<br/>
107
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_indie_bookstore_zine_guide">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_indie_bookstore_zine_guide/exports/indie_bookstore_zine_guide.pptx">Download .pptx</a></sub>
108
+ </td>
109
+ </tr>
110
+ </table>
111
+
112
+ <p align="center">
113
+ <sub>Generated with Claude Opus 4.7 + <code>gpt-image-2</code>. <a href="https://hugohe3.github.io/ppt-master/">Flip through all examples online →</a> · <a href="./examples/"><code>examples/</code> directory</a> · <a href="./docs/why-ppt-master.md">Why PPT Master?</a></sub>
114
+ </p>
115
+
116
+ ---
117
+
118
+ Drop in your source material and get back a **real PowerPoint**: directly editable, with native slide transitions and entrance animations, speaker notes you can turn into audio narration, and the option to follow your own PPT template — a complete deck you can present as-is and keep editing. How to use each capability → [Getting Started](./docs/getting-started.md).
119
+
120
+ > **⚠️ PPT Master is a harness, not a complete agent.** `harness + model = agent` — the tool owns the workflow; the model sets the ceiling. To form a genuinely high-quality agent, use **Claude with a large context window (~1M tokens) + AI image generation (`gpt-image-2`)**. Other models can run the pipeline but cannot reach the same quality ceiling. If results disappoint, upgrade the model — don't blame the harness.
121
+
122
+ > **How it works** — PPT Master is a workflow (a "skill") that works inside AI IDEs like Claude Code, Cursor, VS Code + Copilot, or Codebuddy. You chat with the AI — "make a deck from this PDF" — and it follows the workflow to produce a real editable `.pptx` on your computer. No coding on your side; the IDE is just where the conversation happens.
123
+ >
124
+ > **What you'll do**: install Python, install an AI IDE, drop in your material.
125
+
126
+ > **Why it's shaped this way** — knowing how to use Python and AI agents will matter more and more. This project is meant to show how far you can go with just those two things. There's a learning curve if you're starting cold, but it's the curve worth climbing. Making a deck is just the excuse — what I'm really pushing is Python and agents.
127
+
128
+ PPT Master is different:
129
+
130
+ - **Real PowerPoint** — if a file can't be opened and edited in PowerPoint, it shouldn't be called a PPT. Every element PPT Master outputs is directly clickable and editable
131
+ - **Transparent, predictable cost** — the tool is free and open source; the only cost is your AI model usage. As AI tools move to usage-based billing, you pay exactly what you consume — no separate PPT subscription added on top
132
+ - **Data stays local** — your files shouldn't have to be uploaded to someone else's server just to make a presentation. Apart from AI model communication, the entire pipeline runs on your machine
133
+ - **No platform lock-in** — your workflow shouldn't be held hostage by any single company. Works with Claude Code, Cursor, VS Code Copilot, and more; supports Claude, GPT, Gemini, Kimi, and other models
134
+
135
+ AI presentation tools roughly fall into four categories. PPT Master only does the last one:
136
+
137
+ | Category | Output | Editable element-by-element in PowerPoint? |
138
+ |---|---|:---:|
139
+ | Template fill-in | PPTX built from a fixed template | Partially — limited by the template |
140
+ | Image-based | One large image per slide, packed into PPTX | ❌ each slide is a picture |
141
+ | HTML presentation | Web-based deck | ❌ not a PPTX |
142
+ | **Native editable (PPT Master)** | **Real DrawingML shapes, text boxes, charts** | ✅ click any element to edit |
143
+
144
+ ---
145
+
146
+ ## The person using it matters more
147
+
148
+ The examples above were all made in a single pass — I didn't even refine them; spend some time polishing and it's a different story entirely. With the same PowerPoint, a designer can produce something stunning while most people only ever touch a few basic features — the difference isn't the tool, it's the person using it. If you can't get there yet, it's most likely that you haven't learned the workflow — start with [Getting Started](./docs/getting-started.md) and the example projects.
149
+
150
+ The best results do need Claude. Before you call it expensive, think about what it would cost to hire someone to produce a deck at the same level. The project also supports GPT, Gemini, Kimi, and other models — the results simply differ. Expecting top-tier output while paying the lowest possible cost was never reasonable to begin with.
151
+
152
+ ---
153
+
154
+ ## Built by Hugo He
155
+
156
+ I'm a finance professional (CPA · CPV · Consulting Engineer (Investment)) who regularly reviews and edits presentation decks. I wanted AI-generated slides to remain editable in PowerPoint, not flattened into images — so I built this.
157
+
158
+ 🌐 [Personal website](https://www.hehugo.com/) · 📧 [heyug3@gmail.com](mailto:heyug3@gmail.com) · 🐙 [@hugohe3](https://github.com/hugohe3)
159
+
160
+ ---
161
+
162
+ ## Quick Start
163
+
164
+ ### 1. Prerequisites
165
+
166
+ **You only need Python and uv.** uv is a Python package manager. `uv sync` installs all dependencies into an isolated virtual environment — no global pollution.
167
+
168
+ | Dependency | Required? | What it does |
169
+ |------------|:---------:|--------------|
170
+ | [Python](https://www.python.org/downloads/) 3.10+ | ✅ **Yes** | Core runtime |
171
+ | [uv](https://docs.astral.sh/uv/getting-started/installation/) | ✅ **Yes** | Python package manager — isolated environments, no global pollution |
172
+
173
+ > **TL;DR** — Install Python and uv, run `uv sync`, and you're ready to generate presentations.
174
+
175
+ <details open>
176
+ <summary><strong>Windows</strong> — see the dedicated step-by-step guide ⚠️</summary>
177
+
178
+ Windows requires a few extra steps (PATH setup, execution policy, etc.). We wrote a **step-by-step guide** specifically for Windows users:
179
+
180
+ **📖 [Windows Installation Guide](./docs/windows-installation.md)** — from zero to a working presentation in 10 minutes.
181
+
182
+ Quick version: download Python from [python.org](https://www.python.org/downloads/) → **check "Add to PATH"** during install → install [uv](https://docs.astral.sh/uv/getting-started/installation/) → `uv sync` → done.
183
+ </details>
184
+
185
+ <details>
186
+ <summary><strong>macOS / Linux</strong> — install and go</summary>
187
+
188
+ ```bash
189
+ # macOS
190
+ brew install python uv
191
+ uv sync
192
+
193
+ # Ubuntu / Debian
194
+ sudo apt install python3
195
+ curl -LsSf https://astral.sh/uv/install.sh | sh
196
+ uv sync
197
+ ```
198
+ </details>
199
+
200
+ <details>
201
+ <summary><strong>Edge-case fallback</strong> — 99% of users don't need this</summary>
202
+
203
+ **Pandoc** — only needed for legacy document formats: `.doc`, `.odt`, `.rtf`, `.tex`, `.rst`, `.org`, or `.typ`. `.docx`, `.html`, `.epub`, `.ipynb` are handled natively by Python — no pandoc required.
204
+
205
+ ```bash
206
+ # macOS
207
+ brew install pandoc
208
+
209
+ # Ubuntu / Debian
210
+ sudo apt install pandoc
211
+ ```
212
+ </details>
213
+
214
+ ### 2. Pick an Agent
215
+
216
+ PPT Master runs in **any tool with agent capability** — read/write files, execute commands, and sustain multi-turn conversation.
217
+
218
+ | Type | Examples | Notes |
219
+ |---|---|---|
220
+ | **IDE-native agent** | • VS Code architecture ([VS Code](https://code.visualstudio.com/) itself, plus forks & derivatives): [Cursor](https://cursor.sh/), Trae, Codebuddy IDE, [Windsurf](https://codeium.com/windsurf), Void, etc.<br>• Other architectures: [Zed](https://zed.dev/), etc. | Editor with a built-in agent |
221
+ | **IDE plugin / extension** | [GitHub Copilot](https://github.com/features/copilot), [Claude Code](https://claude.ai/code) (VS Code / JetBrains extension), [Cline](https://cline.bot/), [Continue](https://continue.dev/), Roo Code, etc. | Installed inside hosts like VS Code or JetBrains |
222
+ | **CLI agent** | [Claude Code](https://claude.ai/code) CLI, [Codex CLI](https://github.com/openai/codex), [Aider](https://aider.chat/), Gemini CLI, etc. | Runs in the terminal; suits scripting, remote, or server use |
223
+
224
+ > **Model recommendation**: for the best results, use **Claude Opus** with `gpt-image-2`; **Gemini 3.5 Flash** currently offers great overall value for money — notably fast and well worth a try.
225
+
226
+ **🔑 Want to use Claude / GPT / Gemini but don't have access yet?** Project sponsors **[PackyCode](https://www.packyapi.com/register?aff=ppt-master)** and **[APIKEY.FUN](https://apikey.fun/register?aff=PPT-MASTER)** can help — both offer pay-as-you-go access to Claude, GPT, Gemini and more, no subscription required. **PackyCode**: 10% off with promo code **`ppt-master`** at top-up. **APIKEY.FUN**: prices as low as **7% of official rates**; register via our link for an exclusive permanent discount of up to 5% on top-ups.
227
+
228
+ ### 3. Set Up
229
+
230
+ **Option A — Download ZIP** (no Git required): click **Code → Download ZIP** on the [GitHub page](https://github.com/hugohe3/ppt-master), then unzip.
231
+
232
+ **Option B — Git clone** (requires [Git](https://git-scm.com/downloads) installed):
233
+
234
+ ```bash
235
+ git clone https://github.com/hugohe3/ppt-master.git
236
+ cd ppt-master
237
+ ```
238
+
239
+ Then install dependencies:
240
+
241
+ ```bash
242
+ uv sync
243
+ ```
244
+
245
+ > ⚠️ **Two install options**:
246
+ >
247
+ > **Local build** (from repo root):
248
+ > ```bash
249
+ > uv build --wheel # Pre-build (~4min, one-time)
250
+ > mv dist/ppt_master-*.whl dist/ppt-master-latest-py3-none-any.whl
251
+ > uv tool install ppt-master-latest-py3-none-any.whl # Installs instantly
252
+ > ```
253
+ >
254
+ > **Direct download** (no repo needed):
255
+ > ```bash
256
+ > curl -LO https://github.com/elvisw/ppt-master/releases/latest/download/ppt-master-latest-py3-none-any.whl
257
+ > uv tool install ppt-master-latest-py3-none-any.whl
258
+ > ```
259
+
260
+ To update later (Option A / B): `uvx ppt-master update-repo`
261
+
262
+ > **Option C — Skill marketplace**: the repo ships `.claude-plugin/marketplace.json`, so it can be installed through the [Claude Code plugin marketplace](https://code.claude.com/docs/en/plugin-marketplaces) ecosystem:
263
+ >
264
+ > ```bash
265
+ > # Cross-agent CLI (Claude Code, Cursor, Codex, etc.)
266
+ > npx skills add hugohe3/ppt-master
267
+ >
268
+ > # Or inside Claude Code
269
+ > /plugin marketplace add hugohe3/ppt-master
270
+ > /plugin install ppt-master@ppt-master
271
+ > ```
272
+ >
273
+ > Both install paths above only fetch the skill files (not the full repo); you still need to `uv sync` from the installed location for the post-processing scripts to run.
274
+
275
+ ### 4. Create
276
+
277
+ **Provide source materials (recommended):** Place your PDF, DOCX, images, or other files in the `projects/` directory, then tell the AI chat panel which files to use. The quickest way to get the path: right-click the file in your file manager or IDE sidebar → **Copy Path** (or **Copy Relative Path**) and paste it directly into the chat.
278
+
279
+ ```
280
+ You: Please create a PPT from projects/q3-report/sources/report.pdf
281
+ ```
282
+
283
+ **Paste content directly:** You can also paste text content straight into the chat window and the AI will generate a PPT from it.
284
+
285
+ ```
286
+ You: Please turn the following into a PPT: [paste your content here...]
287
+ ```
288
+
289
+ Either way, the AI will first confirm the design spec:
290
+
291
+ ```
292
+ AI: Sure. Let's confirm the design spec:
293
+ [Template] B) Free design
294
+ [Format] PPT 16:9
295
+ [Pages] 8-10 pages
296
+ ...
297
+ ```
298
+
299
+ The AI handles everything — content analysis, visual design, SVG generation, and PPTX export.
300
+
301
+ > **Output:** Native-shapes `.pptx` (directly editable) saved to `exports/<name>_<timestamp>.pptx`. A copy of `svg_output/` is always snapshotted to `backup/<timestamp>/svg_output/` for re-export / archival. Pass `--svg-snapshot` to additionally emit an SVG-image preview pptx alongside the native pptx in `exports/` (see [FAQ](./docs/faq.md)). Requires Office 2016+.
302
+
303
+ > **Already have a `.pptx` you want to reuse?** Hand the AI that deck plus your material and ask it to "fill this deck with the new content" — it fills text, table, and chart data into your existing design and exports only the pages you pick, staying natively editable. See the [FAQ](./docs/faq.md) and [template-fill workflow](./skills/ppt-master/workflows/template-fill-pptx.md).
304
+
305
+ > **AI lost context?** Ask it to read `skills/ppt-master/SKILL.md`.
306
+
307
+ > **Something went wrong?** Check the **[FAQ](./docs/faq.md)** — it covers model selection, layout issues, export problems, and more. Continuously updated from real user reports.
308
+
309
+ ### 5. Image Acquisition (Optional)
310
+
311
+ Two paths for non-user images, mixable per row in the same deck:
312
+
313
+ For API-backed features, put credentials in `.env`. Clone installs can use `cp .env.example .env`; skill marketplace installs should use a persistent user config:
314
+
315
+ ```bash
316
+ mkdir -p ~/.ppt-master
317
+ cp /path/to/installed/ppt-master/.env.example ~/.ppt-master/.env
318
+ ```
319
+
320
+ PPT Master reads the current process environment first, then the first `.env` found in this order: current working directory, skill directory (e.g. `~/.agents/skills/ppt-master/.env`), clone repo root, `~/.ppt-master/.env`.
321
+
322
+ **A) AI generation** — `image_gen.py`. Set `IMAGE_BACKEND` plus the provider's `*_API_KEY` (`OPENAI_API_KEY`, `GEMINI_API_KEY`, etc.), and the pipeline calls it automatically. Run `uvx ppt-master image-gen --list-backends` for the full backend list. `gpt-image-2` is currently the best default.
323
+
324
+ **B) Web image search** — `image_search.py`. **Zero-config works**, but configure `PEXELS_API_KEY` / `PIXABAY_API_KEY` (both free) for higher-quality results. Without keys, search uses Openverse / Wikimedia Commons only; this is useful as a fallback, but image quality can be uneven because many results are ordinary user uploads. With keys, the default provider chain also appends Pexels / Pixabay, which materially improves modern stock photography, people, workplace, lifestyle, and illustration coverage. The default is quality-first: CC0, Public Domain, Pexels / Pixabay no-attribution licenses, CC BY, and CC BY-SA are considered together, and Executor adds a small inline credit whenever the selected image requires attribution. Use `--strict-no-attribution` only when a slide cannot tolerate any credit line. For high-impact covers, product shots, portraits, and branded scenes, prefer this order: user-provided high-resolution assets / AI generation > web search with Pexels / Pixabay keys > zero-config web search.
325
+
326
+ > Full reference: [`image-generator.md`](./skills/ppt-master/references/image-generator.md) (AI) · [`image-searcher.md`](./skills/ppt-master/references/image-searcher.md) (web).
327
+
328
+ ---
329
+
330
+ ## Documentation
331
+
332
+ | | Document | Description |
333
+ |---|----------|-------------|
334
+ | 📘 | [Getting Started](./docs/getting-started.md) | First deck in 3 steps, plus how to use templates, live preview, animations, narration, voice cloning (**new users start here**) |
335
+ | 🆚 | [Why PPT Master](./docs/why-ppt-master.md) | How it compares to Gamma, Copilot, and other AI tools |
336
+ | 🪟 | [Windows Installation](./docs/windows-installation.md) | Step-by-step setup guide for Windows users |
337
+ | 📖 | [SKILL.md](./skills/ppt-master/SKILL.md) | Core workflow and rules |
338
+ | 📐 | [Canvas Formats](./skills/ppt-master/references/canvas-formats.md) | PPT 16:9, Xiaohongshu, WeChat, and 10+ formats |
339
+ | 🛠️ | [Scripts & Tools](./skills/ppt-master/scripts/README.md) | All scripts and commands |
340
+ | 💼 | [Examples](./examples/README.md) | All example projects |
341
+ | 🏗️ | [Technical Design](./docs/technical-design.md) | Architecture, design philosophy, why SVG |
342
+ | ❓ | [FAQ](./docs/faq.md) | Model selection, cost, layout troubleshooting, custom templates |
343
+
344
+ ---
345
+
346
+ ## Contributing
347
+
348
+ See [CONTRIBUTING.md](./CONTRIBUTING.md) for how to get involved.
349
+
350
+ ## License
351
+
352
+ [MIT](LICENSE)
353
+
354
+ ## Acknowledgments
355
+
356
+ [SVG Repo](https://www.svgrepo.com/) · [Tabler Icons](https://github.com/tabler/tabler-icons) · [Simple Icons](https://github.com/simple-icons/simple-icons) · [Phosphor Icons](https://github.com/phosphor-icons/core) · [Robin Williams](https://en.wikipedia.org/wiki/Robin_Williams_(author)) (CRAP principles)
357
+
358
+ ## Contact & Collaboration
359
+
360
+ Looking to collaborate, integrate PPT Master into your workflow, or just have questions?
361
+
362
+ - 💬 **Questions & sharing** — [GitHub Discussions](https://github.com/hugohe3/ppt-master/discussions)
363
+ - 🐛 **Bug reports & feature requests** — [GitHub Issues](https://github.com/hugohe3/ppt-master/issues)
364
+ - 🌐 **Learn more about the author** — [www.hehugo.com](https://www.hehugo.com/)
365
+
366
+ ---
367
+
368
+ ## Star History
369
+
370
+ <a href="https://star-history.com/#hugohe3/ppt-master&Date">
371
+ <picture>
372
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=hugohe3/ppt-master&type=Date&theme=dark" />
373
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=hugohe3/ppt-master&type=Date" />
374
+ <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=hugohe3/ppt-master&type=Date" />
375
+ </picture>
376
+ </a>
377
+
378
+ ---
379
+
380
+ ## Sponsors & Support
381
+
382
+ PPT Master is currently built and maintained primarily by me. Every new template, bug fix, and documentation update takes ongoing resources — currently shared by the sponsors and individual supporters below.
383
+
384
+ **Corporate sponsors**
385
+
386
+ <a href="https://www.packyapi.com/register?aff=ppt-master"><img src="docs/assets/sponsors/packycode.png" alt="PackyCode" height="40" /></a>
387
+ &nbsp;
388
+ <a href="https://apikey.fun/register?aff=PPT-MASTER"><img src="docs/assets/sponsors/apikey-fun.png" alt="APIKEY.FUN" height="40" /></a>
389
+ &nbsp;
390
+ <a href="https://m.do.co/c/547f129aabe1"><img src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/PoweredByDO/DO_Powered_by_Badge_blue.svg" alt="Powered by DigitalOcean" height="40" /></a>
391
+
392
+ **Individual support**
393
+
394
+ If PPT Master has been helpful to you, individual support of any amount helps keep the project moving and free.
395
+
396
+ <a href="https://paypal.me/hugohe3"><img src="https://img.shields.io/badge/PayPal-Sponsor-00457C?style=for-the-badge&logo=paypal&logoColor=white" alt="Sponsor via PayPal" /></a>
397
+
398
+ <img src="docs/assets/alipay-qr.jpg" alt="Alipay QR Code" width="220" />
399
+
400
+ ---
401
+
402
+ Made with ❤️ by [Hugo He](https://www.hehugo.com/) — if this project helps you, please give it a ⭐ and consider [sponsoring](#sponsors--support).
403
+
404
+ <sub>Official distribution: <a href="https://github.com/hugohe3/ppt-master">GitHub</a> (primary) · <a href="https://atomgit.com/hugohe3/ppt-master">AtomGit</a> (mirror). Redistributions on other platforms are unofficial. MIT licensed — attribution required.</sub>
405
+
406
+ [⬆ Back to Top](#ppt-master--ai-generates-natively-editable-pptx-from-any-document)