jekyll-theme-centos 2.52.0.beta.3 → 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,724 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="169.33333mm"
6
+ height="104.96965mm"
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-locales.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.4142136"
27
+ inkscape:cx="155.56349"
28
+ inkscape:cy="219.55665"
29
+ inkscape:window-width="3440"
30
+ inkscape:window-height="1371"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="layer1"
35
+ showgrid="false" />
36
+ <defs
37
+ id="defs1">
38
+ <clipPath
39
+ clipPathUnits="userSpaceOnUse"
40
+ id="clipPath15">
41
+ <path
42
+ id="path16"
43
+ 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"
44
+ 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"
45
+ sodipodi:nodetypes="sscsssssscsss" />
46
+ </clipPath>
47
+ <clipPath
48
+ clipPathUnits="userSpaceOnUse"
49
+ id="clipPath14">
50
+ <path
51
+ id="path15"
52
+ 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"
53
+ 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"
54
+ sodipodi:nodetypes="sscsssssscsss" />
55
+ </clipPath>
56
+ <clipPath
57
+ clipPathUnits="userSpaceOnUse"
58
+ id="clipPath13">
59
+ <path
60
+ id="path14"
61
+ 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"
62
+ 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"
63
+ sodipodi:nodetypes="sscsssssscsss" />
64
+ </clipPath>
65
+ <clipPath
66
+ clipPathUnits="userSpaceOnUse"
67
+ id="clipPath12">
68
+ <path
69
+ id="path13"
70
+ 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"
71
+ 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"
72
+ sodipodi:nodetypes="sscsssssscsss" />
73
+ </clipPath>
74
+ <clipPath
75
+ clipPathUnits="userSpaceOnUse"
76
+ id="clipPath11">
77
+ <path
78
+ id="path12"
79
+ 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"
80
+ 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"
81
+ sodipodi:nodetypes="sscsssssscsss" />
82
+ </clipPath>
83
+ <clipPath
84
+ clipPathUnits="userSpaceOnUse"
85
+ id="clipPath10">
86
+ <path
87
+ id="path11"
88
+ 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"
89
+ 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"
90
+ sodipodi:nodetypes="sscsssssscsss" />
91
+ </clipPath>
92
+ <clipPath
93
+ clipPathUnits="userSpaceOnUse"
94
+ id="clipPath38">
95
+ <path
96
+ id="path39"
97
+ 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"
98
+ 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"
99
+ sodipodi:nodetypes="sscsssssscsss" />
100
+ </clipPath>
101
+ <clipPath
102
+ clipPathUnits="userSpaceOnUse"
103
+ id="clipPath37">
104
+ <path
105
+ id="path38"
106
+ 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"
107
+ 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"
108
+ sodipodi:nodetypes="sscsssssscsss" />
109
+ </clipPath>
110
+ <clipPath
111
+ clipPathUnits="userSpaceOnUse"
112
+ id="clipPath36">
113
+ <path
114
+ id="path37"
115
+ 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"
116
+ 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"
117
+ sodipodi:nodetypes="sscsssssscsss" />
118
+ </clipPath>
119
+ <clipPath
120
+ clipPathUnits="userSpaceOnUse"
121
+ id="clipPath35">
122
+ <path
123
+ id="path36"
124
+ 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"
125
+ 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"
126
+ sodipodi:nodetypes="sscsssssscsss" />
127
+ </clipPath>
128
+ <clipPath
129
+ clipPathUnits="userSpaceOnUse"
130
+ id="clipPath34">
131
+ <path
132
+ id="path35"
133
+ 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"
134
+ 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"
135
+ sodipodi:nodetypes="sscsssssscsss" />
136
+ </clipPath>
137
+ <clipPath
138
+ clipPathUnits="userSpaceOnUse"
139
+ id="clipPath33">
140
+ <path
141
+ id="path34"
142
+ 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"
143
+ 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"
144
+ sodipodi:nodetypes="sscsssssscsss" />
145
+ </clipPath>
146
+ <clipPath
147
+ clipPathUnits="userSpaceOnUse"
148
+ id="clipPath40">
149
+ <path
150
+ id="path41"
151
+ 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"
152
+ 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"
153
+ sodipodi:nodetypes="sscsssssscsss" />
154
+ </clipPath>
155
+ <clipPath
156
+ clipPathUnits="userSpaceOnUse"
157
+ id="clipPath8">
158
+ <path
159
+ id="path9"
160
+ 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"
161
+ 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"
162
+ sodipodi:nodetypes="sscsssssscsss" />
163
+ </clipPath>
164
+ <clipPath
165
+ clipPathUnits="userSpaceOnUse"
166
+ id="clipPath24">
167
+ <path
168
+ id="path25"
169
+ 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"
170
+ 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"
171
+ sodipodi:nodetypes="sscsssssscsss" />
172
+ </clipPath>
173
+ <clipPath
174
+ clipPathUnits="userSpaceOnUse"
175
+ id="clipPath23">
176
+ <path
177
+ id="path24"
178
+ 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"
179
+ 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"
180
+ sodipodi:nodetypes="sscsssssscsss" />
181
+ </clipPath>
182
+ <clipPath
183
+ clipPathUnits="userSpaceOnUse"
184
+ id="clipPath22">
185
+ <path
186
+ id="path23"
187
+ 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"
188
+ 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"
189
+ sodipodi:nodetypes="sscsssssscsss" />
190
+ </clipPath>
191
+ <clipPath
192
+ clipPathUnits="userSpaceOnUse"
193
+ id="clipPath6">
194
+ <path
195
+ id="path7"
196
+ 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"
197
+ 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"
198
+ sodipodi:nodetypes="sscsssssscsss" />
199
+ </clipPath>
200
+ <clipPath
201
+ clipPathUnits="userSpaceOnUse"
202
+ id="clipPath4">
203
+ <path
204
+ id="path5"
205
+ 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"
206
+ 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"
207
+ sodipodi:nodetypes="sscsssssscsss" />
208
+ </clipPath>
209
+ <clipPath
210
+ clipPathUnits="userSpaceOnUse"
211
+ id="clipPath32">
212
+ <path
213
+ id="path33"
214
+ 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"
215
+ 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"
216
+ sodipodi:nodetypes="sscsssssscsss" />
217
+ </clipPath>
218
+ <clipPath
219
+ clipPathUnits="userSpaceOnUse"
220
+ id="clipPath31">
221
+ <path
222
+ id="path32"
223
+ 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"
224
+ 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"
225
+ sodipodi:nodetypes="sscsssssscsss" />
226
+ </clipPath>
227
+ <clipPath
228
+ clipPathUnits="userSpaceOnUse"
229
+ id="clipPath30">
230
+ <path
231
+ id="path31"
232
+ 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"
233
+ 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"
234
+ sodipodi:nodetypes="sscsssssscsss" />
235
+ </clipPath>
236
+ <clipPath
237
+ clipPathUnits="userSpaceOnUse"
238
+ id="clipPath29">
239
+ <path
240
+ id="path30"
241
+ 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"
242
+ 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"
243
+ sodipodi:nodetypes="sscsssssscsss" />
244
+ </clipPath>
245
+ <clipPath
246
+ clipPathUnits="userSpaceOnUse"
247
+ id="clipPath28">
248
+ <path
249
+ id="path29"
250
+ 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"
251
+ 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"
252
+ sodipodi:nodetypes="sscsssssscsss" />
253
+ </clipPath>
254
+ <clipPath
255
+ clipPathUnits="userSpaceOnUse"
256
+ id="clipPath27">
257
+ <path
258
+ id="path28"
259
+ 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"
260
+ 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"
261
+ sodipodi:nodetypes="sscsssssscsss" />
262
+ </clipPath>
263
+ <clipPath
264
+ clipPathUnits="userSpaceOnUse"
265
+ id="clipPath26">
266
+ <path
267
+ id="path27"
268
+ 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"
269
+ 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"
270
+ sodipodi:nodetypes="sscsssssscsss" />
271
+ </clipPath>
272
+ <clipPath
273
+ clipPathUnits="userSpaceOnUse"
274
+ id="clipPath25">
275
+ <path
276
+ id="path26"
277
+ 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"
278
+ 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"
279
+ sodipodi:nodetypes="sscsssssscsss" />
280
+ </clipPath>
281
+ <clipPath
282
+ clipPathUnits="userSpaceOnUse"
283
+ id="clipPath20">
284
+ <path
285
+ id="path21"
286
+ 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"
287
+ 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"
288
+ sodipodi:nodetypes="sscsssssscsss" />
289
+ </clipPath>
290
+ <clipPath
291
+ clipPathUnits="userSpaceOnUse"
292
+ id="clipPath39">
293
+ <path
294
+ id="path40"
295
+ 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"
296
+ 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"
297
+ sodipodi:nodetypes="sscsssssscsss" />
298
+ </clipPath>
299
+ <clipPath
300
+ clipPathUnits="userSpaceOnUse"
301
+ id="clipPath18">
302
+ <path
303
+ id="path19"
304
+ 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"
305
+ 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"
306
+ sodipodi:nodetypes="sscsssssscsss" />
307
+ </clipPath>
308
+ <clipPath
309
+ clipPathUnits="userSpaceOnUse"
310
+ id="clipPath18-6">
311
+ <path
312
+ id="path19-2"
313
+ 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"
314
+ 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"
315
+ sodipodi:nodetypes="sscsssssscsss" />
316
+ </clipPath>
317
+ </defs>
318
+ <g
319
+ inkscape:label="Layer 1"
320
+ inkscape:groupmode="layer"
321
+ id="layer1"
322
+ transform="translate(-41.010683,128.84148)">
323
+ <g
324
+ id="g788"
325
+ transform="translate(-2773.0296,-1148.2495)">
326
+ <rect
327
+ 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"
328
+ id="locales"
329
+ width="169.33333"
330
+ height="104.96965"
331
+ x="2814.0403"
332
+ y="1019.408"
333
+ inkscape:export-filename="page-with-breadcrumb.png"
334
+ inkscape:export-xdpi="96"
335
+ inkscape:export-ydpi="96" />
336
+ <path
337
+ id="path391-4"
338
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0443053;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
339
+ d="m 2694.2611,364.76678 v 58.85376 h -195.1056 v -58.85376 z"
340
+ sodipodi:nodetypes="ccccc"
341
+ clip-path="url(#clipPath15)"
342
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
343
+ <path
344
+ id="path392-9"
345
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.269106;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
346
+ 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"
347
+ sodipodi:nodetypes="sssccss"
348
+ clip-path="url(#clipPath14)"
349
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
350
+ <circle
351
+ 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"
352
+ id="circle392-0"
353
+ cx="2596.7083"
354
+ cy="378.46136"
355
+ r="7.1282477"
356
+ clip-path="url(#clipPath13)"
357
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
358
+ <rect
359
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0949105;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
360
+ id="rect392-2"
361
+ width="87.06076"
362
+ height="2.8393915"
363
+ x="2553.178"
364
+ y="390.21576"
365
+ ry="0.99683934"
366
+ rx="0.99683934"
367
+ clip-path="url(#clipPath12)"
368
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
369
+ <rect
370
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0949105;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
371
+ id="rect396-6"
372
+ width="87.06076"
373
+ height="2.8393915"
374
+ x="2553.178"
375
+ y="396.854"
376
+ ry="0.99683934"
377
+ rx="0.99683934"
378
+ clip-path="url(#clipPath11)"
379
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
380
+ <rect
381
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.29045;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
382
+ id="rect397-2"
383
+ width="195.10553"
384
+ height="11.515541"
385
+ x="2499.1555"
386
+ y="355.19144"
387
+ inkscape:export-filename="screenshot-sponsors-default-layout.png"
388
+ inkscape:export-xdpi="96"
389
+ inkscape:export-ydpi="96"
390
+ clip-path="url(#clipPath10)"
391
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
392
+ <path
393
+ 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"
394
+ id="path397-0"
395
+ 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"
396
+ clip-path="url(#clipPath38)"
397
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
398
+ <path
399
+ 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"
400
+ id="path398-7"
401
+ 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"
402
+ clip-path="url(#clipPath37)"
403
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
404
+ <path
405
+ 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"
406
+ id="path399-3"
407
+ 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"
408
+ clip-path="url(#clipPath36)"
409
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
410
+ <path
411
+ 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"
412
+ id="path400-1"
413
+ 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"
414
+ clip-path="url(#clipPath35)"
415
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
416
+ <path
417
+ 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"
418
+ id="path401-1"
419
+ 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"
420
+ clip-path="url(#clipPath34)"
421
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
422
+ <path
423
+ 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"
424
+ id="path402-9"
425
+ 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"
426
+ clip-path="url(#clipPath33)"
427
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
428
+ <path
429
+ id="path403-5"
430
+ 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"
431
+ 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"
432
+ clip-path="url(#clipPath40)"
433
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
434
+ <rect
435
+ 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"
436
+ id="rect404-6"
437
+ width="9.556036"
438
+ height="6.0348539"
439
+ x="2670.1716"
440
+ y="357.93179"
441
+ rx="0.72612405"
442
+ ry="0.72612405"
443
+ clip-path="url(#clipPath8)"
444
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
445
+ <path
446
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
447
+ d="m 232.48314,125.97153 h 6.87046"
448
+ id="path404-7"
449
+ clip-path="url(#clipPath24)"
450
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
451
+ <path
452
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
453
+ d="m 232.48314,127.37659 h 6.87046"
454
+ id="path405-4"
455
+ clip-path="url(#clipPath23)"
456
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
457
+ <path
458
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
459
+ d="m 232.48314,128.78165 h 6.87046"
460
+ id="path406-0"
461
+ clip-path="url(#clipPath22)"
462
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
463
+ <path
464
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.145225px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
465
+ d="m 2539.0625,357.24501 v 7.40839"
466
+ id="path407-6"
467
+ clip-path="url(#clipPath6)"
468
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
469
+ <rect
470
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
471
+ id="rect407-4"
472
+ width="17.842903"
473
+ height="5.7480888"
474
+ x="2587.7869"
475
+ y="404.58148"
476
+ rx="2.4818907"
477
+ ry="2.4818907"
478
+ clip-path="url(#clipPath4)"
479
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
480
+ <rect
481
+ style="fill:#ecdce8;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"
482
+ id="rect408-5"
483
+ width="18.290436"
484
+ height="4.3567443"
485
+ x="74.033859"
486
+ y="192.82527"
487
+ rx="0.72612411"
488
+ ry="0.72612411"
489
+ clip-path="url(#clipPath32)"
490
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
491
+ <rect
492
+ style="fill:#ecdce8;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"
493
+ id="rect409-2"
494
+ width="18.290436"
495
+ height="4.3567443"
496
+ x="95.711349"
497
+ y="192.82527"
498
+ rx="0.72612411"
499
+ ry="0.72612411"
500
+ clip-path="url(#clipPath30)"
501
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
502
+ <rect
503
+ style="fill:#ecdce8;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"
504
+ id="rect410-6"
505
+ width="18.290436"
506
+ height="4.3567443"
507
+ x="117.38888"
508
+ y="192.82527"
509
+ rx="0.72612411"
510
+ ry="0.72612411"
511
+ clip-path="url(#clipPath29)"
512
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
513
+ <path
514
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
515
+ d="m 93.5249,194.106 0.933603,0.89865 -0.863686,0.89865"
516
+ id="path410-0"
517
+ sodipodi:nodetypes="ccc"
518
+ clip-path="url(#clipPath28)"
519
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
520
+ <path
521
+ style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
522
+ d="m 115.20241,194.106 0.9336,0.89865 -0.86369,0.89865"
523
+ id="path411-6"
524
+ sodipodi:nodetypes="ccc"
525
+ clip-path="url(#clipPath27)"
526
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
527
+ <rect
528
+ 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"
529
+ id="rect411-4"
530
+ width="167.48431"
531
+ height="16.320366"
532
+ x="73.93502"
533
+ y="199.9595"
534
+ rx="2.9044964"
535
+ ry="2.9044964"
536
+ clip-path="url(#clipPath26)"
537
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
538
+ <path
539
+ 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"
540
+ id="path412-6"
541
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0156297"
542
+ clip-path="url(#clipPath25)"
543
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
544
+ <rect
545
+ 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"
546
+ id="rect600-5"
547
+ width="167.48418"
548
+ height="16.320353"
549
+ x="73.935005"
550
+ y="219.0573"
551
+ rx="2.904494"
552
+ ry="2.904494"
553
+ clip-path="url(#clipPath20)"
554
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
555
+ <path
556
+ 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"
557
+ id="path601-2"
558
+ style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0156297"
559
+ clip-path="url(#clipPath39)"
560
+ transform="matrix(0.82665905,0,0,0.82665905,2768.3617,923.51292)" />
561
+ <path
562
+ sodipodi:type="star"
563
+ 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"
564
+ id="path602-9"
565
+ inkscape:flatsided="false"
566
+ sodipodi:sides="3"
567
+ sodipodi:cx="-499.8125"
568
+ sodipodi:cy="737.32031"
569
+ sodipodi:r1="36.465179"
570
+ sodipodi:r2="18.23259"
571
+ sodipodi:arg1="1.5707963"
572
+ sodipodi:arg2="2.6179939"
573
+ inkscape:rounded="0"
574
+ inkscape:randomized="0"
575
+ 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"
576
+ transform="matrix(0.05075683,0,0,0.05075683,2986.7418,1073.4576)"
577
+ inkscape:transform-center-y="1.0197809"
578
+ inkscape:transform-center-x="-6.518711e-05"
579
+ clip-path="url(#clipPath18)" />
580
+ <path
581
+ id="path664"
582
+ 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"
583
+ 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"
584
+ sodipodi:nodetypes="sscsssssscsss" />
585
+ <path
586
+ id="path12-5"
587
+ 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"
588
+ 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"
589
+ sodipodi:nodetypes="ccsssssscc" />
590
+ <g
591
+ id="g6"
592
+ transform="translate(-3.9638617)">
593
+ <path
594
+ 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"
595
+ id="path408-8"
596
+ style="fill:#a14f8c;fill-opacity:1;stroke-width:0.0113456"
597
+ clip-path="url(#clipPath31)"
598
+ transform="matrix(0.82665905,0,0,0.82665905,2760.4923,923.51292)"
599
+ sodipodi:nodetypes="sscccsssscccsssccccccscccccccccccccccsccsssccccccccccccccccssccccssscscc" />
600
+ <rect
601
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.264572;stroke-linejoin:round;stroke-dasharray:none"
602
+ id="rect3-2"
603
+ width="6.7305856"
604
+ height="1.1906738"
605
+ x="2960.95"
606
+ y="1084.1317"
607
+ rx="0.52914494"
608
+ ry="0.52914494" />
609
+ <path
610
+ sodipodi:type="star"
611
+ style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:18.7602;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
612
+ id="path602-9-2"
613
+ inkscape:flatsided="false"
614
+ sodipodi:sides="3"
615
+ sodipodi:cx="-499.8125"
616
+ sodipodi:cy="737.32031"
617
+ sodipodi:r1="36.465179"
618
+ sodipodi:r2="18.23259"
619
+ sodipodi:arg1="1.5707963"
620
+ sodipodi:arg2="2.6179939"
621
+ inkscape:rounded="0"
622
+ inkscape:randomized="0"
623
+ 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"
624
+ transform="matrix(0.02176734,0,0,-0.02176734,2981.0119,1100.9624)"
625
+ inkscape:transform-center-y="-0.43730681"
626
+ inkscape:transform-center-x="4.3705878e-05"
627
+ clip-path="url(#clipPath18-6)" />
628
+ <rect
629
+ style="opacity:1;fill:#ecdce8;fill-opacity:1;stroke-width:0.79375;stroke-linejoin:round"
630
+ id="rect2"
631
+ width="16.843864"
632
+ height="10.054199"
633
+ x="2955.053"
634
+ y="1087.5382"
635
+ rx="0.52916664"
636
+ ry="0.52916664" />
637
+ <rect
638
+ style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:0.315994;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
639
+ id="rect1"
640
+ width="17.23805"
641
+ height="10.002788"
642
+ x="2954.1375"
643
+ y="1087.0348"
644
+ rx="0.52916664"
645
+ ry="0.52916664" />
646
+ <g
647
+ id="g5"
648
+ transform="translate(-4.9200903,-0.09909666)">
649
+ <rect
650
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
651
+ id="rect3"
652
+ width="6.0759945"
653
+ height="1.1906738"
654
+ x="2960.5203"
655
+ y="1088.5304"
656
+ rx="0.52916664"
657
+ ry="0.52916664" />
658
+ <rect
659
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
660
+ id="rect4"
661
+ width="9.3265619"
662
+ height="1.190625"
663
+ x="2960.6194"
664
+ y="1091.3085"
665
+ rx="0.52916664"
666
+ ry="0.52916664" />
667
+ <rect
668
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
669
+ id="rect5"
670
+ width="8.0404253"
671
+ height="1.1906738"
672
+ x="2960.6194"
673
+ y="1094.0865"
674
+ rx="0.52916664"
675
+ ry="0.52916664" />
676
+ </g>
677
+ </g>
678
+ <rect
679
+ style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
680
+ id="rect6"
681
+ width="17.842903"
682
+ height="5.7480888"
683
+ x="2587.7869"
684
+ y="404.58148"
685
+ rx="2.4818907"
686
+ ry="2.4818907"
687
+ clip-path="url(#clipPath4)"
688
+ transform="matrix(0.82665905,0,0,0.82665905,752.1144,730.42796)" />
689
+ <rect
690
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
691
+ id="rect7"
692
+ width="17.842903"
693
+ height="5.7480888"
694
+ x="2587.7869"
695
+ y="404.58148"
696
+ rx="2.4818907"
697
+ ry="2.4818907"
698
+ clip-path="url(#clipPath4)"
699
+ transform="matrix(0.82665905,0,0,0.82665905,752.1143,739.66949)" />
700
+ <rect
701
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
702
+ id="rect8"
703
+ width="17.842903"
704
+ height="5.7480888"
705
+ x="2587.7869"
706
+ y="404.58148"
707
+ rx="2.4818907"
708
+ ry="2.4818907"
709
+ clip-path="url(#clipPath4)"
710
+ transform="matrix(0.82665905,0,0,0.82665905,734.71845,739.66949)" />
711
+ <rect
712
+ style="fill:#f6edf4;fill-opacity:1;stroke-width:0.219454;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
713
+ id="rect9"
714
+ width="17.842903"
715
+ height="5.7480888"
716
+ x="2587.7869"
717
+ y="404.58148"
718
+ rx="2.4818907"
719
+ ry="2.4818907"
720
+ clip-path="url(#clipPath4)"
721
+ transform="matrix(0.82665905,0,0,0.82665905,769.51015,739.66949)" />
722
+ </g>
723
+ </g>
724
+ </svg>