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,1158 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="2350.1638"
6
+ height="3503.5903"
7
+ viewBox="0 0 621.8142 926.99171"
8
+ version="1.1"
9
+ id="svg638"
10
+ inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
11
+ sodipodi:docname="page-layout-default.svg"
12
+ inkscape:export-filename="page-with-announcement.webp"
13
+ inkscape:export-xdpi="83.063591"
14
+ inkscape:export-ydpi="83.063591"
15
+ xml:space="preserve"
16
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
17
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
18
+ xmlns:xlink="http://www.w3.org/1999/xlink"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
21
+ id="namedview640"
22
+ pagecolor="#ffffff"
23
+ bordercolor="#666666"
24
+ borderopacity="1.0"
25
+ inkscape:showpageshadow="2"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pagecheckerboard="0"
28
+ inkscape:deskcolor="#d1d1d1"
29
+ inkscape:document-units="px"
30
+ showgrid="false"
31
+ inkscape:zoom="0.5"
32
+ inkscape:cx="881"
33
+ inkscape:cy="1185"
34
+ inkscape:window-width="3440"
35
+ inkscape:window-height="1371"
36
+ inkscape:window-x="0"
37
+ inkscape:window-y="0"
38
+ inkscape:window-maximized="1"
39
+ inkscape:current-layer="layer1"
40
+ showguides="true" /><defs
41
+ id="defs635"><marker
42
+ style="overflow:visible"
43
+ id="marker176"
44
+ refX="0"
45
+ refY="0"
46
+ orient="auto-start-reverse"
47
+ inkscape:stockid="Triangle arrow"
48
+ markerWidth="1"
49
+ markerHeight="1"
50
+ viewBox="0 0 1 1"
51
+ inkscape:isstock="true"
52
+ inkscape:collect="always"
53
+ preserveAspectRatio="xMidYMid"><path
54
+ transform="scale(0.5)"
55
+ style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
56
+ d="M 5.77,0 -2.88,5 V -5 Z"
57
+ id="path176" /></marker><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"><path
70
+ transform="scale(0.5)"
71
+ style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
72
+ d="M 5.77,0 -2.88,5 V -5 Z"
73
+ id="path175" /></marker><symbol
74
+ id="image"><title
75
+ id="image-title">Image</title><path
76
+ d="M 464,64 H 48 C 21.49,64 0,85.49 0,112 v 288 c 0,26.51 21.49,48 48,48 h 416 c 26.51,0 48,-21.49 48,-48 V 112 C 512,85.49 490.51,64 464,64 Z m -6,336 H 54 a 6,6 0 0 1 -6,-6 V 118 a 6,6 0 0 1 6,-6 h 404 a 6,6 0 0 1 6,6 v 276 a 6,6 0 0 1 -6,6 z M 128,152 c -22.091,0 -40,17.909 -40,40 0,22.091 17.909,40 40,40 22.091,0 40,-17.909 40,-40 0,-22.091 -17.909,-40 -40,-40 z M 96,352 h 320 v -80 l -87.515,-87.515 c -4.686,-4.686 -12.284,-4.686 -16.971,0 L 192,304 152.485,264.485 c -4.686,-4.686 -12.284,-4.686 -16.971,0 L 96,304 Z"
77
+ id="path76" /></symbol><symbol
78
+ id="arrow-right"><title
79
+ id="arrow-right-title">arrow-right</title><path
80
+ d="m 190.5,66.9 22.2,-22.2 c 9.4,-9.4 24.6,-9.4 33.9,0 L 441,239 c 9.4,9.4 9.4,24.6 0,33.9 L 246.6,467.3 c -9.4,9.4 -24.6,9.4 -33.9,0 l -22.2,-22.2 c -9.5,-9.5 -9.3,-25 0.4,-34.3 L 311.4,296 H 24 C 10.7,296 0,285.3 0,272 V 240 C 0,226.7 10.7,216 24,216 H 311.4 L 190.9,101.2 c -9.8,-9.3 -10,-24.8 -0.4,-34.3 z"
81
+ id="path30" /></symbol><symbol
82
+ id="align-left"><title
83
+ id="align-left-title">align-left</title><path
84
+ 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"
85
+ id="path6" /></symbol><marker
86
+ style="overflow:visible"
87
+ id="Dot-1"
88
+ refX="0"
89
+ refY="0"
90
+ orient="auto"
91
+ inkscape:stockid="Dot"
92
+ markerWidth="1"
93
+ markerHeight="1"
94
+ viewBox="0 0 1 1"
95
+ inkscape:isstock="true"
96
+ inkscape:collect="always"
97
+ preserveAspectRatio="xMidYMid"><path
98
+ transform="scale(0.5)"
99
+ style="fill:context-stroke;fill-rule:evenodd;stroke:none"
100
+ d="M 5,0 C 5,2.76 2.76,5 0,5 -2.76,5 -5,2.76 -5,0 c 0,-2.76 2.3,-5 5,-5 2.76,0 5,2.24 5,5 z"
101
+ sodipodi:nodetypes="sssss"
102
+ id="path258-4" /></marker></defs><g
103
+ inkscape:label="Layer 1"
104
+ inkscape:groupmode="layer"
105
+ id="layer1"
106
+ transform="translate(-659.31616,191.47258)"><rect
107
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.18207;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
108
+ id="page-layout-default"
109
+ width="621.81421"
110
+ height="926.9917"
111
+ x="659.31616"
112
+ y="-191.47258"
113
+ inkscape:export-filename="page.webp"
114
+ inkscape:export-xdpi="71.344818"
115
+ inkscape:export-ydpi="71.344818" /><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><g
116
+ id="g21"
117
+ transform="translate(547.31971,16.197727)" /><text
118
+ xml:space="preserve"
119
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
120
+ x="1180.3364"
121
+ y="-8.662611"
122
+ id="text3047-1"><tspan
123
+ sodipodi:role="line"
124
+ id="tspan3045-2"
125
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
126
+ x="1180.3364"
127
+ y="-8.662611">page.with_announcements</tspan></text><text
128
+ xml:space="preserve"
129
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
130
+ x="1180.3364"
131
+ y="-26.090687"
132
+ id="text37"><tspan
133
+ sodipodi:role="line"
134
+ id="tspan37"
135
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
136
+ x="1180.3364"
137
+ y="-26.090687">page.with_breakingnews</tspan></text><rect
138
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:1.32292;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
139
+ id="rect4291"
140
+ width="346.52783"
141
+ height="906.90845"
142
+ x="792.72247"
143
+ y="-181.26898"
144
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
145
+ inkscape:export-xdpi="96"
146
+ inkscape:export-ydpi="96"
147
+ rx="5.1586919"
148
+ ry="5.0456157" /><rect
149
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.511739;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
150
+ id="rect36"
151
+ width="334.27991"
152
+ height="16.055479"
153
+ x="798.84631"
154
+ y="-35.750675"
155
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
156
+ inkscape:export-xdpi="96"
157
+ inkscape:export-ydpi="96" /><g
158
+ id="g13"
159
+ transform="matrix(0.94041424,0,0,0.94041424,127.48666,16.998374)"><rect
160
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.240121;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
161
+ id="rect3425"
162
+ width="305.1376"
163
+ height="10.994823"
164
+ x="739.05914"
165
+ y="-34.519978"
166
+ rx="1.4067383"
167
+ ry="1.4067383" /><path
168
+ d="m 747.51343,-32.243337 c 0,-0.155934 -0.0943,-0.297355 -0.23934,-0.357796 -0.14506,-0.06045 -0.31066,-0.02658 -0.42186,0.08347 l -0.52703,0.528235 c -0.58021,0.580206 -1.36712,0.906589 -2.18788,0.906589 h -0.10516 -0.38681 -1.16042 c -0.4267,0 -0.77361,0.346913 -0.77361,0.773609 v 1.160423 c 0,0.426686 0.34691,0.773609 0.77361,0.773609 v 1.547227 c 0,0.213961 0.17285,0.386805 0.38681,0.386805 h 0.77361 c 0.21396,0 0.38681,-0.172844 0.38681,-0.386805 v -1.547227 h 0.10516 c 0.82076,0 1.60767,0.326364 2.18788,0.90658 l 0.52703,0.527027 c 0.1112,0.111206 0.2768,0.143854 0.42186,0.08347 0.14505,-0.06054 0.23934,-0.200664 0.23934,-0.357796 v -1.782945 c 0.22483,-0.106367 0.38681,-0.392849 0.38681,-0.730096 0,-0.337247 -0.16198,-0.623729 -0.38681,-0.730096 z m -0.77361,0.92713 v 1.587109 1.587128 c -0.71077,-0.646702 -1.6379,-1.006912 -2.6025,-1.006912 h -0.10516 v -1.160423 h 0.10516 c 0.9646,0 1.89173,-0.36022 2.6025,-1.006902 z"
169
+ id="path3462"
170
+ style="fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.247585" /><g
171
+ id="g39"
172
+ transform="matrix(0.60142389,0,0,0.60142392,408.31018,43.534981)"
173
+ style="fill:#77767b;fill-opacity:1;stroke:#c795ba;stroke-width:1.13921;stroke-opacity:1"><path
174
+ style="fill:#77767b;fill-opacity:1;stroke:#c795ba;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
175
+ d="m 1044.5533,-124.15749 6.0283,6.02831"
176
+ id="path38" /><path
177
+ style="fill:none;fill-opacity:1;stroke:#c795ba;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
178
+ d="m 1050.5816,-124.15749 -6.0283,6.02831"
179
+ id="path39" /></g></g><use
180
+ x="0"
181
+ y="0"
182
+ xlink:href="#use277"
183
+ id="use278"
184
+ transform="translate(0,17.42808)"
185
+ style="stroke:#a14f8c" /><text
186
+ xml:space="preserve"
187
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
188
+ x="1180.3364"
189
+ y="-82.875679"
190
+ id="text2076"><tspan
191
+ sodipodi:role="line"
192
+ id="tspan2074"
193
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
194
+ x="1180.3364"
195
+ y="-82.875679">page.with_project</tspan></text><use
196
+ x="0"
197
+ y="0"
198
+ xlink:href="#use279"
199
+ id="use280"
200
+ transform="translate(3.0000001e-6,-508.48573)"
201
+ style="stroke:#a14f8c" /><g
202
+ id="g108"
203
+ transform="translate(-0.1577487,-55.727463)"><text
204
+ xml:space="preserve"
205
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#3b1c33;fill-opacity:1;stroke-width:0.248818"
206
+ x="1180.1787"
207
+ y="247.00833"
208
+ id="text50"><tspan
209
+ sodipodi:role="line"
210
+ id="tspan50"
211
+ style="font-size:6.63515px;fill:#3b1c33;fill-opacity:1;stroke-width:0.248818"
212
+ x="1180.1787"
213
+ y="247.00833">page.with_bits</tspan></text><use
214
+ x="0"
215
+ y="0"
216
+ xlink:href="#use280"
217
+ id="use281"
218
+ transform="translate(0.1577507,329.88398)" /></g><path
219
+ id="path31-3"
220
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0759096;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
221
+ d="M 1133.1265,-136.58935 V -35.753466 H 798.84632 V -136.58935 Z"
222
+ sodipodi:nodetypes="ccccc" /><path
223
+ style="fill:#1a0029;fill-opacity:1;stroke:#a14f8c;stroke-width:0.674095;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Dot-1)"
224
+ d="m 1150.2434,-143.13011 h 25.4185"
225
+ id="path268-2"
226
+ sodipodi:nodetypes="cc" /><text
227
+ xml:space="preserve"
228
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
229
+ x="1180.3364"
230
+ y="-141.49786"
231
+ id="text303"><tspan
232
+ sodipodi:role="line"
233
+ id="tspan303"
234
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
235
+ x="1180.3364"
236
+ y="-141.49786">page.with_navbar</tspan></text><rect
237
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.16426;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
238
+ id="rect56"
239
+ width="76.419083"
240
+ height="3.4072065"
241
+ x="836.51392"
242
+ y="-12.430399"
243
+ ry="0.64491266"
244
+ rx="0.64491266" /><text
245
+ xml:space="preserve"
246
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
247
+ x="1180.021"
248
+ y="402.28284"
249
+ id="text158"><tspan
250
+ sodipodi:role="line"
251
+ id="tspan158"
252
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
253
+ x="1180.021"
254
+ y="402.28284">page.with_event</tspan></text><rect
255
+ style="fill:#fcedd3;fill-opacity:1;stroke:none;stroke-width:0.510705;stroke-opacity:1"
256
+ id="rect88"
257
+ width="286.95578"
258
+ height="24.660303"
259
+ x="822.9176"
260
+ y="388.32043"
261
+ rx="4.9763589"
262
+ ry="4.9763589" /><path
263
+ d="m 835.60659,396.70249 c -0.29118,0 -0.52642,0.23524 -0.52642,0.52641 v 0.52641 h -0.52641 c -0.5807,0 -1.05282,0.47213 -1.05282,1.05283 v 0.78962 h 7.36978 v -0.78962 c 0,-0.5807 -0.47212,-1.05283 -1.05282,-1.05283 h -0.52641 v -0.52641 c 0,-0.29117 -0.23524,-0.52641 -0.52642,-0.52641 -0.29117,0 -0.52641,0.23524 -0.52641,0.52641 v 0.52641 H 836.133 v -0.52641 c 0,-0.29117 -0.23524,-0.52641 -0.52641,-0.52641 z m -2.10565,3.68489 v 3.15849 c 0,0.58069 0.47212,1.05282 1.05282,1.05282 h 5.26414 c 0.5807,0 1.05282,-0.47213 1.05282,-1.05282 v -3.15849 z"
264
+ id="path1-3"
265
+ style="fill:#f5ca7c;fill-opacity:1;stroke-width:0.0164504" /><use
266
+ x="0"
267
+ y="0"
268
+ xlink:href="#use281"
269
+ id="use282"
270
+ transform="translate(-0.1577537,155.27453)"
271
+ style="fill:#1a0029;stroke:#a14f8c" /><text
272
+ xml:space="preserve"
273
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
274
+ x="1180.021"
275
+ y="448.84747"
276
+ id="text51"><tspan
277
+ sodipodi:role="line"
278
+ id="tspan51"
279
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
280
+ x="1180.021"
281
+ y="448.84747">page.with_title</tspan></text><use
282
+ x="0"
283
+ y="0"
284
+ xlink:href="#use282"
285
+ id="use284"
286
+ transform="translate(2.5999999e-6,46.564639)"
287
+ style="fill:#1a0029;stroke:#a14f8c" /><text
288
+ xml:space="preserve"
289
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
290
+ x="1180.021"
291
+ y="482.49979"
292
+ id="text53"><tspan
293
+ sodipodi:role="line"
294
+ id="tspan53"
295
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
296
+ x="1180.021"
297
+ y="482.49979">page.with_artwork</tspan></text><g
298
+ id="g37"
299
+ transform="translate(9.3644778,-160.87996)"><rect
300
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.205124;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
301
+ id="rect1565-1-7"
302
+ width="286.95572"
303
+ height="28.294312"
304
+ x="813.31335"
305
+ y="627.60034"
306
+ rx="4.9763589"
307
+ ry="4.9763589" /><use
308
+ xlink:href="#image"
309
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.92095"
310
+ id="use49"
311
+ transform="matrix(0.03175021,0,0,0.03175021,949.55312,633.61951)" /></g><path
312
+ style="fill:#1a0029;fill-opacity:1;stroke:#a14f8c;stroke-width:0.674095;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Dot-1)"
313
+ d="m 1150.2434,480.86754 h 25.4185"
314
+ id="use285"
315
+ sodipodi:nodetypes="cc" /><text
316
+ xml:space="preserve"
317
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
318
+ x="1180.021"
319
+ y="517.89282"
320
+ id="text2080"><tspan
321
+ sodipodi:role="line"
322
+ id="tspan2078"
323
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
324
+ x="1180.021"
325
+ y="517.89282">page.with_toc</tspan></text><g
326
+ id="g38"
327
+ transform="translate(9.1950734,-165.08752)"><rect
328
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.248818;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
329
+ id="rect1166"
330
+ width="286.95578"
331
+ height="27.962162"
332
+ x="813.31335"
333
+ y="667.367"
334
+ rx="4.9763589"
335
+ ry="4.9763589" /><g
336
+ id="g57-0"
337
+ transform="matrix(0.02677882,0,0,0.02677882,950.79278,674.49279)"
338
+ style="fill:#381a32;fill-opacity:1"><title
339
+ id="title57-8">align-left</title><path
340
+ 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"
341
+ id="path57-1"
342
+ style="fill:#ecdce8;fill-opacity:1" /></g><path
343
+ sodipodi:type="star"
344
+ 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"
345
+ id="path37"
346
+ inkscape:flatsided="false"
347
+ sodipodi:sides="3"
348
+ sodipodi:cx="-499.8125"
349
+ sodipodi:cy="737.32031"
350
+ sodipodi:r1="36.465179"
351
+ sodipodi:r2="18.23259"
352
+ sodipodi:arg1="1.5707963"
353
+ sodipodi:arg2="2.6179939"
354
+ inkscape:rounded="0"
355
+ inkscape:randomized="0"
356
+ 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"
357
+ transform="matrix(0.10519844,0,0,0.10519844,1139.2521,602.82419)"
358
+ inkscape:transform-center-y="1.0197809"
359
+ inkscape:transform-center-x="-6.518711e-05" /></g><use
360
+ x="0"
361
+ y="0"
362
+ xlink:href="#use285"
363
+ id="use286"
364
+ transform="translate(2.6e-6,35.393025)"
365
+ style="fill:#1a0029;stroke:#a14f8c" /><text
366
+ xml:space="preserve"
367
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
368
+ x="1180.021"
369
+ y="553.11975"
370
+ id="text1150-8"><tspan
371
+ sodipodi:role="line"
372
+ id="tspan1148-9"
373
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
374
+ x="1180.021"
375
+ y="553.11975">page.with_content</tspan></text><g
376
+ id="g58"
377
+ transform="matrix(0.94041424,0,0,0.94041424,98.12381,599.12748)"><rect
378
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.305937;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
379
+ id="rect57"
380
+ width="305.13763"
381
+ height="29.733877"
382
+ x="770.28247"
383
+ y="-65.525414"
384
+ rx="5.291667"
385
+ ry="5.291667" /><g
386
+ id="g57"
387
+ transform="matrix(0.02847556,0,0,0.02847556,916.47276,-57.948218)"
388
+ style="fill:#ffffff"><title
389
+ id="title57">align-left</title><path
390
+ 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"
391
+ id="path57"
392
+ style="fill:#ecdce8" /></g></g><use
393
+ x="0"
394
+ y="0"
395
+ xlink:href="#use286"
396
+ id="use287"
397
+ transform="translate(2.6e-6,35.226964)"
398
+ style="fill:#1a0029;stroke:#a14f8c" /><text
399
+ xml:space="preserve"
400
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke-width:0.248818"
401
+ x="751.94885"
402
+ y="633.62848"
403
+ id="text17"><tspan
404
+ sodipodi:role="line"
405
+ id="tspan17"
406
+ style="font-size:6.63515px;text-align:end;text-anchor:end;fill:#000000;fill-opacity:1;stroke-width:0.248818"
407
+ x="751.94885"
408
+ y="633.62848">page.with_footer</tspan></text><rect
409
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.52837296;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000;stroke-dasharray:none"
410
+ id="rect2416"
411
+ width="334.27991"
412
+ height="121.71904"
413
+ x="798.84631"
414
+ y="571.11017"
415
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
416
+ inkscape:export-xdpi="96"
417
+ inkscape:export-ydpi="96" /><rect
418
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.248818;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
419
+ id="rect3039"
420
+ width="142.92273"
421
+ height="3.6374147"
422
+ x="894.5249"
423
+ y="679.46832"
424
+ rx="1.2440896"
425
+ ry="1.2440896" /><g
426
+ id="g54"
427
+ transform="translate(28.449441,-169.13894)"
428
+ style="fill:#f6edf4"><rect
429
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.396514;stroke-linejoin:bevel;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
430
+ id="rect43"
431
+ width="153.76582"
432
+ height="21.535042"
433
+ x="814.55182"
434
+ y="818.94806"
435
+ rx="2.6458335"
436
+ ry="2.6458335" /><rect
437
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.497636;stroke-linejoin:bevel;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
438
+ id="rect44"
439
+ width="86.154228"
440
+ height="20.882204"
441
+ x="974.36761"
442
+ y="819.27448"
443
+ rx="2.6458335"
444
+ ry="2.6458335" /></g><use
445
+ x="0"
446
+ y="0"
447
+ xlink:href="#use287"
448
+ id="use288"
449
+ transform="matrix(-1,0,0,1,1932.169,80.482217)"
450
+ style="stroke:#a14f8c" /><use
451
+ x="0"
452
+ y="0"
453
+ xlink:href="#use281"
454
+ id="use299"
455
+ transform="translate(-0.1577537,340.48262)"
456
+ style="fill:#1a0029;stroke:#a14f8c" /><text
457
+ xml:space="preserve"
458
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
459
+ x="1180.021"
460
+ y="587.49091"
461
+ id="text299"><tspan
462
+ sodipodi:role="line"
463
+ id="tspan299"
464
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
465
+ x="1180.021"
466
+ y="587.49091">page.with_shortcut</tspan></text><use
467
+ x="0"
468
+ y="0"
469
+ xlink:href="#use281"
470
+ id="use301"
471
+ transform="translate(-0.1577537,409.21372)"
472
+ style="fill:#1a0029;stroke:#a14f8c" /><text
473
+ xml:space="preserve"
474
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
475
+ x="1180.021"
476
+ y="656.22198"
477
+ id="text301"><tspan
478
+ sodipodi:role="line"
479
+ id="tspan301"
480
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
481
+ x="1180.021"
482
+ y="656.22198">page.with_sponsors</tspan></text><use
483
+ x="0"
484
+ y="0"
485
+ xlink:href="#use281"
486
+ id="use302"
487
+ transform="translate(-0.1577537,435.91099)"
488
+ style="fill:#1a0029;stroke:#a14f8c" /><text
489
+ xml:space="preserve"
490
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
491
+ x="1180.021"
492
+ y="682.91925"
493
+ id="text302"><tspan
494
+ sodipodi:role="line"
495
+ id="tspan302"
496
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
497
+ x="1180.021"
498
+ y="682.91925">page.with_copyright</tspan></text><g
499
+ id="g304"
500
+ transform="matrix(0.94041424,0,0,0.94041424,61.034936,899.0659)"><rect
501
+ style="fill:#f6edf4;fill-opacity:1;stroke:#c795ba;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.58749, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
502
+ id="rect304"
503
+ width="355.46042"
504
+ height="20.980024"
505
+ x="784.56"
506
+ y="-213.28009"
507
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
508
+ inkscape:export-xdpi="96"
509
+ inkscape:export-ydpi="96"
510
+ rx="2.8134766"
511
+ ry="2.8134766" /><text
512
+ xml:space="preserve"
513
+ style="font-size:7.05556px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';text-align:center;text-anchor:middle;fill:#c795ba;fill-opacity:1;stroke-width:0.264583"
514
+ x="962.29083"
515
+ y="-200.98668"
516
+ id="text304"><tspan
517
+ sodipodi:role="line"
518
+ id="tspan304"
519
+ style="font-weight:bold;font-size:7.05556px;text-align:center;text-anchor:middle;fill:#c795ba;fill-opacity:1;stroke-width:0.264583"
520
+ x="962.29083"
521
+ y="-200.98668">{% include base/script.html.liquid %}</tspan></text></g><path
522
+ id="path5"
523
+ style="opacity:1;fill:#d9b9d1;fill-opacity:1;stroke-width:0.669203;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
524
+ d="m 1107.1733,571.11025 v 66.72664 c 0,2.13176 -1.7163,3.84807 -3.8481,3.84807 H 828.64729 c -2.13184,0 -3.84808,-1.71631 -3.84808,-3.84807 l 0,-66.72664 z"
525
+ sodipodi:nodetypes="csssscc" /><path
526
+ id="path2"
527
+ style="opacity:1;fill:#c795ba;fill-opacity:1;stroke-width:0.669203;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
528
+ d="m 1107.1733,571.11025 v 29.49686 H 824.79921 v -29.49686 z"
529
+ sodipodi:nodetypes="ccccc" /><g
530
+ id="g10"
531
+ transform="matrix(0.761909,0,0,0.761909,-184.31075,-699.74588)"
532
+ style="fill:#ecdce8"><rect
533
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
534
+ id="rect6"
535
+ width="56.660175"
536
+ height="3.8678894"
537
+ x="1404.103"
538
+ y="1677.6968"
539
+ rx="1.3229166"
540
+ ry="1.3229166" /><rect
541
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
542
+ id="rect7"
543
+ width="56.660175"
544
+ height="3.8678894"
545
+ x="1404.103"
546
+ y="1685.1626"
547
+ rx="1.3229166"
548
+ ry="1.3229166" /><rect
549
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
550
+ id="rect10"
551
+ width="56.660175"
552
+ height="3.8678894"
553
+ x="1404.103"
554
+ y="1692.6283"
555
+ rx="1.3229166"
556
+ ry="1.3229166" /></g><g
557
+ id="g22"
558
+ transform="matrix(0.761909,0,0,0.761909,-179.44066,-699.74588)"
559
+ style="fill:#ecdce8"><rect
560
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
561
+ id="rect14"
562
+ width="56.660175"
563
+ height="3.8678894"
564
+ x="1475.0344"
565
+ y="1677.6968"
566
+ rx="1.3229166"
567
+ ry="1.3229166" /><rect
568
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
569
+ id="rect21"
570
+ width="56.660175"
571
+ height="3.8678894"
572
+ x="1475.0344"
573
+ y="1685.1626"
574
+ rx="1.3229166"
575
+ ry="1.3229166" /><rect
576
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
577
+ id="rect22"
578
+ width="56.660175"
579
+ height="3.8678894"
580
+ x="1475.0344"
581
+ y="1692.6283"
582
+ rx="1.3229166"
583
+ ry="1.3229166" /></g><g
584
+ id="g26"
585
+ transform="matrix(0.761909,0,0,0.761909,-185.16224,-699.74588)"
586
+ style="fill:#ecdce8"><rect
587
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
588
+ id="rect24"
589
+ width="56.660175"
590
+ height="3.8678894"
591
+ x="1559.8673"
592
+ y="1677.6968"
593
+ rx="1.3229166"
594
+ ry="1.3229166" /><rect
595
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
596
+ id="rect25"
597
+ width="56.660175"
598
+ height="3.8678894"
599
+ x="1559.8673"
600
+ y="1685.1626"
601
+ rx="1.3229166"
602
+ ry="1.3229166" /><rect
603
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
604
+ id="rect26"
605
+ width="56.660175"
606
+ height="3.8678894"
607
+ x="1559.8673"
608
+ y="1692.6283"
609
+ rx="1.3229166"
610
+ ry="1.3229166" /></g><g
611
+ id="g35"
612
+ transform="matrix(0.94041424,0,0,0.94041424,127.65609,538.1514)"><rect
613
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
614
+ id="rect1776"
615
+ width="33.323124"
616
+ height="7.9375"
617
+ x="739.05914"
618
+ y="-125.37652"
619
+ rx="1.3229167"
620
+ ry="1.3229167" /><path
621
+ d="m 1030.6073,-124.05361 c 0,-0.72966 0.5932,-1.32291 1.323,-1.32291 h 3.9686 0.9922 0.3308 5.2917 c 0.7296,0 1.3228,0.59325 1.3228,1.32291 v 5.29167 c 0,0.72967 -0.5932,1.32292 -1.3228,1.32292 h -5.2917 -0.3308 -0.9922 -3.9686 c -0.7298,0 -1.323,-0.59325 -1.323,-1.32292 z m 6.6146,0 v 5.29167 h 5.2917 v -5.29167 z m -2.929,0.99012 c -0.066,-0.14883 -0.215,-0.24597 -0.3783,-0.24597 -0.1633,0 -0.3122,0.0971 -0.3783,0.24597 l -1.323,2.97656 c -0.093,0.20878 0,0.45269 0.2109,0.54571 0.2088,0.0931 0.4527,-0.002 0.5457,-0.21084 l 0.184,-0.41548 h 1.5214 l 0.184,0.41548 c 0.093,0.20876 0.3369,0.30179 0.5456,0.21084 0.2088,-0.0909 0.3018,-0.33693 0.2109,-0.54571 z m -0.3783,1.18442 0.3927,0.88471 h -0.7854 z m 5.9531,-1.43039 c 0.2274,0 0.4134,0.18603 0.4134,0.41341 v 0.0827 h 0.9095 0.3308 c 0.2273,0 0.4134,0.18604 0.4134,0.41341 0,0.22738 -0.1861,0.41341 -0.4134,0.41341 h -0.042 l -0.033,0.0931 c -0.184,0.50436 -0.463,0.96325 -0.8185,1.35185 0.019,0.0124 0.037,0.0227 0.056,0.0331 l 0.3907,0.23358 c 0.1963,0.11782 0.2583,0.37206 0.1426,0.56637 -0.1158,0.1943 -0.3721,0.25838 -0.5664,0.14262 l -0.3906,-0.23357 c -0.093,-0.0558 -0.182,-0.1137 -0.2709,-0.1757 -0.219,0.15503 -0.4526,0.28939 -0.7027,0.40101 l -0.074,0.0331 c -0.2087,0.0931 -0.4527,-0.002 -0.5456,-0.21084 -0.093,-0.20877 0,-0.45268 0.2108,-0.54571 l 0.074,-0.0331 c 0.1323,-0.06 0.2604,-0.12609 0.3825,-0.20258 l -0.2523,-0.25218 c -0.1612,-0.16122 -0.1612,-0.42374 0,-0.58497 0.1613,-0.16123 0.4237,-0.16123 0.585,0 l 0.3018,0.30179 0.011,0.0103 c 0.2563,-0.27079 0.4651,-0.58498 0.616,-0.93017 h -0.7277 -1.4882 c -0.2274,0 -0.4135,-0.18603 -0.4135,-0.41341 0,-0.22738 0.1861,-0.41342 0.4135,-0.41342 h 1.0749 v -0.0827 c 0,-0.22737 0.1859,-0.41341 0.4133,-0.41341 z"
622
+ id="path1"
623
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0206705" /><rect
624
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
625
+ id="rect8"
626
+ width="33.323124"
627
+ height="7.9375"
628
+ x="778.5531"
629
+ y="-125.37652"
630
+ rx="1.3229167"
631
+ ry="1.3229167" /><rect
632
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.100055;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
633
+ id="rect9"
634
+ width="33.323124"
635
+ height="7.9375"
636
+ x="818.04712"
637
+ y="-125.37652"
638
+ rx="1.3229167"
639
+ ry="1.3229167" /><path
640
+ style="fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
641
+ d="m 774.56963,-123.04318 1.70092,1.63724 -1.57354,1.63723"
642
+ id="path9"
643
+ sodipodi:nodetypes="ccc" /><path
644
+ style="fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
645
+ d="m 814.06362,-123.04318 1.70092,1.63724 -1.57354,1.63723"
646
+ id="path10"
647
+ sodipodi:nodetypes="ccc" /></g><text
648
+ xml:space="preserve"
649
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
650
+ x="1180.021"
651
+ y="425.61005"
652
+ id="text2100"><tspan
653
+ sodipodi:role="line"
654
+ id="tspan2098"
655
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
656
+ x="1180.021"
657
+ y="425.61005">page.with_locales</tspan></text><use
658
+ x="0"
659
+ y="0"
660
+ xlink:href="#use278"
661
+ id="use279"
662
+ transform="translate(-1.0000001e-6,434.27267)"
663
+ style="fill:#1a0029;stroke:#a14f8c" /><use
664
+ x="0"
665
+ y="0"
666
+ xlink:href="#use281"
667
+ id="use56"
668
+ transform="matrix(-1,0,0,1,1932.327,178.60175)"
669
+ style="stroke:#a14f8c" /><text
670
+ xml:space="preserve"
671
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
672
+ x="668.41888"
673
+ y="425.61005"
674
+ id="text56"><tspan
675
+ sodipodi:role="line"
676
+ id="tspan56"
677
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
678
+ x="668.41888"
679
+ y="425.61005">page.with_breadcrumbs</tspan></text><g
680
+ id="g41-7"
681
+ transform="matrix(0.94041424,0,0,0.94041424,123.07036,565.78059)"><rect
682
+ style="fill:#f5ca7c;fill-opacity:1;stroke-width:15.8106;paint-order:fill markers stroke"
683
+ id="rect40-5"
684
+ width="13.576674"
685
+ height="9.7555847"
686
+ x="1026.684"
687
+ y="-180.47063"
688
+ ry="1.5810586"
689
+ rx="1.5810586" /><use
690
+ xlink:href="#arrow-right"
691
+ style="fill:#d28d0f;fill-opacity:1;stroke:none"
692
+ id="use1-5-3"
693
+ transform="matrix(0.00956941,0,0,0.00956941,1031.3285,-178.0426)" /></g><rect
694
+ style="fill:#f5ca7c;fill-opacity:1;stroke-width:0.16426;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
695
+ id="rect276-5"
696
+ width="50.886703"
697
+ height="3.407196"
698
+ x="857.74066"
699
+ y="398.94699"
700
+ ry="0.64491266"
701
+ rx="0.64491266" /><g
702
+ id="use108"
703
+ transform="matrix(1.4488325,0,0,1.4488325,-1931.5922,-510.68824)"><rect
704
+ style="fill:none;fill-opacity:1;stroke:#ecdce8;stroke-width:0.496626;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:0.0397303, 0.0397303;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
705
+ id="rect5"
706
+ width="170.12202"
707
+ height="263.7258"
708
+ x="1914.8793"
709
+ y="351.51724"
710
+ inkscape:export-filename="page-with-bits-collapsed.webp"
711
+ inkscape:export-xdpi="96"
712
+ inkscape:export-ydpi="96"
713
+ rx="4.5654578"
714
+ ry="4.5654578" /><g
715
+ id="g55"
716
+ transform="translate(0,-0.15490532)"><g
717
+ id="g30"
718
+ transform="matrix(0.56967611,0,0,0.56967611,1211.4474,351.50659)"><rect
719
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.377305;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
720
+ id="rect28"
721
+ width="30.677139"
722
+ height="13.229167"
723
+ x="1335.1501"
724
+ y="339.93384"
725
+ rx="4.6444521"
726
+ ry="4.6444521" /><rect
727
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.377305;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
728
+ id="rect29"
729
+ width="30.677139"
730
+ height="13.229167"
731
+ x="1369.1049"
732
+ y="339.93384"
733
+ rx="4.6444521"
734
+ ry="4.6444521" /><rect
735
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.377305;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
736
+ id="rect30"
737
+ width="30.677139"
738
+ height="13.229167"
739
+ x="1402.3872"
740
+ y="339.93384"
741
+ rx="4.6444521"
742
+ ry="4.6444521" /></g><rect
743
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.199147;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
744
+ id="rect31"
745
+ width="11.119654"
746
+ height="7.5955625"
747
+ x="2069.249"
748
+ y="556.12061"
749
+ rx="2.6458335"
750
+ ry="2.6458335" /><rect
751
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.389921;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
752
+ id="rect32"
753
+ width="52.044323"
754
+ height="41.353016"
755
+ x="1920.3297"
756
+ y="567.14166"
757
+ rx="2.6458335"
758
+ ry="2.6458335" /><rect
759
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.845474;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
760
+ id="rect33"
761
+ width="52.044323"
762
+ height="41.353024"
763
+ x="1974.3271"
764
+ y="567.14166"
765
+ rx="2.6458335"
766
+ ry="2.6458335" /><rect
767
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.845474;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
768
+ id="rect34"
769
+ width="52.044323"
770
+ height="41.353024"
771
+ x="2028.3246"
772
+ y="567.14166"
773
+ rx="2.6458335"
774
+ ry="2.6458335" /><g
775
+ id="g49"
776
+ transform="matrix(0.56967611,0,0,0.56967611,893.13767,247.87097)"><rect
777
+ style="opacity:1;fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:1.39601;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
778
+ id="rect35"
779
+ width="282.36627"
780
+ height="211.7747"
781
+ x="1801.6797"
782
+ y="304.01431"
783
+ inkscape:export-filename="screenshot-example-1600x1200.webp"
784
+ inkscape:export-xdpi="152.91"
785
+ inkscape:export-ydpi="152.91"
786
+ ry="4.6444521"
787
+ rx="4.6444521" /><rect
788
+ style="fill:#a14f8c;fill-opacity:0;stroke:none;stroke-width:0.965889;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
789
+ id="rect37"
790
+ width="267.67557"
791
+ height="200.75668"
792
+ x="1809.025"
793
+ y="309.52332"
794
+ inkscape:export-filename="screenshot-example-1600x1200.webp"
795
+ inkscape:export-xdpi="96"
796
+ inkscape:export-ydpi="96" /><g
797
+ id="g44"
798
+ style="stroke:#5c2e4f;stroke-width:2.64583;stroke-dasharray:none;stroke-opacity:1"
799
+ transform="matrix(-0.61034383,0,0,0.61034383,3649.9421,159.35745)" /><g
800
+ id="g45"
801
+ style="stroke-width:2.64583;stroke-dasharray:none"
802
+ transform="matrix(0.61034383,0,0,0.61034383,235.78356,159.35745)"><path
803
+ 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)"
804
+ d="M 3000.8804,258.70397 2592.9478,562.28974"
805
+ id="path45" /></g><g
806
+ id="g60"
807
+ style="stroke-width:2.64583;stroke-dasharray:none"
808
+ transform="matrix(-0.61034383,0,0,0.61034383,3649.9421,159.35745)"><path
809
+ 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)"
810
+ d="M 3000.8804,258.70397 2592.9478,562.28974"
811
+ id="path55" /></g><rect
812
+ style="fill:#a14f8c;fill-opacity:0;stroke:none;stroke-width:0.485467;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
813
+ id="rect46"
814
+ width="267.67557"
815
+ height="50.714802"
816
+ x="1809.025"
817
+ y="384.54428" /><g
818
+ id="g47"
819
+ transform="matrix(0.63230446,0,0,0.63230446,459.16835,41.417553)"
820
+ style="fill:#5c2e4f;fill-opacity:1"><g
821
+ id="g46"
822
+ transform="translate(-168.48926,4.0104842)"
823
+ style="fill:#5c2e4f;fill-opacity:1" /></g></g><circle
824
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.509469;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:2.03788, 2.03788;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
825
+ id="circle49"
826
+ cx="1999.9403"
827
+ cy="390.04993"
828
+ r="5.7276187" /><rect
829
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.205286;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
830
+ id="rect49"
831
+ width="160.85735"
832
+ height="7.5363345"
833
+ x="1919.5116"
834
+ y="399.15521"
835
+ ry="2.6458335"
836
+ rx="2.6458335" /><rect
837
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.251914;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
838
+ id="rect50"
839
+ width="160.85732"
840
+ height="7.5363407"
841
+ x="1919.5116"
842
+ y="410.06921"
843
+ ry="2.6458335"
844
+ rx="2.6458335" /><rect
845
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.205286;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
846
+ id="rect51"
847
+ width="146.0211"
848
+ height="7.5363159"
849
+ x="1919.5116"
850
+ y="556.15027"
851
+ ry="2.6458335"
852
+ rx="2.6458335" /><circle
853
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.509469;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:2.03788, 2.03788;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
854
+ id="circle51"
855
+ cx="1999.9403"
856
+ cy="375.21701"
857
+ r="5.7276187" /><rect
858
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.205286;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
859
+ id="rect52"
860
+ width="160.85735"
861
+ height="7.5363345"
862
+ x="1919.5116"
863
+ y="358.57538"
864
+ ry="2.6458335"
865
+ rx="2.6458335" /></g></g><path
866
+ id="rect38"
867
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.461067;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
868
+ d="m 825.1542,-52.837546 h 281.664 c 1.4658,0 2.6459,1.180041 2.6459,2.645833 v 14.438247 H 822.50836 v -14.438247 c 0,-1.465792 1.18004,-2.645833 2.64584,-2.645833 z"
869
+ sodipodi:nodetypes="sssccss" /><circle
870
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:1.08635;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:4.34539, 4.34539;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
871
+ id="circle125-7-5"
872
+ cx="965.98639"
873
+ cy="-113.126"
874
+ r="12.213036" /><rect
875
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.162613;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
876
+ id="rect274-9"
877
+ width="149.16376"
878
+ height="4.8648129"
879
+ x="891.40454"
880
+ y="-92.986855"
881
+ ry="1.7079141"
882
+ rx="1.7079141" /><g
883
+ id="g41"
884
+ transform="matrix(0.94041424,0,0,0.94041424,129.94969,137.40707)"><rect
885
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:15.8106;paint-order:fill markers stroke"
886
+ id="rect40"
887
+ width="13.576674"
888
+ height="9.7555847"
889
+ x="1026.684"
890
+ y="-180.47063"
891
+ ry="1.5810586"
892
+ rx="1.5810586" /><use
893
+ xlink:href="#arrow-right"
894
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
895
+ id="use1-5"
896
+ transform="matrix(0.00956941,0,0,0.00956941,1031.3285,-178.0426)" /></g><path
897
+ d="m 829.20324,-30.268991 c 0,-0.146643 -0.0887,-0.279633 -0.22508,-0.33647 -0.1364,-0.0568 -0.29214,-0.02499 -0.39672,0.07851 l -0.49562,0.496766 c -0.54564,0.545631 -1.28566,0.85257 -2.05752,0.85257 h -0.0989 -0.36377 -1.09128 c -0.40127,0 -0.72751,0.326242 -0.72751,0.727514 v 1.091281 c 0,0.401263 0.32624,0.727505 0.72751,0.727505 v 1.455039 c 0,0.201216 0.16256,0.363757 0.36377,0.363757 h 0.72751 c 0.20122,0 0.36377,-0.162541 0.36377,-0.363757 v -1.455039 h 0.0989 c 0.77186,0 1.51188,0.30692 2.05752,0.85257 l 0.49562,0.495624 c 0.10458,0.104581 0.26032,0.135283 0.39672,0.07851 0.13641,-0.0569 0.22508,-0.188704 0.22508,-0.336469 v -1.676711 c 0.21144,-0.100033 0.36376,-0.369446 0.36376,-0.686594 0,-0.317156 -0.15232,-0.58657 -0.36376,-0.686594 z m -0.72751,0.871893 v 1.492543 1.492553 c -0.66842,-0.608168 -1.5403,-0.946912 -2.44743,-0.946912 h -0.0989 v -1.091281 h 0.0989 c 0.90713,0 1.77901,-0.338754 2.44743,-0.946903 z"
898
+ id="path32"
899
+ style="fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.232833" /><rect
900
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.16426;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
901
+ id="rect276"
902
+ width="77.609619"
903
+ height="3.4072056"
904
+ x="835.25824"
905
+ y="-29.426542"
906
+ ry="0.64491266"
907
+ rx="0.64491266" /><use
908
+ x="0"
909
+ y="0"
910
+ xlink:href="#path268-2"
911
+ id="use277"
912
+ transform="translate(0,115.40717)"
913
+ style="stroke:#a14f8c" /><rect
914
+ style="opacity:1;fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
915
+ id="rect125-0-5-1"
916
+ width="24.557205"
917
+ height="7.9111004"
918
+ x="927.06525"
919
+ y="-47.616196"
920
+ rx="3.4158282"
921
+ ry="3.4158282" /><rect
922
+ style="opacity:1;fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
923
+ id="rect232-2"
924
+ width="24.557205"
925
+ height="7.9111004"
926
+ x="953.70758"
927
+ y="-47.616196"
928
+ rx="3.4158282"
929
+ ry="3.4158282" /><rect
930
+ style="opacity:1;fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
931
+ id="rect233-7"
932
+ width="24.557205"
933
+ height="7.9111004"
934
+ x="980.35028"
935
+ y="-47.616196"
936
+ rx="3.4158282"
937
+ ry="3.4158282" /><rect
938
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.162613;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
939
+ id="rect246-6-0"
940
+ width="149.16376"
941
+ height="4.8648129"
942
+ x="891.40454"
943
+ y="-81.613335"
944
+ ry="1.7079141"
945
+ rx="1.7079141" /><g
946
+ id="g305"
947
+ transform="matrix(0.94041424,0,0,0.94041424,61.034936,24.113756)"><rect
948
+ style="fill:#f6edf4;fill-opacity:1;stroke:#c795ba;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.58749, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
949
+ id="rect305"
950
+ width="355.46042"
951
+ height="20.980024"
952
+ x="784.56"
953
+ y="-213.28009"
954
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
955
+ inkscape:export-xdpi="96"
956
+ inkscape:export-ydpi="96"
957
+ rx="2.8134766"
958
+ ry="2.8134766" /><text
959
+ xml:space="preserve"
960
+ style="font-size:7.05556px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';text-align:center;text-anchor:middle;fill:#c795ba;fill-opacity:1;stroke-width:0.264583"
961
+ x="962.29083"
962
+ y="-200.82831"
963
+ id="text305"><tspan
964
+ sodipodi:role="line"
965
+ id="tspan305"
966
+ style="font-weight:bold;font-size:7.05556px;text-align:center;text-anchor:middle;fill:#c795ba;fill-opacity:1;stroke-width:0.264583"
967
+ x="962.29083"
968
+ y="-200.82831">{% include base/head.html.liquid %}</tspan></text></g><rect
969
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.497636;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
970
+ id="rect4433"
971
+ width="334.28003"
972
+ height="19.729914"
973
+ x="798.84631"
974
+ y="-152.99507"
975
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
976
+ inkscape:export-xdpi="96"
977
+ inkscape:export-ydpi="96" /><g
978
+ id="g1012"
979
+ transform="matrix(0.24685874,0,0,0.24685874,702.72483,-122.24523)"
980
+ style="fill:#f6edf4;stroke-width:3.80952"><g
981
+ aria-label="CentOS"
982
+ id="text57015"
983
+ style="font-weight:bold;font-size:29.9666px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro Bold';fill:#f6edf4;fill-opacity:1;stroke-width:2.85397"
984
+ transform="matrix(0.97560972,0,0,0.97560972,-295.86665,-427.58606)"><path
985
+ d="m 865.94059,362.40602 c 3.65593,0 6.68255,-1.31853 8.66035,-3.74583 l -3.11653,-2.87679 c -1.40843,1.64816 -3.17646,2.48723 -5.27412,2.48723 -3.92563,0 -6.71252,-2.75693 -6.71252,-6.71252 0,-3.95559 2.78689,-6.71252 6.71252,-6.71252 2.09766,0 3.86569,0.83906 5.27412,2.45726 l 3.11653,-2.87679 c -1.9778,-2.39733 -5.00442,-3.71586 -8.63038,-3.71586 -6.53272,0 -11.38731,4.52495 -11.38731,10.84791 0,6.32295 4.85459,10.84791 11.35734,10.84791 z"
986
+ id="path2097"
987
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" /><path
988
+ d="m 892.76066,354.04533 c 0,-5.18422 -3.65592,-8.36068 -8.39065,-8.36068 -4.91452,0 -8.60041,3.47613 -8.60041,8.30075 0,4.79466 3.62596,8.30075 9.19974,8.30075 2.90676,0 5.15426,-0.899 6.65259,-2.60709 l -2.48723,-2.697 c -1.10876,1.04883 -2.33739,1.55826 -4.04549,1.55826 -2.45726,0 -4.16536,-1.22863 -4.61486,-3.23639 h 12.19641 c 0.03,-0.38956 0.0899,-0.899 0.0899,-1.2586 z m -8.36068,-4.82462 c 2.09766,0 3.62596,1.31853 3.95559,3.35626 h -7.94115 c 0.32963,-2.06769 1.85793,-3.35626 3.98556,-3.35626 z"
989
+ id="path2099"
990
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" /><path
991
+ d="m 905.67622,345.68465 c -2.18756,0 -4.07545,0.74917 -5.33405,2.12763 v -1.88789 h -4.46502 v 16.12203 h 4.67479 v -7.97112 c 0,-2.96669 1.61819,-4.34516 3.86569,-4.34516 2.06769,0 3.26636,1.19867 3.26636,3.80576 v 8.51052 h 4.67479 v -9.22972 c 0,-4.91452 -2.8768,-7.13205 -6.68256,-7.13205 z"
992
+ id="path2101"
993
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" /><path
994
+ d="m 925.72388,357.97096 c -0.50943,0.38957 -1.19866,0.59933 -1.8879,0.59933 -1.25859,0 -2.00776,-0.74916 -2.00776,-2.12763 v -6.56268 h 4.01553 v -3.59599 h -4.01553 v -3.92563 h -4.67479 v 3.92563 h -2.48723 v 3.59599 h 2.48723 v 6.62262 c 0,3.83572 2.21753,5.78355 6.02329,5.78355 1.4384,0 2.84683,-0.32963 3.80576,-1.01886 z"
995
+ id="path2103"
996
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" /><path
997
+ d="m 940.10783,362.40602 c 6.59266,0 11.47721,-4.58489 11.47721,-10.84791 0,-6.26302 -4.88455,-10.84791 -11.47721,-10.84791 -6.62261,0 -11.4772,4.61485 -11.4772,10.84791 0,6.23305 4.85459,10.84791 11.4772,10.84791 z m 0,-4.13539 c -3.74582,0 -6.56268,-2.72697 -6.56268,-6.71252 0,-3.98556 2.81686,-6.71252 6.56268,-6.71252 3.74583,0 6.56269,2.72696 6.56269,6.71252 0,3.98555 -2.81686,6.71252 -6.56269,6.71252 z"
998
+ id="path2105"
999
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" /><path
1000
+ d="m 962.13328,362.40602 c 5.99332,0 8.90008,-2.99666 8.90008,-6.50276 0,-7.70141 -12.19641,-5.03438 -12.19641,-8.90008 0,-1.31853 1.10876,-2.39732 3.98556,-2.39732 1.85793,0 3.86569,0.53939 5.81352,1.64816 l 1.49833,-3.68589 c -1.94783,-1.22863 -4.64482,-1.85793 -7.28188,-1.85793 -5.96336,0 -8.84015,2.96669 -8.84015,6.53272 0,7.79131 12.1964,5.09432 12.1964,9.01994 0,1.28857 -1.16869,2.2475 -4.04549,2.2475 -2.51719,0 -5.15425,-0.899 -6.92228,-2.18756 l -1.64816,3.65592 c 1.85792,1.4384 5.21418,2.4273 8.54048,2.4273 z"
1001
+ id="path2107"
1002
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" /></g><g
1003
+ id="g28251-9"
1004
+ transform="matrix(0.74451128,0.74451128,-0.74451128,0.74451128,6.01137,-157.12384)"
1005
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
1006
+ inkscape:export-xdpi="10.11"
1007
+ inkscape:export-ydpi="10.11"
1008
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952"><path
1009
+ id="ellipse15079-1-3"
1010
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:5.0397;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
1011
+ d="m 372.92961,-303.88054 a 20.103001,20.103493 0 0 0 -4.90893,13.16408 20.103001,20.103493 0 0 0 20.10242,20.10507 20.103001,20.103493 0 0 0 20.10374,-20.10375 20.103001,20.103493 0 0 0 -20.10374,-20.10374 20.103001,20.103493 0 0 0 -15.19349,6.93834 z m 4.43562,2.40753 h 6.30374 l 4.45545,-4.45545 4.45545,4.45545 h 6.3011 v 6.3011 l 4.45677,4.45677 -4.45545,4.45546 -0.001,6.30241 h -6.3011 l -4.45545,4.45546 -4.45678,-4.45678 h -6.30109 v -6.30109 l -4.45545,-4.45546 4.45545,-4.45545 z m 2.27135,4.18311 3.22723,3.22723 1.91307,0.001 10e-4,-1.91307 -3.22855,-3.22855 z m -2.16294,5.22226 0.001,2.70368 h 4.56387 l 1.3525,-1.3525 -1.3525,-1.3525 z m 9.29696,-9.29695 v 4.56386 l 1.3525,1.3525 1.3525,-1.3525 v -4.56386 z m 0.0912,7.606 0.0172,1.79936 -1.79805,-0.0159 1.28243,1.25863 -1.28243,1.26128 1.79805,-0.0159 -0.0145,1.79937 1.25996,-1.28375 1.25995,1.28375 -0.0145,-1.79937 1.79672,0.0145 -1.28243,-1.25864 1.28243,-1.26127 -1.79804,0.0159 0.0159,-1.79804 -1.26127,1.28243 z m -7.22391,9.6169 1.91174,1.91175 3.22723,-3.22723 v -1.91175 h -1.91175 z m 11.83273,-11.83273 v 1.91175 h 1.91174 l 3.22723,-3.22723 -1.91175,-1.91175 z m -4.69872,11.34356 -0.001,4.56518 h 2.705 v -4.56386 l -1.3525,-1.3525 z m 6.08427,-6.08428 1.3525,1.35251 h 4.56386 v -2.70501 h -4.56386 z m -1.38688,3.34622 10e-4,1.91307 3.22722,3.22723 1.91307,-1.91307 -3.22723,-3.22723 z" /></g></g><rect
1012
+ style="fill:#c795ba;fill-opacity:1;stroke:#d9b9d1;stroke-width:0.248818;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
1013
+ id="rect119"
1014
+ width="16.372637"
1015
+ height="10.339692"
1016
+ x="1091.8531"
1017
+ y="-148.29996"
1018
+ rx="1.2440896"
1019
+ ry="1.2440896" /><g
1020
+ id="g121"
1021
+ transform="matrix(0.94041424,0,0,0.94041424,115.28295,-6.8200402)"
1022
+ style="stroke:#9a9996;stroke-opacity:1"><path
1023
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
1024
+ d="m 1040.8931,-147.50672 h 12.5172"
1025
+ id="path119" /><path
1026
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
1027
+ d="m 1040.8931,-144.94685 h 12.5172"
1028
+ id="path120" /><path
1029
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
1030
+ d="m 1040.8931,-142.38698 h 12.5172"
1031
+ id="path121" /></g><path
1032
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.248818px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
1033
+ d="m 867.22011,-149.47662 v 12.69302"
1034
+ id="path8" /><g
1035
+ id="g1"
1036
+ transform="matrix(1.4277799,0,0,1.4277799,-260.60848,126.45095)"
1037
+ style="fill:#d9b9d1"><use
1038
+ xlink:href="#align-left"
1039
+ style="fill:#d9b9d1;fill-opacity:1;stroke:#f6f5f4;stroke-opacity:1"
1040
+ id="use1-3-3"
1041
+ transform="matrix(0.00800799,0,0,0.00800799,793.73956,-190.8614)" /></g><g
1042
+ id="g56"
1043
+ style="stroke:#e8d9e5;stroke-width:2.64583;stroke-dasharray:none;stroke-opacity:1"
1044
+ transform="matrix(-0.3476983,0,0,0.3476983,3304.505,266.6695)"><g
1045
+ id="path56"
1046
+ style="opacity:1"><g
1047
+ id="g81"><g
1048
+ id="path83"
1049
+ style="opacity:1" /><g
1050
+ id="path90"
1051
+ style="opacity:1" /></g></g></g><rect
1052
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.375997;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
1053
+ id="rect125-0-6"
1054
+ width="30.57077"
1055
+ height="9.8483696"
1056
+ x="950.70099"
1057
+ y="-68.373627"
1058
+ rx="4.252296"
1059
+ ry="4.252296" /><use
1060
+ x="0"
1061
+ y="0"
1062
+ xlink:href="#use281"
1063
+ id="use38"
1064
+ transform="translate(-0.1577537,377.31758)"
1065
+ style="fill:#1a0029;stroke:#a14f8c" /><text
1066
+ xml:space="preserve"
1067
+ style="font-size:6.63515px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#000000;fill-opacity:1;stroke-width:0.248818"
1068
+ x="1180.021"
1069
+ y="624.32587"
1070
+ id="text41"><tspan
1071
+ sodipodi:role="line"
1072
+ id="tspan40"
1073
+ style="font-size:6.63515px;fill:#000000;fill-opacity:1;stroke-width:0.248818"
1074
+ x="1180.021"
1075
+ y="624.32587">page.with_social</tspan></text><g
1076
+ id="g2"><rect
1077
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.201588;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
1078
+ id="rect27"
1079
+ width="233.15703"
1080
+ height="2.9469631"
1081
+ x="849.40778"
1082
+ y="612.60638"
1083
+ rx="1.0079421"
1084
+ ry="1.0079421" /><g
1085
+ id="g43"
1086
+ transform="translate(6.4433168,9.9157002)"
1087
+ style="fill:#ecdce8"><circle
1088
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.15134;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
1089
+ id="circle27"
1090
+ cx="919.85529"
1091
+ cy="618.12347"
1092
+ r="4.7417312" /><circle
1093
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.15134;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
1094
+ id="circle39"
1095
+ cx="935.73035"
1096
+ cy="618.12347"
1097
+ r="4.7417312" /><circle
1098
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.15134;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
1099
+ id="circle40"
1100
+ cx="951.60541"
1101
+ cy="618.12347"
1102
+ r="4.7417312" /><circle
1103
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.15134;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
1104
+ id="circle41"
1105
+ cx="967.48047"
1106
+ cy="618.12347"
1107
+ r="4.7417312" /><circle
1108
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.15134;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
1109
+ id="circle42"
1110
+ cx="983.35553"
1111
+ cy="618.12347"
1112
+ r="4.7417312" /><circle
1113
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.15134;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
1114
+ id="circle43"
1115
+ cx="999.23059"
1116
+ cy="618.12347"
1117
+ r="4.7417312" /></g></g><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><g
1118
+ id="g396"
1119
+ transform="matrix(0.54888119,0,0,0.54888119,2068.5253,458.56259)" /><path
1120
+ id="path382"
1121
+ style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.926042;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
1122
+ d="m 1120.4159,-246.6657 c -1.711,0 -3.0885,1.3775 -3.0885,3.08853 v 112.57207 c 5.6224,-3.48234 11.8863,-6.43916 16.9465,-6.43916 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.71478 31.7331,17.4897 8.6242,-0.15587 20.52,-9.24415 27.0216,-14.81982 v -108.80279 c 0,-1.71103 -1.3775,-3.08853 -3.0885,-3.08853 z" /><path
1123
+ id="path179-3"
1124
+ style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.926042;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
1125
+ d="m 2954.4416,313.61575 c -1.711,0 -3.0885,1.3775 -3.0885,3.08853 v 112.57208 c 5.6224,-3.4824 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.7148 31.7331,17.4897 8.6242,-0.1558 20.52,-9.2441 27.0216,-14.8198 V 316.70428 c 0,-1.71103 -1.3775,-3.08853 -3.0885,-3.08853 z" /><g
1126
+ id="g226"
1127
+ transform="matrix(0.54888119,0,0,0.54888119,2528.7847,649.71627)" /><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><rect
1128
+ style="fill:#f5ca7c;fill-opacity:1;stroke-width:0.16426;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
1129
+ id="rect1"
1130
+ width="21.253384"
1131
+ height="3.407196"
1132
+ x="913.56775"
1133
+ y="398.94699"
1134
+ ry="0.64491266"
1135
+ rx="0.64491266" /><g
1136
+ id="g3"
1137
+ transform="matrix(0.95856018,0,0,0.95856018,28.908279,18.68258)"
1138
+ style="fill:#c795ba;fill-opacity:1"><text
1139
+ xml:space="preserve"
1140
+ style="font-size:18.629px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.776208;stroke-linejoin:round"
1141
+ x="827.53546"
1142
+ y="447.32944"
1143
+ id="text2"><tspan
1144
+ sodipodi:role="line"
1145
+ id="tspan2"
1146
+ style="font-weight:bold;fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.776208"
1147
+ x="827.53546"
1148
+ y="447.32944">Lorem Ipsum</tspan></text><text
1149
+ xml:space="preserve"
1150
+ style="font-size:6.31413px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.263088;stroke-linejoin:round"
1151
+ x="827.24548"
1152
+ y="458.60327"
1153
+ id="text3"><tspan
1154
+ sodipodi:role="line"
1155
+ id="tspan3"
1156
+ style="font-style:normal;font-variant:normal;font-weight:100;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Thin';fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.263088"
1157
+ x="827.24548"
1158
+ y="458.60327">Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...</tspan></text></g></g></svg>