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,438 @@
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-navbar.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="2"
27
+ inkscape:cx="250.75"
28
+ inkscape:cy="216.75"
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="clipPath423-2-9-2">
41
+ <path
42
+ id="path424-5-7-9"
43
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
44
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
45
+ </clipPath>
46
+ <clipPath
47
+ clipPathUnits="userSpaceOnUse"
48
+ id="clipPath422-7-5-7">
49
+ <path
50
+ id="path423-4-9-5"
51
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:5.35901;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
52
+ d="m 384.68765,-240.41958 c -11.87529,0 -21.43587,9.56058 -21.43587,21.43605 v 781.3093 c 39.02239,-24.16927 82.49718,-44.69119 117.61769,-44.69119 85.41146,0 134.83363,121.38771 220.24638,121.38771 85.41219,0 134.83234,-121.38771 220.24454,-121.38771 85.41221,0 134.83291,121.38771 220.24431,121.38771 85.4128,0 134.835,-121.38771 220.2472,-121.38771 85.4122,0 133.8008,122.9499 220.2443,121.38771 59.8565,-1.08179 142.4196,-64.15922 187.5442,-102.85731 v -755.14851 c 0,-11.87547 -9.5606,-21.43605 -21.4359,-21.43605 z" />
53
+ </clipPath>
54
+ <clipPath
55
+ clipPathUnits="userSpaceOnUse"
56
+ id="clipPath421-9-7-6">
57
+ <path
58
+ id="path422-9-8-4"
59
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
60
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
61
+ </clipPath>
62
+ <clipPath
63
+ clipPathUnits="userSpaceOnUse"
64
+ id="clipPath420-4-5-6">
65
+ <path
66
+ id="path421-5-3-3"
67
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:1.40674;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
68
+ d="m 725.64338,-185.84881 c -3.11727,0 -5.62692,2.50965 -5.62692,5.62696 V 24.871838 c 10.24338,-6.344434 21.65551,-11.731437 30.87465,-11.731437 22.4205,0 35.39382,31.864274 57.81467,31.864274 22.4207,0 35.39349,-31.864274 57.81419,-31.864274 22.4207,0 35.39363,31.864274 57.81414,31.864274 22.42085,0 35.39417,-31.864274 57.81487,-31.864274 22.42072,0 35.12272,32.274346 57.81412,31.864274 15.7123,-0.283971 37.3852,-16.841797 49.2304,-27.000044 V -180.22185 c 0,-3.11731 -2.5097,-5.62696 -5.627,-5.62696 z" />
69
+ </clipPath>
70
+ <clipPath
71
+ clipPathUnits="userSpaceOnUse"
72
+ id="clipPath419-9-3-7">
73
+ <path
74
+ id="path420-3-8-9"
75
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.772134;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
76
+ d="m 2498.4796,338.49888 c -1.711,0 -3.0885,1.3775 -3.0885,3.08854 v 112.57206 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 341.58742 c 0,-1.71104 -1.3775,-3.08854 -3.0885,-3.08854 z" />
77
+ </clipPath>
78
+ <clipPath
79
+ clipPathUnits="userSpaceOnUse"
80
+ id="clipPath416-1-7-7">
81
+ <path
82
+ id="path417-9-8-0"
83
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:1.40674;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
84
+ d="m 712.48625,-301.09918 c -3.11726,0 -5.62692,2.50965 -5.62692,5.62696 v 205.093688 c 10.24338,-6.344433 21.65551,-11.731438 30.87465,-11.731438 22.42051,0 35.39382,31.864275 57.81467,31.864275 22.4207,0 35.39349,-31.864275 57.81419,-31.864275 22.4207,0 35.39364,31.864275 57.81414,31.864275 22.42085,0 35.39417,-31.864275 57.81487,-31.864275 22.4207,0 35.12275,32.274347 57.81415,31.864275 15.7123,-0.283971 37.3851,-16.841797 49.2303,-27.000044 V -295.47222 c 0,-3.11731 -2.5096,-5.62696 -5.6269,-5.62696 z" />
85
+ </clipPath>
86
+ <clipPath
87
+ clipPathUnits="userSpaceOnUse"
88
+ id="clipPath7">
89
+ <path
90
+ id="path7"
91
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
92
+ d="m 325.19865,-106.97735 c -1.41442,0 -2.55314,1.13872 -2.55314,2.55314 v 82.232091 c 4.64781,-2.878669 9.82592,-5.323019 14.00898,-5.323019 10.17304,0 16.05949,14.458021 26.23269,14.458021 10.17312,0 16.05936,-14.458021 26.23246,-14.458021 10.17312,0 16.05944,14.458021 26.23246,14.458021 10.1732,0 16.05968,-14.458021 26.23277,-14.458021 10.17313,0 15.93652,14.6441 26.23246,14.458021 7.12928,-0.128791 16.96305,-7.641722 22.33766,-12.25092 v -79.116173 c 0,-1.41442 -1.13871,-2.55314 -2.55315,-2.55314 z"
93
+ sodipodi:nodetypes="sscsssssscsss" />
94
+ </clipPath>
95
+ <clipPath
96
+ clipPathUnits="userSpaceOnUse"
97
+ id="clipPath31-5">
98
+ <path
99
+ id="path32-4"
100
+ 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"
101
+ 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"
102
+ sodipodi:nodetypes="sscsssssscsss" />
103
+ </clipPath>
104
+ <clipPath
105
+ clipPathUnits="userSpaceOnUse"
106
+ id="clipPath18-6">
107
+ <path
108
+ id="path19-2"
109
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15.0821;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
110
+ d="m -3334.2611,-1042.3606 c -27.8665,0 -50.3014,22.4349 -50.3014,50.30132 V 628.06067 c 91.5701,-56.71503 193.5881,-104.87302 276.0019,-104.87302 200.4268,0 316.4008,284.84871 516.8309,284.84871 200.4285,0 316.3976,-284.84871 516.8261,-284.84871 200.4301,0 316.3976,284.84871 516.826,284.84871 200.4285,0 316.4025,-284.84871 516.831,-284.84871 200.42847,0 313.97901,288.51483 516.82932,284.84871 140.45773,-2.53746 334.20219,-150.55547 440.08825,-241.36497 V -992.05928 c 0,-27.86642 -22.43323,-50.30132 -50.30133,-50.30132 z"
111
+ sodipodi:nodetypes="sscsssssscsss" />
112
+ </clipPath>
113
+ </defs>
114
+ <g
115
+ inkscape:label="Layer 1"
116
+ inkscape:groupmode="layer"
117
+ id="layer1"
118
+ transform="translate(-336.55017,-30.6131)">
119
+ <rect
120
+ 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"
121
+ id="navbar"
122
+ width="169.33333"
123
+ height="104.96965"
124
+ x="336.55017"
125
+ y="30.6131"
126
+ inkscape:export-filename="page-with-breadcrumb.png"
127
+ inkscape:export-xdpi="96"
128
+ inkscape:export-ydpi="96" />
129
+ <path
130
+ id="path12-5"
131
+ 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"
132
+ d="m 504.80144,134.59789 v -18.82138 c -5.36361,4.59975 -15.17744,12.09731 -22.29216,12.22604 -10.27518,0.18554 -16.02666,-14.42893 -26.17905,-14.42893 -10.15264,0 -16.02743,14.42893 -26.17994,14.42893 -10.15239,0 -16.02679,-14.42893 -26.17917,-14.42893 -10.15252,0 -16.02653,14.42893 -26.17892,14.42893 -10.15277,0 -16.0273,-14.42893 -26.17956,-14.42893 -4.17468,0 -9.3419,2.43958 -13.98038,5.31235 v 15.71192"
133
+ sodipodi:nodetypes="ccsssssscc" />
134
+ <g
135
+ id="g7"
136
+ clip-path="url(#clipPath7)"
137
+ transform="translate(14.948891,138.49885)">
138
+ <rect
139
+ style="fill:#a14f8c;fill-opacity:1;stroke-width:0.29045;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
140
+ id="rect397-2-5-1"
141
+ width="195.10553"
142
+ height="11.515541"
143
+ x="2499.1555"
144
+ y="355.19144"
145
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
146
+ inkscape:export-xdpi="96"
147
+ inkscape:export-ydpi="96"
148
+ clip-path="url(#clipPath423-2-9-2)"
149
+ transform="matrix(0.82692737,0,0,0.82692737,-1740.8889,-397.51985)" />
150
+ <g
151
+ id="g404-1-8-5"
152
+ transform="matrix(0.11914478,0,0,0.11914478,279.33891,-88.961102)"
153
+ style="fill:#f6edf4;stroke-width:3.80952"
154
+ clip-path="url(#clipPath422-7-5-7)">
155
+ <g
156
+ aria-label="CentOS"
157
+ id="g402-2-4-5"
158
+ 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"
159
+ transform="matrix(0.97560972,0,0,0.97560972,-295.86665,-427.58606)">
160
+ <path
161
+ 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"
162
+ id="path397-0-3-4"
163
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
164
+ <path
165
+ 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"
166
+ id="path398-7-7-9"
167
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
168
+ <path
169
+ 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"
170
+ id="path399-3-1-8"
171
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
172
+ <path
173
+ 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"
174
+ id="path400-1-3-3"
175
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
176
+ <path
177
+ 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"
178
+ id="path401-1-8-8"
179
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
180
+ <path
181
+ 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"
182
+ id="path402-9-0-5"
183
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" />
184
+ </g>
185
+ <g
186
+ id="g403-0-9-2"
187
+ transform="matrix(0.74451128,0.74451128,-0.74451128,0.74451128,6.01137,-157.12384)"
188
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
189
+ inkscape:export-xdpi="10.11"
190
+ inkscape:export-ydpi="10.11"
191
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952">
192
+ <path
193
+ id="path403-5-7-2"
194
+ 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"
195
+ 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" />
196
+ </g>
197
+ </g>
198
+ <rect
199
+ style="fill:none;fill-opacity:1;stroke:#f6edf4;stroke-width:0.145225;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
200
+ id="rect404-6-9-2"
201
+ width="9.556036"
202
+ height="6.0348539"
203
+ x="2670.1716"
204
+ y="357.93179"
205
+ rx="0.72612405"
206
+ ry="0.72612405"
207
+ clip-path="url(#clipPath421-9-7-6)"
208
+ transform="matrix(0.82692737,0,0,0.82692737,-1740.8889,-397.51985)" />
209
+ <g
210
+ id="g406-7-9-7"
211
+ transform="matrix(0.45388488,0,0,0.45388488,-4.1862063,-33.251832)"
212
+ style="stroke:#9a9996;stroke-opacity:1"
213
+ clip-path="url(#clipPath420-4-5-6)">
214
+ <path
215
+ style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
216
+ d="m 1040.8931,-147.50672 h 12.5172"
217
+ id="path404-7-3-0" />
218
+ <path
219
+ style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
220
+ d="m 1040.8931,-144.94685 h 12.5172"
221
+ id="path405-4-2-3" />
222
+ <path
223
+ style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
224
+ d="m 1040.8931,-142.38698 h 12.5172"
225
+ id="path406-0-4-4" />
226
+ </g>
227
+ <path
228
+ style="fill:none;stroke:none;stroke-width:0.145225px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
229
+ d="m 2539.0625,357.24501 v 7.40839"
230
+ id="path407-6-3-6"
231
+ clip-path="url(#clipPath419-9-3-7)"
232
+ transform="matrix(0.82692737,0,0,0.82692737,-1740.8889,-397.51985)" />
233
+ <g
234
+ id="g1">
235
+ <g
236
+ id="g411-8-2-3"
237
+ transform="matrix(0.45388488,0,0,0.45388488,2.3015904,-34.489811)"
238
+ clip-path="url(#clipPath416-1-7-7)">
239
+ <rect
240
+ 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"
241
+ id="rect408-5-0-4"
242
+ width="33.323124"
243
+ height="7.9375"
244
+ x="739.05914"
245
+ y="-125.37652"
246
+ rx="1.3229167"
247
+ ry="1.3229167" />
248
+ <rect
249
+ 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"
250
+ id="rect409-2-1-3"
251
+ width="33.323124"
252
+ height="7.9375"
253
+ x="778.5531"
254
+ y="-125.37652"
255
+ rx="1.3229167"
256
+ ry="1.3229167" />
257
+ <rect
258
+ 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"
259
+ id="rect410-6-7-9"
260
+ width="33.323124"
261
+ height="7.9375"
262
+ x="818.04712"
263
+ y="-125.37652"
264
+ rx="1.3229167"
265
+ ry="1.3229167" />
266
+ <path
267
+ style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
268
+ d="m 774.56963,-123.04318 1.70092,1.63724 -1.57354,1.63723"
269
+ id="path410-0-5-7"
270
+ sodipodi:nodetypes="ccc" />
271
+ <path
272
+ style="fill:none;stroke:#f6edf4;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
273
+ d="m 814.06362,-123.04318 1.70092,1.63724 -1.57354,1.63723"
274
+ id="path411-6-1-2"
275
+ sodipodi:nodetypes="ccc" />
276
+ </g>
277
+ <g
278
+ id="g6"
279
+ transform="translate(-2496.4222,-1174.3094)">
280
+ <path
281
+ d="m 234.05916,193.5514 c 0,-0.4005 0.3256,-0.72612 0.72617,-0.72612 h 2.17829 0.5446 0.18157 16.87833 c 0.40046,0 0.72606,0.32562 0.72606,0.72612 v 2.9045 c 0,0.4005 -0.3256,0.72612 -0.72606,0.72612 h -16.87833 -0.18157 -0.5446 -2.17829 c -0.40057,0 -0.72617,-0.32562 -0.72617,-0.72612 z m 3.63063,0 v 2.9045 h 2.90452 v -2.9045 z m -1.60767,0.54346 c -0.0362,-0.0817 -0.11801,-0.13501 -0.20764,-0.13501 -0.0896,0 -0.17136,0.0533 -0.20765,0.13501 l -0.72617,1.63377 c -0.051,0.1146 0,0.24848 0.11576,0.29953 0.11461,0.0511 0.24848,-0.001 0.29953,-0.11572 l 0.10099,-0.22805 h 0.83507 l 0.10099,0.22805 c 0.0511,0.11458 0.18492,0.16564 0.29947,0.11572 0.11461,-0.0499 0.16566,-0.18493 0.11576,-0.29953 z m -0.20764,0.6501 0.21554,0.4856 h -0.43109 z m 3.26754,-0.78511 c 0.12482,0 0.22691,0.10211 0.22691,0.22691 v 0.0454 h 0.49921 0.18157 c 0.12476,0 0.2269,0.10212 0.2269,0.22692 0,0.1248 -0.10214,0.22691 -0.2269,0.22691 h -0.0231 l -0.0181,0.0511 c -0.10099,0.27683 -0.25413,0.52871 -0.44926,0.742 0.0104,0.007 0.0203,0.0125 0.0307,0.0182 l 0.21445,0.12821 c 0.10774,0.0647 0.14177,0.20422 0.0783,0.31087 -0.0636,0.10665 -0.20424,0.14182 -0.31089,0.0783 l -0.21439,-0.1282 c -0.0511,-0.0306 -0.0999,-0.0624 -0.1487,-0.0964 -0.1202,0.0851 -0.24842,0.15884 -0.38569,0.22011 l -0.0406,0.0182 c -0.11455,0.0511 -0.24848,-0.001 -0.29947,-0.11573 -0.0511,-0.11459 0,-0.24847 0.1157,-0.29953 l 0.0406,-0.0182 c 0.0726,-0.0329 0.14293,-0.0692 0.20995,-0.11119 l -0.13849,-0.13842 c -0.0885,-0.0885 -0.0885,-0.23258 0,-0.32108 0.0885,-0.0885 0.23257,-0.0885 0.3211,0 l 0.16565,0.16565 0.006,0.006 c 0.14068,-0.14863 0.25528,-0.32108 0.33811,-0.51055 h -0.39942 -0.81684 c -0.12482,0 -0.22697,-0.10211 -0.22697,-0.22691 0,-0.12481 0.10215,-0.22692 0.22697,-0.22692 h 0.58999 v -0.0454 c 0,-0.1248 0.10203,-0.22692 0.22685,-0.22692 z"
282
+ id="path408-8"
283
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0113456"
284
+ clip-path="url(#clipPath31-5)"
285
+ transform="matrix(0.82665905,0,0,0.82665905,2760.4923,923.51292)"
286
+ sodipodi:nodetypes="sscccsssscccsssccccccscccccccccccccccsccsssccccccccccccccccssccccssscscc" />
287
+ <rect
288
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264572;stroke-linejoin:round;stroke-dasharray:none"
289
+ id="rect3-2-7"
290
+ width="6.7305856"
291
+ height="1.1906738"
292
+ x="2960.95"
293
+ y="1084.1317"
294
+ rx="0.52914494"
295
+ ry="0.52914494" />
296
+ <path
297
+ sodipodi:type="star"
298
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:18.7602;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
299
+ id="path602-9-2"
300
+ inkscape:flatsided="false"
301
+ sodipodi:sides="3"
302
+ sodipodi:cx="-499.8125"
303
+ sodipodi:cy="737.32031"
304
+ sodipodi:r1="36.465179"
305
+ sodipodi:r2="18.23259"
306
+ sodipodi:arg1="1.5707963"
307
+ sodipodi:arg2="2.6179939"
308
+ inkscape:rounded="0"
309
+ inkscape:randomized="0"
310
+ 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"
311
+ transform="matrix(0.02176734,0,0,0.02176734,2981.0119,1068.4791)"
312
+ inkscape:transform-center-y="0.43727202"
313
+ inkscape:transform-center-x="4.3705878e-05"
314
+ clip-path="url(#clipPath18-6)" />
315
+ </g>
316
+ </g>
317
+ <text
318
+ xml:space="preserve"
319
+ style="font-size:8.99535px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#f6edf4;stroke:none;stroke-width:0.374807;stroke-linejoin:round;fill-opacity:1"
320
+ x="337.71338"
321
+ y="-72.728531"
322
+ id="text2"><tspan
323
+ sodipodi:role="line"
324
+ id="tspan2"
325
+ style="font-weight:bold;fill:#f6edf4;stroke:none;stroke-width:0.374807;fill-opacity:1"
326
+ x="337.71338"
327
+ y="-72.728531">Lorem Ipsum</tspan></text>
328
+ <text
329
+ xml:space="preserve"
330
+ style="font-size:3.0489px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#f6edf4;stroke:none;stroke-width:0.127037;stroke-linejoin:round;fill-opacity:1"
331
+ x="337.57336"
332
+ y="-67.28476"
333
+ id="text3"><tspan
334
+ sodipodi:role="line"
335
+ id="tspan3"
336
+ style="font-style:normal;font-variant:normal;font-weight:100;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Thin';fill:#f6edf4;stroke:none;stroke-width:0.127037;fill-opacity:1"
337
+ x="337.57336"
338
+ y="-67.28476">Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...</tspan></text>
339
+ <g
340
+ id="g939-1"
341
+ transform="matrix(0.48207428,0,0,0.48207428,-54.328089,-383.05759)">
342
+ <rect
343
+ 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"
344
+ id="rect937-2"
345
+ width="286.95578"
346
+ height="27.962162"
347
+ x="813.31335"
348
+ y="667.367"
349
+ rx="4.9763589"
350
+ ry="4.9763589" />
351
+ <g
352
+ id="g938-7"
353
+ transform="matrix(0.02677882,0,0,0.02677882,950.79278,674.49279)"
354
+ style="fill:#381a32;fill-opacity:1">
355
+ <title
356
+ id="title937-0">align-left</title>
357
+ </g>
358
+ <path
359
+ sodipodi:type="star"
360
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
361
+ id="path939-3"
362
+ inkscape:flatsided="false"
363
+ sodipodi:sides="3"
364
+ sodipodi:cx="-499.8125"
365
+ sodipodi:cy="737.32031"
366
+ sodipodi:r1="36.465179"
367
+ sodipodi:r2="18.23259"
368
+ sodipodi:arg1="1.5707963"
369
+ sodipodi:arg2="2.6179939"
370
+ inkscape:rounded="0"
371
+ inkscape:randomized="0"
372
+ 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"
373
+ transform="matrix(0.10519844,0,0,0.10519844,1139.2521,602.82419)"
374
+ inkscape:transform-center-y="1.0197809"
375
+ inkscape:transform-center-x="-6.518711e-05" />
376
+ </g>
377
+ <rect
378
+ style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
379
+ id="rect3"
380
+ width="115.24662"
381
+ height="3.3675957"
382
+ x="337.89185"
383
+ y="-42.559658"
384
+ rx="1.3229166"
385
+ ry="1.3229166" />
386
+ <rect
387
+ style="fill:#ffffff;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
388
+ id="rect3-2"
389
+ width="37.604816"
390
+ height="3.3675957"
391
+ x="341.8653"
392
+ y="-56.281002"
393
+ rx="1.3229166"
394
+ ry="1.3229166" />
395
+ <rect
396
+ style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
397
+ id="rect4"
398
+ width="66.603561"
399
+ height="3.3675957"
400
+ x="337.89185"
401
+ y="-36.198643"
402
+ rx="1.3229166"
403
+ ry="1.3229166" />
404
+ <rect
405
+ style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
406
+ id="rect5"
407
+ width="84.564072"
408
+ height="3.3675957"
409
+ x="337.89185"
410
+ y="-29.463451"
411
+ rx="1.3229166"
412
+ ry="1.3229166" />
413
+ <rect
414
+ style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
415
+ id="rect6"
416
+ width="66.603561"
417
+ height="3.3675957"
418
+ x="409.4798"
419
+ y="-36.198643"
420
+ rx="1.3229166"
421
+ ry="1.3229166" />
422
+ <rect
423
+ style="fill:#f6edf4;stroke:none;stroke-width:0.264583;stroke-linejoin:round"
424
+ id="rect7"
425
+ width="127.59448"
426
+ height="3.3675957"
427
+ x="337.89185"
428
+ y="-22.54117"
429
+ rx="1.3229166"
430
+ ry="1.3229166" />
431
+ </g>
432
+ <path
433
+ id="path664"
434
+ 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"
435
+ d="m 340.01525,31.755727 c -1.41442,0 -2.55314,1.138723 -2.55314,2.553137 v 82.232076 c 4.64781,-2.87867 9.82592,-5.32302 14.00898,-5.32302 10.17303,0 16.0595,14.45802 26.2327,14.45802 10.17312,0 16.05934,-14.45802 26.23246,-14.45802 10.17311,0 16.05942,14.45802 26.23245,14.45802 10.1732,0 16.05967,-14.45802 26.23278,-14.45802 10.17312,0 15.9365,14.6441 26.23246,14.45802 7.12927,-0.12879 16.96304,-7.64172 22.33765,-12.25092 V 34.308864 c 0,-1.414414 -1.13872,-2.553137 -2.55314,-2.553137 z"
436
+ sodipodi:nodetypes="sscsssssscsss" />
437
+ </g>
438
+ </svg>