jekyll-theme-centos 2.52.0.beta.4 → 2.52.0.beta.5

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 (315) hide show
  1. checksums.yaml +4 -4
  2. data/_data/base/announcement_schema.yml +50 -0
  3. data/_data/base/artwork_schema.yml +46 -0
  4. data/_data/base/backtotop_schema.yml +53 -0
  5. data/_data/base/bits.yml +96 -0
  6. data/_data/base/bits_schema.yml +183 -0
  7. data/_data/base/breadcrumb_schema.yml +14 -0
  8. data/_data/base/breakingnews_schema.yml +59 -0
  9. data/_data/base/color.yml +1042 -0
  10. data/_data/base/color_schema.yml +1036 -0
  11. data/_data/base/content.yml +2 -0
  12. data/_data/base/content_schema.yml +26 -0
  13. data/_data/base/converter_link_schema.yml +48 -0
  14. data/_data/base/copyright.yml +12 -0
  15. data/_data/base/copyright_schema.yml +34 -0
  16. data/_data/base/copyvalue_schema.yml +49 -0
  17. data/_data/base/datatable_schema.yml +57 -0
  18. data/_data/base/event_schema.yml +122 -0
  19. data/_data/base/fontawesome_schema.yml +49 -0
  20. data/_data/base/highlight_schema.yml +68 -0
  21. data/_data/base/languages.yml +186 -0
  22. data/_data/base/link_schema.yml +153 -0
  23. data/_data/base/locales_schema.yml +25 -0
  24. data/_data/base/navbar.yml +20 -0
  25. data/_data/base/navbar_schema.yml +121 -0
  26. data/_data/base/navindex_schema.yml +67 -0
  27. data/_data/base/ogp_schema.yml +186 -0
  28. data/_data/base/project.yml +37 -0
  29. data/_data/base/project_schema.yml +120 -0
  30. data/_data/base/shortcut_schema.yml +74 -0
  31. data/_data/base/social.yml +25 -0
  32. data/_data/base/social_schema.yml +53 -0
  33. data/_data/base/title_schema.yml +49 -0
  34. data/_data/base/toc_schema.yml +100 -0
  35. data/_data/download/cards.yml +309 -0
  36. data/_data/download/navbar.yml +11 -0
  37. data/_data/sponsors/carousel.yml +37 -0
  38. data/_data/sponsors/navbar.yml +6 -0
  39. data/_includes/base/announcement.html.liquid +51 -0
  40. data/_includes/base/artwork.html.liquid +49 -0
  41. data/_includes/base/backtotop.html.liquid +51 -0
  42. data/_includes/base/bits.html.liquid +135 -0
  43. data/_includes/base/breadcrumb.html.liquid +37 -0
  44. data/_includes/base/breakingnews.html.liquid +74 -0
  45. data/_includes/base/card.html.liquid +96 -0
  46. data/_includes/base/copyright.html.liquid +56 -0
  47. data/_includes/base/copyvalue.html.liquid +59 -0
  48. data/_includes/base/datatable.html.liquid +64 -0
  49. data/_includes/base/event.html.liquid +89 -0
  50. data/_includes/base/fontawesome.html.liquid +58 -0
  51. data/_includes/base/head.html.liquid +101 -0
  52. data/_includes/base/highlight.html.liquid +65 -0
  53. data/_includes/base/image.html.liquid +42 -0
  54. data/_includes/base/link.html.liquid +139 -0
  55. data/_includes/base/locales.html.liquid +41 -0
  56. data/_includes/base/navbar.html.liquid +106 -0
  57. data/_includes/base/navindex.html.liquid +162 -0
  58. data/_includes/base/ogp.html.liquid +118 -0
  59. data/_includes/base/project.html.liquid +90 -0
  60. data/_includes/base/script.html.liquid +59 -0
  61. data/_includes/base/shortcut.html.liquid +65 -0
  62. data/_includes/base/social.html.liquid +59 -0
  63. data/_includes/base/title.html.liquid +52 -0
  64. data/_includes/base/toc.html.liquid +91 -0
  65. data/_includes/base/toc_generator.html.liquid +189 -0
  66. data/_includes/download/cards-body-commands.html +7 -0
  67. data/_includes/download/cards-body-convert.html +10 -0
  68. data/_includes/download/cards-body-doc.html +9 -0
  69. data/_includes/download/cards-body-documentation.html +11 -0
  70. data/_includes/download/cards-body-eol.html +16 -0
  71. data/_includes/download/cards-body-mirrors.html +8 -0
  72. data/_includes/download/cards-body-screenshot.html +26 -0
  73. data/_includes/download/cards-body-screenshots.html +32 -0
  74. data/_includes/download/cards-body.html +8 -0
  75. data/_includes/download/cards-footer.html +3 -0
  76. data/_includes/download/cards-header-commands.html +8 -0
  77. data/_includes/download/cards-header-convert.html +8 -0
  78. data/_includes/download/cards-header-doc.html +8 -0
  79. data/_includes/download/cards-header-documentation.html +8 -0
  80. data/_includes/download/cards-header-eol.html +8 -0
  81. data/_includes/download/cards-header-mirrors.html +13 -0
  82. data/_includes/download/cards-header-screenshot.html +8 -0
  83. data/_includes/download/cards-header-screenshots.html +8 -0
  84. data/_includes/download/cards-header.html +13 -0
  85. data/_includes/download/cards.html +120 -0
  86. data/_includes/sponsors/cards.html +11 -0
  87. data/_includes/sponsors/carousel.html +24 -0
  88. data/_layouts/base/default.html +117 -0
  89. data/_layouts/download/cards.html +7 -0
  90. data/_layouts/download/default.html +7 -0
  91. data/_layouts/people/default.html +68 -0
  92. data/_sass/base/_customization.scss +251 -0
  93. data/_sass/base/_light-dark.scss +10 -0
  94. data/_sass/base/_maps.scss +104 -0
  95. data/_sass/base/_variables.scss +232 -0
  96. data/_sass/bootstrap/_accordion.scss +153 -0
  97. data/_sass/bootstrap/_alert.scss +68 -0
  98. data/_sass/bootstrap/_badge.scss +38 -0
  99. data/_sass/bootstrap/_breadcrumb.scss +40 -0
  100. data/_sass/bootstrap/_button-group.scss +147 -0
  101. data/_sass/bootstrap/_buttons.scss +216 -0
  102. data/_sass/bootstrap/_card.scss +238 -0
  103. data/_sass/bootstrap/_carousel.scss +226 -0
  104. data/_sass/bootstrap/_close.scss +66 -0
  105. data/_sass/bootstrap/_containers.scss +41 -0
  106. data/_sass/bootstrap/_dropdown.scss +250 -0
  107. data/_sass/bootstrap/_forms.scss +9 -0
  108. data/_sass/bootstrap/_functions.scss +302 -0
  109. data/_sass/bootstrap/_grid.scss +39 -0
  110. data/_sass/bootstrap/_helpers.scss +12 -0
  111. data/_sass/bootstrap/_images.scss +42 -0
  112. data/_sass/bootstrap/_list-group.scss +199 -0
  113. data/_sass/bootstrap/_maps.scss +174 -0
  114. data/_sass/bootstrap/_mixins.scss +42 -0
  115. data/_sass/bootstrap/_modal.scss +240 -0
  116. data/_sass/bootstrap/_nav.scss +197 -0
  117. data/_sass/bootstrap/_navbar.scss +289 -0
  118. data/_sass/bootstrap/_offcanvas.scss +147 -0
  119. data/_sass/bootstrap/_pagination.scss +109 -0
  120. data/_sass/bootstrap/_placeholders.scss +51 -0
  121. data/_sass/bootstrap/_popover.scss +196 -0
  122. data/_sass/bootstrap/_progress.scss +68 -0
  123. data/_sass/bootstrap/_reboot.scss +617 -0
  124. data/_sass/bootstrap/_root.scss +187 -0
  125. data/_sass/bootstrap/_spinners.scss +86 -0
  126. data/_sass/bootstrap/_tables.scss +171 -0
  127. data/_sass/bootstrap/_toasts.scss +73 -0
  128. data/_sass/bootstrap/_tooltip.scss +119 -0
  129. data/_sass/bootstrap/_transitions.scss +27 -0
  130. data/_sass/bootstrap/_type.scss +106 -0
  131. data/_sass/bootstrap/_utilities.scss +806 -0
  132. data/_sass/bootstrap/_variables-dark.scss +102 -0
  133. data/_sass/bootstrap/_variables.scss +1753 -0
  134. data/_sass/bootstrap/bootstrap-grid.scss +62 -0
  135. data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
  136. data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
  137. data/_sass/bootstrap/bootstrap.scss +52 -0
  138. data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
  139. data/_sass/bootstrap/forms/_form-check.scss +189 -0
  140. data/_sass/bootstrap/forms/_form-control.scss +214 -0
  141. data/_sass/bootstrap/forms/_form-range.scss +91 -0
  142. data/_sass/bootstrap/forms/_form-select.scss +80 -0
  143. data/_sass/bootstrap/forms/_form-text.scss +11 -0
  144. data/_sass/bootstrap/forms/_input-group.scss +132 -0
  145. data/_sass/bootstrap/forms/_labels.scss +36 -0
  146. data/_sass/bootstrap/forms/_validation.scss +12 -0
  147. data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
  148. data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
  149. data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
  150. data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
  151. data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
  152. data/_sass/bootstrap/helpers/_position.scss +36 -0
  153. data/_sass/bootstrap/helpers/_ratio.scss +26 -0
  154. data/_sass/bootstrap/helpers/_stacks.scss +15 -0
  155. data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
  156. data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
  157. data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
  158. data/_sass/bootstrap/helpers/_vr.scss +8 -0
  159. data/_sass/bootstrap/mixins/_alert.scss +18 -0
  160. data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
  161. data/_sass/bootstrap/mixins/_banner.scss +7 -0
  162. data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
  163. data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
  164. data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
  165. data/_sass/bootstrap/mixins/_buttons.scss +70 -0
  166. data/_sass/bootstrap/mixins/_caret.scss +69 -0
  167. data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
  168. data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
  169. data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
  170. data/_sass/bootstrap/mixins/_container.scss +11 -0
  171. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  172. data/_sass/bootstrap/mixins/_forms.scss +163 -0
  173. data/_sass/bootstrap/mixins/_gradients.scss +47 -0
  174. data/_sass/bootstrap/mixins/_grid.scss +151 -0
  175. data/_sass/bootstrap/mixins/_image.scss +16 -0
  176. data/_sass/bootstrap/mixins/_list-group.scss +26 -0
  177. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  178. data/_sass/bootstrap/mixins/_pagination.scss +10 -0
  179. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  180. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  181. data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
  182. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  183. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  184. data/_sass/bootstrap/mixins/_utilities.scss +97 -0
  185. data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
  186. data/_sass/bootstrap/utilities/_api.scss +47 -0
  187. data/_sass/bootstrap/vendor/_rfs.scss +348 -0
  188. data/assets/css/base/stylesheet.min.scss +35 -0
  189. data/assets/icons/android-chrome-192.png +0 -0
  190. data/assets/icons/android-chrome-512.png +0 -0
  191. data/assets/icons/apple-touch-icon.png +0 -0
  192. data/assets/icons/favicon-16.png +0 -0
  193. data/assets/icons/favicon-32.png +0 -0
  194. data/assets/icons/favicon.ico +0 -0
  195. data/assets/icons/favicon.svg +1 -0
  196. data/assets/img/anaconda-symbolic.svg +1 -0
  197. data/assets/img/anaconda.svg +1 -0
  198. data/assets/img/base/centos-colors.gpl +55 -0
  199. data/assets/img/base/page-layout-default.png +0 -0
  200. data/assets/img/base/page-layout-default.svg +1158 -0
  201. data/assets/img/base/page-with-alert.png +0 -0
  202. data/assets/img/base/page-with-alert.svg +359 -0
  203. data/assets/img/base/page-with-announcement.png +0 -0
  204. data/assets/img/base/page-with-announcement.svg +499 -0
  205. data/assets/img/base/page-with-artwork.png +0 -0
  206. data/assets/img/base/page-with-artwork.svg +368 -0
  207. data/assets/img/base/page-with-backtotop.png +0 -0
  208. data/assets/img/base/page-with-backtotop.svg +275 -0
  209. data/assets/img/base/page-with-bits.png +0 -0
  210. data/assets/img/base/page-with-bits.svg +311 -0
  211. data/assets/img/base/page-with-breadcrumb.png +0 -0
  212. data/assets/img/base/page-with-breadcrumb.svg +676 -0
  213. data/assets/img/base/page-with-breakingnews.png +0 -0
  214. data/assets/img/base/page-with-breakingnews.svg +903 -0
  215. data/assets/img/base/page-with-color.png +0 -0
  216. data/assets/img/base/page-with-color.svg +57 -0
  217. data/assets/img/base/page-with-copyright.png +0 -0
  218. data/assets/img/base/page-with-copyright.svg +233 -0
  219. data/assets/img/base/page-with-copyvalue.png +0 -0
  220. data/assets/img/base/page-with-copyvalue.svg +57 -0
  221. data/assets/img/base/page-with-datatable.png +0 -0
  222. data/assets/img/base/page-with-datatable.svg +857 -0
  223. data/assets/img/base/page-with-event.png +0 -0
  224. data/assets/img/base/page-with-event.svg +522 -0
  225. data/assets/img/base/page-with-fontawesome.png +0 -0
  226. data/assets/img/base/page-with-fontawesome.svg +147 -0
  227. data/assets/img/base/page-with-heading.png +0 -0
  228. data/assets/img/base/page-with-heading.svg +57 -0
  229. data/assets/img/base/page-with-highlight.png +0 -0
  230. data/assets/img/base/page-with-highlight.svg +86 -0
  231. data/assets/img/base/page-with-link.png +0 -0
  232. data/assets/img/base/page-with-link.svg +395 -0
  233. data/assets/img/base/page-with-locales.png +0 -0
  234. data/assets/img/base/page-with-locales.svg +724 -0
  235. data/assets/img/base/page-with-navbar.png +0 -0
  236. data/assets/img/base/page-with-navbar.svg +438 -0
  237. data/assets/img/base/page-with-navindex.png +0 -0
  238. data/assets/img/base/page-with-navindex.svg +279 -0
  239. data/assets/img/base/page-with-ogp.png +0 -0
  240. data/assets/img/base/page-with-ogp.svg +368 -0
  241. data/assets/img/base/page-with-project.png +0 -0
  242. data/assets/img/base/page-with-project.svg +822 -0
  243. data/assets/img/base/page-with-shortcut.png +0 -0
  244. data/assets/img/base/page-with-shortcut.svg +233 -0
  245. data/assets/img/base/page-with-social.png +0 -0
  246. data/assets/img/base/page-with-social.svg +233 -0
  247. data/assets/img/base/page-with-title.png +0 -0
  248. data/assets/img/base/page-with-title.svg +584 -0
  249. data/assets/img/base/page-with-toc.png +0 -0
  250. data/assets/img/base/page-with-toc.svg +438 -0
  251. data/assets/img/base/screenshot-example-1200x600.png +0 -0
  252. data/assets/img/base/screenshot-example-1200x600.svg +114 -0
  253. data/assets/img/centos-dynamicmsg-logo.svg +1 -0
  254. data/assets/img/centos-dynamicmsg-type.svg +1 -0
  255. data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
  256. data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
  257. data/assets/img/centos-gdm-whitelogo.svg +1 -0
  258. data/assets/img/centos-ipa-whiteheader.svg +1 -0
  259. data/assets/img/centos-logo-2bits.svg +1 -0
  260. data/assets/img/centos-logo.svg +1 -0
  261. data/assets/img/centos-message-logo.svg +1 -0
  262. data/assets/img/centos-motif.png +0 -0
  263. data/assets/img/centos-poweredby-logo.svg +1 -0
  264. data/assets/img/centos-social-share.png +0 -0
  265. data/assets/img/centos-symbol-2bits.svg +1 -0
  266. data/assets/img/centos-symbol.svg +1 -0
  267. data/assets/img/centos-type.svg +1 -0
  268. data/assets/img/centos-vertical-logo.svg +1 -0
  269. data/assets/img/centos-vertical-message-logo.svg +1 -0
  270. data/assets/img/centos-whitelogo.svg +1 -0
  271. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  272. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  273. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  274. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  275. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  276. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  277. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  278. data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
  279. data/assets/img/download/download.svg +421 -0
  280. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  281. data/assets/img/people/page.svg +900 -0
  282. data/assets/img/people/page.webp +0 -0
  283. data/assets/img/people/username.webp +0 -0
  284. data/assets/img/sponsors/screenshot-sponsors-cards-layout.png +0 -0
  285. data/assets/img/sponsors/screenshot-sponsors-cards.png +0 -0
  286. data/assets/img/sponsors/screenshot-sponsors-carousel.png +0 -0
  287. data/assets/img/sponsors/screenshot-sponsors-default-layout.png +0 -0
  288. data/assets/img/sponsors/screenshot-sponsors-logo.png +0 -0
  289. data/assets/img/sponsors/sponsor-logo-1.png +0 -0
  290. data/assets/img/sponsors/sponsor-logo-2.png +0 -0
  291. data/assets/img/sponsors/sponsor-logo-3.png +0 -0
  292. data/assets/img/sponsors/sponsor-logo-4.png +0 -0
  293. data/assets/img/sponsors/sponsor-logo-5.png +0 -0
  294. data/assets/img/sponsors/sponsor-logo-6.png +0 -0
  295. data/assets/img/sponsors/sponsor-logo-7.png +0 -0
  296. data/assets/img/sponsors/sponsor-logo-8.png +0 -0
  297. data/assets/img/sponsors/sponsors-logo.svg +563 -0
  298. data/assets/js/base/backtotop.js +23 -0
  299. data/assets/js/base/copyvalue.js +251 -0
  300. data/assets/js/base/datatable.js +55 -0
  301. data/assets/js/base/highlight.js +6 -0
  302. data/assets/js/base/init-tooltips.js +5 -0
  303. data/assets/js/bootstrap.bundle.js +6312 -0
  304. data/assets/js/bootstrap.bundle.js.map +1 -0
  305. data/assets/js/bootstrap.bundle.min.js +7 -0
  306. data/assets/js/bootstrap.bundle.min.js.map +1 -0
  307. data/assets/js/bootstrap.esm.js +4447 -0
  308. data/assets/js/bootstrap.esm.js.map +1 -0
  309. data/assets/js/bootstrap.esm.min.js +7 -0
  310. data/assets/js/bootstrap.esm.min.js.map +1 -0
  311. data/assets/js/bootstrap.js +4494 -0
  312. data/assets/js/bootstrap.js.map +1 -0
  313. data/assets/js/bootstrap.min.js +7 -0
  314. data/assets/js/bootstrap.min.js.map +1 -0
  315. metadata +314 -1
