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,279 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="232.20497mm"
6
+ height="100.54167mm"
7
+ viewBox="0 0 232.20497 100.54167"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
11
+ sodipodi:docname="page-with-navindex.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="mm"
26
+ inkscape:zoom="1.036062"
27
+ inkscape:cx="246.60686"
28
+ inkscape:cy="195.45162"
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
+ <defs
36
+ id="defs1">
37
+ <clipPath
38
+ clipPathUnits="userSpaceOnUse"
39
+ id="clipPath849">
40
+ <path
41
+ id="path850"
42
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10628;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
43
+ d="m 55.618325,83.265911 c -6.04539,0 -13.528005,3.532567 -20.244753,7.692778 v 86.719251 c 6.716748,-4.16008 14.199363,-7.69218 20.244753,-7.69218 14.701301,0 23.208023,20.89345 37.909957,20.89345 14.701618,0 23.208018,-20.89345 37.909638,-20.89345 14.70162,0 23.20803,20.89345 37.90933,20.89345 14.70193,0 23.20897,-20.89345 37.91059,-20.89345 14.70161,0 23.03038,21.1625 37.90964,20.89345 10.30301,-0.18611 24.51407,-11.04325 32.28116,-17.70421 V 86.455718 c -7.76709,6.66096 -21.97815,17.518102 -32.28116,17.704372 -14.87926,0.26889 -23.20803,-20.894179 -37.90964,-20.894179 -14.70162,0 -23.20866,20.894179 -37.91059,20.894179 -14.7013,0 -23.20771,-20.894179 -37.90933,-20.894179 -14.70162,0 -23.20802,20.894179 -37.909638,20.894179 -14.701934,0 -23.208656,-20.894179 -37.909957,-20.894179 z"
44
+ sodipodi:nodetypes="sccssssssccssssss" />
45
+ </clipPath>
46
+ <marker
47
+ style="overflow:visible"
48
+ id="Triangle-4"
49
+ refX="0"
50
+ refY="0"
51
+ orient="auto-start-reverse"
52
+ inkscape:stockid="Triangle arrow"
53
+ markerWidth="1"
54
+ markerHeight="1"
55
+ viewBox="0 0 1 1"
56
+ inkscape:isstock="true"
57
+ inkscape:collect="always"
58
+ preserveAspectRatio="xMidYMid">
59
+ <path
60
+ transform="scale(0.5)"
61
+ style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
62
+ d="M 5.77,0 -2.88,5 V -5 Z"
63
+ id="path135-4" />
64
+ </marker>
65
+ </defs>
66
+ <g
67
+ inkscape:label="Layer 1"
68
+ inkscape:groupmode="layer"
69
+ id="layer1"
70
+ transform="translate(-39.952311,-96.724857)">
71
+ <g
72
+ id="g856"
73
+ transform="translate(-4421.7264,-1060.6936)">
74
+ <rect
75
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.234193;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
76
+ id="navindex"
77
+ width="232.20497"
78
+ height="100.54167"
79
+ x="4461.6787"
80
+ y="1157.4185"
81
+ inkscape:export-filename="page-with-navindex.png"
82
+ inkscape:export-xdpi="96"
83
+ inkscape:export-ydpi="96" />
84
+ <g
85
+ id="g850"
86
+ transform="translate(9.0307466,4.844555)">
87
+ <g
88
+ id="g12-6"
89
+ transform="matrix(0.83707121,0,0,0.83707121,4437.8232,1088.1042)"
90
+ clip-path="url(#clipPath849)">
91
+ <rect
92
+ style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
93
+ id="rect1-3"
94
+ width="20.700989"
95
+ height="20.700989"
96
+ x="69.227852"
97
+ y="18.23258" />
98
+ <rect
99
+ style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
100
+ id="rect3-1"
101
+ width="20.700989"
102
+ height="20.700989"
103
+ x="169.95142"
104
+ y="18.23258" />
105
+ <rect
106
+ style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
107
+ id="rect4"
108
+ width="20.700989"
109
+ height="20.700989"
110
+ x="33.538883"
111
+ y="72.915123" />
112
+ <rect
113
+ style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
114
+ id="rect5-7"
115
+ width="20.700989"
116
+ height="20.700989"
117
+ x="69.227852"
118
+ y="72.915123" />
119
+ <rect
120
+ style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
121
+ id="rect6-59"
122
+ width="20.700989"
123
+ height="20.700989"
124
+ x="105.23221"
125
+ y="72.915123" />
126
+ <rect
127
+ style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
128
+ id="rect10-6"
129
+ width="20.700989"
130
+ height="20.700989"
131
+ x="169.95142"
132
+ y="72.915123" />
133
+ <path
134
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
135
+ d="M 145.17705,39.081755 V 157.69622"
136
+ id="path11-2" />
137
+ <path
138
+ style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
139
+ d="m 108.8707,118.38796 v -10.80007 h 71.65062 v 10.80007"
140
+ id="path12-1"
141
+ sodipodi:nodetypes="cccc" />
142
+ <path
143
+ style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
144
+ d="M 43.753033,72.520787 V 61.310592 h 71.650627 v 11.210195"
145
+ id="path13-7"
146
+ sodipodi:nodetypes="cccc" />
147
+ <path
148
+ style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
149
+ d="M 79.578344,39.081755 V 72.520787"
150
+ id="path14-8"
151
+ sodipodi:nodetypes="cc" />
152
+ <path
153
+ style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
154
+ d="M 180.30191,38.67329 V 72.517635"
155
+ id="path15-5"
156
+ sodipodi:nodetypes="cc" />
157
+ <rect
158
+ style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
159
+ id="rect15-7"
160
+ width="20.700989"
161
+ height="20.700989"
162
+ x="79.943916"
163
+ y="169.51932" />
164
+ <rect
165
+ style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
166
+ id="rect17"
167
+ width="20.700989"
168
+ height="20.700989"
169
+ x="151.79588"
170
+ y="169.51932" />
171
+ <path
172
+ style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
173
+ d="m 90.477778,169.41766 v -11.50287 h 71.650632 v 11.20766"
174
+ id="path17"
175
+ sodipodi:nodetypes="cccc" />
176
+ <path
177
+ style="fill:none;stroke:#c795ba;stroke-width:1.32292;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Triangle-4)"
178
+ d="M 145.58274,39.183482 V 157.62119 h -19.36561 v 6.54027"
179
+ id="path19"
180
+ sodipodi:nodetypes="cccc" />
181
+ <rect
182
+ style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
183
+ id="rect7-4"
184
+ width="20.700989"
185
+ height="20.700989"
186
+ x="99.33905"
187
+ y="118.7833" />
188
+ <rect
189
+ style="fill:#f6edf4;stroke:#c795ba;stroke-width:1.32292;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
190
+ id="rect8-1"
191
+ width="20.700989"
192
+ height="20.700989"
193
+ x="134.82655"
194
+ y="118.7833" />
195
+ <rect
196
+ style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
197
+ id="rect9-8"
198
+ width="20.700989"
199
+ height="20.700989"
200
+ x="169.50171"
201
+ y="118.7833" />
202
+ <rect
203
+ style="fill:#f6edf4;stroke:#c795ba;stroke-width:1.32292;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
204
+ id="rect16-5"
205
+ width="20.700989"
206
+ height="20.700989"
207
+ x="115.8699"
208
+ y="169.51932" />
209
+ <rect
210
+ style="fill:#f6edf4;stroke:#c795ba;stroke-width:1.32292;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
211
+ id="rect2"
212
+ width="20.700989"
213
+ height="20.700989"
214
+ x="134.82655"
215
+ y="18.23258" />
216
+ <rect
217
+ style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
218
+ id="rect19-9"
219
+ width="20.700989"
220
+ height="20.700989"
221
+ x="186.73036"
222
+ y="169.72639" />
223
+ <rect
224
+ style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
225
+ id="rect20-7"
226
+ width="20.700989"
227
+ height="20.700989"
228
+ x="258.58234"
229
+ y="169.72639" />
230
+ <path
231
+ style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
232
+ d="m 197.26422,169.32952 v -11.20765 h 71.65063 v 11.20765"
233
+ id="path20-5"
234
+ sodipodi:nodetypes="cccc" />
235
+ <rect
236
+ style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
237
+ id="rect21-3"
238
+ width="20.700989"
239
+ height="20.700989"
240
+ x="222.65634"
241
+ y="169.72639" />
242
+ <path
243
+ style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
244
+ d="m 233.00684,169.32952 v -19.71728 h -52.54433 v -9.73098"
245
+ id="path21-8"
246
+ sodipodi:nodetypes="cccc" />
247
+ <path
248
+ style="fill:none;stroke:#b472a3;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
249
+ d="m 137.14103,34.171069 h 16.07205"
250
+ id="path22-8" />
251
+ <path
252
+ style="fill:none;stroke:#c795ba;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
253
+ d="m 137.14103,134.72179 h 16.07205"
254
+ id="path23" />
255
+ <path
256
+ style="font-weight:bold;font-size:9.19894px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#c795ba;fill-opacity:1;stroke-width:0.689921"
257
+ d="m 148.78764,31.802704 -2.87927,-6.439258 h -1.47183 l -2.87007,6.439258 h 1.52703 l 0.57033,-1.379841 h 2.98965 l 0.57034,1.379841 z m -3.62438,-4.976627 1.02108,2.465316 h -2.04217 z"
258
+ id="text1"
259
+ aria-label="A" />
260
+ <path
261
+ style="font-weight:bold;font-size:9.19894px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#c795ba;stroke-width:0.689921"
262
+ d="m 147.14103,129.00501 c 0.52434,-0.27597 0.8555,-0.77271 0.8555,-1.41664 0,-1.00268 -0.8279,-1.6742 -2.43772,-1.6742 h -3.14604 v 6.43925 h 3.33002 c 1.6926,0 2.5757,-0.64392 2.5757,-1.75699 0,-0.80951 -0.45994,-1.36145 -1.17746,-1.59142 z m -1.7662,-1.96857 c 0.72672,0 1.12227,0.24837 1.12227,0.75431 0,0.50594 -0.39555,0.76351 -1.12227,0.76351 h -1.48103 v -1.51782 z m -1.48103,4.19471 v -1.59141 h 1.7386 c 0.77271,0 1.18667,0.25757 1.18667,0.8003 0,0.55194 -0.41396,0.79111 -1.18667,0.79111 z"
263
+ id="text2"
264
+ aria-label="B" />
265
+ <path
266
+ style="font-weight:bold;font-size:9.19894px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#d9b9d1;stroke-width:0.689921"
267
+ d="m 126.63435,183.19983 c 1.12227,0 2.05136,-0.40475 2.65849,-1.14986 l -0.95669,-0.8831 c -0.43235,0.50594 -0.97508,0.76351 -1.61901,0.76351 -1.20506,0 -2.06056,-0.8463 -2.06056,-2.06056 0,-1.21426 0.8555,-2.06056 2.06056,-2.06056 0.64393,0 1.18666,0.25757 1.61901,0.75431 l 0.95669,-0.8831 c -0.60713,-0.73592 -1.53622,-1.14067 -2.64929,-1.14067 -2.00537,0 -3.4956,1.38904 -3.4956,3.33002 0,1.94097 1.49023,3.33001 3.4864,3.33001 z"
268
+ id="text3"
269
+ aria-label="C" />
270
+ </g>
271
+ <path
272
+ id="path849"
273
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
274
+ d="m 4484.3797,1157.8037 c -5.0604,0 -11.3239,2.957 -16.9463,6.4394 v 72.5902 c 5.6224,-3.4823 11.8859,-6.4389 16.9463,-6.4389 12.306,0 19.4268,17.4893 31.7333,17.4893 12.3063,0 19.4268,-17.4893 31.7331,-17.4893 12.3063,0 19.4268,17.4893 31.7328,17.4893 12.3066,0 19.4276,-17.4893 31.7339,-17.4893 12.3063,0 19.2781,17.7145 31.733,17.4893 8.6244,-0.1558 20.5201,-9.244 27.0217,-14.8197 v -72.5902 c -6.5016,5.5757 -18.3973,14.6639 -27.0217,14.8198 -12.4549,0.2251 -19.4267,-17.4899 -31.733,-17.4899 -12.3063,0 -19.4273,17.4899 -31.7339,17.4899 -12.306,0 -19.4265,-17.4899 -31.7328,-17.4899 -12.3063,0 -19.4268,17.4899 -31.7331,17.4899 -12.3065,0 -19.4273,-17.4899 -31.7333,-17.4899 z"
275
+ sodipodi:nodetypes="sccssssssccssssss" />
276
+ </g>
277
+ </g>
278
+ </g>
279
+ </svg>
Binary file
@@ -0,0 +1,368 @@
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-ogp.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#000000"
20
+ borderopacity="0.25"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="px"
26
+ inkscape:zoom="1"
27
+ inkscape:cx="75"
28
+ inkscape:cy="89.5"
29
+ inkscape:window-width="3440"
30
+ inkscape:window-height="1371"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="g68"
35
+ showgrid="false" />
36
+ <defs
37
+ id="defs1">
38
+ <clipPath
39
+ clipPathUnits="userSpaceOnUse"
40
+ id="clipPath20">
41
+ <path
42
+ id="path20"
43
+ style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:5.08977;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
44
+ d="m 198.37215,-310.25192 c -7.97523,7.97523 -7.97527,20.81668 8e-5,28.79204 L 723.08512,243.253 c 9.97511,-42.43838 25.38981,-85.41736 48.97612,-109.00367 57.36076,-57.360763 172.0735,-9.03002 229.43506,-66.391622 57.3613,-57.361268 9.0292,-172.072658 66.3905,-229.433928 57.3613,-57.36127 172.073,-9.02957 229.4337,-66.39027 57.3617,-57.36165 9.031,-172.07444 66.3923,-229.43571 57.3612,-57.36121 172.429,-7.28723 229.4337,-66.39022 39.472,-40.92502 52.5582,-138.73456 56.8742,-195.02832 l -507.1438,-507.14376 c -7.9754,-7.9754 -20.8168,-7.9753 -28.7921,-10e-5 z" />
45
+ </clipPath>
46
+ <clipPath
47
+ clipPathUnits="userSpaceOnUse"
48
+ id="clipPath70">
49
+ <path
50
+ id="path70"
51
+ 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"
52
+ d="m 331.72733,-89.03026 c -7.12928,0.128791 -16.96305,7.641732 -22.33766,12.250933 v 72.5325257 c 4.6478,-2.8786694 9.82591,-5.322668 14.00897,-5.322668 10.17302,0 16.05931,14.4580295 26.23249,14.4580295 10.17315,0 16.05941,-14.4580295 26.23251,-14.4580295 10.17312,0 16.05947,14.4580295 26.23251,14.4580295 10.17318,0 16.05992,-14.4580295 26.23304,-14.4580295 10.17313,0 15.93657,14.6441083 26.23249,14.4580295 7.1293,-0.1287912 16.96307,-7.6417304 22.33766,-12.2509309 V -79.895417 c -4.64783,2.87867 -9.82589,5.323189 -14.00895,5.323189 -10.17304,0 -16.05984,-14.458032 -26.23304,-14.458032 -10.1731,0 -16.05939,14.458032 -26.23251,14.458032 -10.1731,0 -16.05947,-14.458032 -26.23249,-14.458032 -10.17323,0 -16.05944,14.458032 -26.23251,14.458032 -10.17315,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
53
+ sodipodi:nodetypes="cccssssssccsssssc" />
54
+ </clipPath>
55
+ </defs>
56
+ <g
57
+ inkscape:label="Layer 1"
58
+ inkscape:groupmode="layer"
59
+ id="layer1"
60
+ transform="translate(-336.55017,-30.6131)">
61
+ <rect
62
+ 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"
63
+ id="ogp"
64
+ width="169.33333"
65
+ height="104.96965"
66
+ x="336.55017"
67
+ y="30.6131"
68
+ inkscape:export-filename="page-with-breadcrumb.png"
69
+ inkscape:export-xdpi="96"
70
+ inkscape:export-ydpi="96" />
71
+ <!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
72
+ <!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
73
+ <!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
74
+ <!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
75
+ <g
76
+ id="g69"
77
+ transform="translate(-400.55697,-4.0088538)">
78
+ <path
79
+ id="path12-5"
80
+ 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"
81
+ d="m 905.3584,138.69548 v -15.11721 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 12.00775"
82
+ sodipodi:nodetypes="ccsssssscc" />
83
+ <g
84
+ id="g68"
85
+ transform="translate(0,-0.2145915)">
86
+ <g
87
+ id="g39"
88
+ clip-path="url(#clipPath70)"
89
+ transform="translate(428.62931,129.39222)">
90
+ <g
91
+ id="g36"
92
+ transform="translate(-60.616729,0.2806328)">
93
+ <g
94
+ id="g28"
95
+ transform="translate(58.745843,-2.4321523)">
96
+ <rect
97
+ style="fill:#a14f8c;stroke-width:0.264583;stroke-linejoin:round"
98
+ id="rect21"
99
+ width="121.23346"
100
+ height="32.179253"
101
+ x="334.30511"
102
+ y="-56.008957"
103
+ rx="2.6458335"
104
+ ry="2.6458335" />
105
+ <rect
106
+ style="fill:#ecdce8;stroke-width:0.264583;stroke-linejoin:round"
107
+ id="rect22"
108
+ width="85.686615"
109
+ height="32.179253"
110
+ x="369.85196"
111
+ y="-56.008957"
112
+ rx="2.6458335"
113
+ ry="2.6458335" />
114
+ <rect
115
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
116
+ id="rect23"
117
+ width="72.590401"
118
+ height="2.245064"
119
+ x="373.21954"
120
+ y="-50.957561"
121
+ rx="1.3229167"
122
+ ry="1.3229167" />
123
+ <rect
124
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
125
+ id="rect24"
126
+ width="40.78532"
127
+ height="2.2450638"
128
+ x="373.21954"
129
+ y="-43.84819"
130
+ rx="1.3229167"
131
+ ry="1.1225319" />
132
+ <rect
133
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
134
+ id="rect25"
135
+ width="75.396721"
136
+ height="2.2450638"
137
+ x="373.21954"
138
+ y="-38.609707"
139
+ rx="1.3229167"
140
+ ry="1.1225319" />
141
+ <rect
142
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
143
+ id="rect26"
144
+ width="40.224052"
145
+ height="2.2450638"
146
+ x="373.21954"
147
+ y="-31.874516"
148
+ rx="1.3229167"
149
+ ry="0.76105821" />
150
+ <rect
151
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
152
+ id="rect27"
153
+ width="20.953909"
154
+ height="2.2450638"
155
+ x="416.43701"
156
+ y="-43.84819"
157
+ rx="1.3229167"
158
+ ry="1.1225319" />
159
+ <g
160
+ id="g27"
161
+ transform="matrix(0.40457033,0.40457033,-0.40457033,0.40457033,78.149938,-79.327691)"
162
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
163
+ inkscape:export-xdpi="10.11"
164
+ inkscape:export-ydpi="10.11"
165
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952"
166
+ clip-path="url(#clipPath20)">
167
+ <path
168
+ id="path27"
169
+ 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"
170
+ 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" />
171
+ </g>
172
+ </g>
173
+ <path
174
+ d="m 512.16773,-32.188762 c 0,-1.230582 -0.80646,-1.591401 -0.80646,-1.591401 -0.79127,-0.363352 -2.89415,-0.359553 -3.67783,0 0,0 -0.80645,0.360819 -0.80645,1.591401 0,1.464798 -0.0835,3.284086 1.33693,3.660097 0.51274,0.135465 0.95333,0.164585 1.30782,0.144328 0.64313,-0.03545 1.00395,-0.229152 1.00395,-0.229152 l -0.0216,-0.467165 c 0,0 -0.45958,0.144327 -0.97612,0.127868 -0.51148,-0.01772 -1.05081,-0.0557 -1.13435,-0.683656 -0.007,-0.05823 -0.0109,-0.117743 -0.0109,-0.175979 1.08372,0.264601 2.00919,0.115209 2.2624,0.08482 0.71024,-0.08482 1.32933,-0.522871 1.40782,-0.922938 0.12407,-0.630483 0.11395,-1.538228 0.11395,-1.538228 z m -0.95079,1.585072 h -0.58996 v -1.445809 c 0,-0.629218 -0.81027,-0.653272 -0.81027,0.08735 v 0.79127 h -0.58617 v -0.79127 c 0,-0.740628 -0.81026,-0.716574 -0.81026,-0.08735 v 1.445809 h -0.59124 c 0,-1.545825 -0.0658,-1.872461 0.23296,-2.215556 0.3279,-0.365882 1.01028,-0.389938 1.31414,0.07723 l 0.14686,0.246877 0.14686,-0.246877 c 0.30512,-0.469697 0.98877,-0.440579 1.31413,-0.07723 0.30006,0.345627 0.23295,0.670996 0.23295,2.215556 z"
175
+ id="path1"
176
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.0126603" />
177
+ </g>
178
+ <g
179
+ id="g37"
180
+ transform="translate(-23.573173)">
181
+ <g
182
+ id="g21"
183
+ transform="translate(21.889375,-36.482291)">
184
+ <rect
185
+ style="fill:#ecdce8;stroke-width:0.264583;stroke-linejoin:round"
186
+ id="rect14"
187
+ width="121.23346"
188
+ height="32.179253"
189
+ x="334.30511"
190
+ y="-56.008957"
191
+ rx="2.6458335"
192
+ ry="2.6458335" />
193
+ <rect
194
+ style="fill:#f6edf4;stroke-width:0.264583;stroke-linejoin:round"
195
+ id="rect15"
196
+ width="85.686615"
197
+ height="32.179253"
198
+ x="369.85196"
199
+ y="-56.008957"
200
+ rx="2.6458335"
201
+ ry="2.6458335" />
202
+ <rect
203
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
204
+ id="rect16"
205
+ width="72.590401"
206
+ height="2.245064"
207
+ x="373.21954"
208
+ y="-50.957561"
209
+ rx="1.3229167"
210
+ ry="1.3229167" />
211
+ <rect
212
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
213
+ id="rect17"
214
+ width="40.78532"
215
+ height="2.2450638"
216
+ x="373.21954"
217
+ y="-43.84819"
218
+ rx="1.3229167"
219
+ ry="1.1225319" />
220
+ <rect
221
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
222
+ id="rect18"
223
+ width="75.396721"
224
+ height="2.2450638"
225
+ x="373.21954"
226
+ y="-38.609707"
227
+ rx="1.3229167"
228
+ ry="1.1225319" />
229
+ <rect
230
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
231
+ id="rect19"
232
+ width="40.224052"
233
+ height="2.2450638"
234
+ x="373.21954"
235
+ y="-31.874516"
236
+ rx="1.3229167"
237
+ ry="0.76105821" />
238
+ <rect
239
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
240
+ id="rect20"
241
+ width="20.953909"
242
+ height="2.2450638"
243
+ x="416.43701"
244
+ y="-43.84819"
245
+ rx="1.3229167"
246
+ ry="1.1225319" />
247
+ <g
248
+ id="g403-0-9-2"
249
+ transform="matrix(0.40457033,0.40457033,-0.40457033,0.40457033,78.149938,-79.327691)"
250
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
251
+ inkscape:export-xdpi="10.11"
252
+ inkscape:export-ydpi="10.11"
253
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952"
254
+ clip-path="url(#clipPath20)">
255
+ <path
256
+ id="path403-5-7-2"
257
+ 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"
258
+ 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" />
259
+ </g>
260
+ </g>
261
+ <path
262
+ d="m 474.93329,-67.533232 h -4.5369 c -0.20788,0 -0.37679,0.171271 -0.37679,0.38152 v 4.528618 c 0,0.21025 0.16891,0.38152 0.37679,0.38152 h 4.5369 c 0.20788,0 0.37798,-0.17127 0.37798,-0.38152 v -4.528618 c 0,-0.210249 -0.1701,-0.38152 -0.37798,-0.38152 z m -3.31438,4.535706 h -0.78429 v -2.525349 h 0.78547 v 2.525349 z m -0.39215,-3.779755 c 0.25159,0 0.45475,0.203161 0.45475,0.454752 0,0.25159 -0.20316,0.454751 -0.45475,0.454751 -0.25158,0 -0.45475,-0.203161 -0.45475,-0.454751 0,-0.251591 0.20317,-0.454752 0.45475,-0.454752 z m 3.3321,3.779755 h -0.78431 v -1.228421 c 0,-0.292929 -0.006,-0.669722 -0.4075,-0.669722 -0.40869,0 -0.47129,0.318913 -0.47129,0.648464 v 1.249679 h -0.78429 v -2.525349 h 0.7524 v 0.344904 h 0.0108 c 0.10513,-0.198439 0.36144,-0.407504 0.74295,-0.407504 0.79375,0 0.9414,0.523256 0.9414,1.203615 z"
263
+ id="path1-1"
264
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0118117" />
265
+ </g>
266
+ <g
267
+ id="g38"
268
+ transform="translate(0,5.2916668)">
269
+ <g
270
+ id="g35"
271
+ transform="translate(-1.8708864,26.887585)">
272
+ <rect
273
+ style="fill:#ecdce8;stroke-width:0.264583;stroke-linejoin:round"
274
+ id="rect28"
275
+ width="121.23346"
276
+ height="32.179253"
277
+ x="334.30511"
278
+ y="-56.008957"
279
+ rx="2.6458335"
280
+ ry="2.6458335" />
281
+ <rect
282
+ style="fill:#f6edf4;stroke-width:0.264583;stroke-linejoin:round"
283
+ id="rect29"
284
+ width="85.686615"
285
+ height="32.179253"
286
+ x="369.85196"
287
+ y="-56.008957"
288
+ rx="2.6458335"
289
+ ry="2.6458335" />
290
+ <rect
291
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
292
+ id="rect30"
293
+ width="72.590401"
294
+ height="2.245064"
295
+ x="373.21954"
296
+ y="-50.957561"
297
+ rx="1.3229167"
298
+ ry="1.3229167" />
299
+ <rect
300
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
301
+ id="rect31"
302
+ width="40.78532"
303
+ height="2.2450638"
304
+ x="373.21954"
305
+ y="-43.84819"
306
+ rx="1.3229167"
307
+ ry="1.1225319" />
308
+ <rect
309
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
310
+ id="rect32"
311
+ width="75.396721"
312
+ height="2.2450638"
313
+ x="373.21954"
314
+ y="-38.609707"
315
+ rx="1.3229167"
316
+ ry="1.1225319" />
317
+ <rect
318
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
319
+ id="rect33"
320
+ width="40.224052"
321
+ height="2.2450638"
322
+ x="373.21954"
323
+ y="-31.874516"
324
+ rx="1.3229167"
325
+ ry="0.76105821" />
326
+ <rect
327
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.264583;stroke-linejoin:round"
328
+ id="rect34"
329
+ width="20.953909"
330
+ height="2.2450638"
331
+ x="416.43701"
332
+ y="-43.84819"
333
+ rx="1.3229167"
334
+ ry="1.1225319" />
335
+ <g
336
+ id="g34"
337
+ transform="matrix(0.40457033,0.40457033,-0.40457033,0.40457033,78.149938,-79.327691)"
338
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
339
+ inkscape:export-xdpi="10.11"
340
+ inkscape:export-ydpi="10.11"
341
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952"
342
+ clip-path="url(#clipPath20)">
343
+ <path
344
+ id="path34"
345
+ 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"
346
+ 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" />
347
+ </g>
348
+ </g>
349
+ <path
350
+ d="m 450.42644,1.4494529 h 0.8118 l -1.77308,2.026058 2.08585,2.75737 h -1.63281 l -1.27979,-1.6719 -1.46263,1.6719 h -0.81295 l 1.89612,-2.167491 -1.99961,-2.615937 h 1.6742 l 1.15561,1.528167 z m -0.28516,4.298186 h 0.44959 l -2.90225,-3.838241 h -0.48294 z"
351
+ id="path1-6"
352
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.0114986" />
353
+ </g>
354
+ </g>
355
+ <path
356
+ id="path65"
357
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
358
+ d="m 760.35663,40.361961 c -7.12928,0.12879 -16.96305,7.641732 -22.33766,12.250932 v 72.532527 c 4.64781,-2.87867 9.82591,-5.32267 14.00897,-5.32267 10.17304,0 16.05931,14.45803 26.23251,14.45803 10.17312,0 16.0594,-14.45803 26.2325,-14.45803 10.17312,0 16.05949,14.45803 26.23251,14.45803 10.1732,0 16.05994,-14.45803 26.23303,-14.45803 10.17313,0 15.93656,14.64411 26.2325,14.45803 7.12928,-0.12879 16.96305,-7.64173 22.33766,-12.25093 V 49.496804 c -4.64781,2.87867 -9.82591,5.323189 -14.00897,5.323189 -10.17304,0 -16.05982,-14.458032 -26.23302,-14.458032 -10.17312,0 -16.05941,14.458032 -26.23251,14.458032 -10.17312,0 -16.05949,-14.458032 -26.23251,-14.458032 -10.1732,0 -16.05941,14.458032 -26.2325,14.458032 -10.17313,0 -15.93657,-14.644112 -26.23251,-14.458032 z"
359
+ sodipodi:nodetypes="cccssssssccsssssc" />
360
+ </g>
361
+ <path
362
+ id="path68"
363
+ 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"
364
+ d="m 738.18922,35.848798 v 14.257317 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 35.848798"
365
+ sodipodi:nodetypes="ccsssssscc" />
366
+ </g>
367
+ </g>
368
+ </svg>