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,676 @@
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.33333 104.96965"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
11
+ sodipodi:docname="page-with-breadcrumb.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.4142136"
27
+ inkscape:cx="223.44574"
28
+ inkscape:cy="198.34345"
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
+ showborder="false" />
37
+ <defs
38
+ id="defs1">
39
+ <clipPath
40
+ clipPathUnits="userSpaceOnUse"
41
+ id="clipPath15-7">
42
+ <path
43
+ id="path16-5"
44
+ 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"
45
+ d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.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.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
46
+ sodipodi:nodetypes="sscsssssscsss" />
47
+ </clipPath>
48
+ <clipPath
49
+ clipPathUnits="userSpaceOnUse"
50
+ id="clipPath14-3">
51
+ <path
52
+ id="path15-5"
53
+ 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"
54
+ d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.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.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
55
+ sodipodi:nodetypes="sscsssssscsss" />
56
+ </clipPath>
57
+ <clipPath
58
+ clipPathUnits="userSpaceOnUse"
59
+ id="clipPath13-6">
60
+ <path
61
+ id="path14-2"
62
+ 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"
63
+ d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.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.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
64
+ sodipodi:nodetypes="sscsssssscsss" />
65
+ </clipPath>
66
+ <clipPath
67
+ clipPathUnits="userSpaceOnUse"
68
+ id="clipPath12-9">
69
+ <path
70
+ id="path13-1"
71
+ 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"
72
+ d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.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.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
73
+ sodipodi:nodetypes="sscsssssscsss" />
74
+ </clipPath>
75
+ <clipPath
76
+ clipPathUnits="userSpaceOnUse"
77
+ id="clipPath11-2">
78
+ <path
79
+ id="path12-7"
80
+ 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"
81
+ d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.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.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
82
+ sodipodi:nodetypes="sscsssssscsss" />
83
+ </clipPath>
84
+ <clipPath
85
+ clipPathUnits="userSpaceOnUse"
86
+ id="clipPath10-0">
87
+ <path
88
+ id="path11-9"
89
+ 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"
90
+ d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.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.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
91
+ sodipodi:nodetypes="sscsssssscsss" />
92
+ </clipPath>
93
+ <clipPath
94
+ clipPathUnits="userSpaceOnUse"
95
+ id="clipPath38-3">
96
+ <path
97
+ id="path39-6"
98
+ 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"
99
+ d="m 59.448399,117.38544 c -1.711,0 -3.088498,1.37751 -3.088498,3.08851 v 99.47525 c 5.622399,-3.48231 11.886299,-6.43921 16.9465,-6.43921 12.306199,0 19.426999,17.48969 31.733389,17.48969 12.30631,0 19.4268,-17.48969 31.7331,-17.48969 12.3064,0 19.4268,17.48969 31.7331,17.48969 12.30631,0 19.42711,-17.48969 31.73341,-17.48969 12.3063,0 19.27829,17.7148 31.73329,17.48969 8.62411,-0.15579 20.52001,-9.24408 27.02141,-14.81979 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
100
+ sodipodi:nodetypes="sscsssssscsss" />
101
+ </clipPath>
102
+ <clipPath
103
+ clipPathUnits="userSpaceOnUse"
104
+ id="clipPath37-0">
105
+ <path
106
+ id="path38-6"
107
+ 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"
108
+ d="m 59.448399,117.38544 c -1.711,0 -3.088498,1.37751 -3.088498,3.08851 v 99.47525 c 5.622399,-3.48231 11.886299,-6.43921 16.9465,-6.43921 12.306199,0 19.426999,17.48969 31.733389,17.48969 12.30631,0 19.4268,-17.48969 31.7331,-17.48969 12.3064,0 19.4268,17.48969 31.7331,17.48969 12.30631,0 19.42711,-17.48969 31.73341,-17.48969 12.3063,0 19.27829,17.7148 31.73329,17.48969 8.62411,-0.15579 20.52001,-9.24408 27.02141,-14.81979 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
109
+ sodipodi:nodetypes="sscsssssscsss" />
110
+ </clipPath>
111
+ <clipPath
112
+ clipPathUnits="userSpaceOnUse"
113
+ id="clipPath36-2">
114
+ <path
115
+ id="path37-6"
116
+ 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"
117
+ d="m 59.448399,117.38544 c -1.711,0 -3.088498,1.37751 -3.088498,3.08851 v 99.47525 c 5.622399,-3.48231 11.886299,-6.43921 16.9465,-6.43921 12.306199,0 19.426999,17.48969 31.733389,17.48969 12.30631,0 19.4268,-17.48969 31.7331,-17.48969 12.3064,0 19.4268,17.48969 31.7331,17.48969 12.30631,0 19.42711,-17.48969 31.73341,-17.48969 12.3063,0 19.27829,17.7148 31.73329,17.48969 8.62411,-0.15579 20.52001,-9.24408 27.02141,-14.81979 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
118
+ sodipodi:nodetypes="sscsssssscsss" />
119
+ </clipPath>
120
+ <clipPath
121
+ clipPathUnits="userSpaceOnUse"
122
+ id="clipPath35-1">
123
+ <path
124
+ id="path36-8"
125
+ 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"
126
+ d="m 59.448399,117.38544 c -1.711,0 -3.088498,1.37751 -3.088498,3.08851 v 99.47525 c 5.622399,-3.48231 11.886299,-6.43921 16.9465,-6.43921 12.306199,0 19.426999,17.48969 31.733389,17.48969 12.30631,0 19.4268,-17.48969 31.7331,-17.48969 12.3064,0 19.4268,17.48969 31.7331,17.48969 12.30631,0 19.42711,-17.48969 31.73341,-17.48969 12.3063,0 19.27829,17.7148 31.73329,17.48969 8.62411,-0.15579 20.52001,-9.24408 27.02141,-14.81979 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
127
+ sodipodi:nodetypes="sscsssssscsss" />
128
+ </clipPath>
129
+ <clipPath
130
+ clipPathUnits="userSpaceOnUse"
131
+ id="clipPath34-7">
132
+ <path
133
+ id="path35-9"
134
+ 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"
135
+ d="m 59.448399,117.38544 c -1.711,0 -3.088498,1.37751 -3.088498,3.08851 v 99.47525 c 5.622399,-3.48231 11.886299,-6.43921 16.9465,-6.43921 12.306199,0 19.426999,17.48969 31.733389,17.48969 12.30631,0 19.4268,-17.48969 31.7331,-17.48969 12.3064,0 19.4268,17.48969 31.7331,17.48969 12.30631,0 19.42711,-17.48969 31.73341,-17.48969 12.3063,0 19.27829,17.7148 31.73329,17.48969 8.62411,-0.15579 20.52001,-9.24408 27.02141,-14.81979 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
136
+ sodipodi:nodetypes="sscsssssscsss" />
137
+ </clipPath>
138
+ <clipPath
139
+ clipPathUnits="userSpaceOnUse"
140
+ id="clipPath33-2">
141
+ <path
142
+ id="path34-0"
143
+ 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"
144
+ d="m 59.448399,117.38544 c -1.711,0 -3.088498,1.37751 -3.088498,3.08851 v 99.47525 c 5.622399,-3.48231 11.886299,-6.43921 16.9465,-6.43921 12.306199,0 19.426999,17.48969 31.733389,17.48969 12.30631,0 19.4268,-17.48969 31.7331,-17.48969 12.3064,0 19.4268,17.48969 31.7331,17.48969 12.30631,0 19.42711,-17.48969 31.73341,-17.48969 12.3063,0 19.27829,17.7148 31.73329,17.48969 8.62411,-0.15579 20.52001,-9.24408 27.02141,-14.81979 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
145
+ sodipodi:nodetypes="sscsssssscsss" />
146
+ </clipPath>
147
+ <clipPath
148
+ clipPathUnits="userSpaceOnUse"
149
+ id="clipPath40-2">
150
+ <path
151
+ id="path41-3"
152
+ 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"
153
+ d="m 59.448399,117.38544 c -1.710999,0 -3.088499,1.37751 -3.088499,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.946501,-6.4392 12.306199,0 19.426999,17.4897 31.733399,17.4897 12.3063,0 19.42679,-17.4897 31.7331,-17.4897 12.3064,0 19.4268,17.48969 31.7331,17.4897 12.3063,0 19.4271,-17.4897 31.7334,-17.4897 12.30631,0 19.2783,17.7148 31.73329,17.4897 8.62411,-0.1558 20.52002,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.0885 z"
154
+ sodipodi:nodetypes="sscsssssscsss" />
155
+ </clipPath>
156
+ <clipPath
157
+ clipPathUnits="userSpaceOnUse"
158
+ id="clipPath8-7">
159
+ <path
160
+ id="path9-5"
161
+ 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"
162
+ d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.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.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
163
+ sodipodi:nodetypes="sscsssssscsss" />
164
+ </clipPath>
165
+ <clipPath
166
+ clipPathUnits="userSpaceOnUse"
167
+ id="clipPath24-9">
168
+ <path
169
+ id="path25-2"
170
+ 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"
171
+ d="m 59.448399,117.38544 c -1.711001,0 -3.088501,1.37751 -3.088501,3.08851 v 99.47524 c 5.622405,-3.4823 11.886302,-6.4392 16.946503,-6.4392 12.306197,0 19.426997,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.30629,0 19.27829,17.7148 31.73328,17.4897 8.62413,-0.1558 20.52004,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37741,-3.08851 -3.08849,-3.08851 z"
172
+ sodipodi:nodetypes="sscsssssscsss" />
173
+ </clipPath>
174
+ <clipPath
175
+ clipPathUnits="userSpaceOnUse"
176
+ id="clipPath23-2">
177
+ <path
178
+ id="path24-8"
179
+ 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"
180
+ d="m 59.448399,117.38544 c -1.711001,0 -3.088501,1.37751 -3.088501,3.08851 v 99.47524 c 5.622405,-3.4823 11.886302,-6.4392 16.946503,-6.4392 12.306197,0 19.426997,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.30629,0 19.27829,17.7148 31.73328,17.4897 8.62413,-0.1558 20.52004,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37741,-3.08851 -3.08849,-3.08851 z"
181
+ sodipodi:nodetypes="sscsssssscsss" />
182
+ </clipPath>
183
+ <clipPath
184
+ clipPathUnits="userSpaceOnUse"
185
+ id="clipPath22-9">
186
+ <path
187
+ id="path23-7"
188
+ 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"
189
+ d="m 59.448399,117.38544 c -1.711001,0 -3.088501,1.37751 -3.088501,3.08851 v 99.47524 c 5.622405,-3.4823 11.886302,-6.4392 16.946503,-6.4392 12.306197,0 19.426997,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.30629,0 19.27829,17.7148 31.73328,17.4897 8.62413,-0.1558 20.52004,-9.2441 27.02142,-14.8198 v -95.70594 c 0,-1.711 -1.37741,-3.08851 -3.08849,-3.08851 z"
190
+ sodipodi:nodetypes="sscsssssscsss" />
191
+ </clipPath>
192
+ <clipPath
193
+ clipPathUnits="userSpaceOnUse"
194
+ id="clipPath6-3">
195
+ <path
196
+ id="path7-6"
197
+ 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"
198
+ d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.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.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
199
+ sodipodi:nodetypes="sscsssssscsss" />
200
+ </clipPath>
201
+ <clipPath
202
+ clipPathUnits="userSpaceOnUse"
203
+ id="clipPath4-1">
204
+ <path
205
+ id="path5-2"
206
+ 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"
207
+ d="m 2498.4797,350.95811 c -1.711,0 -3.0885,1.37751 -3.0885,3.08851 v 99.47524 c 5.6224,-3.4823 11.8863,-6.4392 16.9465,-6.4392 12.3062,0 19.427,17.4897 31.7334,17.4897 12.3063,0 19.4268,-17.4897 31.7331,-17.4897 12.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.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.70594 c 0,-1.711 -1.3774,-3.08851 -3.0885,-3.08851 z"
208
+ sodipodi:nodetypes="sscsssssscsss" />
209
+ </clipPath>
210
+ <clipPath
211
+ clipPathUnits="userSpaceOnUse"
212
+ id="clipPath32-9">
213
+ <path
214
+ id="path33-3"
215
+ 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"
216
+ 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"
217
+ sodipodi:nodetypes="sscsssssscsss" />
218
+ </clipPath>
219
+ <clipPath
220
+ clipPathUnits="userSpaceOnUse"
221
+ id="clipPath30-1">
222
+ <path
223
+ id="path31-9"
224
+ 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"
225
+ 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"
226
+ sodipodi:nodetypes="sscsssssscsss" />
227
+ </clipPath>
228
+ <clipPath
229
+ clipPathUnits="userSpaceOnUse"
230
+ id="clipPath29-4">
231
+ <path
232
+ id="path30-7"
233
+ 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"
234
+ 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"
235
+ sodipodi:nodetypes="sscsssssscsss" />
236
+ </clipPath>
237
+ <clipPath
238
+ clipPathUnits="userSpaceOnUse"
239
+ id="clipPath28-8">
240
+ <path
241
+ id="path29-4"
242
+ 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"
243
+ 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"
244
+ sodipodi:nodetypes="sscsssssscsss" />
245
+ </clipPath>
246
+ <clipPath
247
+ clipPathUnits="userSpaceOnUse"
248
+ id="clipPath27-5">
249
+ <path
250
+ id="path28-0"
251
+ 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"
252
+ 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"
253
+ sodipodi:nodetypes="sscsssssscsss" />
254
+ </clipPath>
255
+ <clipPath
256
+ clipPathUnits="userSpaceOnUse"
257
+ id="clipPath26-3">
258
+ <path
259
+ id="path27-6"
260
+ 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"
261
+ d="m 59.448396,117.38544 c -1.710996,0 -3.088495,1.37751 -3.088495,3.08851 v 99.47524 c 5.622399,-3.4823 11.886296,-6.4392 16.946502,-6.4392 12.3062,0 19.426995,17.4897 31.733397,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.42709,-17.4897 31.73343,-17.4897 12.30627,0 19.27825,17.7148 31.73324,17.4897 8.62415,-0.1558 20.52005,-9.2441 27.02143,-14.8198 v -95.70594 c 0,-1.711 -1.37738,-3.08851 -3.08849,-3.08851 z"
262
+ sodipodi:nodetypes="sscsssssscsss" />
263
+ </clipPath>
264
+ <clipPath
265
+ clipPathUnits="userSpaceOnUse"
266
+ id="clipPath25-1">
267
+ <path
268
+ id="path26-0"
269
+ 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"
270
+ d="m 59.448396,117.38544 c -1.710996,0 -3.088495,1.37751 -3.088495,3.08851 v 99.47524 c 5.622399,-3.4823 11.886296,-6.4392 16.946502,-6.4392 12.3062,0 19.426995,17.4897 31.733397,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.42709,-17.4897 31.73343,-17.4897 12.30627,0 19.27825,17.7148 31.73324,17.4897 8.62415,-0.1558 20.52005,-9.2441 27.02143,-14.8198 v -95.70594 c 0,-1.711 -1.37738,-3.08851 -3.08849,-3.08851 z"
271
+ sodipodi:nodetypes="sscsssssscsss" />
272
+ </clipPath>
273
+ <clipPath
274
+ clipPathUnits="userSpaceOnUse"
275
+ id="clipPath20-6">
276
+ <path
277
+ id="path21-3"
278
+ 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"
279
+ d="m 59.448399,117.38541 c -1.710999,0 -3.088499,1.3775 -3.088499,3.0885 v 99.4753 c 5.6224,-3.4823 11.8863,-6.4392 16.946501,-6.4392 12.306199,0 19.426999,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.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.706 c 0,-1.711 -1.3774,-3.0885 -3.0885,-3.0885 z"
280
+ sodipodi:nodetypes="sscsssssscsss" />
281
+ </clipPath>
282
+ <clipPath
283
+ clipPathUnits="userSpaceOnUse"
284
+ id="clipPath39-2">
285
+ <path
286
+ id="path40-0"
287
+ 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"
288
+ d="m 59.448399,117.38541 c -1.711,0 -3.088499,1.3775 -3.088499,3.0885 v 99.4753 c 5.6224,-3.4823 11.8863,-6.4392 16.946501,-6.4392 12.306199,0 19.426999,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.2783,17.7148 31.7333,17.4897 8.6241,-0.1558 20.52,-9.2441 27.0214,-14.8198 v -95.706 c 0,-1.711 -1.3774,-3.0885 -3.0885,-3.0885 z"
289
+ sodipodi:nodetypes="sscsssssscsss" />
290
+ </clipPath>
291
+ <clipPath
292
+ clipPathUnits="userSpaceOnUse"
293
+ id="clipPath18-61">
294
+ <path
295
+ id="path19-5"
296
+ 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"
297
+ 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"
298
+ sodipodi:nodetypes="sscsssssscsss" />
299
+ </clipPath>
300
+ <clipPath
301
+ clipPathUnits="userSpaceOnUse"
302
+ id="clipPath31-5">
303
+ <path
304
+ id="path32-4"
305
+ 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"
306
+ 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"
307
+ sodipodi:nodetypes="sscsssssscsss" />
308
+ </clipPath>
309
+ <clipPath
310
+ clipPathUnits="userSpaceOnUse"
311
+ id="clipPath18-6">
312
+ <path
313
+ id="path19-2"
314
+ 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"
315
+ 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"
316
+ sodipodi:nodetypes="sscsssssscsss" />
317
+ </clipPath>
318
+ </defs>
319
+ <g
320
+ inkscape:label="Layer 1"
321
+ inkscape:groupmode="layer"
322
+ id="layer1"
323
+ transform="translate(83.079017,-39.1349)">
324
+ <g
325
+ id="g788"
326
+ transform="translate(-2897.1193,-980.27312)">
327
+ <rect
328
+ 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"
329
+ id="breadcrumb"
330
+ width="169.33333"
331
+ height="104.96965"
332
+ x="2814.0403"
333
+ y="1019.408"
334
+ inkscape:export-filename="page-with-breadcrumb.png"
335
+ inkscape:export-xdpi="96"
336
+ inkscape:export-ydpi="96" />
337
+ <path
338
+ id="path391-4"
339
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0443053;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
340
+ d="m 2694.2611,364.76678 v 58.85376 h -195.1056 v -58.85376 z"
341
+ sodipodi:nodetypes="ccccc"
342
+ clip-path="url(#clipPath15-7)"
343
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
344
+ <path
345
+ id="path392-9"
346
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.269106;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
347
+ d="m 2514.5103,413.64927 h 164.3958 c 0.8555,0 1.5443,0.68874 1.5443,1.54427 v 8.427 H 2512.966 v -8.427 c 0,-0.85553 0.6888,-1.54427 1.5443,-1.54427 z"
348
+ sodipodi:nodetypes="sssccss"
349
+ clip-path="url(#clipPath14-3)"
350
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
351
+ <circle
352
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.634058;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:2.53623, 2.53623;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
353
+ id="circle392-0"
354
+ cx="2596.7083"
355
+ cy="378.46136"
356
+ r="7.1282477"
357
+ clip-path="url(#clipPath13-6)"
358
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
359
+ <rect
360
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0949105;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
361
+ id="rect392-2"
362
+ width="87.06076"
363
+ height="2.8393915"
364
+ x="2553.178"
365
+ y="390.21576"
366
+ ry="0.99683934"
367
+ rx="0.99683934"
368
+ clip-path="url(#clipPath12-9)"
369
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
370
+ <rect
371
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0949105;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
372
+ id="rect396-6"
373
+ width="87.06076"
374
+ height="2.8393915"
375
+ x="2553.178"
376
+ y="396.854"
377
+ ry="0.99683934"
378
+ rx="0.99683934"
379
+ clip-path="url(#clipPath11-2)"
380
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
381
+ <rect
382
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.29045;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
383
+ id="rect397-2"
384
+ width="195.10553"
385
+ height="11.515541"
386
+ x="2499.1555"
387
+ y="355.19144"
388
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
389
+ inkscape:export-xdpi="96"
390
+ inkscape:export-ydpi="96"
391
+ clip-path="url(#clipPath10-0)"
392
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
393
+ <path
394
+ d="m 83.116128,128.90146 c 0.513904,0 0.939347,-0.18534 1.217361,-0.52654 l -0.438082,-0.40438 c -0.197979,0.23168 -0.446506,0.34962 -0.741368,0.34962 -0.551814,0 -0.943559,-0.38753 -0.943559,-0.94356 0,-0.55602 0.391745,-0.94356 0.943559,-0.94356 0.294862,0 0.543389,0.11795 0.741368,0.34541 l 0.438082,-0.40438 c -0.278014,-0.33698 -0.703457,-0.52233 -1.213148,-0.52233 -0.918285,0 -1.600681,0.63606 -1.600681,1.52486 0,0.8888 0.682396,1.52486 1.596468,1.52486 z"
395
+ id="path397-0"
396
+ 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:0.401174"
397
+ clip-path="url(#clipPath38-3)"
398
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
399
+ <path
400
+ d="m 86.886149,127.72623 c 0,-0.72873 -0.513902,-1.17524 -1.17945,-1.17524 -0.69082,0 -1.208935,0.48863 -1.208935,1.16681 0,0.67397 0.509691,1.16681 1.293181,1.16681 0.408595,0 0.72452,-0.12637 0.935136,-0.36647 l -0.349623,-0.37911 c -0.155855,0.14743 -0.32856,0.21904 -0.568663,0.21904 -0.34541,0 -0.585513,-0.1727 -0.648698,-0.45493 h 1.714415 c 0.0042,-0.0548 0.01264,-0.12637 0.01264,-0.17691 z m -1.175237,-0.67819 c 0.294862,0 0.509691,0.18534 0.556026,0.47178 h -1.116265 c 0.04633,-0.29065 0.261164,-0.47178 0.560239,-0.47178 z"
401
+ id="path398-7"
402
+ 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:0.401174"
403
+ clip-path="url(#clipPath37-0)"
404
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
405
+ <path
406
+ d="m 88.701652,126.55099 c -0.307499,0 -0.572874,0.10531 -0.749792,0.29907 v -0.26537 h -0.627635 v 2.26623 h 0.657122 v -1.12048 c 0,-0.41702 0.227464,-0.61079 0.543389,-0.61079 0.290649,0 0.459142,0.1685 0.459142,0.53497 v 1.1963 H 89.641 v -1.2974 c 0,-0.69082 -0.404383,-1.00253 -0.939348,-1.00253 z"
407
+ id="path399-3"
408
+ 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:0.401174"
409
+ clip-path="url(#clipPath36-2)"
410
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
411
+ <path
412
+ d="m 91.519694,128.27804 c -0.07161,0.0548 -0.168492,0.0842 -0.265377,0.0842 -0.176916,0 -0.282225,-0.10531 -0.282225,-0.29908 v -0.9225 h 0.564452 v -0.50547 h -0.564452 v -0.55182 H 90.31497 v 0.55182 h -0.349622 v 0.50547 h 0.349622 v 0.93093 c 0,0.53917 0.311712,0.81297 0.846677,0.81297 0.202192,0 0.400171,-0.0463 0.534965,-0.14321 z"
413
+ id="path400-1"
414
+ 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:0.401174"
415
+ clip-path="url(#clipPath35-1)"
416
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
417
+ <path
418
+ d="m 93.541605,128.90146 c 0.926711,0 1.613318,-0.64448 1.613318,-1.52486 0,-0.88037 -0.686607,-1.52486 -1.613318,-1.52486 -0.930922,0 -1.613318,0.6487 -1.613318,1.52486 0,0.87617 0.682396,1.52486 1.613318,1.52486 z m 0,-0.5813 c -0.52654,0 -0.922498,-0.38332 -0.922498,-0.94356 0,-0.56023 0.395958,-0.94356 0.922498,-0.94356 0.52654,0 0.922498,0.38333 0.922498,0.94356 0,0.56024 -0.395958,0.94356 -0.922498,0.94356 z"
419
+ id="path401-1"
420
+ 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:0.401174"
421
+ clip-path="url(#clipPath34-7)"
422
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
423
+ <path
424
+ d="m 96.637659,128.90146 c 0.842464,0 1.251059,-0.42123 1.251059,-0.91407 0,-1.08257 -1.714415,-0.70767 -1.714415,-1.25106 0,-0.18534 0.155855,-0.33698 0.560239,-0.33698 0.261164,0 0.543389,0.0758 0.81719,0.23167 l 0.210616,-0.51811 c -0.273801,-0.17271 -0.652909,-0.26117 -1.023593,-0.26117 -0.838253,0 -1.242635,0.41702 -1.242635,0.91829 0,1.0952 1.714413,0.71609 1.714413,1.26791 0,0.18113 -0.164279,0.31592 -0.568663,0.31592 -0.353834,0 -0.724518,-0.12637 -0.973045,-0.3075 l -0.231677,0.51391 c 0.261163,0.20219 0.732942,0.34119 1.200511,0.34119 z"
425
+ id="path402-9"
426
+ 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:0.401174"
427
+ clip-path="url(#clipPath33-2)"
428
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
429
+ <path
430
+ id="path403-5"
431
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.764537;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
432
+ d="m 77.489859,124.33454 a 3.0496839,3.0497585 45 0 0 -1.938694,0.88554 3.0496839,3.0497585 45 0 0 -2.85e-4,4.31306 3.0496839,3.0497585 45 0 0 4.313064,0 3.0496839,3.0497585 45 0 0 0,-4.31306 3.0496839,3.0497585 45 0 0 -2.374085,-0.88554 z m 0.217554,0.73407 0.676203,0.6762 h 0.955874 v 0.95588 l 0.67592,0.67592 -0.67592,0.67592 v 0.95615 l -0.955875,1e-5 -0.676168,0.67595 -0.67592,-0.67592 h -0.955875 v -0.95616 l -0.675919,-0.67592 0.675919,-0.67592 10e-7,-0.95587 h 0.955874 z m -0.205075,0.69237 v 0.69237 l 0.205108,0.20533 0.205323,-0.20511 v -0.69266 z m -0.792212,0.32818 -0.289917,0.29013 0.489567,0.48956 h 0.290166 v -0.29016 z m 1.994572,0 -0.489566,0.48956 v 0.29017 h 0.290166 l 0.489566,-0.48957 z m -0.806114,0.82568 -0.191172,0.19486 -0.191172,-0.19458 0.0026,0.27258 -0.272864,-0.002 0.194583,0.19117 -0.194574,0.19146 0.272864,-0.003 -0.0026,0.27286 0.191463,-0.19457 0.191179,0.19429 -0.0026,-0.27258 0.272863,0.002 -0.194581,-0.19117 0.194581,-0.19117 -0.272863,0.002 z m -1.806516,0.25669 -10e-7,0.41015 h 0.692371 l 0.205073,-0.20507 -0.205073,-0.20508 z m 2.538598,0 -0.205074,0.20508 0.205072,0.20507 h 0.692371 v -0.41015 z m -1.720858,0.7128 -0.489815,0.4896 0.290166,0.29016 0.489566,-0.48956 v -0.29017 z m 1.305322,-1e-5 -10e-7,0.29017 0.489566,0.48957 0.290167,-0.29017 -0.489566,-0.48957 z m -0.50772,0.21018 -0.205109,0.20533 -10e-7,0.69237 h 0.410431 v -0.69238 z"
433
+ clip-path="url(#clipPath40-2)"
434
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
435
+ <rect
436
+ style="fill:#ecdce8;fill-opacity:1;stroke:#d9b9d1;stroke-width:0.145225;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
437
+ id="rect404-6"
438
+ width="9.556036"
439
+ height="6.0348539"
440
+ x="2670.1716"
441
+ y="357.93179"
442
+ rx="0.72612405"
443
+ ry="0.72612405"
444
+ clip-path="url(#clipPath8-7)"
445
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
446
+ <path
447
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
448
+ d="m 232.48314,125.97153 h 6.87046"
449
+ id="path404-7"
450
+ clip-path="url(#clipPath24-9)"
451
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
452
+ <path
453
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
454
+ d="m 232.48314,127.37659 h 6.87046"
455
+ id="path405-4"
456
+ clip-path="url(#clipPath23-2)"
457
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
458
+ <path
459
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
460
+ d="m 232.48314,128.78165 h 6.87046"
461
+ id="path406-0"
462
+ clip-path="url(#clipPath22-9)"
463
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
464
+ <path
465
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.145225px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
466
+ d="m 2539.0625,357.24501 v 7.40839"
467
+ id="path407-6"
468
+ clip-path="url(#clipPath6-3)"
469
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
470
+ <rect
471
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
472
+ id="rect407-4"
473
+ width="17.842903"
474
+ height="5.7480888"
475
+ x="2587.7869"
476
+ y="404.58148"
477
+ rx="2.4818907"
478
+ ry="2.4818907"
479
+ clip-path="url(#clipPath4-1)"
480
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
481
+ <rect
482
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.0549183;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
483
+ id="rect408-5"
484
+ width="18.290436"
485
+ height="4.3567443"
486
+ x="74.033859"
487
+ y="192.82527"
488
+ rx="0.72612411"
489
+ ry="0.72612411"
490
+ clip-path="url(#clipPath32-9)"
491
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
492
+ <rect
493
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.0549183;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
494
+ id="rect409-2"
495
+ width="18.290436"
496
+ height="4.3567443"
497
+ x="95.711349"
498
+ y="192.82527"
499
+ rx="0.72612411"
500
+ ry="0.72612411"
501
+ clip-path="url(#clipPath30-1)"
502
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
503
+ <rect
504
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.0549183;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
505
+ id="rect410-6"
506
+ width="18.290436"
507
+ height="4.3567443"
508
+ x="117.38888"
509
+ y="192.82527"
510
+ rx="0.72612411"
511
+ ry="0.72612411"
512
+ clip-path="url(#clipPath29-4)"
513
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
514
+ <path
515
+ style="fill:none;stroke:#a14f8c;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
516
+ d="m 93.5249,194.106 0.933603,0.89865 -0.863686,0.89865"
517
+ id="path410-0"
518
+ sodipodi:nodetypes="ccc"
519
+ clip-path="url(#clipPath28-8)"
520
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
521
+ <path
522
+ style="fill:none;stroke:#a14f8c;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
523
+ d="m 115.20241,194.106 0.9336,0.89865 -0.86369,0.89865"
524
+ id="path411-6"
525
+ sodipodi:nodetypes="ccc"
526
+ clip-path="url(#clipPath27-5)"
527
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
528
+ <rect
529
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.167923;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
530
+ id="rect411-4"
531
+ width="167.48431"
532
+ height="16.320366"
533
+ x="73.93502"
534
+ y="199.9595"
535
+ rx="2.9044964"
536
+ ry="2.9044964"
537
+ clip-path="url(#clipPath26-3)"
538
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
539
+ <path
540
+ d="m 158.67747,204.80618 v 0.62518 c 0,0.13813 -0.11196,0.25008 -0.25008,0.25008 h -4.0012 c -0.13812,0 -0.25007,-0.11195 -0.25007,-0.25008 v -0.62518 c 0,-0.13813 0.11195,-0.25008 0.25007,-0.25008 h 4.0012 c 0.13812,0 0.25008,0.11195 0.25008,0.25008 z m -4.50135,2.0006 v 0.62518 c 0,0.13812 0.11195,0.25008 0.25007,0.25008 h 6.50196 c 0.13811,0 0.25007,-0.11196 0.25007,-0.25008 v -0.62518 c 0,-0.13812 -0.11196,-0.25008 -0.25007,-0.25008 h -6.50196 c -0.13812,0 -0.25007,0.11196 -0.25007,0.25008 z m 0.25007,4.87646 h 6.50196 c 0.13811,0 0.25007,-0.11195 0.25007,-0.25007 v -0.62519 c 0,-0.13812 -0.11196,-0.25008 -0.25007,-0.25008 h -6.50196 c -0.13812,0 -0.25007,0.11196 -0.25007,0.25008 v 0.62519 c 0,0.13812 0.11195,0.25007 0.25007,0.25007 z m 4.0012,-3.12594 h -4.0012 c -0.13812,0 -0.25007,0.11196 -0.25007,0.25008 v 0.62519 c 0,0.13811 0.11195,0.25007 0.25007,0.25007 h 4.0012 c 0.13812,0 0.25008,-0.11196 0.25008,-0.25007 v -0.62519 c 0,-0.13812 -0.11196,-0.25008 -0.25008,-0.25008 z"
541
+ id="path412-6"
542
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0156297"
543
+ clip-path="url(#clipPath25-1)"
544
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
545
+ <rect
546
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.145225;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
547
+ id="rect600-5"
548
+ width="167.48418"
549
+ height="16.320353"
550
+ x="73.935005"
551
+ y="219.0573"
552
+ rx="2.904494"
553
+ ry="2.904494"
554
+ clip-path="url(#clipPath20-6)"
555
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
556
+ <path
557
+ d="m 158.67745,223.90402 v 0.62518 c 0,0.13812 -0.11195,0.25008 -0.25007,0.25008 h -4.0012 c -0.13812,0 -0.25008,-0.11196 -0.25008,-0.25008 v -0.62518 c 0,-0.13812 0.11196,-0.25008 0.25008,-0.25008 h 4.0012 c 0.13812,0 0.25007,0.11196 0.25007,0.25008 z m -4.50135,2.0006 v 0.62518 c 0,0.13812 0.11196,0.25008 0.25008,0.25008 h 6.50195 c 0.13812,0 0.25007,-0.11196 0.25007,-0.25008 v -0.62518 c 0,-0.13812 -0.11195,-0.25008 -0.25007,-0.25008 h -6.50195 c -0.13812,0 -0.25008,0.11196 -0.25008,0.25008 z m 0.25008,4.87646 h 6.50195 c 0.13812,0 0.25007,-0.11196 0.25007,-0.25008 v -0.62518 c 0,-0.13812 -0.11195,-0.25008 -0.25007,-0.25008 h -6.50195 c -0.13812,0 -0.25008,0.11196 -0.25008,0.25008 v 0.62518 c 0,0.13812 0.11196,0.25008 0.25008,0.25008 z m 4.0012,-3.12594 h -4.0012 c -0.13812,0 -0.25008,0.11196 -0.25008,0.25008 v 0.62518 c 0,0.13812 0.11196,0.25008 0.25008,0.25008 h 4.0012 c 0.13812,0 0.25007,-0.11196 0.25007,-0.25008 v -0.62518 c 0,-0.13812 -0.11195,-0.25008 -0.25007,-0.25008 z"
558
+ id="path601-2"
559
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0156297"
560
+ clip-path="url(#clipPath39-2)"
561
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
562
+ <path
563
+ sodipodi:type="star"
564
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
565
+ id="path602-9"
566
+ inkscape:flatsided="false"
567
+ sodipodi:sides="3"
568
+ sodipodi:cx="-499.8125"
569
+ sodipodi:cy="737.32031"
570
+ sodipodi:r1="36.465179"
571
+ sodipodi:r2="18.23259"
572
+ sodipodi:arg1="1.5707963"
573
+ sodipodi:arg2="2.6179939"
574
+ inkscape:rounded="0"
575
+ inkscape:randomized="0"
576
+ 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"
577
+ transform="matrix(0.05075683,0,0,0.05075683,2986.7418,1073.4576)"
578
+ inkscape:transform-center-y="1.0197809"
579
+ inkscape:transform-center-x="-6.518711e-05"
580
+ clip-path="url(#clipPath18-61)" />
581
+ <path
582
+ id="path664"
583
+ 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"
584
+ d="m 2817.5053,1020.5506 c -1.4145,0 -2.5532,1.1387 -2.5532,2.5532 v 82.232 c 4.6478,-2.8786 9.8259,-5.323 14.009,-5.323 10.173,0 16.0595,14.458 26.2327,14.458 10.1731,0 16.0593,-14.458 26.2325,-14.458 10.1731,0 16.0594,14.458 26.2324,14.458 10.1732,0 16.0597,-14.458 26.2328,-14.458 10.1731,0 15.9365,14.6441 26.2324,14.458 7.1293,-0.1288 16.9631,-7.6417 22.3377,-12.2509 v -79.1161 c 0,-1.4145 -1.1387,-2.5532 -2.5531,-2.5532 z"
585
+ sodipodi:nodetypes="sscsssssscsss" />
586
+ <path
587
+ id="path12-5"
588
+ 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"
589
+ d="m 2982.2914,1123.3928 v -18.8214 c -5.3636,4.5997 -15.1774,12.0973 -22.2921,12.226 -10.2752,0.1856 -16.0267,-14.4289 -26.1791,-14.4289 -10.1526,0 -16.0274,14.4289 -26.1799,14.4289 -10.1524,0 -16.0268,-14.4289 -26.1792,-14.4289 -10.1525,0 -16.0265,14.4289 -26.1789,14.4289 -10.1528,0 -16.0273,-14.4289 -26.1796,-14.4289 -4.1747,0 -9.3419,2.4396 -13.9804,5.3123 v 15.712"
590
+ sodipodi:nodetypes="ccsssssscc" />
591
+ <g
592
+ id="g6"
593
+ transform="translate(-3.9638617)">
594
+ <path
595
+ 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"
596
+ id="path408-8"
597
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0113456"
598
+ clip-path="url(#clipPath31-5)"
599
+ transform="matrix(0.82665905,0,0,0.82665905,2760.4923,923.51292)"
600
+ sodipodi:nodetypes="sscccsssscccsssccccccscccccccccccccccsccsssccccccccccccccccssccccssscscc" />
601
+ <rect
602
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264572;stroke-linejoin:round;stroke-dasharray:none"
603
+ id="rect3-2"
604
+ width="6.7305856"
605
+ height="1.1906738"
606
+ x="2960.95"
607
+ y="1084.1317"
608
+ rx="0.52914494"
609
+ ry="0.52914494" />
610
+ <path
611
+ sodipodi:type="star"
612
+ 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"
613
+ id="path602-9-2"
614
+ inkscape:flatsided="false"
615
+ sodipodi:sides="3"
616
+ sodipodi:cx="-499.8125"
617
+ sodipodi:cy="737.32031"
618
+ sodipodi:r1="36.465179"
619
+ sodipodi:r2="18.23259"
620
+ sodipodi:arg1="1.5707963"
621
+ sodipodi:arg2="2.6179939"
622
+ inkscape:rounded="0"
623
+ inkscape:randomized="0"
624
+ 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"
625
+ transform="matrix(0.02176734,0,0,0.02176734,2981.0119,1068.4791)"
626
+ inkscape:transform-center-y="0.43727202"
627
+ inkscape:transform-center-x="4.3705878e-05"
628
+ clip-path="url(#clipPath18-6)" />
629
+ </g>
630
+ <rect
631
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
632
+ id="rect6"
633
+ width="17.842903"
634
+ height="5.7480888"
635
+ x="2587.7869"
636
+ y="404.58148"
637
+ rx="2.4818907"
638
+ ry="2.4818907"
639
+ clip-path="url(#clipPath4-1)"
640
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
641
+ <rect
642
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
643
+ id="rect7"
644
+ width="17.842903"
645
+ height="5.7480888"
646
+ x="2587.7869"
647
+ y="404.58148"
648
+ rx="2.4818907"
649
+ ry="2.4818907"
650
+ clip-path="url(#clipPath4-1)"
651
+ transform="matrix(0.82665905,0,0,0.82665905,752.1143,739.66949)" />
652
+ <rect
653
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
654
+ id="rect8"
655
+ width="17.842903"
656
+ height="5.7480888"
657
+ x="2587.7869"
658
+ y="404.58148"
659
+ rx="2.4818907"
660
+ ry="2.4818907"
661
+ clip-path="url(#clipPath4-1)"
662
+ transform="matrix(0.82665905,0,0,0.82665905,734.71845,739.66949)" />
663
+ <rect
664
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
665
+ id="rect9"
666
+ width="17.842903"
667
+ height="5.7480888"
668
+ x="2587.7869"
669
+ y="404.58148"
670
+ rx="2.4818907"
671
+ ry="2.4818907"
672
+ clip-path="url(#clipPath4-1)"
673
+ transform="matrix(0.82665905,0,0,0.82665905,769.51015,739.66949)" />
674
+ </g>
675
+ </g>
676
+ </svg>