@@ -0,0 +1,275 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="640"
6
+ height="396.73569"
7
+ viewBox="0 0 169.33334 104.96965"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
11
+ sodipodi:docname="page-with-backtotop.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#000000"
20
+ borderopacity="0.25"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="px"
26
+ inkscape:zoom="1"
27
+ inkscape:cx="320"
28
+ inkscape:cy="198.5"
29
+ inkscape:window-width="3440"
30
+ inkscape:window-height="1371"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="layer1"
35
+ showgrid="false" />
36
+ <defs
37
+ id="defs1">
38
+ <clipPath
39
+ clipPathUnits="userSpaceOnUse"
40
+ id="clipPath7">
41
+ <path
42
+ id="path7"
43
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.922912;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
44
+ d="m 2918.7099,1775.7283 c -1.7054,0 -3.0782,-1.3728 -3.0782,-3.0782 v -99.1391 c 5.6034,3.4704 11.8462,6.4174 16.8893,6.4174 12.2646,0 19.3614,-17.4306 31.6263,-17.4306 12.2647,0 19.3611,17.4306 31.6259,17.4306 12.2647,0 19.3613,-17.4306 31.6259,-17.4306 12.2648,0 19.3616,17.4306 31.6263,17.4306 12.2648,0 19.2131,-17.655 31.6259,-17.4306 8.5951,0.1553 20.4508,9.2129 26.9304,14.7697 v 95.3826 c 0,1.7054 -1.3728,3.0782 -3.078,3.0782 z"
45
+ sodipodi:nodetypes="sscsssssscsss" />
46
+ </clipPath>
47
+ <clipPath
48
+ clipPathUnits="userSpaceOnUse"
49
+ id="clipPath28-8">
50
+ <path
51
+ id="path29-4"
52
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
53
+ d="m 59.448396,117.38544 c -1.710994,0 -3.088494,1.37751 -3.088494,3.08851 v 99.47524 c 5.622398,-3.4823 11.886298,-6.4392 16.946499,-6.4392 12.306202,0 19.427002,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.27831,17.7148 31.7333,17.4897 8.62408,-0.1558 20.51998,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37742,-3.08851 -3.0885,-3.08851 z"
54
+ sodipodi:nodetypes="sscsssssscsss" />
55
+ </clipPath>
56
+ <clipPath
57
+ clipPathUnits="userSpaceOnUse"
58
+ id="clipPath28-8-2">
59
+ <path
60
+ id="path29-4-7"
61
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
62
+ d="m 59.448396,117.38544 c -1.710994,0 -3.088494,1.37751 -3.088494,3.08851 v 99.47524 c 5.622398,-3.4823 11.886298,-6.4392 16.946499,-6.4392 12.306202,0 19.427002,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.27831,17.7148 31.7333,17.4897 8.62408,-0.1558 20.51998,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37742,-3.08851 -3.0885,-3.08851 z"
63
+ sodipodi:nodetypes="sscsssssscsss" />
64
+ </clipPath>
65
+ <clipPath
66
+ clipPathUnits="userSpaceOnUse"
67
+ id="clipPath28-8-2-0">
68
+ <path
69
+ id="path29-4-7-6"
70
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
71
+ d="m 59.448396,117.38544 c -1.710994,0 -3.088494,1.37751 -3.088494,3.08851 v 99.47524 c 5.622398,-3.4823 11.886298,-6.4392 16.946499,-6.4392 12.306202,0 19.427002,17.4897 31.733399,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.4897 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.3063,0 19.27831,17.7148 31.7333,17.4897 8.62408,-0.1558 20.51998,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37742,-3.08851 -3.0885,-3.08851 z"
72
+ sodipodi:nodetypes="sscsssssscsss" />
73
+ </clipPath>
74
+ </defs>
75
+ <g
76
+ inkscape:label="Layer 1"
77
+ inkscape:groupmode="layer"
78
+ id="layer1"
79
+ transform="translate(-65.951668,-68.908951)">
80
+ <rect
81
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.250095;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
82
+ id="backtotop"
83
+ width="169.33333"
84
+ height="104.96965"
85
+ x="65.951668"
86
+ y="68.908951"
87
+ inkscape:export-filename="page-with-breadcrumb.png"
88
+ inkscape:export-xdpi="96"
89
+ inkscape:export-ydpi="96" />
90
+ <path
91
+ id="path664"
92
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.765518;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
93
+ d="m 69.41677,172.89104 c -1.4145,0 -2.5532,-1.1387 -2.5532,-2.5532 v -82.232 c 4.6478,2.8786 9.8259,5.323 14.009,5.323 10.173,0 16.0595,-14.458 26.2327,-14.458 10.1731,0 16.0593,14.458 26.2325,14.458 10.1731,0 16.0594,-14.458 26.2324,-14.458 10.1732,0 16.0597,14.458 26.2328,14.458 10.1731,0 15.9365,-14.6441 26.2324,-14.458 7.1293,0.1288 16.9631,7.6417 22.3377,12.2509 v 79.1161 c 0,1.4145 -1.1387,2.5532 -2.5531,2.5532 z"
94
+ sodipodi:nodetypes="sscsssssscsss" />
95
+ <path
96
+ id="path12-5"
97
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58751, 1.58751;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
98
+ d="m 234.20287,69.51375 v 18.8214 c -5.3636,-4.5997 -15.1774,-12.0973 -22.2921,-12.226 -10.2752,-0.1856 -16.0267,14.4289 -26.1791,14.4289 -10.1526,0 -16.0274,-14.4289 -26.1799,-14.4289 -10.1524,0 -16.0268,14.4289 -26.1792,14.4289 -10.1525,0 -16.0265,-14.4289 -26.1789,-14.4289 -10.1528,0 -16.0273,14.4289 -26.1796,14.4289 -4.1747,0 -9.3419,-2.4396 -13.9804,-5.3123 v -15.712"
99
+ sodipodi:nodetypes="ccsssssscc" />
100
+ <g
101
+ id="g818"
102
+ clip-path="url(#clipPath7)"
103
+ transform="matrix(0.82946038,0,0,0.82946038,-2351.5374,-1300.388)">
104
+ <path
105
+ id="path792"
106
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.167547;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
107
+ d="m 2935.9504,1681.4479 h 161.313 c 1.6054,0 2.8979,1.2925 2.8979,2.898 v 10.4878 c 0,1.6055 -1.2925,2.898 -2.8979,2.898 h -161.313 c -1.6055,0 -2.898,-1.2925 -2.898,-2.898 v -10.4878 c 0,-1.6055 1.2925,-2.898 2.898,-2.898 z" />
108
+ <path
109
+ d="m 3017.6049,1686.2838 v 0.6238 c 0,0.1378 -0.1117,0.2495 -0.2495,0.2495 h -3.9923 c -0.1378,0 -0.2495,-0.1117 -0.2495,-0.2495 v -0.6238 c 0,-0.1378 0.1117,-0.2495 0.2495,-0.2495 h 3.9923 c 0.1378,0 0.2495,0.1117 0.2495,0.2495 z m -4.4913,1.9961 v 0.6238 c 0,0.1378 0.1117,0.2495 0.2495,0.2495 h 6.4874 c 0.1378,0 0.2495,-0.1117 0.2495,-0.2495 v -0.6238 c 0,-0.1378 -0.1117,-0.2495 -0.2495,-0.2495 h -6.4874 c -0.1378,0 -0.2495,0.1117 -0.2495,0.2495 z m 0.2495,4.8655 h 6.4874 c 0.1378,0 0.2495,-0.1117 0.2495,-0.2495 v -0.6238 c 0,-0.1378 -0.1117,-0.2495 -0.2495,-0.2495 h -6.4874 c -0.1378,0 -0.2495,0.1117 -0.2495,0.2495 v 0.6238 c 0,0.1378 0.1117,0.2495 0.2495,0.2495 z m 3.9923,-3.1189 h -3.9923 c -0.1378,0 -0.2495,0.1117 -0.2495,0.2495 v 0.6238 c 0,0.1378 0.1117,0.2495 0.2495,0.2495 h 3.9923 c 0.1378,0 0.2495,-0.1117 0.2495,-0.2495 v -0.6238 c 0,-0.1378 -0.1117,-0.2495 -0.2495,-0.2495 z"
110
+ id="path793"
111
+ style="fill:#d9b9d1;stroke-width:0.0155947" />
112
+ <path
113
+ id="path794"
114
+ style="fill:#f6edf4;stroke-width:0.307698;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
115
+ d="m 2919.2727,1701.0171 h 194.6681 v 70.8832 h -194.6681 z" />
116
+ <path
117
+ id="path795"
118
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.144899;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
119
+ d="m 2975.7157,1764.1195 h 81.7821 c 0.4014,0 0.7245,0.3232 0.7245,0.7245 v 0.6693 c 0,0.4014 -0.3231,0.7245 -0.7245,0.7245 h -81.7821 c -0.4014,0 -0.7245,-0.3231 -0.7245,-0.7245 v -0.6693 c 0,-0.4013 0.3231,-0.7245 0.7245,-0.7245 z" />
120
+ <path
121
+ id="path796"
122
+ style="fill:#ecdce8;stroke-width:0.23091;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
123
+ d="m 2946.5271,1745.8867 h 86.464 c 0.8536,0 1.5408,0.6872 1.5408,1.5408 v 9.4594 c 0,0.8536 -0.6872,1.5408 -1.5408,1.5408 h -86.464 c -0.8536,0 -1.5408,-0.6872 -1.5408,-1.5408 v -9.4594 c 0,-0.8536 0.6872,-1.5408 1.5408,-1.5408 z" />
124
+ <path
125
+ id="path797"
126
+ style="fill:#ecdce8;stroke-width:0.289799;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
127
+ d="m 3039.5959,1746.0768 h 47.0904 c 0.8536,0 1.5408,0.6872 1.5408,1.5408 v 9.0792 c 0,0.8536 -0.6872,1.5408 -1.5408,1.5408 h -47.0904 c -0.8536,0 -1.5408,-0.6872 -1.5408,-1.5408 v -9.0792 c 0,-0.8536 0.6872,-1.5408 1.5408,-1.5408 z" />
128
+ <path
129
+ id="path798"
130
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.389711;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
131
+ d="m 3098.8271,1701.0171 v 36.9369 c 0,1.2414 -0.9995,2.2409 -2.2409,2.2409 h -159.9589 c -1.2415,0 -2.2409,-0.9995 -2.2409,-2.2409 v -36.9369 z"
132
+ sodipodi:nodetypes="csssscc" />
133
+ <path
134
+ style="baseline-shift:baseline;display:inline;overflow:visible;opacity:0.75;vector-effect:none;fill:#d9b9d1;stroke-linejoin:round;enable-background:accumulate;stop-color:#000000"
135
+ d="m 2934.3864,1701.0147 v 17.2164 h 164.4414 v -17.2164 z"
136
+ id="path799"
137
+ sodipodi:nodetypes="ccccc" />
138
+ <g
139
+ id="g808"
140
+ transform="translate(-524.4417,1314.4393)"
141
+ style="fill:#f6edf4">
142
+ <path
143
+ id="path800"
144
+ style="fill:#f6edf4;stroke-width:0.117395;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
145
+ d="m 3494.7571,391.01294 h 23.9661 c 0.3252,0 0.587,0.26179 0.587,0.58698 v 0.54222 c 0,0.32518 -0.2618,0.58698 -0.587,0.58698 h -23.9661 c -0.3251,0 -0.5869,-0.2618 -0.5869,-0.58698 v -0.54222 c 0,-0.32519 0.2618,-0.58698 0.5869,-0.58698 z" />
146
+ <path
147
+ id="path801"
148
+ style="fill:#f6edf4;stroke-width:0.117395;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
149
+ d="m 3494.7571,394.3255 h 23.9661 c 0.3252,0 0.587,0.26179 0.587,0.58698 v 0.54222 c 0,0.32518 -0.2618,0.58698 -0.587,0.58698 h -23.9661 c -0.3251,0 -0.5869,-0.2618 -0.5869,-0.58698 v -0.54222 c 0,-0.32519 0.2618,-0.58698 0.5869,-0.58698 z" />
150
+ <path
151
+ id="path802"
152
+ style="fill:#f6edf4;stroke-width:0.117395;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
153
+ d="m 3494.7571,397.63803 h 23.9661 c 0.3252,0 0.587,0.26179 0.587,0.58698 v 0.54222 c 0,0.32519 -0.2618,0.58698 -0.587,0.58698 h -23.9661 c -0.3251,0 -0.5869,-0.26179 -0.5869,-0.58698 v -0.54222 c 0,-0.32519 0.2618,-0.58698 0.5869,-0.58698 z" />
154
+ <path
155
+ id="path803"
156
+ style="fill:#f6edf4;stroke-width:0.117395;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
157
+ d="m 3529.0655,391.01294 h 23.9661 c 0.3251,0 0.5869,0.26179 0.5869,0.58698 v 0.54222 c 0,0.32518 -0.2618,0.58698 -0.5869,0.58698 h -23.9661 c -0.3252,0 -0.587,-0.2618 -0.587,-0.58698 v -0.54222 c 0,-0.32519 0.2618,-0.58698 0.587,-0.58698 z" />
158
+ <path
159
+ id="path804"
160
+ style="fill:#f6edf4;stroke-width:0.117395;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
161
+ d="m 3529.0655,394.3255 h 23.9661 c 0.3251,0 0.5869,0.26179 0.5869,0.58698 v 0.54222 c 0,0.32518 -0.2618,0.58698 -0.5869,0.58698 h -23.9661 c -0.3252,0 -0.587,-0.2618 -0.587,-0.58698 v -0.54222 c 0,-0.32519 0.2618,-0.58698 0.587,-0.58698 z" />
162
+ <path
163
+ id="path805"
164
+ style="fill:#f6edf4;stroke-width:0.117395;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
165
+ d="m 3529.0655,397.63803 h 23.9661 c 0.3251,0 0.5869,0.26179 0.5869,0.58698 v 0.54222 c 0,0.32519 -0.2618,0.58698 -0.5869,0.58698 h -23.9661 c -0.3252,0 -0.587,-0.26179 -0.587,-0.58698 v -0.54222 c 0,-0.32519 0.2618,-0.58698 0.587,-0.58698 z" />
166
+ <path
167
+ id="path806"
168
+ style="fill:#f6edf4;stroke-width:0.117395;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
169
+ d="m 3563.3736,391.01294 h 23.9661 c 0.3252,0 0.5869,0.26179 0.5869,0.58698 v 0.54222 c 0,0.32518 -0.2617,0.58698 -0.5869,0.58698 h -23.9661 c -0.3252,0 -0.587,-0.2618 -0.587,-0.58698 v -0.54222 c 0,-0.32519 0.2618,-0.58698 0.587,-0.58698 z" />
170
+ <path
171
+ id="path807"
172
+ style="fill:#f6edf4;stroke-width:0.117395;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
173
+ d="m 3563.3736,394.3255 h 23.9661 c 0.3252,0 0.5869,0.26179 0.5869,0.58698 v 0.54222 c 0,0.32518 -0.2617,0.58698 -0.5869,0.58698 h -23.9661 c -0.3252,0 -0.587,-0.2618 -0.587,-0.58698 v -0.54222 c 0,-0.32519 0.2618,-0.58698 0.587,-0.58698 z" />
174
+ <path
175
+ id="path808"
176
+ style="fill:#f6edf4;stroke-width:0.117395;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
177
+ d="m 3563.3736,397.63803 h 23.9661 c 0.3252,0 0.5869,0.26179 0.5869,0.58698 v 0.54222 c 0,0.32519 -0.2617,0.58698 -0.5869,0.58698 h -23.9661 c -0.3252,0 -0.587,-0.26179 -0.587,-0.58698 v -0.54222 c 0,-0.32519 0.2618,-0.58698 0.587,-0.58698 z" />
178
+ </g>
179
+ <path
180
+ id="path809"
181
+ style="fill:#dec2d7;fill-opacity:1;stroke-width:0.117395;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
182
+ d="m 2949.3042,1724.442 h 134.6052 c 0.3252,0 0.587,0.2618 0.587,0.587 v 0.5422 c 0,0.3252 -0.2618,0.587 -0.587,0.587 h -134.6052 c -0.3252,0 -0.587,-0.2618 -0.587,-0.587 v -0.5422 c 0,-0.3252 0.2618,-0.587 0.587,-0.587 z" />
183
+ <path
184
+ id="path810"
185
+ style="fill:#dec2d7;fill-opacity:1;stroke-width:0.670484;paint-order:fill markers stroke"
186
+ d="m 2996.2559,1731.7629 a 2.7613504,2.7613504 0 0 1 -2.7613,2.7614 2.7613504,2.7613504 0 0 1 -2.7614,-2.7614 2.7613504,2.7613504 0 0 1 2.7614,-2.7613 2.7613504,2.7613504 0 0 1 2.7613,2.7613 z" />
187
+ <path
188
+ id="path811"
189
+ style="fill:#dec2d7;fill-opacity:1;stroke-width:0.670484;paint-order:fill markers stroke"
190
+ d="m 3005.5008,1731.7629 a 2.7613504,2.7613504 0 0 1 -2.7613,2.7614 2.7613504,2.7613504 0 0 1 -2.7614,-2.7614 2.7613504,2.7613504 0 0 1 2.7614,-2.7613 2.7613504,2.7613504 0 0 1 2.7613,2.7613 z" />
191
+ <path
192
+ id="path812"
193
+ style="fill:#dec2d7;fill-opacity:1;stroke-width:0.670484;paint-order:fill markers stroke"
194
+ d="m 3014.7457,1731.7629 a 2.7613504,2.7613504 0 0 1 -2.7614,2.7614 2.7613504,2.7613504 0 0 1 -2.7613,-2.7614 2.7613504,2.7613504 0 0 1 2.7613,-2.7613 2.7613504,2.7613504 0 0 1 2.7614,2.7613 z" />
195
+ <path
196
+ id="path813"
197
+ style="fill:#dec2d7;fill-opacity:1;stroke-width:0.670484;paint-order:fill markers stroke"
198
+ d="m 3023.9905,1731.7629 a 2.7613504,2.7613504 0 0 1 -2.7613,2.7614 2.7613504,2.7613504 0 0 1 -2.7614,-2.7614 2.7613504,2.7613504 0 0 1 2.7614,-2.7613 2.7613504,2.7613504 0 0 1 2.7613,2.7613 z" />
199
+ <path
200
+ id="path814"
201
+ style="fill:#dec2d7;fill-opacity:1;stroke-width:0.670484;paint-order:fill markers stroke"
202
+ d="m 3033.2354,1731.7629 a 2.7613504,2.7613504 0 0 1 -2.7613,2.7614 2.7613504,2.7613504 0 0 1 -2.7614,-2.7614 2.7613504,2.7613504 0 0 1 2.7614,-2.7613 2.7613504,2.7613504 0 0 1 2.7613,2.7613 z" />
203
+ <path
204
+ id="path815"
205
+ style="fill:#dec2d7;fill-opacity:1;stroke-width:0.670484;paint-order:fill markers stroke"
206
+ d="m 3042.4803,1731.7629 a 2.7613504,2.7613504 0 0 1 -2.7614,2.7614 2.7613504,2.7613504 0 0 1 -2.7613,-2.7614 2.7613504,2.7613504 0 0 1 2.7613,-2.7613 2.7613504,2.7613504 0 0 1 2.7614,2.7613 z" />
207
+ <g
208
+ id="g817"
209
+ transform="translate(-464.09554,511.72291)">
210
+ <rect
211
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.145225;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
212
+ id="rect815"
213
+ width="167.48418"
214
+ height="16.320353"
215
+ x="3396.9602"
216
+ y="1150.7588"
217
+ rx="2.904494"
218
+ ry="2.904494" />
219
+ <g
220
+ id="g816"
221
+ transform="matrix(0.01562969,0,0,0.01562969,3477.2013,1154.9178)"
222
+ style="fill:#381a32;fill-opacity:1">
223
+ <title
224
+ id="title815">align-left</title>
225
+ <path
226
+ d="m 288,44 v 40 c 0,8.837 -7.163,16 -16,16 H 16 C 7.163,100 0,92.837 0,84 V 44 C 0,35.163 7.163,28 16,28 h 256 c 8.837,0 16,7.163 16,16 z M 0,172 v 40 c 0,8.837 7.163,16 16,16 h 416 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 H 16 c -8.837,0 -16,7.163 -16,16 z m 16,312 h 416 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 z M 272,284 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 h 256 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 z"
227
+ id="path816"
228
+ style="fill:#d9b9d1;fill-opacity:1" />
229
+ </g>
230
+ <path
231
+ sodipodi:type="star"
232
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
233
+ id="path817"
234
+ inkscape:flatsided="false"
235
+ sodipodi:sides="3"
236
+ sodipodi:cx="-499.8125"
237
+ sodipodi:cy="737.32031"
238
+ sodipodi:r1="36.465179"
239
+ sodipodi:r2="18.23259"
240
+ sodipodi:arg1="1.5707963"
241
+ sodipodi:arg2="2.6179939"
242
+ inkscape:rounded="0"
243
+ inkscape:randomized="0"
244
+ d="m -499.8125,773.78549 -15.78989,-27.34888 -15.78988,-27.34889 31.57977,0 31.57977,0 -15.78988,27.34889 z"
245
+ transform="matrix(0.06139996,0,0,0.06139996,3587.1971,1113.0878)"
246
+ inkscape:transform-center-y="1.0197809"
247
+ inkscape:transform-center-x="-6.518711e-05" />
248
+ </g>
249
+ <circle
250
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.508009;stroke-linejoin:round"
251
+ id="circle1"
252
+ cx="3102.7573"
253
+ cy="1760.8762"
254
+ r="6.6194143" />
255
+ <circle
256
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.508009;stroke-linejoin:round"
257
+ id="path1"
258
+ cx="3102.7573"
259
+ cy="1760.0789"
260
+ r="6.6194143" />
261
+ <path
262
+ style="fill:none;stroke:#f6edf4;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
263
+ d="m 93.5249,194.106 0.933603,0.89865 -0.863686,0.89865"
264
+ id="path410-0"
265
+ sodipodi:nodetypes="ccc"
266
+ clip-path="url(#clipPath28-8-2-0)"
267
+ transform="matrix(0,-1.3282554,1.3282554,0,2843.7453,1885.028)" />
268
+ </g>
269
+ <path
270
+ id="path5"
271
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.765518;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
272
+ d="m 69.41677,172.89104 c -1.4145,0 -2.5532,-1.1387 -2.5532,-2.5532 v -82.232 c 4.6478,2.8786 9.8259,5.323 14.009,5.323 10.173,0 16.0595,-14.458 26.2327,-14.458 10.1731,0 16.0593,14.458 26.2325,14.458 10.1731,0 16.0594,-14.458 26.2324,-14.458 10.1732,0 16.0597,14.458 26.2328,14.458 10.1731,0 15.9365,-14.6441 26.2324,-14.458 7.1293,0.1288 16.9631,7.6417 22.3377,12.2509 v 79.1161 c 0,1.4145 -1.1387,2.5532 -2.5531,2.5532 z"
273
+ sodipodi:nodetypes="sscsssssscsss" />
274
+ </g>
275
+ </svg>
Binary file
@@ -0,0 +1,311 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="640"
6
+ height="705.40247"
7
+ viewBox="0 0 169.33334 186.63773"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
11
+ sodipodi:docname="page-with-bits.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#000000"
20
+ borderopacity="0.25"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="px"
26
+ inkscape:zoom="0.73260647"
27
+ inkscape:cx="-24.569808"
28
+ inkscape:cy="504.36355"
29
+ inkscape:window-width="3440"
30
+ inkscape:window-height="1371"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="layer1"
35
+ showgrid="false" />
36
+ <defs
37
+ id="defs1">
38
+ <marker
39
+ style="overflow:visible"
40
+ id="marker176"
41
+ refX="0"
42
+ refY="0"
43
+ orient="auto-start-reverse"
44
+ inkscape:stockid="Triangle arrow"
45
+ markerWidth="1"
46
+ markerHeight="1"
47
+ viewBox="0 0 1 1"
48
+ inkscape:isstock="true"
49
+ inkscape:collect="always"
50
+ preserveAspectRatio="xMidYMid">
51
+ <path
52
+ transform="scale(0.5)"
53
+ style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
54
+ d="M 5.77,0 -2.88,5 V -5 Z"
55
+ id="path176" />
56
+ </marker>
57
+ <marker
58
+ style="overflow:visible"
59
+ id="marker175"
60
+ refX="0"
61
+ refY="0"
62
+ orient="auto-start-reverse"
63
+ inkscape:stockid="Triangle arrow"
64
+ markerWidth="1"
65
+ markerHeight="1"
66
+ viewBox="0 0 1 1"
67
+ inkscape:isstock="true"
68
+ inkscape:collect="always"
69
+ preserveAspectRatio="xMidYMid">
70
+ <path
71
+ transform="scale(0.5)"
72
+ style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
73
+ d="M 5.77,0 -2.88,5 V -5 Z"
74
+ id="path175" />
75
+ </marker>
76
+ <clipPath
77
+ clipPathUnits="userSpaceOnUse"
78
+ id="clipPath9">
79
+ <path
80
+ id="path10"
81
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
82
+ d="m -122.15345,36.423821 c -4.15267,0 -9.29275,2.426711 -13.90678,5.284417 V 188.39868 c 4.61403,-2.8577 9.75411,-5.28392 13.90678,-5.28392 10.09893,0 15.94254,14.35238 26.041722,14.35238 10.099009,0 15.942199,-14.35238 26.041218,-14.35238 10.099012,0 15.942372,14.35238 26.041311,14.35238 10.099109,0 15.94302,-14.35238 26.042039,-14.35238 10.0990322,0 15.8202713,14.53712 26.0413109,14.35238 7.0773611,-0.12797 16.8395151,-7.58605 22.1748861,-12.1616 V 38.615008 C 24.893666,43.19064 15.131512,50.648763 8.0541509,50.7767 -2.1668887,50.961424 -7.8881278,36.423821 -17.98716,36.423821 c -10.099019,0 -15.94293,14.352879 -26.042039,14.352879 -10.098939,0 -15.942299,-14.352879 -26.041311,-14.352879 -10.099019,0 -15.942209,14.352879 -26.041218,14.352879 -10.099182,0 -15.942792,-14.352879 -26.041722,-14.352879 z"
83
+ sodipodi:nodetypes="sccssssssccssssss" />
84
+ </clipPath>
85
+ </defs>
86
+ <g
87
+ inkscape:label="Layer 1"
88
+ inkscape:groupmode="layer"
89
+ id="layer1"
90
+ transform="translate(-82.550117,-23.627478)">
91
+ <rect
92
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.180727;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
93
+ id="bits"
94
+ width="169.33334"
95
+ height="186.63774"
96
+ x="82.550117"
97
+ y="23.627478"
98
+ inkscape:export-filename="page-with-bits.png"
99
+ inkscape:export-xdpi="96"
100
+ inkscape:export-ydpi="96" />
101
+ <path
102
+ id="path201"
103
+ style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.511061;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
104
+ d="m 118.02805,26.125417 c -0.94426,0 -1.70447,0.760211 -1.70447,1.704527 v 62.125874 c 3.10287,-1.921801 6.55977,-3.553591 9.35238,-3.553591 6.7915,0 10.72131,9.652161 17.51293,9.652161 6.79156,0 10.7212,-9.652161 17.51276,-9.652161 6.79156,0 10.72126,9.652161 17.51277,9.652161 6.79161,0 10.72142,-9.652161 17.51298,-9.652161 6.79156,0 10.63919,9.776333 17.51276,9.652161 4.7595,-0.08604 11.32452,-5.10166 14.9126,-8.17876 V 27.829944 c 0,-0.944316 -0.76021,-1.704527 -1.70447,-1.704527 z" />
105
+ <g
106
+ id="g206"
107
+ style="stroke-width:2.64583;stroke-dasharray:none"
108
+ transform="matrix(0.29708986,0,0,0.29708986,-883.85039,1.6243027)" />
109
+ <path
110
+ id="path1"
111
+ style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.511061;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
112
+ d="m 118.02805,26.125417 c -0.94426,0 -1.70447,0.760211 -1.70447,1.704527 v 62.125874 c 3.10287,-1.921801 6.55977,-3.553591 9.35238,-3.553591 6.7915,0 10.72131,9.652161 17.51293,9.652161 6.79156,0 10.7212,-9.652161 17.51276,-9.652161 6.79156,0 10.72126,9.652161 17.51277,9.652161 6.79161,0 10.72142,-9.652161 17.51298,-9.652161 6.79156,0 10.63919,9.776333 17.51276,9.652161 4.7595,-0.08604 11.32452,-5.10166 14.9126,-8.17876 V 27.829944 c 0,-0.944316 -0.76021,-1.704527 -1.70447,-1.704527 z" />
113
+ <path
114
+ id="path11"
115
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58749, 1.58749;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
116
+ d="m 83.632182,25.443605 v 12.4651 c 4.63848,-2.87278 9.8057,-5.31184 13.980379,-5.31184 10.152259,0 16.026919,14.4283 26.179559,14.4283 10.15239,0 16.0264,-14.4283 26.17892,-14.4283 10.15238,0 16.02679,14.4283 26.17917,14.4283 10.15251,0 16.02731,-14.4283 26.17995,-14.4283 10.15238,0 15.90374,14.61397 26.17905,14.4283 7.11485,-0.12912 16.92855,-7.62617 22.29217,-12.22604 v -9.35552"
117
+ sodipodi:nodetypes="ccsssssscc" />
118
+ <path
119
+ id="path12"
120
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58751, 1.58751;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
121
+ d="m 250.80138,208.4491 v -18.82138 c -5.36362,4.59974 -15.17745,12.09731 -22.29217,12.22604 -10.27518,0.18554 -16.02667,-14.42894 -26.17905,-14.42894 -10.15264,0 -16.02744,14.42894 -26.17995,14.42894 -10.15238,0 -16.02679,-14.42894 -26.17917,-14.42894 -10.15252,0 -16.02653,14.42894 -26.17892,14.42894 -10.15277,0 -16.0273,-14.42894 -26.179559,-14.42894 -4.17468,0 -9.3419,2.43958 -13.98038,5.31235 v 15.71193"
122
+ sodipodi:nodetypes="ccsssssscc" />
123
+ <g
124
+ id="g10"
125
+ transform="translate(220.13239)">
126
+ <g
127
+ id="g8"
128
+ clip-path="url(#clipPath9)">
129
+ <g
130
+ id="g6"
131
+ transform="translate(0,-0.96883717)">
132
+ <rect
133
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.183657;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
134
+ id="rect165"
135
+ width="14.932349"
136
+ height="6.4394054"
137
+ x="-76.745811"
138
+ y="144.56561"
139
+ rx="2.2607253"
140
+ ry="2.2607253" />
141
+ <rect
142
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.183657;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
143
+ id="rect167"
144
+ width="14.932349"
145
+ height="6.4394054"
146
+ x="-60.21822"
147
+ y="144.56561"
148
+ rx="2.2607253"
149
+ ry="2.2607253" />
150
+ <rect
151
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.183657;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
152
+ id="rect168"
153
+ width="14.932349"
154
+ height="6.4394054"
155
+ x="-44.017723"
156
+ y="144.56561"
157
+ rx="2.2607253"
158
+ ry="2.2607253" />
159
+ </g>
160
+ <g
161
+ id="g7">
162
+ <rect
163
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.333167;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
164
+ id="rect171"
165
+ width="44.469128"
166
+ height="35.333973"
167
+ x="-120.93863"
168
+ y="164.43578"
169
+ rx="2.2607253"
170
+ ry="2.2607253" />
171
+ <rect
172
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.722413;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
173
+ id="rect184"
174
+ width="44.469128"
175
+ height="35.333977"
176
+ x="-74.800568"
177
+ y="164.43578"
178
+ rx="2.2607253"
179
+ ry="2.2607253" />
180
+ <rect
181
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.722413;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
182
+ id="rect195"
183
+ width="44.469128"
184
+ height="35.333977"
185
+ x="-28.662706"
186
+ y="164.43578"
187
+ rx="2.2607253"
188
+ ry="2.2607253" />
189
+ </g>
190
+ <circle
191
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.99837;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:3.99348, 3.99348;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
192
+ id="circle123-4"
193
+ cx="-52.915573"
194
+ cy="45.346931"
195
+ r="11.223979" />
196
+ <rect
197
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.175406;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
198
+ id="rect216"
199
+ width="137.44412"
200
+ height="6.4394002"
201
+ x="-121.63766"
202
+ y="60.525703"
203
+ ry="2.2607253"
204
+ rx="2.2607253" />
205
+ <g
206
+ id="g5"
207
+ transform="translate(0,-0.48441286)">
208
+ <rect
209
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.170161;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
210
+ id="rect169-8"
211
+ width="9.5011578"
212
+ height="6.4900074"
213
+ x="6.305172"
214
+ y="154.47539"
215
+ rx="2.2607253"
216
+ ry="2.2607253" />
217
+ <rect
218
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.175406;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
219
+ id="rect221"
220
+ width="124.76733"
221
+ height="6.4393845"
222
+ x="-121.63766"
223
+ y="154.5007"
224
+ ry="2.2607253"
225
+ rx="2.2607253" />
226
+ </g>
227
+ <g
228
+ id="g4"
229
+ transform="translate(0,-0.87777052)">
230
+ <rect
231
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.554824;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
232
+ id="rect204"
233
+ width="137.44417"
234
+ height="68.722084"
235
+ x="-121.63768"
236
+ y="71.797668"
237
+ inkscape:export-filename="screenshot-example-1600x1200.webp"
238
+ inkscape:export-xdpi="152.91"
239
+ inkscape:export-ydpi="152.91"
240
+ ry="1.1453681"
241
+ rx="1.1453681" />
242
+ <g
243
+ id="g205"
244
+ style="stroke:#5c2e4f;stroke-width:2.64583;stroke-dasharray:none;stroke-opacity:1"
245
+ transform="matrix(-0.29708986,0,0,0.29708986,778.0192,2.8121414)">
246
+ <path
247
+ style="fill:none;stroke:#ecdce8;stroke-width:2.64583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker176);marker-end:url(#marker175)"
248
+ d="M 3000.8804,253.36047 2592.9478,440.41842"
249
+ id="path205"
250
+ sodipodi:nodetypes="cc" />
251
+ </g>
252
+ <g
253
+ id="g2"
254
+ style="stroke:#5c2e4f;stroke-width:2.64583;stroke-dasharray:none;stroke-opacity:1"
255
+ transform="matrix(0.29708986,0,0,0.29708986,-883.85044,2.8121414)">
256
+ <path
257
+ style="fill:none;stroke:#ecdce8;stroke-width:2.64583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker176);marker-end:url(#marker175)"
258
+ d="M 3000.8804,253.36047 2592.9478,440.41842"
259
+ id="path2"
260
+ sodipodi:nodetypes="cc" />
261
+ </g>
262
+ <rect
263
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.113229;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
264
+ id="rect210"
265
+ width="42.997028"
266
+ height="9.1493168"
267
+ x="-74.414108"
268
+ y="101.58405"
269
+ rx="0.80578297"
270
+ ry="0.22861624" />
271
+ <g
272
+ id="g208"
273
+ transform="matrix(0.30777938,0,0,0.30777938,-775.28249,-73.203951)"
274
+ style="fill:#d9b9d1;fill-opacity:1">
275
+ <g
276
+ id="g207"
277
+ transform="translate(-168.48926,4.0104842)"
278
+ style="fill:#d9b9d1;fill-opacity:1">
279
+ <text
280
+ xml:space="preserve"
281
+ style="font-size:21.2011px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.653279"
282
+ x="2516.0051"
283
+ y="586.17365"
284
+ id="text207"><tspan
285
+ sodipodi:role="line"
286
+ id="tspan207"
287
+ style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:21.2011px;font-family:Montserrat;-inkscape-font-specification:'Montserrat Light';text-align:center;text-anchor:middle;fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.653279"
288
+ x="2516.0051"
289
+ y="586.17365">1200x600</tspan></text>
290
+ </g>
291
+ </g>
292
+ </g>
293
+ </g>
294
+ <rect
295
+ style="fill:#a14f8c;fill-opacity:0;stroke:none;stroke-width:0.470154;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
296
+ id="rect205"
297
+ width="130.29327"
298
+ height="97.719963"
299
+ x="-118.06217"
300
+ y="74.71875"
301
+ inkscape:export-filename="screenshot-example-1600x1200.webp"
302
+ inkscape:export-xdpi="96"
303
+ inkscape:export-ydpi="96" />
304
+ <path
305
+ id="path9"
306
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
307
+ d="m -122.15345,36.423814 c -4.15267,0 -9.29275,2.426711 -13.90678,5.284417 V 188.39867 c 4.61403,-2.8577 9.75411,-5.28392 13.90678,-5.28392 10.09893,0 15.94254,14.35238 26.041725,14.35238 10.099009,0 15.942199,-14.35238 26.041218,-14.35238 10.099012,0 15.942372,14.35238 26.041311,14.35238 10.099109,0 15.943022,-14.35238 26.042042,-14.35238 10.0990297,0 15.8202697,14.53712 26.0413097,14.35238 7.0773603,-0.12797 16.8395103,-7.58605 22.1748803,-12.1616 V 38.615001 c -5.33537,4.575632 -15.09752,12.033755 -22.1748803,12.161692 -10.22104,0.184724 -15.94228,-14.352879 -26.0413097,-14.352879 -10.09902,0 -15.942933,14.352879 -26.042042,14.352879 -10.098939,0 -15.942299,-14.352879 -26.041311,-14.352879 -10.099019,0 -15.942209,14.352879 -26.041218,14.352879 -10.099185,0 -15.942795,-14.352879 -26.041725,-14.352879 z"
308
+ sodipodi:nodetypes="sccssssssccssssss" />
309
+ </g>
310
+ </g>
311
+ </svg>