jekyll-theme-centos 0.0.0
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.
- checksums.yaml +7 -0
- data/_config.yml +196 -0
- data/_data/base/announcement_schema.yml +49 -0
- data/_data/base/artwork_schema.yml +46 -0
- data/_data/base/backtotop_schema.yml +59 -0
- data/_data/base/bits.yml +96 -0
- data/_data/base/bits_schema.yml +185 -0
- data/_data/base/breadcrumb_schema.yml +27 -0
- data/_data/base/breakingnews_schema.yml +67 -0
- data/_data/base/card_schema.yml +146 -0
- data/_data/base/color.yml +1042 -0
- data/_data/base/color_schema.yml +1036 -0
- data/_data/base/configuration_variables_schema.yml +42 -0
- data/_data/base/content.yml +2 -0
- data/_data/base/content_schema.yml +26 -0
- data/_data/base/copyright.yml +12 -0
- data/_data/base/copyright_schema.yml +74 -0
- data/_data/base/copyvalue_schema.yml +49 -0
- data/_data/base/datatable_schema.yml +57 -0
- data/_data/base/event_schema.yml +130 -0
- data/_data/base/fontawesome_schema.yml +62 -0
- data/_data/base/footer.yml +9 -0
- data/_data/base/footer_schema.yml +55 -0
- data/_data/base/head_schema.yml +19 -0
- data/_data/base/heading_anchor.yml +2 -0
- data/_data/base/heading_anchor_schema.yml +37 -0
- data/_data/base/highlight_schema.yml +98 -0
- data/_data/base/image_schema.yml +34 -0
- data/_data/base/languages.yml +186 -0
- data/_data/base/link_schema.yml +187 -0
- data/_data/base/locales_schema.yml +158 -0
- data/_data/base/navbar.yml +20 -0
- data/_data/base/navbar_schema.yml +129 -0
- data/_data/base/navindex_schema.yml +67 -0
- data/_data/base/ogp.yml +24 -0
- data/_data/base/ogp_schema.yml +192 -0
- data/_data/base/project.yml +37 -0
- data/_data/base/project_schema.yml +124 -0
- data/_data/base/script_schema.yml +41 -0
- data/_data/base/shortcut_schema.yml +74 -0
- data/_data/base/social.yml +26 -0
- data/_data/base/social_schema.yml +57 -0
- data/_data/base/sponsors.yml +41 -0
- data/_data/base/sponsors_schema.yml +73 -0
- data/_data/base/title_schema.yml +49 -0
- data/_data/base/toc_schema.yml +114 -0
- data/_data/download/cards.yml +309 -0
- data/_data/download/navbar.yml +11 -0
- data/_includes/base/announcement.html.liquid +65 -0
- data/_includes/base/artwork.html.liquid +63 -0
- data/_includes/base/backtotop.html.liquid +73 -0
- data/_includes/base/bits.html.liquid +152 -0
- data/_includes/base/breadcrumb.html.liquid +77 -0
- data/_includes/base/breakingnews.html.liquid +90 -0
- data/_includes/base/card.html.liquid +110 -0
- data/_includes/base/color-table.html.liquid +33 -0
- data/_includes/base/configuration_variables-nested.html.liquid +98 -0
- data/_includes/base/configuration_variables.html.liquid +98 -0
- data/_includes/base/content.html.liquid +7 -0
- data/_includes/base/copyright.html.liquid +70 -0
- data/_includes/base/copyvalue.html.liquid +82 -0
- data/_includes/base/datatable.html.liquid +83 -0
- data/_includes/base/event.html.liquid +105 -0
- data/_includes/base/fontawesome.html.liquid +91 -0
- data/_includes/base/footer.html.liquid +69 -0
- data/_includes/base/head.html.liquid +135 -0
- data/_includes/base/heading_anchor.html.liquid +67 -0
- data/_includes/base/highlight.html.liquid +84 -0
- data/_includes/base/image.html.liquid +42 -0
- data/_includes/base/link.html.liquid +129 -0
- data/_includes/base/locales.html.liquid +78 -0
- data/_includes/base/navbar.html.liquid +121 -0
- data/_includes/base/navindex.html.liquid +200 -0
- data/_includes/base/ogp.html.liquid +144 -0
- data/_includes/base/project.html.liquid +104 -0
- data/_includes/base/shortcut.html.liquid +77 -0
- data/_includes/base/social.html.liquid +76 -0
- data/_includes/base/sponsors-cards.html.liquid +69 -0
- data/_includes/base/sponsors-carousel.html.liquid +91 -0
- data/_includes/base/title.html.liquid +65 -0
- data/_includes/base/toc-generator.html.liquid +189 -0
- data/_includes/base/toc.html.liquid +95 -0
- data/_includes/download/cards-body-commands.html +7 -0
- data/_includes/download/cards-body-convert.html +10 -0
- data/_includes/download/cards-body-doc.html +9 -0
- data/_includes/download/cards-body-documentation.html +11 -0
- data/_includes/download/cards-body-eol.html +16 -0
- data/_includes/download/cards-body-mirrors.html +8 -0
- data/_includes/download/cards-body-screenshot.html +26 -0
- data/_includes/download/cards-body-screenshots.html +32 -0
- data/_includes/download/cards-body.html +8 -0
- data/_includes/download/cards-footer.html +3 -0
- data/_includes/download/cards-header-commands.html +8 -0
- data/_includes/download/cards-header-convert.html +8 -0
- data/_includes/download/cards-header-doc.html +8 -0
- data/_includes/download/cards-header-documentation.html +8 -0
- data/_includes/download/cards-header-eol.html +8 -0
- data/_includes/download/cards-header-mirrors.html +13 -0
- data/_includes/download/cards-header-screenshot.html +8 -0
- data/_includes/download/cards-header-screenshots.html +8 -0
- data/_includes/download/cards-header.html +13 -0
- data/_includes/download/cards.html +120 -0
- data/_layouts/base/default.html +68 -0
- data/_layouts/download/cards.html +7 -0
- data/_layouts/download/default.html +7 -0
- data/_layouts/people/default.html +68 -0
- data/_sass/base/_customization.scss +331 -0
- data/_sass/base/_light-dark.scss +10 -0
- data/_sass/base/_maps.scss +104 -0
- data/_sass/base/_variables.scss +232 -0
- data/_sass/bootstrap/_accordion.scss +153 -0
- data/_sass/bootstrap/_alert.scss +68 -0
- data/_sass/bootstrap/_badge.scss +38 -0
- data/_sass/bootstrap/_breadcrumb.scss +40 -0
- data/_sass/bootstrap/_button-group.scss +147 -0
- data/_sass/bootstrap/_buttons.scss +216 -0
- data/_sass/bootstrap/_card.scss +238 -0
- data/_sass/bootstrap/_carousel.scss +226 -0
- data/_sass/bootstrap/_close.scss +66 -0
- data/_sass/bootstrap/_containers.scss +41 -0
- data/_sass/bootstrap/_dropdown.scss +250 -0
- data/_sass/bootstrap/_forms.scss +9 -0
- data/_sass/bootstrap/_functions.scss +302 -0
- data/_sass/bootstrap/_grid.scss +39 -0
- data/_sass/bootstrap/_helpers.scss +12 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_list-group.scss +199 -0
- data/_sass/bootstrap/_maps.scss +174 -0
- data/_sass/bootstrap/_mixins.scss +42 -0
- data/_sass/bootstrap/_modal.scss +240 -0
- data/_sass/bootstrap/_nav.scss +197 -0
- data/_sass/bootstrap/_navbar.scss +289 -0
- data/_sass/bootstrap/_offcanvas.scss +147 -0
- data/_sass/bootstrap/_pagination.scss +109 -0
- data/_sass/bootstrap/_placeholders.scss +51 -0
- data/_sass/bootstrap/_popover.scss +196 -0
- data/_sass/bootstrap/_progress.scss +68 -0
- data/_sass/bootstrap/_reboot.scss +617 -0
- data/_sass/bootstrap/_root.scss +187 -0
- data/_sass/bootstrap/_spinners.scss +86 -0
- data/_sass/bootstrap/_tables.scss +171 -0
- data/_sass/bootstrap/_toasts.scss +73 -0
- data/_sass/bootstrap/_tooltip.scss +119 -0
- data/_sass/bootstrap/_transitions.scss +27 -0
- data/_sass/bootstrap/_type.scss +106 -0
- data/_sass/bootstrap/_utilities.scss +806 -0
- data/_sass/bootstrap/_variables-dark.scss +102 -0
- data/_sass/bootstrap/_variables.scss +1753 -0
- data/_sass/bootstrap/bootstrap-grid.scss +62 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
- data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
- data/_sass/bootstrap/bootstrap.scss +52 -0
- data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
- data/_sass/bootstrap/forms/_form-check.scss +189 -0
- data/_sass/bootstrap/forms/_form-control.scss +214 -0
- data/_sass/bootstrap/forms/_form-range.scss +91 -0
- data/_sass/bootstrap/forms/_form-select.scss +80 -0
- data/_sass/bootstrap/forms/_form-text.scss +11 -0
- data/_sass/bootstrap/forms/_input-group.scss +132 -0
- data/_sass/bootstrap/forms/_labels.scss +36 -0
- data/_sass/bootstrap/forms/_validation.scss +12 -0
- data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
- data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
- data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
- data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
- data/_sass/bootstrap/helpers/_position.scss +36 -0
- data/_sass/bootstrap/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap/helpers/_stacks.scss +15 -0
- data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap/helpers/_vr.scss +8 -0
- data/_sass/bootstrap/mixins/_alert.scss +18 -0
- data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
- data/_sass/bootstrap/mixins/_banner.scss +7 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap/mixins/_buttons.scss +70 -0
- data/_sass/bootstrap/mixins/_caret.scss +69 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
- data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
- data/_sass/bootstrap/mixins/_container.scss +11 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_forms.scss +163 -0
- data/_sass/bootstrap/mixins/_gradients.scss +47 -0
- data/_sass/bootstrap/mixins/_grid.scss +151 -0
- data/_sass/bootstrap/mixins/_image.scss +16 -0
- data/_sass/bootstrap/mixins/_list-group.scss +26 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_pagination.scss +10 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_utilities.scss +97 -0
- data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
- data/_sass/bootstrap/utilities/_api.scss +47 -0
- data/_sass/bootstrap/vendor/_rfs.scss +348 -0
- data/assets/css/base/stylesheet.min.scss +35 -0
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/favicon.svg +1 -0
- data/assets/img/anaconda-symbolic.svg +1 -0
- data/assets/img/anaconda.svg +1 -0
- data/assets/img/base/centos-colors.gpl +55 -0
- data/assets/img/base/example-ogp-image.svg +297 -0
- data/assets/img/base/example-sponsors-design.svg +226 -0
- data/assets/img/base/example-sponsors-logo-1.svg +120 -0
- data/assets/img/base/example-sponsors-logo-2.svg +116 -0
- data/assets/img/base/example-sponsors-logo-3.svg +123 -0
- data/assets/img/base/example-sponsors-logo-4.svg +116 -0
- data/assets/img/base/example-sponsors-logo-5.svg +116 -0
- data/assets/img/base/example-sponsors-logo-6.svg +116 -0
- data/assets/img/base/example-sponsors-logo-7.svg +116 -0
- data/assets/img/base/example-sponsors-logo-8.svg +110 -0
- data/assets/img/base/page-layout-default.svg +1217 -0
- data/assets/img/base/page-with-alert.svg +383 -0
- data/assets/img/base/page-with-announcement.svg +956 -0
- data/assets/img/base/page-with-artwork.svg +1009 -0
- data/assets/img/base/page-with-backtotop.svg +1009 -0
- data/assets/img/base/page-with-bits.svg +891 -0
- data/assets/img/base/page-with-breadcrumb.svg +676 -0
- data/assets/img/base/page-with-breakingnews.svg +957 -0
- data/assets/img/base/page-with-color.svg +57 -0
- data/assets/img/base/page-with-copyright.svg +1018 -0
- data/assets/img/base/page-with-copyvalue.svg +57 -0
- data/assets/img/base/page-with-datatable.svg +857 -0
- data/assets/img/base/page-with-event.svg +518 -0
- data/assets/img/base/page-with-fontawesome.svg +147 -0
- data/assets/img/base/page-with-footer.svg +1018 -0
- data/assets/img/base/page-with-heading.svg +57 -0
- data/assets/img/base/page-with-highlight.svg +86 -0
- data/assets/img/base/page-with-image.svg +57 -0
- data/assets/img/base/page-with-link.svg +57 -0
- data/assets/img/base/page-with-locales.svg +1009 -0
- data/assets/img/base/page-with-navbar.svg +958 -0
- data/assets/img/base/page-with-navindex.svg +279 -0
- data/assets/img/base/page-with-ogp.svg +401 -0
- data/assets/img/base/page-with-project.svg +423 -0
- data/assets/img/base/page-with-shortcut.svg +937 -0
- data/assets/img/base/page-with-social.svg +937 -0
- data/assets/img/base/page-with-sponsors.svg +937 -0
- data/assets/img/base/page-with-title.svg +584 -0
- data/assets/img/base/page-with-toc.svg +399 -0
- data/assets/img/base/screenshot-1200x600.svg +114 -0
- data/assets/img/centos-dynamicmsg-logo.svg +1 -0
- data/assets/img/centos-dynamicmsg-type.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
- data/assets/img/centos-gdm-whitelogo.svg +1 -0
- data/assets/img/centos-ipa-whiteheader.svg +1 -0
- data/assets/img/centos-logo-2bits.svg +1 -0
- data/assets/img/centos-logo.svg +1 -0
- data/assets/img/centos-message-logo.svg +1 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/centos-poweredby-logo.svg +1 -0
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +1 -0
- data/assets/img/centos-symbol.svg +1 -0
- data/assets/img/centos-type.svg +1 -0
- data/assets/img/centos-vertical-logo.svg +1 -0
- data/assets/img/centos-vertical-message-logo.svg +1 -0
- data/assets/img/centos-whitelogo.svg +1 -0
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-1.png +0 -0
- data/assets/img/download/distribution-release-screenshot-2.png +0 -0
- data/assets/img/download/distribution-release-screenshot-3.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
- data/assets/img/download/download.svg +421 -0
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/page.svg +900 -0
- data/assets/img/people/page.webp +0 -0
- data/assets/img/people/username.webp +0 -0
- data/assets/js/base/backtotop.js +20 -0
- data/assets/js/base/copyvalue.js +145 -0
- data/assets/js/base/datatable.js +41 -0
- data/assets/js/base/heading-anchor.js +108 -0
- data/assets/js/base/highlight.js +12 -0
- data/assets/js/base/init-tooltips.js +12 -0
- data/assets/js/bootstrap.bundle.js +6312 -0
- data/assets/js/bootstrap.bundle.js.map +1 -0
- data/assets/js/bootstrap.bundle.min.js +7 -0
- data/assets/js/bootstrap.bundle.min.js.map +1 -0
- data/assets/js/bootstrap.esm.js +4447 -0
- data/assets/js/bootstrap.esm.js.map +1 -0
- data/assets/js/bootstrap.esm.min.js +7 -0
- data/assets/js/bootstrap.esm.min.js.map +1 -0
- data/assets/js/bootstrap.js +4494 -0
- data/assets/js/bootstrap.js.map +1 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/bootstrap.min.js.map +1 -0
- data/site.webmanifest +11 -0
- metadata +611 -0
|
@@ -0,0 +1,1217 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="2823.6841"
|
|
6
|
+
height="3221.4563"
|
|
7
|
+
viewBox="0 0 747.09978 852.34374"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg638"
|
|
10
|
+
inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
|
|
11
|
+
sodipodi:docname="page-layout-default.svg"
|
|
12
|
+
inkscape:export-filename="page-with-announcement.webp"
|
|
13
|
+
inkscape:export-xdpi="83.063591"
|
|
14
|
+
inkscape:export-ydpi="83.063591"
|
|
15
|
+
xml:space="preserve"
|
|
16
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
17
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
18
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
21
|
+
id="namedview640"
|
|
22
|
+
pagecolor="#ffffff"
|
|
23
|
+
bordercolor="#666666"
|
|
24
|
+
borderopacity="1.0"
|
|
25
|
+
inkscape:showpageshadow="2"
|
|
26
|
+
inkscape:pageopacity="0.0"
|
|
27
|
+
inkscape:pagecheckerboard="0"
|
|
28
|
+
inkscape:deskcolor="#d1d1d1"
|
|
29
|
+
inkscape:document-units="px"
|
|
30
|
+
showgrid="false"
|
|
31
|
+
inkscape:zoom="0.35355339"
|
|
32
|
+
inkscape:cx="742.46212"
|
|
33
|
+
inkscape:cy="1542.907"
|
|
34
|
+
inkscape:window-width="3440"
|
|
35
|
+
inkscape:window-height="1403"
|
|
36
|
+
inkscape:window-x="0"
|
|
37
|
+
inkscape:window-y="0"
|
|
38
|
+
inkscape:window-maximized="1"
|
|
39
|
+
inkscape:current-layer="g16"
|
|
40
|
+
showguides="false"
|
|
41
|
+
inkscape:lockguides="false"><sodipodi:guide
|
|
42
|
+
position="360.19919,999.255"
|
|
43
|
+
orientation="1,0"
|
|
44
|
+
id="guide11"
|
|
45
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
46
|
+
position="418.71988,205.70687"
|
|
47
|
+
orientation="0,-1"
|
|
48
|
+
id="guide27"
|
|
49
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
50
|
+
position="374.737,100.63595"
|
|
51
|
+
orientation="0,-1"
|
|
52
|
+
id="guide28"
|
|
53
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
54
|
+
position="383.14699,926.73383"
|
|
55
|
+
orientation="0,-1"
|
|
56
|
+
id="guide29"
|
|
57
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
58
|
+
position="376.31743,907.41542"
|
|
59
|
+
orientation="0,-1"
|
|
60
|
+
id="guide30"
|
|
61
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
62
|
+
position="448.43689,809.49474"
|
|
63
|
+
orientation="0,-1"
|
|
64
|
+
id="guide50"
|
|
65
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
66
|
+
position="437.40003,376.13231"
|
|
67
|
+
orientation="0,-1"
|
|
68
|
+
id="guide55"
|
|
69
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
70
|
+
position="432.02187,369.60132"
|
|
71
|
+
orientation="0,-1"
|
|
72
|
+
id="guide63"
|
|
73
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
74
|
+
position="423.37185,349.80764"
|
|
75
|
+
orientation="0,-1"
|
|
76
|
+
id="guide64"
|
|
77
|
+
inkscape:locked="false" /></sodipodi:namedview><defs
|
|
78
|
+
id="defs635"><symbol
|
|
79
|
+
id="image"><title
|
|
80
|
+
id="image-title">Image</title><path
|
|
81
|
+
d="M 464,64 H 48 C 21.49,64 0,85.49 0,112 v 288 c 0,26.51 21.49,48 48,48 h 416 c 26.51,0 48,-21.49 48,-48 V 112 C 512,85.49 490.51,64 464,64 Z m -6,336 H 54 a 6,6 0 0 1 -6,-6 V 118 a 6,6 0 0 1 6,-6 h 404 a 6,6 0 0 1 6,6 v 276 a 6,6 0 0 1 -6,6 z M 128,152 c -22.091,0 -40,17.909 -40,40 0,22.091 17.909,40 40,40 22.091,0 40,-17.909 40,-40 0,-22.091 -17.909,-40 -40,-40 z M 96,352 h 320 v -80 l -87.515,-87.515 c -4.686,-4.686 -12.284,-4.686 -16.971,0 L 192,304 152.485,264.485 c -4.686,-4.686 -12.284,-4.686 -16.971,0 L 96,304 Z"
|
|
82
|
+
id="path76" /></symbol><symbol
|
|
83
|
+
id="arrow-right"><title
|
|
84
|
+
id="arrow-right-title">arrow-right</title><path
|
|
85
|
+
d="m 190.5,66.9 22.2,-22.2 c 9.4,-9.4 24.6,-9.4 33.9,0 L 441,239 c 9.4,9.4 9.4,24.6 0,33.9 L 246.6,467.3 c -9.4,9.4 -24.6,9.4 -33.9,0 l -22.2,-22.2 c -9.5,-9.5 -9.3,-25 0.4,-34.3 L 311.4,296 H 24 C 10.7,296 0,285.3 0,272 V 240 C 0,226.7 10.7,216 24,216 H 311.4 L 190.9,101.2 c -9.8,-9.3 -10,-24.8 -0.4,-34.3 z"
|
|
86
|
+
id="path30" /></symbol><symbol
|
|
87
|
+
id="align-left"><title
|
|
88
|
+
id="align-left-title">align-left</title><path
|
|
89
|
+
d="m 288,44 v 40 c 0,8.837 -7.163,16 -16,16 H 16 C 7.163,100 0,92.837 0,84 V 44 C 0,35.163 7.163,28 16,28 h 256 c 8.837,0 16,7.163 16,16 z M 0,172 v 40 c 0,8.837 7.163,16 16,16 h 416 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 H 16 c -8.837,0 -16,7.163 -16,16 z m 16,312 h 416 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 z M 272,284 H 16 c -8.837,0 -16,7.163 -16,16 v 40 c 0,8.837 7.163,16 16,16 h 256 c 8.837,0 16,-7.163 16,-16 v -40 c 0,-8.837 -7.163,-16 -16,-16 z"
|
|
90
|
+
id="path6" /></symbol><clipPath
|
|
91
|
+
clipPathUnits="userSpaceOnUse"
|
|
92
|
+
id="clipPath2"><path
|
|
93
|
+
id="path3-5"
|
|
94
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.765519;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
95
|
+
d="m 69.416823,172.50827 c -1.414562,0 -2.553245,-1.13868 -2.553245,-2.55324 V 87.72307 c 4.647798,2.878559 9.825953,5.322979 14.009005,5.322979 10.173,0 16.059513,-14.457992 26.232767,-14.457992 10.17308,0 16.05926,14.457992 26.23243,14.457992 10.17308,0 16.05943,-14.457992 26.23243,-14.457992 10.17316,0 16.05968,14.457992 26.23276,14.457992 10.17317,0 15.93651,-14.644123 26.23243,-14.457992 7.1293,0.128815 16.96313,7.641735 22.3377,12.250881 v 79.116092 c 0,1.41456 -1.13868,2.55324 -2.55308,2.55324 z"
|
|
96
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
97
|
+
clipPathUnits="userSpaceOnUse"
|
|
98
|
+
id="clipPath1"><path
|
|
99
|
+
id="path2-3"
|
|
100
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.69483;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
101
|
+
d="m 82.288168,56.438395 c 0,-1.283941 1.033533,-2.317477 2.317471,-2.317477 h 74.638591 c -2.61275,4.218617 -4.83145,8.918616 -4.83145,12.715401 0,9.233617 13.12292,14.576564 13.12292,23.81041 0,9.23369 -13.12292,14.576331 -13.12292,23.810101 0,9.23369 13.12292,14.57649 13.12292,23.81011 0,9.23376 -13.12292,14.57671 -13.12292,23.8104 0,9.23377 13.29187,14.46492 13.12292,23.81011 -0.11692,6.47097 -6.93609,15.39674 -11.11962,20.27501 H 84.605639 c -1.283938,0 -2.317471,-1.03353 -2.317471,-2.31732 z"
|
|
102
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><filter
|
|
103
|
+
inkscape:collect="always"
|
|
104
|
+
style="color-interpolation-filters:sRGB"
|
|
105
|
+
id="filter71"
|
|
106
|
+
x="-0.030834845"
|
|
107
|
+
y="-0.013806352"
|
|
108
|
+
width="1.0616697"
|
|
109
|
+
height="1.0276127"><feGaussianBlur
|
|
110
|
+
inkscape:collect="always"
|
|
111
|
+
stdDeviation="4.1775707"
|
|
112
|
+
id="feGaussianBlur71" /></filter><clipPath
|
|
113
|
+
clipPathUnits="userSpaceOnUse"
|
|
114
|
+
id="clipPath885"><path
|
|
115
|
+
id="path885"
|
|
116
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
117
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
118
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
119
|
+
clipPathUnits="userSpaceOnUse"
|
|
120
|
+
id="clipPath1-3"><path
|
|
121
|
+
id="path1-67"
|
|
122
|
+
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"
|
|
123
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
124
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
125
|
+
clipPathUnits="userSpaceOnUse"
|
|
126
|
+
id="clipPath2-5"><path
|
|
127
|
+
id="path2-35"
|
|
128
|
+
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"
|
|
129
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
130
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
131
|
+
clipPathUnits="userSpaceOnUse"
|
|
132
|
+
id="clipPath883"><path
|
|
133
|
+
id="path883"
|
|
134
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
135
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
136
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
137
|
+
clipPathUnits="userSpaceOnUse"
|
|
138
|
+
id="clipPath3"><path
|
|
139
|
+
id="path3-6"
|
|
140
|
+
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"
|
|
141
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
142
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
143
|
+
clipPathUnits="userSpaceOnUse"
|
|
144
|
+
id="clipPath4"><path
|
|
145
|
+
id="path4-2"
|
|
146
|
+
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"
|
|
147
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
148
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
149
|
+
clipPathUnits="userSpaceOnUse"
|
|
150
|
+
id="clipPath5"><path
|
|
151
|
+
id="path5"
|
|
152
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
153
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
154
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
155
|
+
clipPathUnits="userSpaceOnUse"
|
|
156
|
+
id="clipPath6"><path
|
|
157
|
+
id="path6-9"
|
|
158
|
+
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"
|
|
159
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
160
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
161
|
+
clipPathUnits="userSpaceOnUse"
|
|
162
|
+
id="clipPath891-7"><path
|
|
163
|
+
id="path891-5"
|
|
164
|
+
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"
|
|
165
|
+
d="m 3800.1891,1571.6162 c -5.0601,0 -11.3239,2.9571 -16.9463,6.4394 v 62.4874 c 5.6224,-3.4823 11.8862,-6.4389 16.9463,-6.4389 12.3063,0 19.427,17.4894 31.7336,17.4894 12.3063,0 19.4265,-17.4894 31.7328,-17.4894 12.3063,0 19.4268,17.4894 31.7331,17.4894 12.3063,0 19.4275,-17.4894 31.7338,-17.4894 12.3063,0 19.2781,17.7145 31.7331,17.4894 8.6241,-0.1559 20.5198,-9.2441 27.0214,-14.8198 v -62.4874 c -6.5016,5.5756 -18.3973,14.6639 -27.0214,14.8198 -12.455,0.225 -19.4268,-17.4899 -31.7331,-17.4899 -12.3063,0 -19.4275,17.4899 -31.7338,17.4899 -12.3063,0 -19.4268,-17.4899 -31.7331,-17.4899 -12.3063,0 -19.4265,17.4899 -31.7328,17.4899 -12.3066,0 -19.4273,-17.4899 -31.7336,-17.4899 z"
|
|
166
|
+
sodipodi:nodetypes="sccssssssccssssss" /></clipPath><clipPath
|
|
167
|
+
clipPathUnits="userSpaceOnUse"
|
|
168
|
+
id="clipPath883-7"><path
|
|
169
|
+
id="path883-5"
|
|
170
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
171
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
172
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
173
|
+
clipPathUnits="userSpaceOnUse"
|
|
174
|
+
id="clipPath7"><path
|
|
175
|
+
id="path7"
|
|
176
|
+
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"
|
|
177
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
178
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
179
|
+
clipPathUnits="userSpaceOnUse"
|
|
180
|
+
id="clipPath8"><path
|
|
181
|
+
id="path8-1"
|
|
182
|
+
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"
|
|
183
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
184
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
185
|
+
clipPathUnits="userSpaceOnUse"
|
|
186
|
+
id="clipPath9"><path
|
|
187
|
+
id="path9-2"
|
|
188
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
189
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
190
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
191
|
+
clipPathUnits="userSpaceOnUse"
|
|
192
|
+
id="clipPath10"><path
|
|
193
|
+
id="path10-7"
|
|
194
|
+
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"
|
|
195
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
196
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
197
|
+
clipPathUnits="userSpaceOnUse"
|
|
198
|
+
id="clipPath11"><path
|
|
199
|
+
id="path11"
|
|
200
|
+
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"
|
|
201
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
202
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
203
|
+
clipPathUnits="userSpaceOnUse"
|
|
204
|
+
id="clipPath12"><path
|
|
205
|
+
id="path12"
|
|
206
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
207
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
208
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
209
|
+
clipPathUnits="userSpaceOnUse"
|
|
210
|
+
id="clipPath13"><path
|
|
211
|
+
id="path13"
|
|
212
|
+
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"
|
|
213
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
214
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
215
|
+
clipPathUnits="userSpaceOnUse"
|
|
216
|
+
id="clipPath14"><path
|
|
217
|
+
id="path14"
|
|
218
|
+
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"
|
|
219
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
220
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
221
|
+
clipPathUnits="userSpaceOnUse"
|
|
222
|
+
id="clipPath15"><path
|
|
223
|
+
id="path15"
|
|
224
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
225
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
226
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath><clipPath
|
|
227
|
+
clipPathUnits="userSpaceOnUse"
|
|
228
|
+
id="clipPath16"><path
|
|
229
|
+
id="path16"
|
|
230
|
+
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"
|
|
231
|
+
d="m 4014.6135,1591.3922 c -1.7108,0 -3.0884,1.3775 -3.0884,3.0885 v 99.4752 c 5.6224,-3.4823 11.8864,-6.4392 16.9463,-6.4392 12.3063,0 19.4273,17.4897 31.7336,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.4271,17.4897 31.7334,17.4897 12.3063,0 19.4267,-17.4897 31.733,-17.4897 12.3063,0 19.2786,17.7148 31.7334,17.4897 8.6241,-0.1558 20.5197,-9.2441 27.0213,-14.8198 v -95.7059 c 0,-1.711 -1.3771,-3.0885 -3.0884,-3.0885 z"
|
|
232
|
+
sodipodi:nodetypes="sscsssssscsss" /></clipPath></defs><g
|
|
233
|
+
inkscape:label="Layer 1"
|
|
234
|
+
inkscape:groupmode="layer"
|
|
235
|
+
id="layer1"
|
|
236
|
+
transform="translate(-771.63556,191.23532)"><rect
|
|
237
|
+
style="opacity:1;fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:1.24728;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
238
|
+
id="page-layout-default"
|
|
239
|
+
width="747.09979"
|
|
240
|
+
height="852.34369"
|
|
241
|
+
x="771.63556"
|
|
242
|
+
y="-191.23532"
|
|
243
|
+
inkscape:export-filename="page.webp"
|
|
244
|
+
inkscape:export-xdpi="71.344818"
|
|
245
|
+
inkscape:export-ydpi="71.344818" /><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><g
|
|
246
|
+
id="g21"
|
|
247
|
+
transform="translate(547.31971,16.197727)" /><g
|
|
248
|
+
id="g56"
|
|
249
|
+
style="stroke:#e8d9e5;stroke-width:2.64583;stroke-dasharray:none;stroke-opacity:1"
|
|
250
|
+
transform="matrix(-0.3476983,0,0,0.3476983,3304.505,266.6695)"><g
|
|
251
|
+
id="path56"
|
|
252
|
+
style="opacity:1"><g
|
|
253
|
+
id="g81"><g
|
|
254
|
+
id="path83"
|
|
255
|
+
style="opacity:1" /><g
|
|
256
|
+
id="path90"
|
|
257
|
+
style="opacity:1" /></g></g></g><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><g
|
|
258
|
+
id="g396"
|
|
259
|
+
transform="matrix(0.54888119,0,0,0.54888119,2068.5253,458.56259)" /><path
|
|
260
|
+
id="path179-3"
|
|
261
|
+
style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.926042;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
262
|
+
d="m 2954.4416,313.61575 c -1.711,0 -3.0885,1.3775 -3.0885,3.08853 v 112.57208 c 5.6224,-3.4824 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.3063,0 19.4269,17.4897 31.7331,17.4897 12.3064,0 19.4272,-17.4897 31.7335,-17.4897 12.3063,0 19.2782,17.7148 31.7331,17.4897 8.6242,-0.1558 20.52,-9.2441 27.0216,-14.8198 V 316.70428 c 0,-1.71103 -1.3775,-3.08853 -3.0885,-3.08853 z" /><g
|
|
263
|
+
id="g226"
|
|
264
|
+
transform="matrix(0.54888119,0,0,0.54888119,2528.7847,649.71627)" /><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><g
|
|
265
|
+
id="g48"
|
|
266
|
+
transform="translate(-3.2639055,2.5263128)" /><g
|
|
267
|
+
id="g16"
|
|
268
|
+
transform="translate(2.8037206e-5,-6.8201958)"><rect
|
|
269
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:#a14f8c;stroke-width:1.32022;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;filter:url(#filter71);stop-color:#000000"
|
|
270
|
+
id="rect71"
|
|
271
|
+
width="346.56506"
|
|
272
|
+
height="774.01184"
|
|
273
|
+
x="1145.5563"
|
|
274
|
+
y="-146.86369"
|
|
275
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
276
|
+
inkscape:export-xdpi="96"
|
|
277
|
+
inkscape:export-ydpi="96" /><rect
|
|
278
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:1.32022;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
279
|
+
id="rect4291"
|
|
280
|
+
width="346.56506"
|
|
281
|
+
height="774.64093"
|
|
282
|
+
x="1145.5563"
|
|
283
|
+
y="-146.86369"
|
|
284
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
285
|
+
inkscape:export-xdpi="96"
|
|
286
|
+
inkscape:export-ydpi="96" /><rect
|
|
287
|
+
style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.497636;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
288
|
+
id="rect4433"
|
|
289
|
+
width="334.28003"
|
|
290
|
+
height="19.72998"
|
|
291
|
+
x="1151.6987"
|
|
292
|
+
y="-140.79761"
|
|
293
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
294
|
+
inkscape:export-xdpi="96"
|
|
295
|
+
inkscape:export-ydpi="96" /><g
|
|
296
|
+
id="g1012"
|
|
297
|
+
transform="matrix(0.24685874,0,0,0.24685874,1055.5772,-110.04773)"
|
|
298
|
+
style="fill:#f6edf4;stroke-width:3.80952"><g
|
|
299
|
+
aria-label="CentOS"
|
|
300
|
+
id="text57015"
|
|
301
|
+
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:2.85397"
|
|
302
|
+
transform="matrix(0.97560972,0,0,0.97560972,-295.86665,-427.58606)"><path
|
|
303
|
+
d="m 865.94059,362.40602 c 3.65593,0 6.68255,-1.31853 8.66035,-3.74583 l -3.11653,-2.87679 c -1.40843,1.64816 -3.17646,2.48723 -5.27412,2.48723 -3.92563,0 -6.71252,-2.75693 -6.71252,-6.71252 0,-3.95559 2.78689,-6.71252 6.71252,-6.71252 2.09766,0 3.86569,0.83906 5.27412,2.45726 l 3.11653,-2.87679 c -1.9778,-2.39733 -5.00442,-3.71586 -8.63038,-3.71586 -6.53272,0 -11.38731,4.52495 -11.38731,10.84791 0,6.32295 4.85459,10.84791 11.35734,10.84791 z"
|
|
304
|
+
id="path2097"
|
|
305
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" /><path
|
|
306
|
+
d="m 892.76066,354.04533 c 0,-5.18422 -3.65592,-8.36068 -8.39065,-8.36068 -4.91452,0 -8.60041,3.47613 -8.60041,8.30075 0,4.79466 3.62596,8.30075 9.19974,8.30075 2.90676,0 5.15426,-0.899 6.65259,-2.60709 l -2.48723,-2.697 c -1.10876,1.04883 -2.33739,1.55826 -4.04549,1.55826 -2.45726,0 -4.16536,-1.22863 -4.61486,-3.23639 h 12.19641 c 0.03,-0.38956 0.0899,-0.899 0.0899,-1.2586 z m -8.36068,-4.82462 c 2.09766,0 3.62596,1.31853 3.95559,3.35626 h -7.94115 c 0.32963,-2.06769 1.85793,-3.35626 3.98556,-3.35626 z"
|
|
307
|
+
id="path2099"
|
|
308
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" /><path
|
|
309
|
+
d="m 905.67622,345.68465 c -2.18756,0 -4.07545,0.74917 -5.33405,2.12763 v -1.88789 h -4.46502 v 16.12203 h 4.67479 v -7.97112 c 0,-2.96669 1.61819,-4.34516 3.86569,-4.34516 2.06769,0 3.26636,1.19867 3.26636,3.80576 v 8.51052 h 4.67479 v -9.22972 c 0,-4.91452 -2.8768,-7.13205 -6.68256,-7.13205 z"
|
|
310
|
+
id="path2101"
|
|
311
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" /><path
|
|
312
|
+
d="m 925.72388,357.97096 c -0.50943,0.38957 -1.19866,0.59933 -1.8879,0.59933 -1.25859,0 -2.00776,-0.74916 -2.00776,-2.12763 v -6.56268 h 4.01553 v -3.59599 h -4.01553 v -3.92563 h -4.67479 v 3.92563 h -2.48723 v 3.59599 h 2.48723 v 6.62262 c 0,3.83572 2.21753,5.78355 6.02329,5.78355 1.4384,0 2.84683,-0.32963 3.80576,-1.01886 z"
|
|
313
|
+
id="path2103"
|
|
314
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" /><path
|
|
315
|
+
d="m 940.10783,362.40602 c 6.59266,0 11.47721,-4.58489 11.47721,-10.84791 0,-6.26302 -4.88455,-10.84791 -11.47721,-10.84791 -6.62261,0 -11.4772,4.61485 -11.4772,10.84791 0,6.23305 4.85459,10.84791 11.4772,10.84791 z m 0,-4.13539 c -3.74582,0 -6.56268,-2.72697 -6.56268,-6.71252 0,-3.98556 2.81686,-6.71252 6.56268,-6.71252 3.74583,0 6.56269,2.72696 6.56269,6.71252 0,3.98555 -2.81686,6.71252 -6.56269,6.71252 z"
|
|
316
|
+
id="path2105"
|
|
317
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" /><path
|
|
318
|
+
d="m 962.13328,362.40602 c 5.99332,0 8.90008,-2.99666 8.90008,-6.50276 0,-7.70141 -12.19641,-5.03438 -12.19641,-8.90008 0,-1.31853 1.10876,-2.39732 3.98556,-2.39732 1.85793,0 3.86569,0.53939 5.81352,1.64816 l 1.49833,-3.68589 c -1.94783,-1.22863 -4.64482,-1.85793 -7.28188,-1.85793 -5.96336,0 -8.84015,2.96669 -8.84015,6.53272 0,7.79131 12.1964,5.09432 12.1964,9.01994 0,1.28857 -1.16869,2.2475 -4.04549,2.2475 -2.51719,0 -5.15425,-0.899 -6.92228,-2.18756 l -1.64816,3.65592 c 1.85792,1.4384 5.21418,2.4273 8.54048,2.4273 z"
|
|
319
|
+
id="path2107"
|
|
320
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:2.85397" /></g><g
|
|
321
|
+
id="g28251-9"
|
|
322
|
+
transform="matrix(0.74451128,0.74451128,-0.74451128,0.74451128,6.01137,-157.12384)"
|
|
323
|
+
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
|
324
|
+
inkscape:export-xdpi="10.11"
|
|
325
|
+
inkscape:export-ydpi="10.11"
|
|
326
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:3.80952"><path
|
|
327
|
+
id="ellipse15079-1-3"
|
|
328
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:5.0397;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
329
|
+
d="m 372.92961,-303.88054 a 20.103001,20.103493 0 0 0 -4.90893,13.16408 20.103001,20.103493 0 0 0 20.10242,20.10507 20.103001,20.103493 0 0 0 20.10374,-20.10375 20.103001,20.103493 0 0 0 -20.10374,-20.10374 20.103001,20.103493 0 0 0 -15.19349,6.93834 z m 4.43562,2.40753 h 6.30374 l 4.45545,-4.45545 4.45545,4.45545 h 6.3011 v 6.3011 l 4.45677,4.45677 -4.45545,4.45546 -0.001,6.30241 h -6.3011 l -4.45545,4.45546 -4.45678,-4.45678 h -6.30109 v -6.30109 l -4.45545,-4.45546 4.45545,-4.45545 z m 2.27135,4.18311 3.22723,3.22723 1.91307,0.001 10e-4,-1.91307 -3.22855,-3.22855 z m -2.16294,5.22226 0.001,2.70368 h 4.56387 l 1.3525,-1.3525 -1.3525,-1.3525 z m 9.29696,-9.29695 v 4.56386 l 1.3525,1.3525 1.3525,-1.3525 v -4.56386 z m 0.0912,7.606 0.0172,1.79936 -1.79805,-0.0159 1.28243,1.25863 -1.28243,1.26128 1.79805,-0.0159 -0.0145,1.79937 1.25996,-1.28375 1.25995,1.28375 -0.0145,-1.79937 1.79672,0.0145 -1.28243,-1.25864 1.28243,-1.26127 -1.79804,0.0159 0.0159,-1.79804 -1.26127,1.28243 z m -7.22391,9.6169 1.91174,1.91175 3.22723,-3.22723 v -1.91175 h -1.91175 z m 11.83273,-11.83273 v 1.91175 h 1.91174 l 3.22723,-3.22723 -1.91175,-1.91175 z m -4.69872,11.34356 -0.001,4.56518 h 2.705 v -4.56386 l -1.3525,-1.3525 z m 6.08427,-6.08428 1.3525,1.35251 h 4.56386 v -2.70501 h -4.56386 z m -1.38688,3.34622 10e-4,1.91307 3.22722,3.22723 1.91307,-1.91307 -3.22723,-3.22723 z" /></g></g><rect
|
|
330
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:#d9b9d1;stroke-width:0.248818;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
331
|
+
id="rect119"
|
|
332
|
+
width="16.372637"
|
|
333
|
+
height="10.339692"
|
|
334
|
+
x="1444.7056"
|
|
335
|
+
y="-136.10246"
|
|
336
|
+
rx="1.2440896"
|
|
337
|
+
ry="1.2440896" /><g
|
|
338
|
+
id="g121"
|
|
339
|
+
transform="matrix(0.94041424,0,0,0.94041424,468.13531,5.3774752)"
|
|
340
|
+
style="stroke:#d9b9d1;stroke-opacity:1"><path
|
|
341
|
+
style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
342
|
+
d="m 1040.8931,-147.50672 h 12.5172"
|
|
343
|
+
id="path119" /><path
|
|
344
|
+
style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
345
|
+
d="m 1040.8931,-144.94685 h 12.5172"
|
|
346
|
+
id="path120" /><path
|
|
347
|
+
style="fill:none;stroke:#d9b9d1;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
348
|
+
d="m 1040.8931,-142.38698 h 12.5172"
|
|
349
|
+
id="path121" /></g><path
|
|
350
|
+
style="fill:none;stroke:#f6edf4;stroke-width:0.248818px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
351
|
+
d="m 1220.0725,-137.27911 v 12.69302"
|
|
352
|
+
id="path8" /><g
|
|
353
|
+
id="g1"
|
|
354
|
+
transform="matrix(1.4277799,0,0,1.4277799,92.243878,138.64845)"
|
|
355
|
+
style="fill:#f6edf4"><use
|
|
356
|
+
xlink:href="#align-left"
|
|
357
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:#f6f5f4;stroke-opacity:1"
|
|
358
|
+
id="use1-3-3"
|
|
359
|
+
transform="matrix(0.00800799,0,0,0.00800799,793.73956,-190.8614)" /></g><g
|
|
360
|
+
id="g4"
|
|
361
|
+
transform="translate(-0.00161469,2.2950329)"><rect
|
|
362
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.225813;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
363
|
+
id="rect3425"
|
|
364
|
+
width="286.95572"
|
|
365
|
+
height="19.72998"
|
|
366
|
+
x="1175.3623"
|
|
367
|
+
y="5.0763025"
|
|
368
|
+
rx="1.3229167"
|
|
369
|
+
ry="1.3229167" /><path
|
|
370
|
+
d="m 1191.7479,10.928523 c 0,-0.231122 -0.1397,-0.440733 -0.3547,-0.530318 -0.215,-0.08959 -0.4605,-0.03939 -0.6253,0.123718 l -0.7811,0.782939 c -0.86,0.859968 -2.0264,1.343726 -3.2429,1.343726 h -0.1558 -0.5734 -1.7199 c -0.6325,0 -1.1466,0.514186 -1.1466,1.146626 v 1.719953 c 0,0.632424 0.5141,1.146626 1.1466,1.146626 v 2.293266 c 0,0.317128 0.2562,0.573314 0.5733,0.573314 h 1.1466 c 0.3172,0 0.5734,-0.256186 0.5734,-0.573314 v -2.293266 h 0.1558 c 1.2165,0 2.3829,0.483729 3.2429,1.343713 l 0.7811,0.781148 c 0.1648,0.164827 0.4103,0.213218 0.6253,0.123717 0.215,-0.08973 0.3547,-0.29742 0.3547,-0.530317 v -2.642642 c 0.3333,-0.157655 0.5733,-0.582272 0.5733,-1.082132 0,-0.49986 -0.24,-0.924477 -0.5733,-1.082132 z m -1.1466,1.374172 v 2.352377 2.352407 c -1.0535,-0.958528 -2.4277,-1.492423 -3.8574,-1.492423 h -0.1558 v -1.719953 h 0.1558 c 1.4297,0 2.8039,-0.533911 3.8574,-1.492408 z"
|
|
371
|
+
id="path3462"
|
|
372
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.366965" /><g
|
|
373
|
+
id="g39"
|
|
374
|
+
transform="matrix(0.56558759,0,0,0.56558762,859.02965,83.458463)"
|
|
375
|
+
style="fill:#77767b;fill-opacity:1;stroke:#c795ba;stroke-width:1.13921;stroke-opacity:1"><path
|
|
376
|
+
style="fill:none;fill-opacity:1;stroke:#ecdce8;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
377
|
+
d="m 1044.5533,-124.15749 6.0283,6.02831"
|
|
378
|
+
id="path38" /><path
|
|
379
|
+
style="fill:none;fill-opacity:1;stroke:#ecdce8;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
380
|
+
d="m 1050.5816,-124.15749 -6.0283,6.02831"
|
|
381
|
+
id="path39" /></g></g><g
|
|
382
|
+
id="g37"
|
|
383
|
+
transform="translate(362.21682,-269.80766)"><rect
|
|
384
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.205124;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
385
|
+
id="rect1565-1-7"
|
|
386
|
+
width="286.95572"
|
|
387
|
+
height="19.72998"
|
|
388
|
+
x="813.31335"
|
|
389
|
+
y="627.60034" /><use
|
|
390
|
+
xlink:href="#image"
|
|
391
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.92095"
|
|
392
|
+
id="use49"
|
|
393
|
+
transform="matrix(0.02204861,0,0,0.02204861,818.43564,631.82089)" /></g><g
|
|
394
|
+
id="g38"
|
|
395
|
+
transform="translate(362.04741,-278.69714)"><rect
|
|
396
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.248818;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
397
|
+
id="rect1166"
|
|
398
|
+
width="286.95578"
|
|
399
|
+
height="19.72998"
|
|
400
|
+
x="813.31335"
|
|
401
|
+
y="667.367" /><path
|
|
402
|
+
sodipodi:type="star"
|
|
403
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:3.12919;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
|
404
|
+
id="path37"
|
|
405
|
+
inkscape:flatsided="false"
|
|
406
|
+
sodipodi:sides="3"
|
|
407
|
+
sodipodi:cx="-499.8125"
|
|
408
|
+
sodipodi:cy="737.32031"
|
|
409
|
+
sodipodi:r1="36.465179"
|
|
410
|
+
sodipodi:r2="18.23259"
|
|
411
|
+
sodipodi:arg1="1.5707963"
|
|
412
|
+
sodipodi:arg2="2.6179939"
|
|
413
|
+
inkscape:rounded="0"
|
|
414
|
+
inkscape:randomized="0"
|
|
415
|
+
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"
|
|
416
|
+
transform="matrix(0.10519844,0,0,0.10519844,1144.2348,598.70803)"
|
|
417
|
+
inkscape:transform-center-y="1.0197809"
|
|
418
|
+
inkscape:transform-center-x="-6.518711e-05" /><!--!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><!--!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path
|
|
419
|
+
d="m 819.58197,674.95251 c 0.53934,0 0.97692,-0.43758 0.97692,-0.97692 0,-0.53935 -0.43758,-0.97693 -0.97692,-0.97693 -0.53935,0 -0.97692,0.43758 -0.97692,0.97693 0,0.53934 0.43757,0.97692 0.97692,0.97692 z m 2.93077,-1.6282 c -0.36024,0 -0.65128,0.29103 -0.65128,0.65128 0,0.36023 0.29104,0.65127 0.65128,0.65127 h 5.86154 c 0.36023,0 0.65128,-0.29104 0.65128,-0.65127 0,-0.36025 -0.29105,-0.65128 -0.65128,-0.65128 z m 0,3.2564 c -0.36024,0 -0.65128,0.29104 -0.65128,0.65128 0,0.36025 0.29104,0.65129 0.65128,0.65129 h 5.86154 c 0.36023,0 0.65128,-0.29104 0.65128,-0.65129 0,-0.36024 -0.29105,-0.65128 -0.65128,-0.65128 z m 0,3.25641 c -0.36024,0 -0.65128,0.29104 -0.65128,0.65128 0,0.36024 0.29104,0.65128 0.65128,0.65128 h 5.86154 c 0.36023,0 0.65128,-0.29104 0.65128,-0.65128 0,-0.36024 -0.29105,-0.65128 -0.65128,-0.65128 z m -2.93077,1.62821 c 0.53934,0 0.97692,-0.43758 0.97692,-0.97693 0,-0.53934 -0.43758,-0.97692 -0.97692,-0.97692 -0.53935,0 -0.97692,0.43758 -0.97692,0.97692 0,0.53935 0.43757,0.97693 0.97692,0.97693 z m 0.97692,-4.23334 c 0,-0.53934 -0.43758,-0.97692 -0.97692,-0.97692 -0.53935,0 -0.97692,0.43758 -0.97692,0.97692 0,0.53934 0.43757,0.97692 0.97692,0.97692 0.53934,0 0.97692,-0.43758 0.97692,-0.97692 z"
|
|
420
|
+
id="path1-7"
|
|
421
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0203525" /></g><rect
|
|
422
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.511739;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
423
|
+
id="rect36"
|
|
424
|
+
width="334.27991"
|
|
425
|
+
height="19.72998"
|
|
426
|
+
x="1151.6987"
|
|
427
|
+
y="-23.505846"
|
|
428
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
429
|
+
inkscape:export-xdpi="96"
|
|
430
|
+
inkscape:export-ydpi="96" /><g
|
|
431
|
+
id="g41"
|
|
432
|
+
transform="matrix(0.94040116,0,0,0.94040116,482.81546,151.4868)"><rect
|
|
433
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:15.8106;paint-order:fill markers stroke"
|
|
434
|
+
id="rect40"
|
|
435
|
+
width="13.576674"
|
|
436
|
+
height="9.7555847"
|
|
437
|
+
x="1026.684"
|
|
438
|
+
y="-180.47063"
|
|
439
|
+
ry="1.5810586"
|
|
440
|
+
rx="1.5810586" /><use
|
|
441
|
+
xlink:href="#arrow-right"
|
|
442
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none"
|
|
443
|
+
id="use1-5"
|
|
444
|
+
transform="matrix(0.00956941,0,0,0.00956941,1031.3285,-178.0426)" /></g><path
|
|
445
|
+
d="m 1185.199,-17.65367 c 0,-0.231122 -0.1402,-0.440727 -0.3547,-0.530307 -0.215,-0.08952 -0.4604,-0.03939 -0.6253,0.123739 l -0.7811,0.782948 c -0.8601,0.859964 -2.0264,1.343728 -3.2428,1.343728 h -0.156 -0.5734 -1.72 c -0.6325,0 -1.1466,0.514187 -1.1466,1.146629 v 1.719958 c 0,0.632427 0.5141,1.146614 1.1466,1.146614 v 2.2932738 c 0,0.3171347 0.2563,0.573314 0.5734,0.573314 h 1.1466 c 0.3171,0 0.5734,-0.2561794 0.5734,-0.573314 v -2.2932738 h 0.156 c 1.2164,0 2.3827,0.483734 3.2428,1.343728 l 0.7811,0.7811477 c 0.1649,0.1648298 0.4103,0.2132189 0.6253,0.123739 0.2149,-0.08968 0.3547,-0.297415 0.3547,-0.5303057 v -2.642649 c 0.3332,-0.157661 0.5734,-0.58228 0.5734,-1.082134 0,-0.499867 -0.2402,-0.924488 -0.5734,-1.082135 z m -1.1466,1.374183 v 2.352384 2.352399 c -1.0534,-0.958528 -2.4276,-1.492419 -3.8574,-1.492419 h -0.1561 v -1.719959 h 0.1561 c 1.4298,0 2.804,-0.533907 3.8574,-1.492405 z"
|
|
446
|
+
id="path32"
|
|
447
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.366966" /><g
|
|
448
|
+
id="g101"
|
|
449
|
+
transform="translate(351.92682,2.8845999)"><path
|
|
450
|
+
id="path31-3"
|
|
451
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0759096;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
452
|
+
d="m 1134.052,-123.95228 v 97.561836 H 799.77184 v -97.561836 z"
|
|
453
|
+
sodipodi:nodetypes="ccccc" /><path
|
|
454
|
+
id="rect38"
|
|
455
|
+
style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.461067;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
456
|
+
d="m 826.07972,-43.474524 h 281.66398 c 1.4658,0 2.6459,1.180041 2.6459,2.645833 v 14.438247 H 823.43388 v -14.438247 c 0,-1.465792 1.18004,-2.645833 2.64584,-2.645833 z"
|
|
457
|
+
sodipodi:nodetypes="sssccss" /><circle
|
|
458
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:1.08635;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:4.34539, 4.34539;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
|
459
|
+
id="circle125-7-5"
|
|
460
|
+
cx="966.91193"
|
|
461
|
+
cy="-103.76298"
|
|
462
|
+
r="12.213036" /><rect
|
|
463
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.162613;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
464
|
+
id="rect274-9"
|
|
465
|
+
width="149.16376"
|
|
466
|
+
height="4.8648939"
|
|
467
|
+
x="892.33008"
|
|
468
|
+
y="-83.623833" /><rect
|
|
469
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
470
|
+
id="rect125-0-5-1"
|
|
471
|
+
width="24.557205"
|
|
472
|
+
height="7.9111004"
|
|
473
|
+
x="927.99078"
|
|
474
|
+
y="-38.253174"
|
|
475
|
+
ry="3.4158282" /><rect
|
|
476
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
477
|
+
id="rect232-2"
|
|
478
|
+
width="24.557205"
|
|
479
|
+
height="7.9111004"
|
|
480
|
+
x="954.63312"
|
|
481
|
+
y="-38.253174"
|
|
482
|
+
ry="3.4158282" /><rect
|
|
483
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.302035;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
484
|
+
id="rect233-7"
|
|
485
|
+
width="24.557205"
|
|
486
|
+
height="7.9111004"
|
|
487
|
+
x="981.27582"
|
|
488
|
+
y="-38.253174"
|
|
489
|
+
ry="3.4158282" /><rect
|
|
490
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.162613;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
491
|
+
id="rect246-6-0"
|
|
492
|
+
width="149.16376"
|
|
493
|
+
height="4.8648129"
|
|
494
|
+
x="892.33008"
|
|
495
|
+
y="-72.250313" /><rect
|
|
496
|
+
style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.375997;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
497
|
+
id="rect125-0-6"
|
|
498
|
+
width="30.57077"
|
|
499
|
+
height="9.8483696"
|
|
500
|
+
x="951.62653"
|
|
501
|
+
y="-59.010605"
|
|
502
|
+
ry="4.252296" /></g><g
|
|
503
|
+
id="g91"
|
|
504
|
+
transform="translate(351.92682,-111.32003)"><rect
|
|
505
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.510705;stroke-opacity:1"
|
|
506
|
+
id="rect88"
|
|
507
|
+
width="286.95578"
|
|
508
|
+
height="19.72998"
|
|
509
|
+
x="823.84314"
|
|
510
|
+
y="397.68347" /><path
|
|
511
|
+
d="m 831.39259,403.31513 c -0.31222,0 -0.56446,0.25223 -0.56446,0.56444 v 0.56444 h -0.56444 c -0.62265,0 -1.12888,0.50625 -1.12888,1.1289 v 0.84667 h 7.90221 v -0.84667 c 0,-0.62265 -0.50622,-1.1289 -1.12887,-1.1289 h -0.56445 v -0.56444 c 0,-0.31221 -0.25223,-0.56444 -0.56445,-0.56444 -0.3122,0 -0.56444,0.25223 -0.56444,0.56444 v 0.56444 h -2.25778 v -0.56444 c 0,-0.31221 -0.25224,-0.56444 -0.56444,-0.56444 z m -2.25778,3.95111 v 3.38668 c 0,0.62264 0.50623,1.12888 1.12888,1.12888 h 5.64446 c 0.62265,0 1.12887,-0.50624 1.12887,-1.12888 v -3.38668 z"
|
|
512
|
+
id="path1-3"
|
|
513
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0176389" /><g
|
|
514
|
+
id="g41-7"
|
|
515
|
+
transform="matrix(0.94041424,0,0,0.94041424,123.99588,572.67846)"
|
|
516
|
+
style="fill:#d9b9d1;fill-opacity:1"><rect
|
|
517
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:15.8106;paint-order:fill markers stroke"
|
|
518
|
+
id="rect40-5"
|
|
519
|
+
width="13.576674"
|
|
520
|
+
height="9.7555847"
|
|
521
|
+
x="1026.684"
|
|
522
|
+
y="-180.47063"
|
|
523
|
+
ry="1.5810586"
|
|
524
|
+
rx="1.5810586" /><use
|
|
525
|
+
xlink:href="#arrow-right"
|
|
526
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none"
|
|
527
|
+
id="use1-5-3"
|
|
528
|
+
transform="matrix(0.00956941,0,0,0.00956941,1031.3285,-178.0426)" /></g></g><g
|
|
529
|
+
id="g3"
|
|
530
|
+
transform="matrix(0.95856018,0,0,0.95856018,381.76062,-82.289547)"
|
|
531
|
+
style="fill:#f6edf4;fill-opacity:1"><text
|
|
532
|
+
xml:space="preserve"
|
|
533
|
+
style="font-size:18.629px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:Montserrat;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.776208;stroke-linejoin:round"
|
|
534
|
+
x="827.53546"
|
|
535
|
+
y="447.32944"
|
|
536
|
+
id="text2"><tspan
|
|
537
|
+
sodipodi:role="line"
|
|
538
|
+
id="tspan2"
|
|
539
|
+
style="font-weight:bold;fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.776208"
|
|
540
|
+
x="827.53546"
|
|
541
|
+
y="447.32944">Hello world!</tspan></text></g><g
|
|
542
|
+
id="g90"
|
|
543
|
+
transform="translate(351.92682,-113.66434)"><rect
|
|
544
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.0940932;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
545
|
+
id="rect1776"
|
|
546
|
+
width="31.33754"
|
|
547
|
+
height="4.8648939"
|
|
548
|
+
x="823.60339"
|
|
549
|
+
y="430.90497" /><rect
|
|
550
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.0940932;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
551
|
+
id="rect8"
|
|
552
|
+
width="31.33754"
|
|
553
|
+
height="4.8648939"
|
|
554
|
+
x="860.74408"
|
|
555
|
+
y="430.90497" /><rect
|
|
556
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.0940932;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
557
|
+
id="rect9"
|
|
558
|
+
width="31.33754"
|
|
559
|
+
height="4.8648939"
|
|
560
|
+
x="897.88477"
|
|
561
|
+
y="430.90497" /><path
|
|
562
|
+
style="fill:none;stroke:#ecdce8;stroke-width:0.746454;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
563
|
+
d="m 856.99792,431.80286 1.59957,1.53969 -1.47978,1.53967"
|
|
564
|
+
id="path9"
|
|
565
|
+
sodipodi:nodetypes="ccc" /><path
|
|
566
|
+
style="fill:none;stroke:#ecdce8;stroke-width:0.746454;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
567
|
+
d="m 894.13863,431.80286 1.59957,1.53969 -1.47978,1.53967"
|
|
568
|
+
id="path10"
|
|
569
|
+
sodipodi:nodetypes="ccc" /></g><g
|
|
570
|
+
id="g15"
|
|
571
|
+
transform="translate(0,-242.89133)"><rect
|
|
572
|
+
style="fill:#d9b9d1;fill-opacity:1;stroke-width:0.528373;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
573
|
+
id="rect2416-5"
|
|
574
|
+
width="334.27991"
|
|
575
|
+
height="104.78559"
|
|
576
|
+
x="1151.6989"
|
|
577
|
+
y="760.17084"
|
|
578
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
579
|
+
inkscape:export-xdpi="96"
|
|
580
|
+
inkscape:export-ydpi="96" /><rect
|
|
581
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.840647;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
582
|
+
id="rect11-6"
|
|
583
|
+
width="90.412331"
|
|
584
|
+
height="36.005371"
|
|
585
|
+
x="1176.6226"
|
|
586
|
+
y="805.10901"
|
|
587
|
+
rx="5.291667" /><rect
|
|
588
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.793749;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
589
|
+
id="rect18-2"
|
|
590
|
+
width="46.345093"
|
|
591
|
+
height="32.912136"
|
|
592
|
+
x="1415.5746"
|
|
593
|
+
y="808.75494"
|
|
594
|
+
rx="5.291667" /><rect
|
|
595
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.793749;stroke-linejoin:bevel;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
596
|
+
id="rect17-9"
|
|
597
|
+
width="46.345093"
|
|
598
|
+
height="32.912136"
|
|
599
|
+
x="1415.7617"
|
|
600
|
+
y="771.18402"
|
|
601
|
+
rx="5.291667" /><rect
|
|
602
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.520624;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
603
|
+
id="rect59-2-8"
|
|
604
|
+
width="69.32869"
|
|
605
|
+
height="2.3428345"
|
|
606
|
+
x="1176.2021"
|
|
607
|
+
y="855.24719"
|
|
608
|
+
rx="1.3229167"
|
|
609
|
+
ry="1.3229167" /><rect
|
|
610
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.520624;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
611
|
+
id="rect70-9"
|
|
612
|
+
width="8.7390862"
|
|
613
|
+
height="2.3428345"
|
|
614
|
+
x="1248.9309"
|
|
615
|
+
y="855.24719"
|
|
616
|
+
rx="1.3229167"
|
|
617
|
+
ry="1.3229167" /><rect
|
|
618
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.552583;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
619
|
+
id="rect71-7"
|
|
620
|
+
width="9.8448849"
|
|
621
|
+
height="2.3428345"
|
|
622
|
+
x="1261.0701"
|
|
623
|
+
y="855.24719"
|
|
624
|
+
rx="1.3229167"
|
|
625
|
+
ry="1.3229167" /><rect
|
|
626
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.552583;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
627
|
+
id="rect72-3"
|
|
628
|
+
width="9.8448849"
|
|
629
|
+
height="2.3428345"
|
|
630
|
+
x="1274.3151"
|
|
631
|
+
y="855.24719"
|
|
632
|
+
rx="1.3229167"
|
|
633
|
+
ry="1.3229167" /><rect
|
|
634
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
635
|
+
id="rect4-1"
|
|
636
|
+
width="118.31165"
|
|
637
|
+
height="70.482971"
|
|
638
|
+
x="1282.2543"
|
|
639
|
+
y="771.18414"
|
|
640
|
+
rx="5.291667" /><g
|
|
641
|
+
aria-label="CentOS"
|
|
642
|
+
id="g8"
|
|
643
|
+
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:#ecdce8;fill-opacity:1;stroke-width:2.85397"
|
|
644
|
+
transform="matrix(0.24083779,0,0,0.24083779,982.14304,690.81493)"><path
|
|
645
|
+
d="m 865.94059,362.40602 c 3.65593,0 6.68255,-1.31853 8.66035,-3.74583 l -3.11653,-2.87679 c -1.40843,1.64816 -3.17646,2.48723 -5.27412,2.48723 -3.92563,0 -6.71252,-2.75693 -6.71252,-6.71252 0,-3.95559 2.78689,-6.71252 6.71252,-6.71252 2.09766,0 3.86569,0.83906 5.27412,2.45726 l 3.11653,-2.87679 c -1.9778,-2.39733 -5.00442,-3.71586 -8.63038,-3.71586 -6.53272,0 -11.38731,4.52495 -11.38731,10.84791 0,6.32295 4.85459,10.84791 11.35734,10.84791 z"
|
|
646
|
+
id="path1"
|
|
647
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" /><path
|
|
648
|
+
d="m 892.76066,354.04533 c 0,-5.18422 -3.65592,-8.36068 -8.39065,-8.36068 -4.91452,0 -8.60041,3.47613 -8.60041,8.30075 0,4.79466 3.62596,8.30075 9.19974,8.30075 2.90676,0 5.15426,-0.899 6.65259,-2.60709 l -2.48723,-2.697 c -1.10876,1.04883 -2.33739,1.55826 -4.04549,1.55826 -2.45726,0 -4.16536,-1.22863 -4.61486,-3.23639 h 12.19641 c 0.03,-0.38956 0.0899,-0.899 0.0899,-1.2586 z m -8.36068,-4.82462 c 2.09766,0 3.62596,1.31853 3.95559,3.35626 h -7.94115 c 0.32963,-2.06769 1.85793,-3.35626 3.98556,-3.35626 z"
|
|
649
|
+
id="path2"
|
|
650
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" /><path
|
|
651
|
+
d="m 905.67622,345.68465 c -2.18756,0 -4.07545,0.74917 -5.33405,2.12763 v -1.88789 h -4.46502 v 16.12203 h 4.67479 v -7.97112 c 0,-2.96669 1.61819,-4.34516 3.86569,-4.34516 2.06769,0 3.26636,1.19867 3.26636,3.80576 v 8.51052 h 4.67479 v -9.22972 c 0,-4.91452 -2.8768,-7.13205 -6.68256,-7.13205 z"
|
|
652
|
+
id="path3"
|
|
653
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" /><path
|
|
654
|
+
d="m 925.72388,357.97096 c -0.50943,0.38957 -1.19866,0.59933 -1.8879,0.59933 -1.25859,0 -2.00776,-0.74916 -2.00776,-2.12763 v -6.56268 h 4.01553 v -3.59599 h -4.01553 v -3.92563 h -4.67479 v 3.92563 h -2.48723 v 3.59599 h 2.48723 v 6.62262 c 0,3.83572 2.21753,5.78355 6.02329,5.78355 1.4384,0 2.84683,-0.32963 3.80576,-1.01886 z"
|
|
655
|
+
id="path4"
|
|
656
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" /><path
|
|
657
|
+
d="m 940.10783,362.40602 c 6.59266,0 11.47721,-4.58489 11.47721,-10.84791 0,-6.26302 -4.88455,-10.84791 -11.47721,-10.84791 -6.62261,0 -11.4772,4.61485 -11.4772,10.84791 0,6.23305 4.85459,10.84791 11.4772,10.84791 z m 0,-4.13539 c -3.74582,0 -6.56268,-2.72697 -6.56268,-6.71252 0,-3.98556 2.81686,-6.71252 6.56268,-6.71252 3.74583,0 6.56269,2.72696 6.56269,6.71252 0,3.98555 -2.81686,6.71252 -6.56269,6.71252 z"
|
|
658
|
+
id="path6-5"
|
|
659
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" /><path
|
|
660
|
+
d="m 962.13328,362.40602 c 5.99332,0 8.90008,-2.99666 8.90008,-6.50276 0,-7.70141 -12.19641,-5.03438 -12.19641,-8.90008 0,-1.31853 1.10876,-2.39732 3.98556,-2.39732 1.85793,0 3.86569,0.53939 5.81352,1.64816 l 1.49833,-3.68589 c -1.94783,-1.22863 -4.64482,-1.85793 -7.28188,-1.85793 -5.96336,0 -8.84015,2.96669 -8.84015,6.53272 0,7.79131 12.1964,5.09432 12.1964,9.01994 0,1.28857 -1.16869,2.2475 -4.04549,2.2475 -2.51719,0 -5.15425,-0.899 -6.92228,-2.18756 l -1.64816,3.65592 c 1.85792,1.4384 5.21418,2.4273 8.54048,2.4273 z"
|
|
661
|
+
id="path8-4"
|
|
662
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:2.85397" /></g><g
|
|
663
|
+
id="g9"
|
|
664
|
+
transform="matrix(0.18378912,0.18378912,-0.18378912,0.18378912,1056.6643,757.5809)"
|
|
665
|
+
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
|
666
|
+
inkscape:export-xdpi="10.11"
|
|
667
|
+
inkscape:export-ydpi="10.11"
|
|
668
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:3.80952"><path
|
|
669
|
+
id="path9-7"
|
|
670
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:5.0397;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
671
|
+
d="m 372.92961,-303.88054 a 20.103001,20.103493 0 0 0 -4.90893,13.16408 20.103001,20.103493 0 0 0 20.10242,20.10507 20.103001,20.103493 0 0 0 20.10374,-20.10375 20.103001,20.103493 0 0 0 -20.10374,-20.10374 20.103001,20.103493 0 0 0 -15.19349,6.93834 z m 4.43562,2.40753 h 6.30374 l 4.45545,-4.45545 4.45545,4.45545 h 6.3011 v 6.3011 l 4.45677,4.45677 -4.45545,4.45546 -0.001,6.30241 h -6.3011 l -4.45545,4.45546 -4.45678,-4.45678 h -6.30109 v -6.30109 l -4.45545,-4.45546 4.45545,-4.45545 z m 2.27135,4.18311 3.22723,3.22723 1.91307,0.001 10e-4,-1.91307 -3.22855,-3.22855 z m -2.16294,5.22226 0.001,2.70368 h 4.56387 l 1.3525,-1.3525 -1.3525,-1.3525 z m 9.29696,-9.29695 v 4.56386 l 1.3525,1.3525 1.3525,-1.3525 v -4.56386 z m 0.0912,7.606 0.0172,1.79936 -1.79805,-0.0159 1.28243,1.25863 -1.28243,1.26128 1.79805,-0.0159 -0.0145,1.79937 1.25996,-1.28375 1.25995,1.28375 -0.0145,-1.79937 1.79672,0.0145 -1.28243,-1.25864 1.28243,-1.26127 -1.79804,0.0159 0.0159,-1.79804 -1.26127,1.28243 z m -7.22391,9.6169 1.91174,1.91175 3.22723,-3.22723 v -1.91175 h -1.91175 z m 11.83273,-11.83273 v 1.91175 h 1.91174 l 3.22723,-3.22723 -1.91175,-1.91175 z m -4.69872,11.34356 -0.001,4.56518 h 2.705 v -4.56386 l -1.3525,-1.3525 z m 6.08427,-6.08428 1.3525,1.35251 h 4.56386 v -2.70501 h -4.56386 z m -1.38688,3.34622 10e-4,1.91307 3.22722,3.22723 1.91307,-1.91307 -3.22723,-3.22723 z" /></g><circle
|
|
672
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.421373;stroke-linejoin:round"
|
|
673
|
+
id="path1-2"
|
|
674
|
+
cx="222.07687"
|
|
675
|
+
cy="159.52768"
|
|
676
|
+
r="5.4905419"
|
|
677
|
+
clip-path="url(#clipPath2)"
|
|
678
|
+
transform="matrix(1.223727,0,0,1.223727,1199.4825,654.84346)" /><path
|
|
679
|
+
style="fill:none;stroke:#d9b9d1;stroke-width:0.435674;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
680
|
+
d="m 93.5249,194.106 0.933603,0.89865 -0.863686,0.89865"
|
|
681
|
+
id="path410-0"
|
|
682
|
+
sodipodi:nodetypes="ccc"
|
|
683
|
+
clip-path="url(#clipPath1)"
|
|
684
|
+
transform="matrix(0,-1.3482231,1.3482231,0,1208.3381,976.88929)" /><rect
|
|
685
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.483678;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
686
|
+
id="rect6"
|
|
687
|
+
width="91.391617"
|
|
688
|
+
height="2.1766357"
|
|
689
|
+
x="1176.2023"
|
|
690
|
+
y="783.35461"
|
|
691
|
+
rx="0.96735704"
|
|
692
|
+
ry="0.96735704" /></g><g
|
|
693
|
+
id="g26"
|
|
694
|
+
transform="translate(-370.4676,-62.158393)"><rect
|
|
695
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
696
|
+
id="rect304"
|
|
697
|
+
width="334.28003"
|
|
698
|
+
height="19.729914"
|
|
699
|
+
x="1159.5797"
|
|
700
|
+
y="690.99261"
|
|
701
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
702
|
+
inkscape:export-xdpi="96"
|
|
703
|
+
inkscape:export-ydpi="96"
|
|
704
|
+
rx="7.9375005"
|
|
705
|
+
ry="7.9375005" /><text
|
|
706
|
+
xml:space="preserve"
|
|
707
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
708
|
+
x="1326.7157"
|
|
709
|
+
y="702.75189"
|
|
710
|
+
id="text304"><tspan
|
|
711
|
+
sodipodi:role="line"
|
|
712
|
+
id="tspan304"
|
|
713
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
714
|
+
x="1326.7157"
|
|
715
|
+
y="702.75189">{% include base/script.html.liquid %}</tspan></text></g><g
|
|
716
|
+
id="g85"
|
|
717
|
+
transform="translate(-7.3960119,-57.120737)"><rect
|
|
718
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
719
|
+
id="rect18"
|
|
720
|
+
width="334.27991"
|
|
721
|
+
height="104.78559"
|
|
722
|
+
x="-1130.7856"
|
|
723
|
+
y="574.79712"
|
|
724
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
725
|
+
inkscape:export-xdpi="96"
|
|
726
|
+
inkscape:export-ydpi="96"
|
|
727
|
+
rx="7.9375005"
|
|
728
|
+
ry="7.9375005"
|
|
729
|
+
transform="scale(-1,1)" /><text
|
|
730
|
+
xml:space="preserve"
|
|
731
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
732
|
+
x="963.64581"
|
|
733
|
+
y="628.91174"
|
|
734
|
+
id="text304-4"><tspan
|
|
735
|
+
sodipodi:role="line"
|
|
736
|
+
id="tspan304-8"
|
|
737
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
738
|
+
x="963.64581"
|
|
739
|
+
y="628.91174">{% include base/footer.html.liquid %}</tspan></text></g><g
|
|
740
|
+
id="g71"
|
|
741
|
+
transform="translate(-7.3960119,0.35722117)"><rect
|
|
742
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
743
|
+
id="rect20"
|
|
744
|
+
width="335.42899"
|
|
745
|
+
height="19.729914"
|
|
746
|
+
x="795.35809"
|
|
747
|
+
y="-168.00887"
|
|
748
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
749
|
+
inkscape:export-xdpi="96"
|
|
750
|
+
inkscape:export-ydpi="96"
|
|
751
|
+
rx="7.9375005"
|
|
752
|
+
ry="7.9375005" /><text
|
|
753
|
+
xml:space="preserve"
|
|
754
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
755
|
+
x="963.64398"
|
|
756
|
+
y="-156.24957"
|
|
757
|
+
id="text305"><tspan
|
|
758
|
+
sodipodi:role="line"
|
|
759
|
+
id="tspan305"
|
|
760
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
761
|
+
x="963.64398"
|
|
762
|
+
y="-156.24957">{% include base/head.html.liquid %}</tspan></text></g><g
|
|
763
|
+
id="g72"
|
|
764
|
+
transform="translate(-7.3960119,0.75716677)"><rect
|
|
765
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
766
|
+
id="rect21"
|
|
767
|
+
width="335.53674"
|
|
768
|
+
height="18.968323"
|
|
769
|
+
x="795.35809"
|
|
770
|
+
y="-141.15588"
|
|
771
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
772
|
+
inkscape:export-xdpi="96"
|
|
773
|
+
inkscape:export-ydpi="96"
|
|
774
|
+
rx="7.9375005"
|
|
775
|
+
ry="7.9375005" /><text
|
|
776
|
+
xml:space="preserve"
|
|
777
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
778
|
+
x="963.64398"
|
|
779
|
+
y="-129.39656"
|
|
780
|
+
id="text21"><tspan
|
|
781
|
+
sodipodi:role="line"
|
|
782
|
+
id="tspan21"
|
|
783
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
784
|
+
x="963.64398"
|
|
785
|
+
y="-129.39656">{% include base/navbar.html.liquid %}</tspan></text></g><g
|
|
786
|
+
id="g73"
|
|
787
|
+
transform="translate(-7.3960119,4.8456763)"><rect
|
|
788
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
789
|
+
id="rect48"
|
|
790
|
+
width="335.42896"
|
|
791
|
+
height="97.140732"
|
|
792
|
+
x="-1130.7852"
|
|
793
|
+
y="-121.4191"
|
|
794
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
795
|
+
inkscape:export-xdpi="96"
|
|
796
|
+
inkscape:export-ydpi="96"
|
|
797
|
+
rx="7.9375005"
|
|
798
|
+
ry="7.9375005"
|
|
799
|
+
transform="scale(-1,1)" /><text
|
|
800
|
+
xml:space="preserve"
|
|
801
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
802
|
+
x="963.06927"
|
|
803
|
+
y="-70.971794"
|
|
804
|
+
id="text48"><tspan
|
|
805
|
+
sodipodi:role="line"
|
|
806
|
+
id="tspan48"
|
|
807
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
808
|
+
x="963.06927"
|
|
809
|
+
y="-70.971794">{% include base/project.html.liquid %}</tspan></text></g><g
|
|
810
|
+
id="g74"
|
|
811
|
+
transform="translate(-7.3960119,8.8877717)"><rect
|
|
812
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
813
|
+
id="rect53"
|
|
814
|
+
width="335.42899"
|
|
815
|
+
height="19.72998"
|
|
816
|
+
x="795.35809"
|
|
817
|
+
y="-23.465347"
|
|
818
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
819
|
+
inkscape:export-xdpi="96"
|
|
820
|
+
inkscape:export-ydpi="96"
|
|
821
|
+
rx="7.9375005"
|
|
822
|
+
ry="7.9375005" /><text
|
|
823
|
+
xml:space="preserve"
|
|
824
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
825
|
+
x="963.06927"
|
|
826
|
+
y="-11.746787"
|
|
827
|
+
id="text53"><tspan
|
|
828
|
+
sodipodi:role="line"
|
|
829
|
+
id="tspan53"
|
|
830
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
831
|
+
x="963.06927"
|
|
832
|
+
y="-11.746787">{% include base/breakingnews.html.liquid %}</tspan></text></g><g
|
|
833
|
+
id="g75"
|
|
834
|
+
transform="translate(-7.3960119,8.2610313)"><rect
|
|
835
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
836
|
+
id="rect54"
|
|
837
|
+
width="335.42899"
|
|
838
|
+
height="19.72998"
|
|
839
|
+
x="795.35809"
|
|
840
|
+
y="1.7475401"
|
|
841
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
842
|
+
inkscape:export-xdpi="96"
|
|
843
|
+
inkscape:export-ydpi="96"
|
|
844
|
+
rx="7.9375005"
|
|
845
|
+
ry="7.9375005" /><text
|
|
846
|
+
xml:space="preserve"
|
|
847
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
848
|
+
x="963.06927"
|
|
849
|
+
y="13.416333"
|
|
850
|
+
id="text53-7"><tspan
|
|
851
|
+
sodipodi:role="line"
|
|
852
|
+
id="tspan53-2"
|
|
853
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
854
|
+
x="963.06927"
|
|
855
|
+
y="13.416333">{% include base/announcement.html.liquid %}</tspan></text></g><g
|
|
856
|
+
id="g76"
|
|
857
|
+
transform="translate(-7.3960119,12.293243)"><rect
|
|
858
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
859
|
+
id="rect55"
|
|
860
|
+
width="335.42902"
|
|
861
|
+
height="236.96773"
|
|
862
|
+
x="795.35809"
|
|
863
|
+
y="22.301476"
|
|
864
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
865
|
+
inkscape:export-xdpi="96"
|
|
866
|
+
inkscape:export-ydpi="96"
|
|
867
|
+
rx="7.9375005"
|
|
868
|
+
ry="7.9375005" /><text
|
|
869
|
+
xml:space="preserve"
|
|
870
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
871
|
+
x="963.07257"
|
|
872
|
+
y="148.95045"
|
|
873
|
+
id="text53-7-2"><tspan
|
|
874
|
+
sodipodi:role="line"
|
|
875
|
+
id="tspan53-2-2"
|
|
876
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
877
|
+
x="963.07257"
|
|
878
|
+
y="148.95045">{% include base/bits.html.liquid %}</tspan></text></g><g
|
|
879
|
+
id="g77"
|
|
880
|
+
transform="translate(-7.3960119,-137.19872)"><rect
|
|
881
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
882
|
+
id="rect63"
|
|
883
|
+
width="335.42899"
|
|
884
|
+
height="19.72998"
|
|
885
|
+
x="795.35809"
|
|
886
|
+
y="416.03784"
|
|
887
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
888
|
+
inkscape:export-xdpi="96"
|
|
889
|
+
inkscape:export-ydpi="96"
|
|
890
|
+
rx="7.9375005"
|
|
891
|
+
ry="7.9375005" /><text
|
|
892
|
+
xml:space="preserve"
|
|
893
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
894
|
+
x="963.06927"
|
|
895
|
+
y="427.7962"
|
|
896
|
+
id="text63"><tspan
|
|
897
|
+
sodipodi:role="line"
|
|
898
|
+
id="tspan63"
|
|
899
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
900
|
+
x="963.06927"
|
|
901
|
+
y="427.7962">{% include base/event.html.liquid %}</tspan></text></g><g
|
|
902
|
+
id="g78"
|
|
903
|
+
transform="translate(-7.3960119,-137.58326)"><rect
|
|
904
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
905
|
+
id="rect64"
|
|
906
|
+
width="335.42899"
|
|
907
|
+
height="19.72998"
|
|
908
|
+
x="795.35809"
|
|
909
|
+
y="443.43008"
|
|
910
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
911
|
+
inkscape:export-xdpi="96"
|
|
912
|
+
inkscape:export-ydpi="96"
|
|
913
|
+
rx="7.9375005"
|
|
914
|
+
ry="7.9375005" /><text
|
|
915
|
+
xml:space="preserve"
|
|
916
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
917
|
+
x="963.06927"
|
|
918
|
+
y="455.18845"
|
|
919
|
+
id="text64"><tspan
|
|
920
|
+
sodipodi:role="line"
|
|
921
|
+
id="tspan64"
|
|
922
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
923
|
+
x="963.06927"
|
|
924
|
+
y="455.18845">{% include base/breadcrumbs.html.liquid %}</tspan></text></g><g
|
|
925
|
+
id="g79"
|
|
926
|
+
transform="translate(-7.3960119,-137.96777)"><rect
|
|
927
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
928
|
+
id="rect65"
|
|
929
|
+
width="335.42899"
|
|
930
|
+
height="19.72998"
|
|
931
|
+
x="795.35809"
|
|
932
|
+
y="470.8223"
|
|
933
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
934
|
+
inkscape:export-xdpi="96"
|
|
935
|
+
inkscape:export-ydpi="96"
|
|
936
|
+
rx="7.9375005"
|
|
937
|
+
ry="7.9375005" /><text
|
|
938
|
+
xml:space="preserve"
|
|
939
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
940
|
+
x="963.06927"
|
|
941
|
+
y="482.58066"
|
|
942
|
+
id="text68"><tspan
|
|
943
|
+
sodipodi:role="line"
|
|
944
|
+
id="tspan68"
|
|
945
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
946
|
+
x="963.06927"
|
|
947
|
+
y="482.58066">{% include base/title.html.liquid %}</tspan></text></g><g
|
|
948
|
+
id="g80"
|
|
949
|
+
transform="translate(-7.3960119,-138.35231)"><rect
|
|
950
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
951
|
+
id="rect66"
|
|
952
|
+
width="335.42899"
|
|
953
|
+
height="19.72998"
|
|
954
|
+
x="795.35809"
|
|
955
|
+
y="498.21454"
|
|
956
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
957
|
+
inkscape:export-xdpi="96"
|
|
958
|
+
inkscape:export-ydpi="96"
|
|
959
|
+
rx="7.9375005"
|
|
960
|
+
ry="7.9375005" /><text
|
|
961
|
+
xml:space="preserve"
|
|
962
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
963
|
+
x="963.06927"
|
|
964
|
+
y="509.9729"
|
|
965
|
+
id="text69"><tspan
|
|
966
|
+
sodipodi:role="line"
|
|
967
|
+
id="tspan69"
|
|
968
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
969
|
+
x="963.06927"
|
|
970
|
+
y="509.9729">{% include base/artwork.html.liquid %}</tspan></text></g><g
|
|
971
|
+
id="g82"
|
|
972
|
+
transform="translate(-7.3960119,-138.73682)"><rect
|
|
973
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
974
|
+
id="rect67"
|
|
975
|
+
width="335.42899"
|
|
976
|
+
height="19.72998"
|
|
977
|
+
x="795.35809"
|
|
978
|
+
y="525.60675"
|
|
979
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
980
|
+
inkscape:export-xdpi="96"
|
|
981
|
+
inkscape:export-ydpi="96"
|
|
982
|
+
rx="7.9375005"
|
|
983
|
+
ry="7.9375005" /><text
|
|
984
|
+
xml:space="preserve"
|
|
985
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
986
|
+
x="963.06927"
|
|
987
|
+
y="537.36511"
|
|
988
|
+
id="text70"><tspan
|
|
989
|
+
sodipodi:role="line"
|
|
990
|
+
id="tspan70"
|
|
991
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
992
|
+
x="963.06927"
|
|
993
|
+
y="537.36511">{% include base/toc.html.liquid %}</tspan></text></g><g
|
|
994
|
+
id="g83"
|
|
995
|
+
transform="translate(-7.3960119,-139.12138)"><rect
|
|
996
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
997
|
+
id="rect68"
|
|
998
|
+
width="335.42902"
|
|
999
|
+
height="96.52253"
|
|
1000
|
+
x="795.35809"
|
|
1001
|
+
y="552.99902"
|
|
1002
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
1003
|
+
inkscape:export-xdpi="96"
|
|
1004
|
+
inkscape:export-ydpi="96"
|
|
1005
|
+
rx="7.9375005"
|
|
1006
|
+
ry="7.9375005" /><text
|
|
1007
|
+
xml:space="preserve"
|
|
1008
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;line-height:1.95;font-family:'SauceCodePro Nerd Font';-inkscape-font-specification:'SauceCodePro Nerd Font';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
1009
|
+
x="963.07263"
|
|
1010
|
+
y="603.10461"
|
|
1011
|
+
id="text71"><tspan
|
|
1012
|
+
sodipodi:role="line"
|
|
1013
|
+
id="tspan71"
|
|
1014
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
|
|
1015
|
+
x="963.07263"
|
|
1016
|
+
y="603.10461">{{ content }}</tspan></text></g><g
|
|
1017
|
+
id="g13"
|
|
1018
|
+
transform="matrix(2.0731208,0,0,2.0731208,411.66725,391.37025)"><rect
|
|
1019
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:#ecdce8;stroke-width:0.298078;stroke-opacity:1"
|
|
1020
|
+
id="rect887"
|
|
1021
|
+
width="167.48444"
|
|
1022
|
+
height="14.393218"
|
|
1023
|
+
x="4029.1987"
|
|
1024
|
+
y="1609.4308"
|
|
1025
|
+
rx="1.6035736"
|
|
1026
|
+
ry="1.6035736"
|
|
1027
|
+
clip-path="url(#clipPath885)"
|
|
1028
|
+
transform="matrix(0.82498034,0,0,0.82498034,-2955.5081,-1299.2115)" /><path
|
|
1029
|
+
id="rect889"
|
|
1030
|
+
clip-path="url(#clipPath885)"
|
|
1031
|
+
style="fill:#f6edf4;stroke-width:0.298078"
|
|
1032
|
+
transform="matrix(0.82498034,0,0,0.82168484,-2953.3253,-1293.9662)"
|
|
1033
|
+
d="m 4029.1987,1609.6312 h 163.2514 c 0.8884,0 1.6036,0.7181 1.6036,1.61 v 10.9728 c 0,0.8919 -0.7152,1.61 -1.6036,1.61 h -163.2514 z"
|
|
1034
|
+
sodipodi:nodetypes="csssscc" /><rect
|
|
1035
|
+
style="fill:none;fill-opacity:1;stroke:#ecdce8;stroke-width:0.298078;stroke-opacity:1"
|
|
1036
|
+
id="rect890"
|
|
1037
|
+
width="167.48444"
|
|
1038
|
+
height="14.393218"
|
|
1039
|
+
x="4029.1987"
|
|
1040
|
+
y="1609.4308"
|
|
1041
|
+
rx="1.3229167"
|
|
1042
|
+
ry="1.3229167"
|
|
1043
|
+
clip-path="url(#clipPath885)"
|
|
1044
|
+
transform="matrix(0.82498034,0,0,0.82498034,-2955.5081,-1299.2115)" /><rect
|
|
1045
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1046
|
+
id="rect891"
|
|
1047
|
+
width="37.78056"
|
|
1048
|
+
height="1.9886599"
|
|
1049
|
+
x="4045.158"
|
|
1050
|
+
y="1615.6331"
|
|
1051
|
+
ry="0.37640932"
|
|
1052
|
+
rx="0.37640932"
|
|
1053
|
+
clip-path="url(#clipPath883)"
|
|
1054
|
+
transform="matrix(0.82498034,0,0,0.82498034,-2955.5081,-1299.2114)" /><path
|
|
1055
|
+
d="m 3804.8999,1627.8351 c 0.089,0 0.171,0.049 0.2134,0.1274 l 1.3097,2.4253 c 0.041,0.075 0.039,0.1662 0,0.2395 -0.044,0.073 -0.1231,0.1183 -0.2086,0.1183 h -2.6193 c -0.086,0 -0.165,-0.045 -0.2087,-0.1183 -0.044,-0.073 -0.045,-0.1643 0,-0.2395 l 1.3097,-2.4253 c 0.043,-0.078 0.1243,-0.1274 0.2134,-0.1274 z m 0,2.1343 c -0.1073,0 -0.194,0.087 -0.194,0.1941 0,0.1073 0.087,0.194 0.194,0.194 0.1073,0 0.194,-0.087 0.194,-0.194 0,-0.1074 -0.087,-0.1941 -0.194,-0.1941 z m 0,-1.1641 c -0.1103,0 -0.1983,0.094 -0.1904,0.2043 l 0.045,0.6306 c 0.01,0.076 0.069,0.1352 0.1449,0.1352 0.076,0 0.1394,-0.059 0.1449,-0.1352 l 0.045,-0.6306 c 0.01,-0.1103 -0.079,-0.2043 -0.1904,-0.2043 z"
|
|
1056
|
+
id="path1-6"
|
|
1057
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.00606336"
|
|
1058
|
+
clip-path="url(#clipPath891-7)"
|
|
1059
|
+
transform="matrix(1.4032023,0,0,1.4032023,-4963.39,-2251.8903)" /></g><g
|
|
1060
|
+
id="g5"
|
|
1061
|
+
transform="matrix(1.7102839,0,0,1.7102839,-5563.1588,-2092.9067)"
|
|
1062
|
+
style="fill:#f6edf4"><rect
|
|
1063
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1064
|
+
id="rect891-6"
|
|
1065
|
+
width="111.06383"
|
|
1066
|
+
height="1.9886475"
|
|
1067
|
+
x="4045.158"
|
|
1068
|
+
y="1615.6331"
|
|
1069
|
+
clip-path="url(#clipPath883-7)"
|
|
1070
|
+
transform="translate(-105.1574,-146.60573)" /><rect
|
|
1071
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1072
|
+
id="rect1"
|
|
1073
|
+
width="159.65199"
|
|
1074
|
+
height="1.9886475"
|
|
1075
|
+
x="4045.158"
|
|
1076
|
+
y="1615.6331"
|
|
1077
|
+
clip-path="url(#clipPath883-7)"
|
|
1078
|
+
transform="translate(-105.1574,-141.87519)" /><rect
|
|
1079
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1080
|
+
id="rect2"
|
|
1081
|
+
width="71.455452"
|
|
1082
|
+
height="1.9886475"
|
|
1083
|
+
x="4045.158"
|
|
1084
|
+
y="1615.6331"
|
|
1085
|
+
clip-path="url(#clipPath883-7)"
|
|
1086
|
+
transform="translate(-105.1574,-137.14465)" /></g><g
|
|
1087
|
+
id="g6"
|
|
1088
|
+
transform="matrix(1.7102839,0,0,1.7102839,-5563.1588,-2085.6917)"
|
|
1089
|
+
style="fill:#f6edf4"><rect
|
|
1090
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1091
|
+
id="rect3"
|
|
1092
|
+
width="138.48483"
|
|
1093
|
+
height="1.9886475"
|
|
1094
|
+
x="4045.158"
|
|
1095
|
+
y="1615.6331"
|
|
1096
|
+
clip-path="url(#clipPath883-7)"
|
|
1097
|
+
transform="translate(-105.1574,-111.64783)" /><rect
|
|
1098
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1099
|
+
id="rect4"
|
|
1100
|
+
width="111.06383"
|
|
1101
|
+
height="1.9886475"
|
|
1102
|
+
x="4045.158"
|
|
1103
|
+
y="1615.6331"
|
|
1104
|
+
clip-path="url(#clipPath883-7)"
|
|
1105
|
+
transform="translate(-105.1574,-106.91729)" /><rect
|
|
1106
|
+
style="fill:#f6edf4;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1107
|
+
id="rect5"
|
|
1108
|
+
width="71.455452"
|
|
1109
|
+
height="1.9886475"
|
|
1110
|
+
x="4045.158"
|
|
1111
|
+
y="1615.6331"
|
|
1112
|
+
clip-path="url(#clipPath883-7)"
|
|
1113
|
+
transform="translate(-105.1574,-102.18675)" /></g><g
|
|
1114
|
+
id="g11"
|
|
1115
|
+
transform="translate(0,3.6547401)"><rect
|
|
1116
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.56664;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:0.0453314, 0.0453314;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
|
1117
|
+
id="rect5-6"
|
|
1118
|
+
width="286.95572"
|
|
1119
|
+
height="236.96773"
|
|
1120
|
+
x="1175.3607"
|
|
1121
|
+
y="34.593777"
|
|
1122
|
+
inkscape:export-filename="page-with-bits-collapsed.webp"
|
|
1123
|
+
inkscape:export-xdpi="96"
|
|
1124
|
+
inkscape:export-ydpi="96" /><g
|
|
1125
|
+
id="g10"
|
|
1126
|
+
transform="translate(-1.5258789e-5,2.6458355)"><rect
|
|
1127
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.311415;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1128
|
+
id="rect28-2-3"
|
|
1129
|
+
width="25.319847"
|
|
1130
|
+
height="10.918895"
|
|
1131
|
+
x="1278.431"
|
|
1132
|
+
y="147.07172"
|
|
1133
|
+
ry="3.8333695" /><rect
|
|
1134
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.311415;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1135
|
+
id="rect29-9-5"
|
|
1136
|
+
width="25.319847"
|
|
1137
|
+
height="10.918895"
|
|
1138
|
+
x="1306.4562"
|
|
1139
|
+
y="147.07172"
|
|
1140
|
+
ry="3.8333695" /><rect
|
|
1141
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.311415;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1142
|
+
id="rect30-1-6"
|
|
1143
|
+
width="25.319847"
|
|
1144
|
+
height="10.918895"
|
|
1145
|
+
x="1333.9261"
|
|
1146
|
+
y="147.07172"
|
|
1147
|
+
ry="3.8333695" /><rect
|
|
1148
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.288531;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1149
|
+
id="rect31-2-2"
|
|
1150
|
+
width="16.110516"
|
|
1151
|
+
height="4.8648939"
|
|
1152
|
+
x="1419.2554"
|
|
1153
|
+
y="169.15764" /><rect
|
|
1154
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.56493;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
|
|
1155
|
+
id="rect32-7-9"
|
|
1156
|
+
width="75.403503"
|
|
1157
|
+
height="59.913593"
|
|
1158
|
+
x="1202.3109"
|
|
1159
|
+
y="185.18956"
|
|
1160
|
+
ry="2.8745127"
|
|
1161
|
+
rx="2.8745127" /><rect
|
|
1162
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.22495;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
|
|
1163
|
+
id="rect33-0-1"
|
|
1164
|
+
width="75.403503"
|
|
1165
|
+
height="59.913605"
|
|
1166
|
+
x="1281.1368"
|
|
1167
|
+
y="185.18956"
|
|
1168
|
+
ry="2.8745127"
|
|
1169
|
+
rx="2.8745127" /><rect
|
|
1170
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.22495;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
|
|
1171
|
+
id="rect34-9-2"
|
|
1172
|
+
width="75.403503"
|
|
1173
|
+
height="59.913605"
|
|
1174
|
+
x="1359.9628"
|
|
1175
|
+
y="185.18956"
|
|
1176
|
+
ry="2.8745127"
|
|
1177
|
+
rx="2.8745127" /><rect
|
|
1178
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.297425;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1179
|
+
id="rect51-6-3"
|
|
1180
|
+
width="211.56012"
|
|
1181
|
+
height="4.8648939"
|
|
1182
|
+
x="1202.3109"
|
|
1183
|
+
y="169.15764" /><g
|
|
1184
|
+
id="g7"
|
|
1185
|
+
transform="translate(0,2.8783233)"><rect
|
|
1186
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.297425;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1187
|
+
id="rect49-6-0"
|
|
1188
|
+
width="233.05534"
|
|
1189
|
+
height="4.8648939"
|
|
1190
|
+
x="1202.3109"
|
|
1191
|
+
y="87.712486" /><rect
|
|
1192
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.364981;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
1193
|
+
id="rect50-2-9"
|
|
1194
|
+
width="233.05534"
|
|
1195
|
+
height="4.8648939"
|
|
1196
|
+
x="1202.3109"
|
|
1197
|
+
y="99.428535" /><circle
|
|
1198
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.24437;stroke-linecap:round;stroke-linejoin:bevel;stroke-dasharray:4.97749, 4.97749;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
|
1199
|
+
id="circle51-1-6"
|
|
1200
|
+
cx="1318.8386"
|
|
1201
|
+
cy="66.871727"
|
|
1202
|
+
r="13.989605" /><g
|
|
1203
|
+
id="g2"
|
|
1204
|
+
transform="translate(5.4899486,-13.473654)"><g
|
|
1205
|
+
id="g37-2"
|
|
1206
|
+
transform="translate(383.50761,-502.98211)"
|
|
1207
|
+
style="fill:#ecdce8;fill-opacity:1"><rect
|
|
1208
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.205124;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
1209
|
+
id="rect1565-1-7-7"
|
|
1210
|
+
width="233.05534"
|
|
1211
|
+
height="19.72998"
|
|
1212
|
+
x="813.31335"
|
|
1213
|
+
y="627.60034" /><use
|
|
1214
|
+
xlink:href="#image"
|
|
1215
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:1.92095"
|
|
1216
|
+
id="use49-0"
|
|
1217
|
+
transform="matrix(0.02204861,0,0,0.02204861,818.43564,631.82089)" /></g></g></g></g></g></g></g></svg>
|