jekyll-theme-centos 2.52.0.beta.4 → 2.52.0.beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_data/base/announcement_schema.yml +50 -0
- data/_data/base/artwork_schema.yml +46 -0
- data/_data/base/backtotop_schema.yml +53 -0
- data/_data/base/bits.yml +96 -0
- data/_data/base/bits_schema.yml +183 -0
- data/_data/base/breadcrumb_schema.yml +14 -0
- data/_data/base/breakingnews_schema.yml +59 -0
- data/_data/base/color.yml +1042 -0
- data/_data/base/color_schema.yml +1036 -0
- data/_data/base/content.yml +2 -0
- data/_data/base/content_schema.yml +26 -0
- data/_data/base/converter_link_schema.yml +48 -0
- data/_data/base/copyright.yml +12 -0
- data/_data/base/copyright_schema.yml +34 -0
- data/_data/base/copyvalue_schema.yml +49 -0
- data/_data/base/datatable_schema.yml +57 -0
- data/_data/base/event_schema.yml +122 -0
- data/_data/base/fontawesome_schema.yml +49 -0
- data/_data/base/highlight_schema.yml +68 -0
- data/_data/base/languages.yml +186 -0
- data/_data/base/link_schema.yml +153 -0
- data/_data/base/locales_schema.yml +25 -0
- data/_data/base/navbar.yml +20 -0
- data/_data/base/navbar_schema.yml +121 -0
- data/_data/base/navindex_schema.yml +67 -0
- data/_data/base/ogp_schema.yml +186 -0
- data/_data/base/project.yml +37 -0
- data/_data/base/project_schema.yml +120 -0
- data/_data/base/shortcut_schema.yml +74 -0
- data/_data/base/social.yml +25 -0
- data/_data/base/social_schema.yml +53 -0
- data/_data/base/title_schema.yml +49 -0
- data/_data/base/toc_schema.yml +100 -0
- data/_data/download/cards.yml +309 -0
- data/_data/download/navbar.yml +11 -0
- data/_data/sponsors/carousel.yml +37 -0
- data/_data/sponsors/navbar.yml +6 -0
- data/_includes/base/announcement.html.liquid +51 -0
- data/_includes/base/artwork.html.liquid +49 -0
- data/_includes/base/backtotop.html.liquid +51 -0
- data/_includes/base/bits.html.liquid +135 -0
- data/_includes/base/breadcrumb.html.liquid +37 -0
- data/_includes/base/breakingnews.html.liquid +74 -0
- data/_includes/base/card.html.liquid +96 -0
- data/_includes/base/copyright.html.liquid +56 -0
- data/_includes/base/copyvalue.html.liquid +59 -0
- data/_includes/base/datatable.html.liquid +64 -0
- data/_includes/base/event.html.liquid +89 -0
- data/_includes/base/fontawesome.html.liquid +58 -0
- data/_includes/base/head.html.liquid +101 -0
- data/_includes/base/highlight.html.liquid +65 -0
- data/_includes/base/image.html.liquid +42 -0
- data/_includes/base/link.html.liquid +139 -0
- data/_includes/base/locales.html.liquid +41 -0
- data/_includes/base/navbar.html.liquid +106 -0
- data/_includes/base/navindex.html.liquid +162 -0
- data/_includes/base/ogp.html.liquid +118 -0
- data/_includes/base/project.html.liquid +90 -0
- data/_includes/base/script.html.liquid +59 -0
- data/_includes/base/shortcut.html.liquid +65 -0
- data/_includes/base/social.html.liquid +59 -0
- data/_includes/base/title.html.liquid +52 -0
- data/_includes/base/toc.html.liquid +91 -0
- data/_includes/base/toc_generator.html.liquid +189 -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/_includes/sponsors/cards.html +11 -0
- data/_includes/sponsors/carousel.html +24 -0
- data/_layouts/base/default.html +117 -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 +251 -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/page-layout-default.png +0 -0
- data/assets/img/base/page-layout-default.svg +1158 -0
- data/assets/img/base/page-with-alert.png +0 -0
- data/assets/img/base/page-with-alert.svg +359 -0
- data/assets/img/base/page-with-announcement.png +0 -0
- data/assets/img/base/page-with-announcement.svg +499 -0
- data/assets/img/base/page-with-artwork.png +0 -0
- data/assets/img/base/page-with-artwork.svg +368 -0
- data/assets/img/base/page-with-backtotop.png +0 -0
- data/assets/img/base/page-with-backtotop.svg +275 -0
- data/assets/img/base/page-with-bits.png +0 -0
- data/assets/img/base/page-with-bits.svg +311 -0
- data/assets/img/base/page-with-breadcrumb.png +0 -0
- data/assets/img/base/page-with-breadcrumb.svg +676 -0
- data/assets/img/base/page-with-breakingnews.png +0 -0
- data/assets/img/base/page-with-breakingnews.svg +903 -0
- data/assets/img/base/page-with-color.png +0 -0
- data/assets/img/base/page-with-color.svg +57 -0
- data/assets/img/base/page-with-copyright.png +0 -0
- data/assets/img/base/page-with-copyright.svg +233 -0
- data/assets/img/base/page-with-copyvalue.png +0 -0
- data/assets/img/base/page-with-copyvalue.svg +57 -0
- data/assets/img/base/page-with-datatable.png +0 -0
- data/assets/img/base/page-with-datatable.svg +857 -0
- data/assets/img/base/page-with-event.png +0 -0
- data/assets/img/base/page-with-event.svg +522 -0
- data/assets/img/base/page-with-fontawesome.png +0 -0
- data/assets/img/base/page-with-fontawesome.svg +147 -0
- data/assets/img/base/page-with-heading.png +0 -0
- data/assets/img/base/page-with-heading.svg +57 -0
- data/assets/img/base/page-with-highlight.png +0 -0
- data/assets/img/base/page-with-highlight.svg +86 -0
- data/assets/img/base/page-with-link.png +0 -0
- data/assets/img/base/page-with-link.svg +395 -0
- data/assets/img/base/page-with-locales.png +0 -0
- data/assets/img/base/page-with-locales.svg +724 -0
- data/assets/img/base/page-with-navbar.png +0 -0
- data/assets/img/base/page-with-navbar.svg +438 -0
- data/assets/img/base/page-with-navindex.png +0 -0
- data/assets/img/base/page-with-navindex.svg +279 -0
- data/assets/img/base/page-with-ogp.png +0 -0
- data/assets/img/base/page-with-ogp.svg +368 -0
- data/assets/img/base/page-with-project.png +0 -0
- data/assets/img/base/page-with-project.svg +822 -0
- data/assets/img/base/page-with-shortcut.png +0 -0
- data/assets/img/base/page-with-shortcut.svg +233 -0
- data/assets/img/base/page-with-social.png +0 -0
- data/assets/img/base/page-with-social.svg +233 -0
- data/assets/img/base/page-with-title.png +0 -0
- data/assets/img/base/page-with-title.svg +584 -0
- data/assets/img/base/page-with-toc.png +0 -0
- data/assets/img/base/page-with-toc.svg +438 -0
- data/assets/img/base/screenshot-example-1200x600.png +0 -0
- data/assets/img/base/screenshot-example-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/img/sponsors/screenshot-sponsors-cards-layout.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-cards.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-carousel.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-default-layout.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-logo.png +0 -0
- data/assets/img/sponsors/sponsor-logo-1.png +0 -0
- data/assets/img/sponsors/sponsor-logo-2.png +0 -0
- data/assets/img/sponsors/sponsor-logo-3.png +0 -0
- data/assets/img/sponsors/sponsor-logo-4.png +0 -0
- data/assets/img/sponsors/sponsor-logo-5.png +0 -0
- data/assets/img/sponsors/sponsor-logo-6.png +0 -0
- data/assets/img/sponsors/sponsor-logo-7.png +0 -0
- data/assets/img/sponsors/sponsor-logo-8.png +0 -0
- data/assets/img/sponsors/sponsors-logo.svg +563 -0
- data/assets/js/base/backtotop.js +23 -0
- data/assets/js/base/copyvalue.js +251 -0
- data/assets/js/base/datatable.js +55 -0
- data/assets/js/base/highlight.js +6 -0
- data/assets/js/base/init-tooltips.js +5 -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
- metadata +314 -1
|
@@ -0,0 +1,900 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="2047.9043"
|
|
6
|
+
height="1774.0776"
|
|
7
|
+
viewBox="0 0 541.84136 469.39141"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg638"
|
|
10
|
+
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
|
|
11
|
+
sodipodi:docname="page.svg"
|
|
12
|
+
inkscape:export-filename="page.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.6538609"
|
|
32
|
+
inkscape:cx="5083.6501"
|
|
33
|
+
inkscape:cy="2151.8338"
|
|
34
|
+
inkscape:window-width="3440"
|
|
35
|
+
inkscape:window-height="1371"
|
|
36
|
+
inkscape:window-x="0"
|
|
37
|
+
inkscape:window-y="0"
|
|
38
|
+
inkscape:window-maximized="1"
|
|
39
|
+
inkscape:current-layer="layer1"
|
|
40
|
+
showguides="false"><sodipodi:guide
|
|
41
|
+
position="539.3837,431.05068"
|
|
42
|
+
orientation="1,0"
|
|
43
|
+
id="guide15"
|
|
44
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
45
|
+
position="100.83896,-46.61206"
|
|
46
|
+
orientation="1,0"
|
|
47
|
+
id="guide81"
|
|
48
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
49
|
+
position="347.52985,124.11035"
|
|
50
|
+
orientation="1,0"
|
|
51
|
+
id="guide96"
|
|
52
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
53
|
+
position="267.42311,23.26275"
|
|
54
|
+
orientation="-0.70710678,-0.70710678"
|
|
55
|
+
id="guide190"
|
|
56
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
57
|
+
position="378.70108,64.88295"
|
|
58
|
+
orientation="-0.70710678,-0.70710678"
|
|
59
|
+
id="guide191"
|
|
60
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
61
|
+
position="1238.4764,591.69849"
|
|
62
|
+
orientation="-0.70710678,-0.70710678"
|
|
63
|
+
id="guide47"
|
|
64
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
65
|
+
position="1418.7878,-225.92106"
|
|
66
|
+
orientation="1,0"
|
|
67
|
+
id="guide23"
|
|
68
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
69
|
+
position="1448.9698,-207.51411"
|
|
70
|
+
orientation="1,0"
|
|
71
|
+
id="guide24"
|
|
72
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
73
|
+
position="1335.4562,-409.6124"
|
|
74
|
+
orientation="0,-1"
|
|
75
|
+
id="guide100"
|
|
76
|
+
inkscape:locked="false" /><sodipodi:guide
|
|
77
|
+
position="69.876697,236.88242"
|
|
78
|
+
orientation="1,0"
|
|
79
|
+
id="guide31"
|
|
80
|
+
inkscape:locked="false" /></sodipodi:namedview><defs
|
|
81
|
+
id="defs635"><pattern
|
|
82
|
+
inkscape:collect="always"
|
|
83
|
+
xlink:href="#pattern17"
|
|
84
|
+
preserveAspectRatio="xMidYMid"
|
|
85
|
+
id="pattern31"
|
|
86
|
+
patternTransform="matrix(5.2940528,3.0565228,-3.0565228,5.2940528,-1550.6564,-1254.1983)" /><marker
|
|
87
|
+
style="overflow:visible"
|
|
88
|
+
id="marker176"
|
|
89
|
+
refX="0"
|
|
90
|
+
refY="0"
|
|
91
|
+
orient="auto-start-reverse"
|
|
92
|
+
inkscape:stockid="Triangle arrow"
|
|
93
|
+
markerWidth="1"
|
|
94
|
+
markerHeight="1"
|
|
95
|
+
viewBox="0 0 1 1"
|
|
96
|
+
inkscape:isstock="true"
|
|
97
|
+
inkscape:collect="always"
|
|
98
|
+
preserveAspectRatio="xMidYMid"><path
|
|
99
|
+
transform="scale(0.5)"
|
|
100
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
101
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
102
|
+
id="path176" /></marker><marker
|
|
103
|
+
style="overflow:visible"
|
|
104
|
+
id="marker175"
|
|
105
|
+
refX="0"
|
|
106
|
+
refY="0"
|
|
107
|
+
orient="auto-start-reverse"
|
|
108
|
+
inkscape:stockid="Triangle arrow"
|
|
109
|
+
markerWidth="1"
|
|
110
|
+
markerHeight="1"
|
|
111
|
+
viewBox="0 0 1 1"
|
|
112
|
+
inkscape:isstock="true"
|
|
113
|
+
inkscape:collect="always"
|
|
114
|
+
preserveAspectRatio="xMidYMid"><path
|
|
115
|
+
transform="scale(0.5)"
|
|
116
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
117
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
118
|
+
id="path175" /></marker><pattern
|
|
119
|
+
inkscape:collect="always"
|
|
120
|
+
xlink:href="#pattern22"
|
|
121
|
+
preserveAspectRatio="xMidYMid"
|
|
122
|
+
id="pattern24"
|
|
123
|
+
patternTransform="matrix(5.2940529,3.0565227,-3.0565228,5.2940528,-1550.6564,-1254.1983)" /><pattern
|
|
124
|
+
inkscape:collect="always"
|
|
125
|
+
xlink:href="#pattern17"
|
|
126
|
+
preserveAspectRatio="xMidYMid"
|
|
127
|
+
id="pattern22"
|
|
128
|
+
patternTransform="matrix(5.2940529,3.0565227,-3.0565228,5.2940528,-1560.8432,-1263.1295)" /><pattern
|
|
129
|
+
inkscape:collect="always"
|
|
130
|
+
xlink:href="#Strips1_1"
|
|
131
|
+
preserveAspectRatio="xMidYMid"
|
|
132
|
+
id="pattern17"
|
|
133
|
+
patternTransform="matrix(5.2940528,3.0565228,-3.0565228,5.2940528,-1560.8432,-1263.1295)"
|
|
134
|
+
x="0"
|
|
135
|
+
y="0" /><pattern
|
|
136
|
+
inkscape:collect="always"
|
|
137
|
+
patternUnits="userSpaceOnUse"
|
|
138
|
+
width="2"
|
|
139
|
+
height="10"
|
|
140
|
+
patternTransform="translate(0,0) scale(2,2)"
|
|
141
|
+
preserveAspectRatio="xMidYMid"
|
|
142
|
+
id="Strips1_1"
|
|
143
|
+
style="fill:#ffffff"
|
|
144
|
+
inkscape:stockid="Stripes 01 (1:1)"
|
|
145
|
+
inkscape:isstock="true"
|
|
146
|
+
inkscape:label="Stripes 01 (1:1)">
|
|
147
|
+
<rect
|
|
148
|
+
style="stroke:none"
|
|
149
|
+
x="0"
|
|
150
|
+
y="-0.5"
|
|
151
|
+
width="1"
|
|
152
|
+
height="11"
|
|
153
|
+
id="rect16" />
|
|
154
|
+
</pattern><filter
|
|
155
|
+
inkscape:collect="always"
|
|
156
|
+
style="color-interpolation-filters:sRGB"
|
|
157
|
+
id="filter1851"
|
|
158
|
+
x="-0.033902062"
|
|
159
|
+
y="-0.025007181"
|
|
160
|
+
width="1.0678041"
|
|
161
|
+
height="1.0500144"><feGaussianBlur
|
|
162
|
+
inkscape:collect="always"
|
|
163
|
+
stdDeviation="5.0211827"
|
|
164
|
+
id="feGaussianBlur1853" /></filter><symbol
|
|
165
|
+
id="align-left"><title
|
|
166
|
+
id="align-left-title">align-left</title><path
|
|
167
|
+
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"
|
|
168
|
+
id="path6" /></symbol><symbol
|
|
169
|
+
id="font-awesome-solid-set.svg:trophy"><title
|
|
170
|
+
id="trophy-title">trophy</title><path
|
|
171
|
+
d="M 552,64 H 448 V 24 C 448,10.7 437.3,0 424,0 H 152 C 138.7,0 128,10.7 128,24 V 64 H 24 C 10.7,64 0,74.7 0,88 v 56 c 0,35.7 22.5,72.4 61.9,100.7 31.5,22.7 69.8,37.1 110,41.7 31.4,52.1 68.1,73.6 68.1,73.6 v 72 h -48 c -35.3,0 -64,20.7 -64,56 v 12 c 0,6.6 5.4,12 12,12 h 296 c 6.6,0 12,-5.4 12,-12 v -12 c 0,-35.3 -28.7,-56 -64,-56 h -48 v -72 c 0,0 36.7,-21.5 68.1,-73.6 40.3,-4.6 78.6,-19 110,-41.7 C 553.4,216.4 576,179.7 576,144 V 88 C 576,74.7 565.3,64 552,64 Z M 99.3,192.8 C 74.9,175.2 64,155.6 64,144 v -16 h 64.2 c 1,32.6 5.8,61.2 12.8,86.2 C 125.9,209 111.8,201.8 99.3,192.8 Z M 512,144 c 0,16.1 -17.7,36.1 -35.3,48.8 -12.5,9 -26.7,16.2 -41.8,21.4 7,-25 11.8,-53.6 12.8,-86.2 H 512 Z"
|
|
172
|
+
id="path426" /></symbol></defs><g
|
|
173
|
+
inkscape:label="Layer 1"
|
|
174
|
+
inkscape:groupmode="layer"
|
|
175
|
+
id="layer1"
|
|
176
|
+
transform="translate(-669.50299,224.32179)"><rect
|
|
177
|
+
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.740422;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
178
|
+
id="rect3057"
|
|
179
|
+
width="541.84137"
|
|
180
|
+
height="469.39139"
|
|
181
|
+
x="669.50299"
|
|
182
|
+
y="-224.32179"
|
|
183
|
+
inkscape:export-filename="page.webp"
|
|
184
|
+
inkscape:export-xdpi="75.003502"
|
|
185
|
+
inkscape:export-ydpi="75.003502" /><rect
|
|
186
|
+
style="fill:#c0bfbc;stroke-width:0.741397;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;filter:url(#filter1851);stop-color:#000000"
|
|
187
|
+
id="rect1849"
|
|
188
|
+
width="355.46033"
|
|
189
|
+
height="481.89511"
|
|
190
|
+
x="660.8844"
|
|
191
|
+
y="-152.2928"
|
|
192
|
+
rx="1.3229167"
|
|
193
|
+
ry="1.1541637"
|
|
194
|
+
transform="matrix(1,0,0,0.81464996,54.348633,-64.70079)" /><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><rect
|
|
195
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:0.360278;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
196
|
+
id="rect4291"
|
|
197
|
+
width="355.46033"
|
|
198
|
+
height="376.68594"
|
|
199
|
+
x="715.23303"
|
|
200
|
+
y="-176.94185"
|
|
201
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
202
|
+
inkscape:export-xdpi="96"
|
|
203
|
+
inkscape:export-ydpi="96" /><rect
|
|
204
|
+
style="fill:#77767b;fill-opacity:1;stroke:none;stroke-width:0.399401;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
205
|
+
id="rect18"
|
|
206
|
+
width="355.46033"
|
|
207
|
+
height="194.3777"
|
|
208
|
+
x="715.23303"
|
|
209
|
+
y="-197.92188" /><text
|
|
210
|
+
xml:space="preserve"
|
|
211
|
+
style="font-size:9.17222px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
212
|
+
x="668.75092"
|
|
213
|
+
y="130.19917"
|
|
214
|
+
id="text1154"><tspan
|
|
215
|
+
sodipodi:role="line"
|
|
216
|
+
id="tspan1152"
|
|
217
|
+
style="font-weight:bold;font-size:9.17222px;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
218
|
+
x="668.75092"
|
|
219
|
+
y="130.19917">footer</tspan></text><text
|
|
220
|
+
xml:space="preserve"
|
|
221
|
+
style="font-size:7.05556px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
222
|
+
x="1089.3185"
|
|
223
|
+
y="190.84547"
|
|
224
|
+
id="text2895"><tspan
|
|
225
|
+
sodipodi:role="line"
|
|
226
|
+
id="tspan2893"
|
|
227
|
+
style="font-size:7.05556px;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
228
|
+
x="1089.3185"
|
|
229
|
+
y="190.84547">page.with_copyright</tspan></text><text
|
|
230
|
+
xml:space="preserve"
|
|
231
|
+
style="font-size:7.05556px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
232
|
+
x="1078.6869"
|
|
233
|
+
y="-57.738331"
|
|
234
|
+
id="text2076"><tspan
|
|
235
|
+
sodipodi:role="line"
|
|
236
|
+
id="tspan2074"
|
|
237
|
+
style="font-size:7.05556px;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
238
|
+
x="1078.6869"
|
|
239
|
+
y="-57.738331">page.title</tspan></text><text
|
|
240
|
+
xml:space="preserve"
|
|
241
|
+
style="font-size:7.05556px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
242
|
+
x="1089.3185"
|
|
243
|
+
y="82.424904"
|
|
244
|
+
id="text1150-8-3"><tspan
|
|
245
|
+
sodipodi:role="line"
|
|
246
|
+
id="tspan1148-9-6"
|
|
247
|
+
style="font-size:7.05556px;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
248
|
+
x="1089.3185"
|
|
249
|
+
y="82.424904">page.with_shortcuts</tspan></text><text
|
|
250
|
+
xml:space="preserve"
|
|
251
|
+
style="font-size:7.05556px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
252
|
+
x="1089.3185"
|
|
253
|
+
y="107.2284"
|
|
254
|
+
id="text2883"><tspan
|
|
255
|
+
sodipodi:role="line"
|
|
256
|
+
id="tspan2881"
|
|
257
|
+
style="font-size:7.05556px;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
258
|
+
x="1089.3185"
|
|
259
|
+
y="107.2284">page.with_social</tspan></text><rect
|
|
260
|
+
style="fill:#77767b;fill-opacity:1;stroke-width:0.56185;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
261
|
+
id="rect2416"
|
|
262
|
+
width="355.4603"
|
|
263
|
+
height="145.6992"
|
|
264
|
+
x="715.23303"
|
|
265
|
+
y="54.134747"
|
|
266
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
267
|
+
inkscape:export-xdpi="96"
|
|
268
|
+
inkscape:export-ydpi="96" /><rect
|
|
269
|
+
style="opacity:0.05;fill:url(#pattern24);fill-opacity:1;stroke:none;stroke-width:0.345792;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
270
|
+
id="rect24"
|
|
271
|
+
width="355.46033"
|
|
272
|
+
height="145.69917"
|
|
273
|
+
x="715.23303"
|
|
274
|
+
y="54.134747" /><rect
|
|
275
|
+
style="fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
276
|
+
id="rect3039"
|
|
277
|
+
width="151.97849"
|
|
278
|
+
height="3.8678856"
|
|
279
|
+
x="741.7113"
|
|
280
|
+
y="187.17586"
|
|
281
|
+
rx="1.3229166"
|
|
282
|
+
ry="1.3229166" /><rect
|
|
283
|
+
style="fill:#c0bfbc;fill-opacity:1;stroke-width:0.529167;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
284
|
+
id="rect2412"
|
|
285
|
+
width="302.50372"
|
|
286
|
+
height="34.203129"
|
|
287
|
+
x="741.7113"
|
|
288
|
+
y="54.134747"
|
|
289
|
+
inkscape:export-filename="screenshot-sponsors-carousel.png"
|
|
290
|
+
inkscape:export-xdpi="96"
|
|
291
|
+
inkscape:export-ydpi="96" /><rect
|
|
292
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
293
|
+
id="rect3194"
|
|
294
|
+
width="56.660175"
|
|
295
|
+
height="3.8678894"
|
|
296
|
+
x="747.30371"
|
|
297
|
+
y="61.83659"
|
|
298
|
+
rx="1.3229166"
|
|
299
|
+
ry="1.3229166" /><rect
|
|
300
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
301
|
+
id="rect3265"
|
|
302
|
+
width="56.660175"
|
|
303
|
+
height="3.8678894"
|
|
304
|
+
x="747.30371"
|
|
305
|
+
y="69.302406"
|
|
306
|
+
rx="1.3229166"
|
|
307
|
+
ry="1.3229166" /><rect
|
|
308
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
309
|
+
id="rect3267"
|
|
310
|
+
width="56.660175"
|
|
311
|
+
height="3.8678894"
|
|
312
|
+
x="747.30371"
|
|
313
|
+
y="76.768166"
|
|
314
|
+
rx="1.3229166"
|
|
315
|
+
ry="1.3229166" /><rect
|
|
316
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
317
|
+
id="rect3269"
|
|
318
|
+
width="56.660175"
|
|
319
|
+
height="3.8678894"
|
|
320
|
+
x="864.63306"
|
|
321
|
+
y="61.83659"
|
|
322
|
+
rx="1.3229166"
|
|
323
|
+
ry="1.3229166" /><rect
|
|
324
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
325
|
+
id="rect3271"
|
|
326
|
+
width="56.660175"
|
|
327
|
+
height="3.8678894"
|
|
328
|
+
x="864.63306"
|
|
329
|
+
y="69.302406"
|
|
330
|
+
rx="1.3229166"
|
|
331
|
+
ry="1.3229166" /><rect
|
|
332
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
333
|
+
id="rect3273"
|
|
334
|
+
width="56.660175"
|
|
335
|
+
height="3.8678894"
|
|
336
|
+
x="864.63306"
|
|
337
|
+
y="76.768166"
|
|
338
|
+
rx="1.3229166"
|
|
339
|
+
ry="1.3229166" /><rect
|
|
340
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
341
|
+
id="rect3275"
|
|
342
|
+
width="56.660175"
|
|
343
|
+
height="3.8678894"
|
|
344
|
+
x="983.89026"
|
|
345
|
+
y="61.83659"
|
|
346
|
+
rx="1.3229166"
|
|
347
|
+
ry="1.3229166" /><rect
|
|
348
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
349
|
+
id="rect3277"
|
|
350
|
+
width="56.660175"
|
|
351
|
+
height="3.8678894"
|
|
352
|
+
x="983.89026"
|
|
353
|
+
y="69.302406"
|
|
354
|
+
rx="1.3229166"
|
|
355
|
+
ry="1.3229166" /><rect
|
|
356
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
357
|
+
id="rect3279"
|
|
358
|
+
width="56.660175"
|
|
359
|
+
height="3.8678894"
|
|
360
|
+
x="983.89026"
|
|
361
|
+
y="76.768166"
|
|
362
|
+
rx="1.3229166"
|
|
363
|
+
ry="1.3229166" /><circle
|
|
364
|
+
style="fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
365
|
+
id="path2543"
|
|
366
|
+
cx="979.28198"
|
|
367
|
+
cy="97.662788"
|
|
368
|
+
r="3.6642108" /><circle
|
|
369
|
+
style="fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
370
|
+
id="circle2545"
|
|
371
|
+
cx="992.80194"
|
|
372
|
+
cy="97.662788"
|
|
373
|
+
r="3.6642108" /><circle
|
|
374
|
+
style="fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
375
|
+
id="circle2547"
|
|
376
|
+
cx="1006.322"
|
|
377
|
+
cy="97.662788"
|
|
378
|
+
r="3.6642108" /><circle
|
|
379
|
+
style="fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
380
|
+
id="circle2549"
|
|
381
|
+
cx="1019.8418"
|
|
382
|
+
cy="97.662788"
|
|
383
|
+
r="3.6642108" /><circle
|
|
384
|
+
style="fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
385
|
+
id="circle2551"
|
|
386
|
+
cx="1033.3619"
|
|
387
|
+
cy="97.662788"
|
|
388
|
+
r="3.6642108" /><rect
|
|
389
|
+
style="fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
390
|
+
id="rect2830"
|
|
391
|
+
width="201.53233"
|
|
392
|
+
height="22.988304"
|
|
393
|
+
x="741.7113"
|
|
394
|
+
y="93.998634"
|
|
395
|
+
rx="1.3229166"
|
|
396
|
+
ry="1.3229166" /><g
|
|
397
|
+
id="g4"
|
|
398
|
+
transform="translate(-11.641665,-399.30065)"><text
|
|
399
|
+
xml:space="preserve"
|
|
400
|
+
style="font-size:9.17222px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';text-align:center;text-anchor:middle;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
401
|
+
x="904.60034"
|
|
402
|
+
y="555.94177"
|
|
403
|
+
id="text1146-3"><tspan
|
|
404
|
+
sodipodi:role="line"
|
|
405
|
+
id="tspan1144-6"
|
|
406
|
+
style="font-weight:bold;font-size:9.17222px;text-align:center;text-anchor:middle;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
407
|
+
x="904.60034"
|
|
408
|
+
y="555.94177">script</tspan></text></g><g
|
|
409
|
+
id="g1465"
|
|
410
|
+
transform="translate(54.348633,-42.276063)"><text
|
|
411
|
+
xml:space="preserve"
|
|
412
|
+
style="font-size:9.17222px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';text-align:center;text-anchor:middle;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
413
|
+
x="838.61005"
|
|
414
|
+
y="-165.61983"
|
|
415
|
+
id="text1458"><tspan
|
|
416
|
+
sodipodi:role="line"
|
|
417
|
+
id="tspan1456"
|
|
418
|
+
style="font-weight:bold;font-size:9.17222px;text-align:center;text-anchor:middle;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
419
|
+
x="838.61005"
|
|
420
|
+
y="-165.61983">head</tspan></text></g><rect
|
|
421
|
+
style="fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:bevel;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
422
|
+
id="rect43"
|
|
423
|
+
width="163.50861"
|
|
424
|
+
height="36.068787"
|
|
425
|
+
x="741.7113"
|
|
426
|
+
y="133.01236" /><rect
|
|
427
|
+
style="fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:0.529167;stroke-linejoin:bevel;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
428
|
+
id="rect44"
|
|
429
|
+
width="91.61306"
|
|
430
|
+
height="22.205326"
|
|
431
|
+
x="911.65326"
|
|
432
|
+
y="133.01236" /><text
|
|
433
|
+
xml:space="preserve"
|
|
434
|
+
style="font-size:7.05556px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
435
|
+
x="1089.3185"
|
|
436
|
+
y="152.78238"
|
|
437
|
+
id="text25"><tspan
|
|
438
|
+
sodipodi:role="line"
|
|
439
|
+
id="tspan25"
|
|
440
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05556px;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
441
|
+
x="1089.3185"
|
|
442
|
+
y="152.78238">page.with_sponsors</tspan></text><text
|
|
443
|
+
xml:space="preserve"
|
|
444
|
+
style="font-size:7.05556px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
445
|
+
x="1078.6869"
|
|
446
|
+
y="-185.32031"
|
|
447
|
+
id="text2447"><tspan
|
|
448
|
+
sodipodi:role="line"
|
|
449
|
+
id="tspan2445"
|
|
450
|
+
style="font-size:7.05556px;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
451
|
+
x="1078.6869"
|
|
452
|
+
y="-185.32031">page.with_manifestation</tspan></text><rect
|
|
453
|
+
style="fill:#77767b;fill-opacity:1;stroke-width:0.529167;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
454
|
+
id="rect4433"
|
|
455
|
+
width="355.46042"
|
|
456
|
+
height="20.980024"
|
|
457
|
+
x="715.23303"
|
|
458
|
+
y="-197.92188"
|
|
459
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
460
|
+
inkscape:export-xdpi="96"
|
|
461
|
+
inkscape:export-ydpi="96" /><rect
|
|
462
|
+
style="opacity:0.05;fill:url(#pattern31);fill-opacity:1;stroke:none;stroke-width:0.285334;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
463
|
+
id="rect13"
|
|
464
|
+
width="355.46033"
|
|
465
|
+
height="194.22047"
|
|
466
|
+
x="715.23303"
|
|
467
|
+
y="-197.92188" /><g
|
|
468
|
+
id="g1012"
|
|
469
|
+
transform="matrix(0.2625,0,0,0.2625,613.0212,-165.22368)"
|
|
470
|
+
style="stroke-width:3.80952"><g
|
|
471
|
+
aria-label="CentOS"
|
|
472
|
+
id="text57015"
|
|
473
|
+
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:#ffffff;fill-opacity:1;stroke-width:2.85397"
|
|
474
|
+
transform="matrix(0.97560972,0,0,0.97560972,-295.86665,-427.58606)"><path
|
|
475
|
+
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"
|
|
476
|
+
id="path2097"
|
|
477
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:2.85397" /><path
|
|
478
|
+
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"
|
|
479
|
+
id="path2099"
|
|
480
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:2.85397" /><path
|
|
481
|
+
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"
|
|
482
|
+
id="path2101"
|
|
483
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:2.85397" /><path
|
|
484
|
+
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"
|
|
485
|
+
id="path2103"
|
|
486
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:2.85397" /><path
|
|
487
|
+
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"
|
|
488
|
+
id="path2105"
|
|
489
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:2.85397" /><path
|
|
490
|
+
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"
|
|
491
|
+
id="path2107"
|
|
492
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:2.85397" /></g><g
|
|
493
|
+
id="g28251-9"
|
|
494
|
+
transform="matrix(0.74451128,0.74451128,-0.74451128,0.74451128,6.01137,-157.12384)"
|
|
495
|
+
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
|
496
|
+
inkscape:export-xdpi="10.11"
|
|
497
|
+
inkscape:export-ydpi="10.11"
|
|
498
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:3.80952"><path
|
|
499
|
+
id="ellipse15079-1-3"
|
|
500
|
+
style="fill:#ffffff;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"
|
|
501
|
+
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
|
|
502
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
503
|
+
id="rect119"
|
|
504
|
+
width="17.410027"
|
|
505
|
+
height="10.994827"
|
|
506
|
+
x="1026.8052"
|
|
507
|
+
y="-192.92928"
|
|
508
|
+
rx="1.3229166"
|
|
509
|
+
ry="1.3229166" /><g
|
|
510
|
+
id="g121"
|
|
511
|
+
transform="translate(-11.641696,-42.485011)"
|
|
512
|
+
style="stroke:#9a9996;stroke-opacity:1"><path
|
|
513
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
514
|
+
d="m 1040.8931,-147.50672 h 12.5172"
|
|
515
|
+
id="path119" /><path
|
|
516
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
517
|
+
d="m 1040.8931,-144.94685 h 12.5172"
|
|
518
|
+
id="path120" /><path
|
|
519
|
+
style="fill:none;stroke:#9a9996;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
520
|
+
d="m 1040.8931,-142.38698 h 12.5172"
|
|
521
|
+
id="path121" /></g><text
|
|
522
|
+
xml:space="preserve"
|
|
523
|
+
style="font-size:9.17222px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
524
|
+
x="669.18201"
|
|
525
|
+
y="-57.599155"
|
|
526
|
+
id="text1150"><tspan
|
|
527
|
+
sodipodi:role="line"
|
|
528
|
+
id="tspan1148"
|
|
529
|
+
style="font-weight:bold;font-size:9.17222px;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
530
|
+
x="669.18201"
|
|
531
|
+
y="-57.599155">main</tspan></text><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path
|
|
532
|
+
style="fill:none;stroke:#f6f5f4;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
533
|
+
d="m 787.93909,-194.18049 v 13.49727"
|
|
534
|
+
id="path8" /><path
|
|
535
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#77767b;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3.17499, 3.17499;stroke-dashoffset:0;stroke-opacity:1"
|
|
536
|
+
d="M 669.50301,-198.18646 H 1208.1795"
|
|
537
|
+
id="use2" /><path
|
|
538
|
+
style="fill:#77767b;fill-opacity:1;stroke:#77767b;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
539
|
+
d="M 715.23304,88.602452 H 1208.8077"
|
|
540
|
+
id="use15"
|
|
541
|
+
sodipodi:nodetypes="cc" /><text
|
|
542
|
+
xml:space="preserve"
|
|
543
|
+
style="font-size:7.05556px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
544
|
+
x="1078.6869"
|
|
545
|
+
y="64.702919"
|
|
546
|
+
id="text17"><tspan
|
|
547
|
+
sodipodi:role="line"
|
|
548
|
+
id="tspan17"
|
|
549
|
+
style="font-size:7.05556px;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
550
|
+
x="1078.6869"
|
|
551
|
+
y="64.702919">page.with_footer</tspan></text><path
|
|
552
|
+
style="fill:none;stroke:#77767b;stroke-width:1.32292;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
553
|
+
d="M 1207.7157,200.414 V 70.629002 H 1080.0044 V 200.2422"
|
|
554
|
+
id="path17"
|
|
555
|
+
sodipodi:nodetypes="cccc" /><g
|
|
556
|
+
id="g1"
|
|
557
|
+
transform="matrix(1.5182457,0,0,1.5182457,-411.35005,99.230182)"><use
|
|
558
|
+
xlink:href="#align-left"
|
|
559
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#f6f5f4;stroke-opacity:1"
|
|
560
|
+
id="use1-3-3"
|
|
561
|
+
transform="matrix(0.00800799,0,0,0.00800799,793.73956,-190.8614)" /></g><path
|
|
562
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#77767b;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3.17499, 3.17499;stroke-dashoffset:0;stroke-opacity:1"
|
|
563
|
+
d="M 714.96845,-224.18957 V 243.20756"
|
|
564
|
+
id="use13"
|
|
565
|
+
sodipodi:nodetypes="cc" /><use
|
|
566
|
+
x="0"
|
|
567
|
+
y="0"
|
|
568
|
+
xlink:href="#use13"
|
|
569
|
+
id="use14"
|
|
570
|
+
transform="translate(355.98955)"
|
|
571
|
+
style="stroke-width:0.79375;stroke-dasharray:none" /><path
|
|
572
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#77767b;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3.17499, 3.17499;stroke-dashoffset:0;stroke-opacity:1"
|
|
573
|
+
d="M 669.50301,-223.92493 H 1208.1795"
|
|
574
|
+
id="use19" /><path
|
|
575
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#77767b;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:3.17499, 3.17499;stroke-dashoffset:0;stroke-opacity:1"
|
|
576
|
+
d="M 669.50301,-176.54486 H 1208.1795"
|
|
577
|
+
id="path2" /><text
|
|
578
|
+
xml:space="preserve"
|
|
579
|
+
style="font-size:9.17222px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
580
|
+
x="668.84259"
|
|
581
|
+
y="-185.48788"
|
|
582
|
+
id="text9"><tspan
|
|
583
|
+
sodipodi:role="line"
|
|
584
|
+
id="tspan9"
|
|
585
|
+
style="font-weight:bold;font-size:9.17222px;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
586
|
+
x="668.84259"
|
|
587
|
+
y="-185.48788">nav</tspan></text><use
|
|
588
|
+
x="0"
|
|
589
|
+
y="0"
|
|
590
|
+
xlink:href="#path2"
|
|
591
|
+
id="use62"
|
|
592
|
+
transform="translate(0,231.07645)"
|
|
593
|
+
style="stroke-width:0.79375;stroke-dasharray:none" /><use
|
|
594
|
+
x="0"
|
|
595
|
+
y="0"
|
|
596
|
+
xlink:href="#use62"
|
|
597
|
+
id="use63"
|
|
598
|
+
transform="translate(0,144.90546)"
|
|
599
|
+
style="stroke-width:0.79375;stroke-dasharray:none" /><g
|
|
600
|
+
id="g63"
|
|
601
|
+
transform="translate(54.348633,396.02284)"><text
|
|
602
|
+
xml:space="preserve"
|
|
603
|
+
style="font-size:9.17222px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';text-align:center;text-anchor:middle;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
604
|
+
x="838.61005"
|
|
605
|
+
y="-176.20317"
|
|
606
|
+
id="text63"><tspan
|
|
607
|
+
sodipodi:role="line"
|
|
608
|
+
id="tspan63"
|
|
609
|
+
style="font-weight:bold;font-size:9.17222px;text-align:center;text-anchor:middle;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
610
|
+
x="838.61005"
|
|
611
|
+
y="-176.20317">script</tspan></text></g><use
|
|
612
|
+
x="0"
|
|
613
|
+
y="0"
|
|
614
|
+
xlink:href="#use63"
|
|
615
|
+
id="use75"
|
|
616
|
+
transform="translate(0,35.527902)"
|
|
617
|
+
style="stroke-width:0.79375;stroke-dasharray:none" /><g
|
|
618
|
+
id="g21"
|
|
619
|
+
transform="translate(547.31971,16.197727)" /><text
|
|
620
|
+
xml:space="preserve"
|
|
621
|
+
style="font-size:20.6184px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#f6f5f4;fill-opacity:1;stroke-width:1.54639"
|
|
622
|
+
x="770.03339"
|
|
623
|
+
y="-53.92765"
|
|
624
|
+
id="text40"><tspan
|
|
625
|
+
sodipodi:role="line"
|
|
626
|
+
id="tspan39"
|
|
627
|
+
style="font-weight:bold;fill:#f6f5f4;fill-opacity:1;stroke-width:1.54639"
|
|
628
|
+
x="770.03339"
|
|
629
|
+
y="-53.92765">username</tspan></text><text
|
|
630
|
+
xml:space="preserve"
|
|
631
|
+
style="font-size:7.65296px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#f6f5f4;fill-opacity:1;stroke-width:0.573979"
|
|
632
|
+
x="770.5224"
|
|
633
|
+
y="-39.857246"
|
|
634
|
+
id="text41"><tspan
|
|
635
|
+
sodipodi:role="line"
|
|
636
|
+
id="tspan41"
|
|
637
|
+
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Light';fill:#f6f5f4;fill-opacity:1;stroke-width:0.573979"
|
|
638
|
+
x="770.5224"
|
|
639
|
+
y="-39.857246">Full Name</tspan></text><g
|
|
640
|
+
id="use32"
|
|
641
|
+
transform="matrix(0.03376194,0,0,0.03376194,1049.3924,180.46676)"
|
|
642
|
+
style="fill:#f6f5f4;fill-opacity:0.137255"><title
|
|
643
|
+
id="title5">Image</title><path
|
|
644
|
+
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"
|
|
645
|
+
id="path5"
|
|
646
|
+
style="fill:#f6f5f4;fill-opacity:0.137255" /></g><rect
|
|
647
|
+
style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:1.52757;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
648
|
+
id="rect241"
|
|
649
|
+
width="423.33334"
|
|
650
|
+
height="317.50003"
|
|
651
|
+
x="1374.1569"
|
|
652
|
+
y="-242.5619"
|
|
653
|
+
inkscape:export-filename="screenshot-example-1600x1200.webp"
|
|
654
|
+
inkscape:export-xdpi="96"
|
|
655
|
+
inkscape:export-ydpi="96" /><g
|
|
656
|
+
id="g177"
|
|
657
|
+
style="opacity:0.1;stroke-width:2.64583;stroke-dasharray:none"
|
|
658
|
+
transform="matrix(-0.9652689,0,0,0.9652689,4285.5977,-480.05174)"><path
|
|
659
|
+
style="fill:none;stroke:#ffffff;stroke-width:2.64583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker176);marker-end:url(#marker175)"
|
|
660
|
+
d="M 3000.8804,258.70397 2592.9478,562.28974"
|
|
661
|
+
id="path177" /></g><rect
|
|
662
|
+
style="fill:#200735;fill-opacity:1;stroke:none;stroke-width:0.221514;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
663
|
+
id="rect241-9"
|
|
664
|
+
width="63.340282"
|
|
665
|
+
height="44.621723"
|
|
666
|
+
x="1374.525"
|
|
667
|
+
y="-299.1546" /><rect
|
|
668
|
+
style="fill:#262577;fill-opacity:1;stroke:none;stroke-width:0.221514;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
669
|
+
id="rect169"
|
|
670
|
+
width="63.340282"
|
|
671
|
+
height="44.621723"
|
|
672
|
+
x="1454.6871"
|
|
673
|
+
y="-299.1546" /><rect
|
|
674
|
+
style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.221514;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
675
|
+
id="rect170"
|
|
676
|
+
width="63.340282"
|
|
677
|
+
height="44.621723"
|
|
678
|
+
x="1534.8495"
|
|
679
|
+
y="-299.1546" /><rect
|
|
680
|
+
style="fill:#9ccd2a;fill-opacity:1;stroke:none;stroke-width:0.221514;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
681
|
+
id="rect171"
|
|
682
|
+
width="63.340282"
|
|
683
|
+
height="44.621723"
|
|
684
|
+
x="1615.0118"
|
|
685
|
+
y="-299.1546" /><rect
|
|
686
|
+
style="fill:#efa724;fill-opacity:1;stroke:none;stroke-width:0.221514;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
687
|
+
id="rect172"
|
|
688
|
+
width="63.340282"
|
|
689
|
+
height="44.621723"
|
|
690
|
+
x="1695.174"
|
|
691
|
+
y="-299.1546" /><g
|
|
692
|
+
id="g174"
|
|
693
|
+
style="opacity:0.1;stroke-width:2.64583;stroke-dasharray:none"
|
|
694
|
+
transform="matrix(0.9652689,0,0,0.9652689,-1113.9507,-480.05174)"><path
|
|
695
|
+
style="fill:none;stroke:#ffffff;stroke-width:2.64583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker176);marker-end:url(#marker175)"
|
|
696
|
+
d="M 3000.8804,258.70397 2592.9478,562.28974"
|
|
697
|
+
id="path173" /></g><rect
|
|
698
|
+
style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.767774;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
699
|
+
id="rect177"
|
|
700
|
+
width="423.33334"
|
|
701
|
+
height="80.206299"
|
|
702
|
+
x="1374.1569"
|
|
703
|
+
y="-123.91503" /><g
|
|
704
|
+
id="g172"
|
|
705
|
+
transform="translate(-760.63723,-669.8455)"><g
|
|
706
|
+
id="g173"
|
|
707
|
+
transform="translate(-168.48926,4.0104842)"><text
|
|
708
|
+
xml:space="preserve"
|
|
709
|
+
style="font-size:18.2723px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
|
|
710
|
+
x="2515.1145"
|
|
711
|
+
y="609.99628"
|
|
712
|
+
id="text473"
|
|
713
|
+
inkscape:export-filename="distribution-release-screenshot-3.png"
|
|
714
|
+
inkscape:export-xdpi="96"
|
|
715
|
+
inkscape:export-ydpi="96"><tspan
|
|
716
|
+
sodipodi:role="line"
|
|
717
|
+
id="tspan471"
|
|
718
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
|
|
719
|
+
x="2515.1145"
|
|
720
|
+
y="609.99628">SCREENSHOT EXAMPLE</tspan></text><text
|
|
721
|
+
xml:space="preserve"
|
|
722
|
+
style="font-size:45.8765px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.653279"
|
|
723
|
+
x="2516.0051"
|
|
724
|
+
y="586.17365"
|
|
725
|
+
id="text477"><tspan
|
|
726
|
+
sodipodi:role="line"
|
|
727
|
+
id="tspan475"
|
|
728
|
+
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Montserrat;-inkscape-font-specification:'Montserrat Light';text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.653279"
|
|
729
|
+
x="2516.0051"
|
|
730
|
+
y="586.17365">1600x1200</tspan></text></g></g><use
|
|
731
|
+
x="0"
|
|
732
|
+
y="0"
|
|
733
|
+
xlink:href="#use15"
|
|
734
|
+
id="use16"
|
|
735
|
+
transform="translate(0,35.774422)"
|
|
736
|
+
style="stroke-width:0.264583;stroke-dasharray:none" /><use
|
|
737
|
+
x="0"
|
|
738
|
+
y="0"
|
|
739
|
+
xlink:href="#use15"
|
|
740
|
+
id="use17"
|
|
741
|
+
transform="translate(0,89.114162)"
|
|
742
|
+
style="stroke-width:0.264583;stroke-dasharray:none" /><rect
|
|
743
|
+
style="fill:#f8f8f8;fill-opacity:1;stroke-width:1.22205;paint-order:fill markers stroke"
|
|
744
|
+
id="rect1"
|
|
745
|
+
width="423.33334"
|
|
746
|
+
height="423.33334"
|
|
747
|
+
x="1378.8425"
|
|
748
|
+
y="130.89745"
|
|
749
|
+
inkscape:export-filename="trophy.webp"
|
|
750
|
+
inkscape:export-xdpi="83.063591"
|
|
751
|
+
inkscape:export-ydpi="83.063591" /><use
|
|
752
|
+
xlink:href="#font-awesome-solid-set.svg:trophy"
|
|
753
|
+
style="fill:#a14f8c;fill-opacity:1;stroke:none"
|
|
754
|
+
id="use1"
|
|
755
|
+
transform="matrix(0.36747687,0,0,0.36747687,1484.6759,248.49004)" /><rect
|
|
756
|
+
style="fill:#200735;fill-opacity:1;stroke:none;stroke-width:12.5936;paint-order:fill markers stroke"
|
|
757
|
+
id="rect1-5"
|
|
758
|
+
width="423.33334"
|
|
759
|
+
height="423.33334"
|
|
760
|
+
x="1847.7203"
|
|
761
|
+
y="130.91428"
|
|
762
|
+
inkscape:export-filename="username.webp"
|
|
763
|
+
inkscape:export-xdpi="83.063591"
|
|
764
|
+
inkscape:export-ydpi="83.063591" /><g
|
|
765
|
+
id="use1-3"
|
|
766
|
+
style="fill:#ffffff;stroke:none"
|
|
767
|
+
transform="matrix(0.41341148,0,0,0.41341148,1953.5537,236.74761)"><title
|
|
768
|
+
id="title2">User</title><path
|
|
769
|
+
d="M 96,160 C 96,71.634 167.635,0 256,0 344.365,0 416,71.634 416,160 416,248.366 344.365,320 256,320 167.635,320 96,248.366 96,160 Z m 304,192 h -28.556 c -71.006,42.713 -159.912,42.695 -230.888,0 H 112 C 50.144,352 0,402.144 0,464 v 24 c 0,13.255 10.745,24 24,24 h 464 c 13.255,0 24,-10.745 24,-24 V 464 C 512,402.144 461.856,352 400,352 Z"
|
|
770
|
+
id="path3"
|
|
771
|
+
style="fill:#ffffff" /></g><rect
|
|
772
|
+
style="fill:#deddda;fill-opacity:1;stroke-width:0.463242;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
773
|
+
id="rect4"
|
|
774
|
+
width="79.375008"
|
|
775
|
+
height="79.375008"
|
|
776
|
+
x="771.45605"
|
|
777
|
+
y="-159.19887"
|
|
778
|
+
rx="1.087454"
|
|
779
|
+
ry="1.2333448" /><text
|
|
780
|
+
xml:space="preserve"
|
|
781
|
+
style="font-size:7.05556px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
782
|
+
x="1078.6869"
|
|
783
|
+
y="-40.945522"
|
|
784
|
+
id="text4"><tspan
|
|
785
|
+
sodipodi:role="line"
|
|
786
|
+
id="tspan4"
|
|
787
|
+
style="font-size:7.05556px;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
788
|
+
x="1078.6869"
|
|
789
|
+
y="-40.945522">page.title_lead</tspan></text><path
|
|
790
|
+
style="fill:#77767b;fill-opacity:1;stroke:#77767b;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
791
|
+
d="M 715.23304,-67.831134 H 1208.8077"
|
|
792
|
+
id="use7"
|
|
793
|
+
sodipodi:nodetypes="cc" /><use
|
|
794
|
+
x="0"
|
|
795
|
+
y="0"
|
|
796
|
+
xlink:href="#use7"
|
|
797
|
+
id="use8"
|
|
798
|
+
transform="translate(0,16.714261)" /><path
|
|
799
|
+
style="fill:#77767b;fill-opacity:1;stroke:#77767b;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
800
|
+
d="M 715.23304,-34.324094 H 1208.8077"
|
|
801
|
+
id="use10"
|
|
802
|
+
sodipodi:nodetypes="cc" /><rect
|
|
803
|
+
style="fill:#deddda;fill-opacity:1;stroke:none;stroke-width:0.0338885;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
804
|
+
id="rect2"
|
|
805
|
+
width="302.50378"
|
|
806
|
+
height="2.6458321"
|
|
807
|
+
x="741.7113"
|
|
808
|
+
y="54.134747" /><text
|
|
809
|
+
xml:space="preserve"
|
|
810
|
+
style="font-size:7.05556px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
811
|
+
x="1081.9774"
|
|
812
|
+
y="31.33597"
|
|
813
|
+
id="text1150-8"><tspan
|
|
814
|
+
sodipodi:role="line"
|
|
815
|
+
id="tspan1148-9"
|
|
816
|
+
style="font-size:7.05556px;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
817
|
+
x="1081.9774"
|
|
818
|
+
y="31.33597">page.with_content</tspan></text><text
|
|
819
|
+
xml:space="preserve"
|
|
820
|
+
style="font-size:7.05556px;line-height:1.95;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro, Normal';fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
821
|
+
x="1078.6869"
|
|
822
|
+
y="-3.006387"
|
|
823
|
+
id="text3047-1"><tspan
|
|
824
|
+
sodipodi:role="line"
|
|
825
|
+
id="tspan3045-2"
|
|
826
|
+
style="font-size:7.05556px;fill:#77767b;fill-opacity:1;stroke-width:0.264583"
|
|
827
|
+
x="1078.6869"
|
|
828
|
+
y="-3.006387">page.with_announcements</tspan></text><rect
|
|
829
|
+
style="fill:#deddda;fill-opacity:1;stroke:none;stroke-width:0.0338885;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
830
|
+
id="rect3"
|
|
831
|
+
width="355.47867"
|
|
832
|
+
height="3.109174"
|
|
833
|
+
x="715.23303"
|
|
834
|
+
y="-6.1900063" /><rect
|
|
835
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:0.119685;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
836
|
+
id="rect11"
|
|
837
|
+
width="302.50369"
|
|
838
|
+
height="74.118233"
|
|
839
|
+
x="741.7113"
|
|
840
|
+
y="-22.333166"
|
|
841
|
+
inkscape:export-filename="screenshot-sponsors-default-layout.png"
|
|
842
|
+
inkscape:export-xdpi="96"
|
|
843
|
+
inkscape:export-ydpi="96" /><g
|
|
844
|
+
id="g58"
|
|
845
|
+
transform="matrix(0.77503715,0,0,0.79309239,180.64404,64.009485)"><rect
|
|
846
|
+
style="fill:#deddda;fill-opacity:1;stroke:none;stroke-width:0.305937;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
847
|
+
id="rect57"
|
|
848
|
+
width="320.23325"
|
|
849
|
+
height="31.037111"
|
|
850
|
+
x="758.96082"
|
|
851
|
+
y="-59.071457" /><g
|
|
852
|
+
id="g57"
|
|
853
|
+
transform="matrix(0.02847556,0,0,0.02847556,912.69891,-50.842645)"
|
|
854
|
+
style="fill:#ffffff"><title
|
|
855
|
+
id="title57">align-left</title><path
|
|
856
|
+
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"
|
|
857
|
+
id="path57"
|
|
858
|
+
style="fill:#ffffff" /></g></g><g
|
|
859
|
+
id="g13"
|
|
860
|
+
transform="translate(30.767082,24.280511)"><rect
|
|
861
|
+
style="fill:#deddda;fill-opacity:1;stroke:none;stroke-width:0.240121;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
862
|
+
id="rect3425"
|
|
863
|
+
width="246.27394"
|
|
864
|
+
height="10.994823"
|
|
865
|
+
x="739.05914"
|
|
866
|
+
y="-34.519978"
|
|
867
|
+
rx="1.3345977"
|
|
868
|
+
ry="1.3229167" /><path
|
|
869
|
+
d="m 747.91177,-32.216735 c 0,-0.16664 -0.10077,-0.31777 -0.25578,-0.38236 -0.15501,-0.0646 -0.33198,-0.0284 -0.45082,0.0892 l -0.56321,0.5645 c -0.62004,0.62004 -1.46098,0.96883 -2.33809,0.96883 h -0.11238 -0.41336 -1.24009 c -0.45599,0 -0.82672,0.37073 -0.82672,0.82672 v 1.24009 c 0,0.45598 0.37073,0.82672 0.82672,0.82672 v 1.65345 c 0,0.22865 0.18472,0.41336 0.41337,0.41336 h 0.82672 c 0.22865,0 0.41336,-0.18471 0.41336,-0.41336 v -1.65345 h 0.11238 c 0.87711,0 1.71805,0.34877 2.33809,0.96882 l 0.56321,0.56321 c 0.11884,0.11884 0.29581,0.15373 0.45082,0.0892 0.15501,-0.0647 0.25578,-0.21444 0.25578,-0.38236 v -1.90535 c 0.24026,-0.11367 0.41336,-0.41982 0.41336,-0.78022 0,-0.3604 -0.1731,-0.66655 -0.41336,-0.78022 z m -0.82673,0.99078 v 1.69607 1.69609 c -0.75956,-0.6911 -1.75034,-1.07604 -2.78117,-1.07604 h -0.11238 v -1.24009 h 0.11238 c 1.03083,0 2.02161,-0.38495 2.78117,-1.07603 z"
|
|
870
|
+
id="path3462"
|
|
871
|
+
style="fill:#77767b;fill-opacity:1;stroke-width:0.264583" /><g
|
|
872
|
+
id="g39"
|
|
873
|
+
transform="matrix(0.60142389,0,0,0.60142392,350.10181,43.534981)"
|
|
874
|
+
style="fill:#77767b;fill-opacity:1;stroke:#77767b;stroke-width:1.13921;stroke-opacity:1"><path
|
|
875
|
+
style="fill:#77767b;fill-opacity:1;stroke:#77767b;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
876
|
+
d="m 1044.5533,-124.15749 6.0283,6.02831"
|
|
877
|
+
id="path38" /><path
|
|
878
|
+
style="fill:#77767b;fill-opacity:1;stroke:#77767b;stroke-width:1.50708;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
879
|
+
d="m 1050.5816,-124.15749 -6.0283,6.02831"
|
|
880
|
+
id="path39" /></g></g><path
|
|
881
|
+
style="fill:#77767b;fill-opacity:1;stroke:#77767b;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
882
|
+
d="m 770.72312,0.88764838 441.37508,0"
|
|
883
|
+
id="use69"
|
|
884
|
+
sodipodi:nodetypes="cc" /><path
|
|
885
|
+
style="fill:#77767b;fill-opacity:1;stroke:#77767b;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.05833, 1.05833;stroke-dashoffset:0;stroke-opacity:1"
|
|
886
|
+
d="m 770.66978,-10.107175 438.13792,0"
|
|
887
|
+
id="path59"
|
|
888
|
+
sodipodi:nodetypes="cc" /><use
|
|
889
|
+
x="0"
|
|
890
|
+
y="0"
|
|
891
|
+
xlink:href="#use69"
|
|
892
|
+
id="use3"
|
|
893
|
+
transform="translate(-2.4003839e-8,16.405005)"
|
|
894
|
+
style="stroke-width:0.264583;stroke-dasharray:none" /><use
|
|
895
|
+
x="0"
|
|
896
|
+
y="0"
|
|
897
|
+
xlink:href="#use69"
|
|
898
|
+
id="use70"
|
|
899
|
+
transform="translate(-2.4003725e-8,41.020302)"
|
|
900
|
+
style="stroke-width:0.264583;stroke-dasharray:none" /></g></svg>
|