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,857 @@
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="361.86948"
7
+ viewBox="0 0 169.33334 95.74463"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
11
+ sodipodi:docname="page-with-datatable.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="194.80791"
28
+ inkscape:cy="97.934287"
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="clipPath70">
41
+ <path
42
+ id="path70"
43
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.763966;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
44
+ d="m 541.96933,60.816574 c -4.17474,0 -9.34202,2.439554 -13.98037,5.312383 v 59.885483 c 4.63835,-2.87283 9.80563,-5.31197 13.98037,-5.31197 10.15228,0 16.02696,14.42842 26.17938,14.42842 10.15246,0 16.02666,-14.42842 26.17907,-14.42842 10.15254,0 16.02682,14.42842 26.17899,14.42842 10.15269,0 16.0274,-14.42842 26.18007,-14.42842 10.15243,0 15.90381,14.61412 26.17906,14.42842 7.11473,-0.12862 16.92849,-7.6262 22.29218,-12.22605 V 63.019359 c -5.36369,4.599838 -15.17745,12.097424 -22.29218,12.22604 -10.27509,0.185704 -16.02663,-14.428825 -26.17906,-14.428825 -10.15267,0 -16.02738,14.428825 -26.18007,14.428825 -10.15217,0 -16.02645,-14.428825 -26.17899,-14.428825 -10.15241,0 -16.02661,14.428825 -26.17907,14.428825 -10.15266,0 -16.0271,-14.428825 -26.17938,-14.428825 z"
45
+ sodipodi:nodetypes="sccssssssccssssss" />
46
+ </clipPath>
47
+ </defs>
48
+ <g
49
+ inkscape:label="Layer 1"
50
+ inkscape:groupmode="layer"
51
+ id="layer1"
52
+ transform="translate(-348.9855,-50.102299)">
53
+ <rect
54
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.239;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
55
+ id="datatable"
56
+ width="169.33333"
57
+ height="95.744629"
58
+ x="348.9855"
59
+ y="50.102299"
60
+ inkscape:export-filename="page-with-alert.png"
61
+ inkscape:export-xdpi="96"
62
+ inkscape:export-ydpi="96" />
63
+ <g
64
+ id="g70"
65
+ clip-path="url(#clipPath70)"
66
+ transform="translate(-177.92133)">
67
+ <g
68
+ id="g42"
69
+ transform="matrix(0.63753794,0,0,0.63753794,181.43456,63.144316)"
70
+ clip-path="none">
71
+ <rect
72
+ style="fill:#ecdce8;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
73
+ id="rect22"
74
+ width="210.60838"
75
+ height="17.991669"
76
+ x="569.38342"
77
+ y="69.152298"
78
+ rx="2.6458333"
79
+ ry="2.6458333" />
80
+ <path
81
+ style="fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
82
+ d="M 570.97092,105.31202 H 777.08134"
83
+ id="path23" />
84
+ <path
85
+ style="fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
86
+ d="M 570.97092,123.48008 H 777.08134"
87
+ id="path24" />
88
+ <path
89
+ style="fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
90
+ d="M 570.97092,141.64814 H 777.08134"
91
+ id="path25" />
92
+ <rect
93
+ style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:0.529167;stroke-linejoin:round"
94
+ id="rect25"
95
+ width="44.450001"
96
+ height="10.583334"
97
+ x="735.54181"
98
+ y="53.012714"
99
+ rx="2.6458335"
100
+ ry="2.6458335" />
101
+ <rect
102
+ style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
103
+ id="rect26"
104
+ width="27.781261"
105
+ height="10.583332"
106
+ x="569.38342"
107
+ y="53.012714"
108
+ rx="2.6458335"
109
+ ry="2.6458335" />
110
+ <rect
111
+ style="fill:#f6edf4;stroke:#f6edf4;stroke-width:0.529167;stroke-linejoin:round"
112
+ id="rect27"
113
+ width="83.608345"
114
+ height="10.583328"
115
+ x="696.38348"
116
+ y="147.20438"
117
+ rx="2.6458335"
118
+ ry="2.6458335" />
119
+ <rect
120
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
121
+ id="rect30"
122
+ width="44.450012"
123
+ height="6.6145859"
124
+ x="574.41052"
125
+ y="93.626251"
126
+ rx="2.6458335"
127
+ ry="2.6458335" />
128
+ <rect
129
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
130
+ id="rect31"
131
+ width="44.450012"
132
+ height="6.6145859"
133
+ x="647.14954"
134
+ y="93.626251"
135
+ rx="2.6458335"
136
+ ry="2.6458335" />
137
+ <rect
138
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
139
+ id="rect32"
140
+ width="44.450012"
141
+ height="6.6145859"
142
+ x="719.88849"
143
+ y="93.626251"
144
+ rx="2.6458335"
145
+ ry="2.6458335" />
146
+ <rect
147
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
148
+ id="rect33"
149
+ width="44.450012"
150
+ height="6.6145859"
151
+ x="574.41052"
152
+ y="110.55959"
153
+ rx="2.6458335"
154
+ ry="2.6458335" />
155
+ <rect
156
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
157
+ id="rect34"
158
+ width="44.450012"
159
+ height="6.6145859"
160
+ x="647.14954"
161
+ y="110.55959"
162
+ rx="2.6458335"
163
+ ry="2.6458335" />
164
+ <rect
165
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
166
+ id="rect35"
167
+ width="44.450012"
168
+ height="6.6145859"
169
+ x="719.88849"
170
+ y="110.55959"
171
+ rx="2.6458335"
172
+ ry="2.6458335" />
173
+ <rect
174
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
175
+ id="rect36"
176
+ width="44.450012"
177
+ height="6.6145859"
178
+ x="574.41052"
179
+ y="130.13876"
180
+ rx="2.6458335"
181
+ ry="2.6458335" />
182
+ <rect
183
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
184
+ id="rect37"
185
+ width="44.450012"
186
+ height="6.6145859"
187
+ x="647.14954"
188
+ y="130.13876"
189
+ rx="2.6458335"
190
+ ry="2.6458335" />
191
+ <rect
192
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
193
+ id="rect38"
194
+ width="44.450012"
195
+ height="6.6145859"
196
+ x="719.88849"
197
+ y="130.13876"
198
+ rx="2.6458335"
199
+ ry="2.6458335" />
200
+ <path
201
+ sodipodi:type="star"
202
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
203
+ id="path939-3"
204
+ inkscape:flatsided="false"
205
+ sodipodi:sides="3"
206
+ sodipodi:cx="-499.8125"
207
+ sodipodi:cy="737.32031"
208
+ sodipodi:r1="36.465179"
209
+ sodipodi:r2="18.23259"
210
+ sodipodi:arg1="1.5707963"
211
+ sodipodi:arg2="2.6179939"
212
+ inkscape:rounded="0"
213
+ inkscape:randomized="0"
214
+ 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"
215
+ transform="matrix(0.05071346,0,0,0.05071346,618.52912,20.449997)"
216
+ inkscape:transform-center-y="1.0197809"
217
+ inkscape:transform-center-x="-6.518711e-05" />
218
+ <path
219
+ sodipodi:type="star"
220
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
221
+ id="path939-3-0"
222
+ inkscape:flatsided="false"
223
+ sodipodi:sides="3"
224
+ sodipodi:cx="-499.8125"
225
+ sodipodi:cy="737.32031"
226
+ sodipodi:r1="36.465179"
227
+ sodipodi:r2="18.23259"
228
+ sodipodi:arg1="1.5707963"
229
+ sodipodi:arg2="2.6179939"
230
+ inkscape:rounded="0"
231
+ inkscape:randomized="0"
232
+ 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"
233
+ transform="matrix(0,0.05071346,-0.05071346,0,740.65191,177.84326)"
234
+ inkscape:transform-center-y="6.660793e-05"
235
+ inkscape:transform-center-x="1.0197766" />
236
+ <path
237
+ d="m 743.90788,57.582726 c 0,0.689543 -0.22384,1.326507 -0.60091,1.843289 l 1.90188,1.90338 c 0.18778,0.187785 0.18778,0.492746 0,0.68053 -0.18779,0.187785 -0.49275,0.187785 -0.68053,0 l -1.90188,-1.90338 c -0.51678,0.377071 -1.15375,0.600909 -1.84329,0.600909 -1.72611,0 -3.12473,-1.398616 -3.12473,-3.124728 0,-1.726112 1.39862,-3.124728 3.12473,-3.124728 1.72611,0 3.12473,1.398616 3.12473,3.124728 z M 740.78315,59.746 c 1.19431,0 2.16327,-0.968967 2.16327,-2.163274 0,-1.194307 -0.96896,-2.163273 -2.16327,-2.163273 -1.19431,0 -2.16327,0.968966 -2.16327,2.163273 0,1.194307 0.96896,2.163274 2.16327,2.163274 z"
238
+ id="path1-7"
239
+ style="fill:#a14f8c;fill-opacity:1;stroke-width:0.0150227" />
240
+ <rect
241
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
242
+ id="rect25-8"
243
+ width="11.906238"
244
+ height="6.3930144"
245
+ x="708.26074"
246
+ y="149.29953"
247
+ rx="1.3229166"
248
+ ry="1.3229166" />
249
+ <rect
250
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
251
+ id="rect39"
252
+ width="11.906238"
253
+ height="6.3930144"
254
+ x="724.24329"
255
+ y="149.29953"
256
+ rx="1.3229166"
257
+ ry="1.3229166" />
258
+ <rect
259
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
260
+ id="rect40"
261
+ width="11.906238"
262
+ height="6.3930144"
263
+ x="740.22577"
264
+ y="149.29953"
265
+ rx="1.3229166"
266
+ ry="1.3229166" />
267
+ <rect
268
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
269
+ id="rect41"
270
+ width="11.906238"
271
+ height="6.3930144"
272
+ x="756.20831"
273
+ y="149.29953"
274
+ rx="1.3229166"
275
+ ry="1.3229166" />
276
+ <path
277
+ sodipodi:type="star"
278
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
279
+ id="path42"
280
+ inkscape:flatsided="false"
281
+ sodipodi:sides="3"
282
+ sodipodi:cx="-499.8125"
283
+ sodipodi:cy="737.32031"
284
+ sodipodi:r1="36.465179"
285
+ sodipodi:r2="18.23259"
286
+ sodipodi:arg1="1.5707963"
287
+ sodipodi:arg2="2.6179939"
288
+ inkscape:rounded="0"
289
+ inkscape:randomized="0"
290
+ 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"
291
+ transform="matrix(0,0.05071346,0.05071346,0,735.7234,177.84326)"
292
+ inkscape:transform-center-y="6.660793e-05"
293
+ inkscape:transform-center-x="-1.0197795" />
294
+ <g
295
+ id="g25">
296
+ <rect
297
+ style="fill:#d9b9d1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
298
+ id="rect26-3"
299
+ width="44.450012"
300
+ height="6.6145859"
301
+ x="574.41052"
302
+ y="74.840836"
303
+ rx="2.6458335"
304
+ ry="2.6458335" />
305
+ <g
306
+ id="g18"
307
+ transform="translate(-3.6759271,0.72171401)">
308
+ <path
309
+ sodipodi:type="star"
310
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
311
+ id="path149-3"
312
+ inkscape:flatsided="false"
313
+ sodipodi:sides="3"
314
+ sodipodi:cx="-499.8125"
315
+ sodipodi:cy="737.32031"
316
+ sodipodi:r1="36.465179"
317
+ sodipodi:r2="18.23259"
318
+ sodipodi:arg1="1.5707963"
319
+ sodipodi:arg2="2.6179939"
320
+ inkscape:rounded="0"
321
+ inkscape:randomized="0"
322
+ 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"
323
+ transform="matrix(-0.05071346,0,0,-0.05071346,602.94084,113.68125)"
324
+ inkscape:transform-center-y="-1.0197721"
325
+ inkscape:transform-center-x="6.3795576e-05" />
326
+ <path
327
+ sodipodi:type="star"
328
+ 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"
329
+ id="path18"
330
+ inkscape:flatsided="false"
331
+ sodipodi:sides="3"
332
+ sodipodi:cx="-499.8125"
333
+ sodipodi:cy="737.32031"
334
+ sodipodi:r1="36.465179"
335
+ sodipodi:r2="18.23259"
336
+ sodipodi:arg1="1.5707963"
337
+ sodipodi:arg2="2.6179939"
338
+ inkscape:rounded="0"
339
+ inkscape:randomized="0"
340
+ 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"
341
+ transform="matrix(-0.05071346,0,0,0.05071346,602.94084,41.171579)"
342
+ inkscape:transform-center-y="1.0197724"
343
+ inkscape:transform-center-x="6.3795576e-05" />
344
+ </g>
345
+ </g>
346
+ <g
347
+ id="g24"
348
+ transform="translate(-5.31313)">
349
+ <rect
350
+ style="fill:#d9b9d1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
351
+ id="rect28"
352
+ width="44.450012"
353
+ height="6.6145859"
354
+ x="652.46265"
355
+ y="74.840836"
356
+ rx="2.6458335"
357
+ ry="2.6458335" />
358
+ <g
359
+ id="g20"
360
+ transform="translate(74.376197,0.72171401)">
361
+ <path
362
+ sodipodi:type="star"
363
+ 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"
364
+ id="path19"
365
+ inkscape:flatsided="false"
366
+ sodipodi:sides="3"
367
+ sodipodi:cx="-499.8125"
368
+ sodipodi:cy="737.32031"
369
+ sodipodi:r1="36.465179"
370
+ sodipodi:r2="18.23259"
371
+ sodipodi:arg1="1.5707963"
372
+ sodipodi:arg2="2.6179939"
373
+ inkscape:rounded="0"
374
+ inkscape:randomized="0"
375
+ 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"
376
+ transform="matrix(-0.05071346,0,0,-0.05071346,602.94084,113.68125)"
377
+ inkscape:transform-center-y="-1.0197721"
378
+ inkscape:transform-center-x="6.3795576e-05" />
379
+ <path
380
+ sodipodi:type="star"
381
+ 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"
382
+ id="path20"
383
+ inkscape:flatsided="false"
384
+ sodipodi:sides="3"
385
+ sodipodi:cx="-499.8125"
386
+ sodipodi:cy="737.32031"
387
+ sodipodi:r1="36.465179"
388
+ sodipodi:r2="18.23259"
389
+ sodipodi:arg1="1.5707963"
390
+ sodipodi:arg2="2.6179939"
391
+ inkscape:rounded="0"
392
+ inkscape:randomized="0"
393
+ 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"
394
+ transform="matrix(-0.05071346,0,0,0.05071346,602.94084,41.171579)"
395
+ inkscape:transform-center-y="1.0197724"
396
+ inkscape:transform-center-x="6.3795576e-05" />
397
+ </g>
398
+ </g>
399
+ <g
400
+ id="g23"
401
+ transform="translate(-3.4673244)">
402
+ <rect
403
+ style="fill:#d9b9d1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
404
+ id="rect29"
405
+ width="44.450012"
406
+ height="6.6145859"
407
+ x="723.35583"
408
+ y="74.840836"
409
+ rx="2.6458335"
410
+ ry="2.6458335" />
411
+ <g
412
+ id="g22"
413
+ transform="translate(145.26939,0.72171401)">
414
+ <path
415
+ sodipodi:type="star"
416
+ 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"
417
+ id="path21"
418
+ inkscape:flatsided="false"
419
+ sodipodi:sides="3"
420
+ sodipodi:cx="-499.8125"
421
+ sodipodi:cy="737.32031"
422
+ sodipodi:r1="36.465179"
423
+ sodipodi:r2="18.23259"
424
+ sodipodi:arg1="1.5707963"
425
+ sodipodi:arg2="2.6179939"
426
+ inkscape:rounded="0"
427
+ inkscape:randomized="0"
428
+ 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"
429
+ transform="matrix(-0.05071346,0,0,-0.05071346,602.94084,113.68125)"
430
+ inkscape:transform-center-y="-1.0197721"
431
+ inkscape:transform-center-x="6.3795576e-05" />
432
+ <path
433
+ sodipodi:type="star"
434
+ 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"
435
+ id="path22"
436
+ inkscape:flatsided="false"
437
+ sodipodi:sides="3"
438
+ sodipodi:cx="-499.8125"
439
+ sodipodi:cy="737.32031"
440
+ sodipodi:r1="36.465179"
441
+ sodipodi:r2="18.23259"
442
+ sodipodi:arg1="1.5707963"
443
+ sodipodi:arg2="2.6179939"
444
+ inkscape:rounded="0"
445
+ inkscape:randomized="0"
446
+ 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"
447
+ transform="matrix(-0.05071346,0,0,0.05071346,602.94084,41.171579)"
448
+ inkscape:transform-center-y="1.0197724"
449
+ inkscape:transform-center-x="6.3795576e-05" />
450
+ </g>
451
+ </g>
452
+ </g>
453
+ <g
454
+ id="g69"
455
+ transform="matrix(0.63753794,0,0,0.63753794,181.43456,-8.5106449)"
456
+ clip-path="none">
457
+ <rect
458
+ style="fill:#ecdce8;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
459
+ id="rect42"
460
+ width="210.60838"
461
+ height="17.991669"
462
+ x="569.38342"
463
+ y="69.152298"
464
+ rx="2.6458333"
465
+ ry="2.6458333" />
466
+ <path
467
+ style="fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
468
+ d="M 570.97092,105.31202 H 777.08134"
469
+ id="path43" />
470
+ <path
471
+ style="fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
472
+ d="M 570.97092,123.48008 H 777.08134"
473
+ id="path44" />
474
+ <path
475
+ style="fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
476
+ d="M 570.97092,141.64814 H 777.08134"
477
+ id="path45" />
478
+ <rect
479
+ style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:0.529167;stroke-linejoin:round"
480
+ id="rect45"
481
+ width="44.450001"
482
+ height="10.583334"
483
+ x="735.54181"
484
+ y="53.012714"
485
+ rx="2.6458335"
486
+ ry="2.6458335" />
487
+ <rect
488
+ style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:0.529167;stroke-linejoin:round;stroke-opacity:1"
489
+ id="rect46"
490
+ width="27.781261"
491
+ height="10.583332"
492
+ x="569.38342"
493
+ y="53.012714"
494
+ rx="2.6458335"
495
+ ry="2.6458335" />
496
+ <rect
497
+ style="fill:#f6edf4;stroke:#f6edf4;stroke-width:0.529167;stroke-linejoin:round"
498
+ id="rect47"
499
+ width="83.608345"
500
+ height="10.583328"
501
+ x="696.38348"
502
+ y="147.20438"
503
+ rx="2.6458335"
504
+ ry="2.6458335" />
505
+ <rect
506
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
507
+ id="rect48"
508
+ width="44.450012"
509
+ height="6.6145859"
510
+ x="574.41052"
511
+ y="93.626251"
512
+ rx="2.6458335"
513
+ ry="2.6458335" />
514
+ <rect
515
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
516
+ id="rect49"
517
+ width="44.450012"
518
+ height="6.6145859"
519
+ x="647.14954"
520
+ y="93.626251"
521
+ rx="2.6458335"
522
+ ry="2.6458335" />
523
+ <rect
524
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
525
+ id="rect50"
526
+ width="44.450012"
527
+ height="6.6145859"
528
+ x="719.88849"
529
+ y="93.626251"
530
+ rx="2.6458335"
531
+ ry="2.6458335" />
532
+ <rect
533
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
534
+ id="rect51"
535
+ width="44.450012"
536
+ height="6.6145859"
537
+ x="574.41052"
538
+ y="110.55959"
539
+ rx="2.6458335"
540
+ ry="2.6458335" />
541
+ <rect
542
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
543
+ id="rect52"
544
+ width="44.450012"
545
+ height="6.6145859"
546
+ x="647.14954"
547
+ y="110.55959"
548
+ rx="2.6458335"
549
+ ry="2.6458335" />
550
+ <rect
551
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
552
+ id="rect53"
553
+ width="44.450012"
554
+ height="6.6145859"
555
+ x="719.88849"
556
+ y="110.55959"
557
+ rx="2.6458335"
558
+ ry="2.6458335" />
559
+ <rect
560
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
561
+ id="rect54"
562
+ width="44.450012"
563
+ height="6.6145859"
564
+ x="574.41052"
565
+ y="130.13876"
566
+ rx="2.6458335"
567
+ ry="2.6458335" />
568
+ <rect
569
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
570
+ id="rect55"
571
+ width="44.450012"
572
+ height="6.6145859"
573
+ x="647.14954"
574
+ y="130.13876"
575
+ rx="2.6458335"
576
+ ry="2.6458335" />
577
+ <rect
578
+ style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
579
+ id="rect56"
580
+ width="44.450012"
581
+ height="6.6145859"
582
+ x="719.88849"
583
+ y="130.13876"
584
+ rx="2.6458335"
585
+ ry="2.6458335" />
586
+ <path
587
+ sodipodi:type="star"
588
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
589
+ id="path56"
590
+ inkscape:flatsided="false"
591
+ sodipodi:sides="3"
592
+ sodipodi:cx="-499.8125"
593
+ sodipodi:cy="737.32031"
594
+ sodipodi:r1="36.465179"
595
+ sodipodi:r2="18.23259"
596
+ sodipodi:arg1="1.5707963"
597
+ sodipodi:arg2="2.6179939"
598
+ inkscape:rounded="0"
599
+ inkscape:randomized="0"
600
+ 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"
601
+ transform="matrix(0.05071346,0,0,0.05071346,618.52912,20.449997)"
602
+ inkscape:transform-center-y="1.0197809"
603
+ inkscape:transform-center-x="-6.518711e-05" />
604
+ <path
605
+ sodipodi:type="star"
606
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
607
+ id="path57"
608
+ inkscape:flatsided="false"
609
+ sodipodi:sides="3"
610
+ sodipodi:cx="-499.8125"
611
+ sodipodi:cy="737.32031"
612
+ sodipodi:r1="36.465179"
613
+ sodipodi:r2="18.23259"
614
+ sodipodi:arg1="1.5707963"
615
+ sodipodi:arg2="2.6179939"
616
+ inkscape:rounded="0"
617
+ inkscape:randomized="0"
618
+ 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"
619
+ transform="matrix(0,0.05071346,-0.05071346,0,740.65191,177.84326)"
620
+ inkscape:transform-center-y="6.660793e-05"
621
+ inkscape:transform-center-x="1.0197766" />
622
+ <path
623
+ d="m 743.90788,57.582726 c 0,0.689543 -0.22384,1.326507 -0.60091,1.843289 l 1.90188,1.90338 c 0.18778,0.187785 0.18778,0.492746 0,0.68053 -0.18779,0.187785 -0.49275,0.187785 -0.68053,0 l -1.90188,-1.90338 c -0.51678,0.377071 -1.15375,0.600909 -1.84329,0.600909 -1.72611,0 -3.12473,-1.398616 -3.12473,-3.124728 0,-1.726112 1.39862,-3.124728 3.12473,-3.124728 1.72611,0 3.12473,1.398616 3.12473,3.124728 z M 740.78315,59.746 c 1.19431,0 2.16327,-0.968967 2.16327,-2.163274 0,-1.194307 -0.96896,-2.163273 -2.16327,-2.163273 -1.19431,0 -2.16327,0.968966 -2.16327,2.163273 0,1.194307 0.96896,2.163274 2.16327,2.163274 z"
624
+ id="path58"
625
+ style="fill:#a14f8c;fill-opacity:1;stroke-width:0.0150227" />
626
+ <rect
627
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
628
+ id="rect58"
629
+ width="11.906238"
630
+ height="6.3930144"
631
+ x="708.26074"
632
+ y="149.29953"
633
+ rx="1.3229166"
634
+ ry="1.3229166" />
635
+ <rect
636
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
637
+ id="rect59"
638
+ width="11.906238"
639
+ height="6.3930144"
640
+ x="724.24329"
641
+ y="149.29953"
642
+ rx="1.3229166"
643
+ ry="1.3229166" />
644
+ <rect
645
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
646
+ id="rect60"
647
+ width="11.906238"
648
+ height="6.3930144"
649
+ x="740.22577"
650
+ y="149.29953"
651
+ rx="1.3229166"
652
+ ry="1.3229166" />
653
+ <rect
654
+ style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.175955;stroke-linejoin:round"
655
+ id="rect61"
656
+ width="11.906238"
657
+ height="6.3930144"
658
+ x="756.20831"
659
+ y="149.29953"
660
+ rx="1.3229166"
661
+ ry="1.3229166" />
662
+ <path
663
+ sodipodi:type="star"
664
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
665
+ id="path61"
666
+ inkscape:flatsided="false"
667
+ sodipodi:sides="3"
668
+ sodipodi:cx="-499.8125"
669
+ sodipodi:cy="737.32031"
670
+ sodipodi:r1="36.465179"
671
+ sodipodi:r2="18.23259"
672
+ sodipodi:arg1="1.5707963"
673
+ sodipodi:arg2="2.6179939"
674
+ inkscape:rounded="0"
675
+ inkscape:randomized="0"
676
+ 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"
677
+ transform="matrix(0,0.05071346,0.05071346,0,735.7234,177.84326)"
678
+ inkscape:transform-center-y="6.660793e-05"
679
+ inkscape:transform-center-x="-1.0197795" />
680
+ <g
681
+ id="g64">
682
+ <rect
683
+ style="fill:#d9b9d1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
684
+ id="rect62"
685
+ width="44.450012"
686
+ height="6.6145859"
687
+ x="574.41052"
688
+ y="74.840836"
689
+ rx="2.6458335"
690
+ ry="2.6458335" />
691
+ <g
692
+ id="g63"
693
+ transform="translate(-3.6759271,0.72171401)">
694
+ <path
695
+ sodipodi:type="star"
696
+ style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
697
+ id="path62"
698
+ inkscape:flatsided="false"
699
+ sodipodi:sides="3"
700
+ sodipodi:cx="-499.8125"
701
+ sodipodi:cy="737.32031"
702
+ sodipodi:r1="36.465179"
703
+ sodipodi:r2="18.23259"
704
+ sodipodi:arg1="1.5707963"
705
+ sodipodi:arg2="2.6179939"
706
+ inkscape:rounded="0"
707
+ inkscape:randomized="0"
708
+ 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"
709
+ transform="matrix(-0.05071346,0,0,-0.05071346,602.94084,113.68125)"
710
+ inkscape:transform-center-y="-1.0197721"
711
+ inkscape:transform-center-x="6.3795576e-05" />
712
+ <path
713
+ sodipodi:type="star"
714
+ 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"
715
+ id="path63"
716
+ inkscape:flatsided="false"
717
+ sodipodi:sides="3"
718
+ sodipodi:cx="-499.8125"
719
+ sodipodi:cy="737.32031"
720
+ sodipodi:r1="36.465179"
721
+ sodipodi:r2="18.23259"
722
+ sodipodi:arg1="1.5707963"
723
+ sodipodi:arg2="2.6179939"
724
+ inkscape:rounded="0"
725
+ inkscape:randomized="0"
726
+ 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"
727
+ transform="matrix(-0.05071346,0,0,0.05071346,602.94084,41.171579)"
728
+ inkscape:transform-center-y="1.0197724"
729
+ inkscape:transform-center-x="6.3795576e-05" />
730
+ </g>
731
+ </g>
732
+ <g
733
+ id="g66"
734
+ transform="translate(-5.31313)">
735
+ <rect
736
+ style="fill:#d9b9d1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
737
+ id="rect64"
738
+ width="44.450012"
739
+ height="6.6145859"
740
+ x="652.46265"
741
+ y="74.840836"
742
+ rx="2.6458335"
743
+ ry="2.6458335" />
744
+ <g
745
+ id="g65"
746
+ transform="translate(74.376197,0.72171401)">
747
+ <path
748
+ sodipodi:type="star"
749
+ 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"
750
+ id="path64"
751
+ inkscape:flatsided="false"
752
+ sodipodi:sides="3"
753
+ sodipodi:cx="-499.8125"
754
+ sodipodi:cy="737.32031"
755
+ sodipodi:r1="36.465179"
756
+ sodipodi:r2="18.23259"
757
+ sodipodi:arg1="1.5707963"
758
+ sodipodi:arg2="2.6179939"
759
+ inkscape:rounded="0"
760
+ inkscape:randomized="0"
761
+ 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"
762
+ transform="matrix(-0.05071346,0,0,-0.05071346,602.94084,113.68125)"
763
+ inkscape:transform-center-y="-1.0197721"
764
+ inkscape:transform-center-x="6.3795576e-05" />
765
+ <path
766
+ sodipodi:type="star"
767
+ 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"
768
+ id="path65"
769
+ inkscape:flatsided="false"
770
+ sodipodi:sides="3"
771
+ sodipodi:cx="-499.8125"
772
+ sodipodi:cy="737.32031"
773
+ sodipodi:r1="36.465179"
774
+ sodipodi:r2="18.23259"
775
+ sodipodi:arg1="1.5707963"
776
+ sodipodi:arg2="2.6179939"
777
+ inkscape:rounded="0"
778
+ inkscape:randomized="0"
779
+ 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"
780
+ transform="matrix(-0.05071346,0,0,0.05071346,602.94084,41.171579)"
781
+ inkscape:transform-center-y="1.0197724"
782
+ inkscape:transform-center-x="6.3795576e-05" />
783
+ </g>
784
+ </g>
785
+ <g
786
+ id="g68"
787
+ transform="translate(-3.4673244)">
788
+ <rect
789
+ style="fill:#d9b9d1;stroke:none;stroke-width:0.529167;stroke-linejoin:round"
790
+ id="rect66"
791
+ width="44.450012"
792
+ height="6.6145859"
793
+ x="723.35583"
794
+ y="74.840836"
795
+ rx="2.6458335"
796
+ ry="2.6458335" />
797
+ <g
798
+ id="g67"
799
+ transform="translate(145.26939,0.72171401)">
800
+ <path
801
+ sodipodi:type="star"
802
+ 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"
803
+ id="path66"
804
+ inkscape:flatsided="false"
805
+ sodipodi:sides="3"
806
+ sodipodi:cx="-499.8125"
807
+ sodipodi:cy="737.32031"
808
+ sodipodi:r1="36.465179"
809
+ sodipodi:r2="18.23259"
810
+ sodipodi:arg1="1.5707963"
811
+ sodipodi:arg2="2.6179939"
812
+ inkscape:rounded="0"
813
+ inkscape:randomized="0"
814
+ 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"
815
+ transform="matrix(-0.05071346,0,0,-0.05071346,602.94084,113.68125)"
816
+ inkscape:transform-center-y="-1.0197721"
817
+ inkscape:transform-center-x="6.3795576e-05" />
818
+ <path
819
+ sodipodi:type="star"
820
+ 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"
821
+ id="path67"
822
+ inkscape:flatsided="false"
823
+ sodipodi:sides="3"
824
+ sodipodi:cx="-499.8125"
825
+ sodipodi:cy="737.32031"
826
+ sodipodi:r1="36.465179"
827
+ sodipodi:r2="18.23259"
828
+ sodipodi:arg1="1.5707963"
829
+ sodipodi:arg2="2.6179939"
830
+ inkscape:rounded="0"
831
+ inkscape:randomized="0"
832
+ 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"
833
+ transform="matrix(-0.05071346,0,0,0.05071346,602.94084,41.171579)"
834
+ inkscape:transform-center-y="1.0197724"
835
+ inkscape:transform-center-x="6.3795576e-05" />
836
+ </g>
837
+ </g>
838
+ </g>
839
+ </g>
840
+ <path
841
+ id="path16"
842
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58749, 1.58749;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
843
+ d="m 350.0676,50.992911 v 12.465093 c 4.63848,-2.872772 9.8057,-5.311834 13.98038,-5.311834 10.15225,0 16.02692,14.428294 26.17956,14.428294 10.15238,0 16.0264,-14.428294 26.17891,-14.428294 10.15239,0 16.02679,14.428294 26.17918,14.428294 10.15251,0 16.0273,-14.428294 26.17994,-14.428294 10.15239,0 15.90374,14.613969 26.17905,14.428294 7.11485,-0.129119 16.92855,-7.626166 22.29216,-12.226037 v -9.355516"
844
+ sodipodi:nodetypes="ccsssssscc" />
845
+ <path
846
+ id="path17"
847
+ 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"
848
+ d="m 517.23678,144.95634 v -18.82138 c -5.36361,4.59974 -15.17744,12.0973 -22.29216,12.22603 -10.27518,0.18555 -16.02666,-14.42894 -26.17905,-14.42894 -10.15264,0 -16.02743,14.42894 -26.17994,14.42894 -10.15239,0 -16.02679,-14.42894 -26.17918,-14.42894 -10.15251,0 -16.02653,14.42894 -26.17891,14.42894 -10.15277,0 -16.02731,-14.42894 -26.17956,-14.42894 -4.17468,0 -9.3419,2.43958 -13.98038,5.31235 v 15.71194"
849
+ sodipodi:nodetypes="ccsssssscc" />
850
+ <!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
851
+ <path
852
+ id="path868-4"
853
+ style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.794;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
854
+ d="m 364.04798,60.816617 c -4.17468,0 -9.3419,2.439449 -13.98038,5.312221 V 126.0145 c 4.63848,-2.8729 9.8057,-5.31196 13.98038,-5.31196 10.15225,0 16.02692,14.42829 26.17956,14.42829 10.15238,0 16.0264,-14.42829 26.17891,-14.42829 10.15239,0 16.02679,14.42829 26.17918,14.42829 10.15251,0 16.0273,-14.42829 26.17994,-14.42829 10.15239,0 15.90374,14.61409 26.17905,14.42829 7.11485,-0.12912 16.92855,-7.62616 22.29216,-12.22604 v -59.8854 c -5.36361,4.599742 -15.17744,12.097434 -22.29216,12.226037 -10.27518,0.185674 -16.02666,-14.42881 -26.17905,-14.42881 -10.15264,0 -16.02743,14.42881 -26.17994,14.42881 -10.15239,0 -16.02679,-14.42881 -26.17918,-14.42881 -10.15251,0 -16.02653,14.42881 -26.17891,14.42881 -10.15277,0 -16.02731,-14.42881 -26.17956,-14.42881 z"
855
+ sodipodi:nodetypes="sccssssssccssssss" />
856
+ </g>
857
+ </svg>