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,421 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="1023.9999"
6
+ height="1080"
7
+ viewBox="0 0 270.93334 285.74999"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
11
+ sodipodi:docname="downloads.svg"
12
+ xml:space="preserve"
13
+ inkscape:export-filename="fig-the-downloads-cards-presentation-template.png"
14
+ inkscape:export-xdpi="96"
15
+ inkscape:export-ydpi="96"
16
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
17
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
20
+ id="namedview1"
21
+ pagecolor="#ffffff"
22
+ bordercolor="#666666"
23
+ borderopacity="1.0"
24
+ inkscape:showpageshadow="2"
25
+ inkscape:pageopacity="0.0"
26
+ inkscape:pagecheckerboard="0"
27
+ inkscape:deskcolor="#d1d1d1"
28
+ inkscape:document-units="px"
29
+ inkscape:zoom="1.0787037"
30
+ inkscape:cx="251.69099"
31
+ inkscape:cy="559.46781"
32
+ inkscape:window-width="3440"
33
+ inkscape:window-height="1371"
34
+ inkscape:window-x="0"
35
+ inkscape:window-y="0"
36
+ inkscape:window-maximized="1"
37
+ inkscape:current-layer="layer1"
38
+ showgrid="false"
39
+ showguides="true" /><defs
40
+ id="defs1" /><g
41
+ inkscape:label="Layer 1"
42
+ inkscape:groupmode="layer"
43
+ id="layer1"
44
+ transform="translate(69.792114,16.438913)"><rect
45
+ style="fill:#f6f5f4;stroke-width:0.793751;stroke-linejoin:bevel;paint-order:fill markers stroke"
46
+ id="rect2-6"
47
+ width="270.93332"
48
+ height="285.75"
49
+ x="-69.792114"
50
+ y="-16.438913"
51
+ inkscape:export-filename="fig-the-downloads-card.png"
52
+ inkscape:export-xdpi="96"
53
+ inkscape:export-ydpi="96" /><path
54
+ style="fill:none;stroke:#9a9996;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
55
+ d="m 28.530337,-72.323206 c 11.79463,0 0.0813,20.018618 11.83957,20.203206 -11.65422,-0.284725 -0.0221,20.203202 -11.83957,20.203202"
56
+ id="path25"
57
+ sodipodi:nodetypes="ccc" /><path
58
+ style="fill:none;stroke:#9a9996;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
59
+ d="m 118.80118,-8.104564 c 11.65563,0 0.0803,5.6351265 11.70004,5.687087 -11.51687,-0.080148 -0.0218,5.6870863 -11.70004,5.6870863"
60
+ id="path25-0"
61
+ sodipodi:nodetypes="ccc" /><path
62
+ style="fill:none;stroke:#9a9996;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
63
+ d="m 118.80118,8.1653096 c 11.65563,0 0.0803,15.0167374 11.70004,15.1552024 -11.51687,-0.213587 -0.0218,15.1552 -11.70004,15.1552"
64
+ id="path26"
65
+ sodipodi:nodetypes="ccc" /><path
66
+ style="fill:none;stroke:#9a9996;stroke-width:0.793755;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
67
+ d="m 118.60015,43.371441 c 35.05732,0 0.24152,85.726479 35.19089,86.719319 -34.63996,-1.53149 -0.0656,130.61497 -35.19089,130.61497"
68
+ id="path27"
69
+ sodipodi:nodetypes="ccc" /><path
70
+ style="fill:none;stroke:#9a9996;stroke-width:0.793754;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
71
+ d="m 118.80118,66.933786 c 11.65563,0 0.0803,35.438544 11.70004,35.765314 -11.51687,-0.50405 -0.0218,35.76531 -11.70004,35.76531"
72
+ id="path28"
73
+ sodipodi:nodetypes="ccc" /><g
74
+ id="g45"
75
+ transform="translate(-0.32286099,-0.02587016)"><g
76
+ id="g25"
77
+ transform="translate(-3.1482236,-1.5755854)"><rect
78
+ style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
79
+ id="rect9"
80
+ width="174.625"
81
+ height="31.104063"
82
+ x="-58.70639"
83
+ y="9.3440647" /><text
84
+ xml:space="preserve"
85
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
86
+ x="28.699244"
87
+ y="26.816938"
88
+ id="text8-3-3"
89
+ inkscape:export-filename="sponsor-logo-7.png"
90
+ inkscape:export-xdpi="96"
91
+ inkscape:export-ydpi="96"><tspan
92
+ sodipodi:role="line"
93
+ style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
94
+ x="28.699244"
95
+ y="26.816938"
96
+ id="tspan17">DESCRIPTION</tspan></text></g><g
97
+ id="g24"
98
+ transform="translate(-3.1482236,-1.7950136)"><rect
99
+ style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
100
+ id="rect11"
101
+ width="174.625"
102
+ height="12.167871"
103
+ x="-58.70639"
104
+ y="-6.7063994" /><text
105
+ xml:space="preserve"
106
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
107
+ x="28.620926"
108
+ y="1.2983783"
109
+ id="text9"
110
+ inkscape:export-filename="sponsor-logo-7.png"
111
+ inkscape:export-xdpi="96"
112
+ inkscape:export-ydpi="96"><tspan
113
+ sodipodi:role="line"
114
+ id="tspan9"
115
+ style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
116
+ x="28.620926"
117
+ y="1.2983783">TITLE</tspan></text></g><g
118
+ id="g20"
119
+ transform="translate(-3.1482236,-44.893986)"><rect
120
+ style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
121
+ id="rect4"
122
+ width="174.625"
123
+ height="26.458334"
124
+ x="-58.70639"
125
+ y="218.4176" /><text
126
+ xml:space="preserve"
127
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
128
+ x="28.606112"
129
+ y="233.56761"
130
+ id="text4"
131
+ inkscape:export-filename="sponsor-logo-7.png"
132
+ inkscape:export-xdpi="96"
133
+ inkscape:export-ydpi="96"><tspan
134
+ sodipodi:role="line"
135
+ id="tspan4"
136
+ style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
137
+ x="28.606112"
138
+ y="233.56761">RELEASE DOCUMENTATION</tspan></text></g><g
139
+ id="g18"
140
+ transform="translate(-3.1482236,0.19791827)"><rect
141
+ style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
142
+ id="rect2"
143
+ width="174.625"
144
+ height="72.324287"
145
+ x="-58.70639"
146
+ y="66.339035" /><text
147
+ xml:space="preserve"
148
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
149
+ x="28.489693"
150
+ y="104.42202"
151
+ id="text1-0"
152
+ inkscape:export-filename="sponsor-logo-7.png"
153
+ inkscape:export-xdpi="96"
154
+ inkscape:export-ydpi="96"><tspan
155
+ sodipodi:role="line"
156
+ id="tspan1-6"
157
+ style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
158
+ x="28.489695"
159
+ y="104.42202">RELEASE SCREENSHOTS</tspan></text><g
160
+ id="g16"
161
+ transform="translate(7.7695953)"><path
162
+ style="fill:none;stroke:#9a9996;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
163
+ d="M 15.546875,132.65907 H 26.126152"
164
+ id="path8" /><path
165
+ style="fill:#deddda;fill-opacity:1;stroke:#c0bfbc;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
166
+ d="M 2.5173556,132.65907 H 13.096632"
167
+ id="path9" /><path
168
+ style="fill:#deddda;fill-opacity:1;stroke:#c0bfbc;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
169
+ d="M 28.576396,132.65907 H 39.155673"
170
+ id="path10" /></g><path
171
+ style="fill:none;stroke:#9a9996;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
172
+ d="m -48.421618,98.095817 -5.58562,4.405363 5.586048,4.40536"
173
+ id="path11"
174
+ sodipodi:nodetypes="ccc" /><path
175
+ style="fill:none;stroke:#9a9996;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
176
+ d="m 104.82769,98.095817 5.58562,4.405363 -5.58605,4.40536"
177
+ id="path16"
178
+ sodipodi:nodetypes="ccc" /></g><g
179
+ id="g34"
180
+ transform="translate(-3.1482236,-0.9882587)"><rect
181
+ style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
182
+ id="rect27"
183
+ width="174.625"
184
+ height="19.460369"
185
+ x="-58.70639"
186
+ y="43.962822" /><text
187
+ xml:space="preserve"
188
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
189
+ x="28.498161"
190
+ y="55.227154"
191
+ id="text27"
192
+ inkscape:export-filename="sponsor-logo-7.png"
193
+ inkscape:export-xdpi="96"
194
+ inkscape:export-ydpi="96"><tspan
195
+ sodipodi:role="line"
196
+ style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
197
+ x="28.498161"
198
+ y="55.227154"
199
+ id="tspan27">RELEASE SELECTOR</tspan></text><rect
200
+ style="fill:#9a9996;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
201
+ id="rect1"
202
+ width="9.8991947"
203
+ height="8.4148073"
204
+ x="-53.569221"
205
+ y="49.403469" /><text
206
+ xml:space="preserve"
207
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke-width:0.264582"
208
+ x="-48.427006"
209
+ y="55.092537"
210
+ id="text27-5"
211
+ inkscape:export-filename="sponsor-logo-7.png"
212
+ inkscape:export-xdpi="96"
213
+ inkscape:export-ydpi="96"><tspan
214
+ sodipodi:role="line"
215
+ style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke-width:0.264582"
216
+ x="-48.427006"
217
+ y="55.092537"
218
+ id="tspan27-3">v3</tspan></text><rect
219
+ style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
220
+ id="rect7"
221
+ width="9.8991947"
222
+ height="8.4148073"
223
+ x="-41.372478"
224
+ y="49.403469" /><rect
225
+ style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
226
+ id="rect8"
227
+ width="9.8991947"
228
+ height="8.4148073"
229
+ x="-29.175737"
230
+ y="49.403469" /><text
231
+ xml:space="preserve"
232
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
233
+ x="-36.34668"
234
+ y="55.117939"
235
+ id="text1"
236
+ inkscape:export-filename="sponsor-logo-7.png"
237
+ inkscape:export-xdpi="96"
238
+ inkscape:export-ydpi="96"><tspan
239
+ sodipodi:role="line"
240
+ style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
241
+ x="-36.34668"
242
+ y="55.117939"
243
+ id="tspan1">v2</tspan></text><text
244
+ xml:space="preserve"
245
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
246
+ x="-24.033524"
247
+ y="55.092537"
248
+ id="text2"
249
+ inkscape:export-filename="sponsor-logo-7.png"
250
+ inkscape:export-xdpi="96"
251
+ inkscape:export-ydpi="96"><tspan
252
+ sodipodi:role="line"
253
+ style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
254
+ x="-24.033524"
255
+ y="55.092537"
256
+ id="tspan2">v1</tspan></text></g><g
257
+ id="g31"
258
+ transform="translate(-3.1482236,-14.333631)"><rect
259
+ style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
260
+ id="rect31"
261
+ width="174.625"
262
+ height="26.458334"
263
+ x="-58.70639"
264
+ y="218.4176" /><text
265
+ xml:space="preserve"
266
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
267
+ x="28.527792"
268
+ y="233.56761"
269
+ id="text31"
270
+ inkscape:export-filename="sponsor-logo-7.png"
271
+ inkscape:export-xdpi="96"
272
+ inkscape:export-ydpi="96"><tspan
273
+ sodipodi:role="line"
274
+ id="tspan31"
275
+ style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
276
+ x="28.527792"
277
+ y="233.56761">RELEASE END OF LIFE</tspan></text></g><g
278
+ id="g32"
279
+ transform="translate(-3.1482236,16.226724)"><rect
280
+ style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
281
+ id="rect32"
282
+ width="174.625"
283
+ height="26.458334"
284
+ x="-58.70639"
285
+ y="218.4176" /><text
286
+ xml:space="preserve"
287
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
288
+ x="28.489695"
289
+ y="233.56761"
290
+ id="text32"
291
+ inkscape:export-filename="sponsor-logo-7.png"
292
+ inkscape:export-xdpi="96"
293
+ inkscape:export-ydpi="96"><tspan
294
+ sodipodi:role="line"
295
+ id="tspan32"
296
+ style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
297
+ x="28.489695"
298
+ y="233.56761">RELEASE COMMANDS</tspan></text></g><g
299
+ id="g33"
300
+ transform="translate(-3.1482236,-75.454341)"><rect
301
+ style="fill:#deddda;stroke:none;stroke-width:1.32292;stroke-linejoin:bevel;paint-order:fill markers stroke"
302
+ id="rect33"
303
+ width="174.625"
304
+ height="26.458334"
305
+ x="-58.70639"
306
+ y="218.4176" /><text
307
+ xml:space="preserve"
308
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
309
+ x="28.489695"
310
+ y="233.56761"
311
+ id="text33"
312
+ inkscape:export-filename="sponsor-logo-7.png"
313
+ inkscape:export-xdpi="96"
314
+ inkscape:export-ydpi="96"><tspan
315
+ sodipodi:role="line"
316
+ id="tspan33"
317
+ style="font-weight:bold;font-size:4.23333px;text-align:center;text-anchor:middle;fill:#9a9996;fill-opacity:1;stroke-width:0.264582"
318
+ x="28.489695"
319
+ y="233.56761">RELEASE MIRRORS</tspan></text></g></g><path
320
+ style="fill:none;stroke:#9a9996;stroke-width:0.793754;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
321
+ d="m 118.80118,143.36014 c 11.65563,0 0.0803,12.71504 11.70004,12.83229 -11.51687,-0.18086 -0.0218,12.83229 -11.70004,12.83229"
322
+ id="path35"
323
+ sodipodi:nodetypes="ccc" /><path
324
+ style="fill:none;stroke:#9a9996;stroke-width:0.793754;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
325
+ d="m 118.80118,173.92049 c 11.65563,0 0.0803,12.71504 11.70004,12.83229 -11.51687,-0.18086 -0.0218,12.83229 -11.70004,12.83229"
326
+ id="path36"
327
+ sodipodi:nodetypes="ccc" /><path
328
+ style="fill:none;stroke:#9a9996;stroke-width:0.793754;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
329
+ d="m 118.80118,204.48085 c 11.65563,0 0.0803,12.71504 11.70004,12.83229 -11.51687,-0.18086 -0.0218,12.83229 -11.70004,12.83229"
330
+ id="path37"
331
+ sodipodi:nodetypes="ccc" /><path
332
+ style="fill:none;stroke:#9a9996;stroke-width:0.793754;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
333
+ d="m 118.80118,235.0412 c 11.65563,0 0.0803,12.71504 11.70004,12.83229 -11.51687,-0.18086 -0.0218,12.83229 -11.70004,12.83229"
334
+ id="path38"
335
+ sodipodi:nodetypes="ccc" /><text
336
+ xml:space="preserve"
337
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
338
+ x="135.76636"
339
+ y="-0.9485119"
340
+ id="text38"><tspan
341
+ sodipodi:role="line"
342
+ id="tspan38"
343
+ style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
344
+ x="135.76636"
345
+ y="-0.9485119">with_title</tspan></text><text
346
+ xml:space="preserve"
347
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
348
+ x="135.76636"
349
+ y="24.480444"
350
+ id="text39"><tspan
351
+ sodipodi:role="line"
352
+ id="tspan39"
353
+ style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
354
+ x="135.76636"
355
+ y="24.480444">with_description</tspan></text><text
356
+ xml:space="preserve"
357
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
358
+ x="157.99487"
359
+ y="130.97171"
360
+ id="text40"><tspan
361
+ sodipodi:role="line"
362
+ id="tspan40"
363
+ style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
364
+ x="157.99487"
365
+ y="130.97171">with_releases</tspan></text><text
366
+ xml:space="preserve"
367
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
368
+ x="144.52261"
369
+ y="104.16806"
370
+ id="text41"><tspan
371
+ sodipodi:role="line"
372
+ id="tspan41"
373
+ style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
374
+ x="144.52261"
375
+ y="104.16806">with_screenshots</tspan></text><text
376
+ xml:space="preserve"
377
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
378
+ x="144.52261"
379
+ y="157.66139"
380
+ id="text42"><tspan
381
+ sodipodi:role="line"
382
+ id="tspan42"
383
+ style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
384
+ x="144.52261"
385
+ y="157.66139">with_mirrors</tspan></text><text
386
+ xml:space="preserve"
387
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
388
+ x="144.52261"
389
+ y="188.22176"
390
+ id="text43"><tspan
391
+ sodipodi:role="line"
392
+ id="tspan43"
393
+ style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
394
+ x="144.52261"
395
+ y="188.22176">with_documentation</tspan></text><text
396
+ xml:space="preserve"
397
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
398
+ x="144.52261"
399
+ y="218.7821"
400
+ id="text44"><tspan
401
+ sodipodi:role="line"
402
+ id="tspan44"
403
+ style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
404
+ x="144.52261"
405
+ y="218.7821">with_eol</tspan></text><text
406
+ xml:space="preserve"
407
+ style="font-size:4.23333px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
408
+ x="144.52261"
409
+ y="249.34245"
410
+ id="text45"><tspan
411
+ sodipodi:role="line"
412
+ id="tspan45"
413
+ style="font-size:4.23333px;fill:#9a9996;fill-opacity:1;stroke-width:0.264583"
414
+ x="144.52261"
415
+ y="249.34245">with_commands</tspan></text><rect
416
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#deddda;stroke-width:0.79375;stroke-dasharray:3.175, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
417
+ id="rect45"
418
+ width="181.22353"
419
+ height="276.32516"
420
+ x="-65.476738"
421
+ y="-11.887829" /></g></svg>