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,395 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="169.33333mm"
|
|
6
|
+
height="95.744629mm"
|
|
7
|
+
viewBox="0 0 169.33333 95.744627"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
|
11
|
+
sodipodi:docname="page-with-link.svg"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview1"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#000000"
|
|
20
|
+
borderopacity="0.25"
|
|
21
|
+
inkscape:showpageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
inkscape:deskcolor="#d1d1d1"
|
|
25
|
+
inkscape:document-units="mm"
|
|
26
|
+
inkscape:zoom="1"
|
|
27
|
+
inkscape:cx="36"
|
|
28
|
+
inkscape:cy="189.5"
|
|
29
|
+
inkscape:window-width="3440"
|
|
30
|
+
inkscape:window-height="1371"
|
|
31
|
+
inkscape:window-x="0"
|
|
32
|
+
inkscape:window-y="0"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="layer1"
|
|
35
|
+
showgrid="false" />
|
|
36
|
+
<defs
|
|
37
|
+
id="defs1">
|
|
38
|
+
<clipPath
|
|
39
|
+
clipPathUnits="userSpaceOnUse"
|
|
40
|
+
id="clipPath885">
|
|
41
|
+
<path
|
|
42
|
+
id="path885"
|
|
43
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
44
|
+
d="m 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"
|
|
45
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
46
|
+
</clipPath>
|
|
47
|
+
<clipPath
|
|
48
|
+
clipPathUnits="userSpaceOnUse"
|
|
49
|
+
id="clipPath1">
|
|
50
|
+
<path
|
|
51
|
+
id="path1"
|
|
52
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
53
|
+
d="m 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"
|
|
54
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
55
|
+
</clipPath>
|
|
56
|
+
<clipPath
|
|
57
|
+
clipPathUnits="userSpaceOnUse"
|
|
58
|
+
id="clipPath2">
|
|
59
|
+
<path
|
|
60
|
+
id="path2"
|
|
61
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
62
|
+
d="m 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"
|
|
63
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
64
|
+
</clipPath>
|
|
65
|
+
<clipPath
|
|
66
|
+
clipPathUnits="userSpaceOnUse"
|
|
67
|
+
id="clipPath883">
|
|
68
|
+
<path
|
|
69
|
+
id="path883"
|
|
70
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
71
|
+
d="m 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"
|
|
72
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
73
|
+
</clipPath>
|
|
74
|
+
<clipPath
|
|
75
|
+
clipPathUnits="userSpaceOnUse"
|
|
76
|
+
id="clipPath3">
|
|
77
|
+
<path
|
|
78
|
+
id="path3"
|
|
79
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
80
|
+
d="m 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"
|
|
81
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
82
|
+
</clipPath>
|
|
83
|
+
<clipPath
|
|
84
|
+
clipPathUnits="userSpaceOnUse"
|
|
85
|
+
id="clipPath4">
|
|
86
|
+
<path
|
|
87
|
+
id="path4"
|
|
88
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
89
|
+
d="m 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"
|
|
90
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
91
|
+
</clipPath>
|
|
92
|
+
<clipPath
|
|
93
|
+
clipPathUnits="userSpaceOnUse"
|
|
94
|
+
id="clipPath5">
|
|
95
|
+
<path
|
|
96
|
+
id="path5"
|
|
97
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
98
|
+
d="m 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"
|
|
99
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
100
|
+
</clipPath>
|
|
101
|
+
<clipPath
|
|
102
|
+
clipPathUnits="userSpaceOnUse"
|
|
103
|
+
id="clipPath6">
|
|
104
|
+
<path
|
|
105
|
+
id="path6"
|
|
106
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
107
|
+
d="m 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"
|
|
108
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
109
|
+
</clipPath>
|
|
110
|
+
<clipPath
|
|
111
|
+
clipPathUnits="userSpaceOnUse"
|
|
112
|
+
id="clipPath891-7">
|
|
113
|
+
<path
|
|
114
|
+
id="path891-5"
|
|
115
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
116
|
+
d="m 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"
|
|
117
|
+
sodipodi:nodetypes="sccssssssccssssss" />
|
|
118
|
+
</clipPath>
|
|
119
|
+
<clipPath
|
|
120
|
+
clipPathUnits="userSpaceOnUse"
|
|
121
|
+
id="clipPath883-7">
|
|
122
|
+
<path
|
|
123
|
+
id="path883-5"
|
|
124
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
125
|
+
d="m 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"
|
|
126
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
127
|
+
</clipPath>
|
|
128
|
+
<clipPath
|
|
129
|
+
clipPathUnits="userSpaceOnUse"
|
|
130
|
+
id="clipPath7">
|
|
131
|
+
<path
|
|
132
|
+
id="path7"
|
|
133
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
134
|
+
d="m 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"
|
|
135
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
136
|
+
</clipPath>
|
|
137
|
+
<clipPath
|
|
138
|
+
clipPathUnits="userSpaceOnUse"
|
|
139
|
+
id="clipPath8">
|
|
140
|
+
<path
|
|
141
|
+
id="path8"
|
|
142
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
143
|
+
d="m 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"
|
|
144
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
145
|
+
</clipPath>
|
|
146
|
+
<clipPath
|
|
147
|
+
clipPathUnits="userSpaceOnUse"
|
|
148
|
+
id="clipPath9">
|
|
149
|
+
<path
|
|
150
|
+
id="path9"
|
|
151
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
152
|
+
d="m 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"
|
|
153
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
154
|
+
</clipPath>
|
|
155
|
+
<clipPath
|
|
156
|
+
clipPathUnits="userSpaceOnUse"
|
|
157
|
+
id="clipPath10">
|
|
158
|
+
<path
|
|
159
|
+
id="path10"
|
|
160
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
161
|
+
d="m 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"
|
|
162
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
163
|
+
</clipPath>
|
|
164
|
+
<clipPath
|
|
165
|
+
clipPathUnits="userSpaceOnUse"
|
|
166
|
+
id="clipPath11">
|
|
167
|
+
<path
|
|
168
|
+
id="path11"
|
|
169
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
170
|
+
d="m 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"
|
|
171
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
172
|
+
</clipPath>
|
|
173
|
+
<clipPath
|
|
174
|
+
clipPathUnits="userSpaceOnUse"
|
|
175
|
+
id="clipPath12">
|
|
176
|
+
<path
|
|
177
|
+
id="path12"
|
|
178
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
179
|
+
d="m 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"
|
|
180
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
181
|
+
</clipPath>
|
|
182
|
+
<clipPath
|
|
183
|
+
clipPathUnits="userSpaceOnUse"
|
|
184
|
+
id="clipPath13">
|
|
185
|
+
<path
|
|
186
|
+
id="path13"
|
|
187
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
188
|
+
d="m 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"
|
|
189
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
190
|
+
</clipPath>
|
|
191
|
+
<clipPath
|
|
192
|
+
clipPathUnits="userSpaceOnUse"
|
|
193
|
+
id="clipPath14">
|
|
194
|
+
<path
|
|
195
|
+
id="path14"
|
|
196
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
197
|
+
d="m 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"
|
|
198
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
199
|
+
</clipPath>
|
|
200
|
+
<clipPath
|
|
201
|
+
clipPathUnits="userSpaceOnUse"
|
|
202
|
+
id="clipPath15">
|
|
203
|
+
<path
|
|
204
|
+
id="path15"
|
|
205
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
206
|
+
d="m 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"
|
|
207
|
+
sodipodi:nodetypes="sscsssssscsss" />
|
|
208
|
+
</clipPath>
|
|
209
|
+
<clipPath
|
|
210
|
+
clipPathUnits="userSpaceOnUse"
|
|
211
|
+
id="clipPath16">
|
|
212
|
+
<path
|
|
213
|
+
id="path18"
|
|
214
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.91242;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
215
|
+
d="m 3851.5659,596.00722 c -4.986,0 -11.1574,2.91362 -16.6971,6.34471 v 71.5227 c 5.5397,-3.43109 11.7111,-6.34421 16.6971,-6.34421 12.1251,0 19.1414,17.23221 31.2667,17.23221 12.1253,0 19.141,-17.23221 31.2663,-17.23221 12.1254,0 19.1412,17.23221 31.2662,17.23221 12.1256,0 19.1419,-17.23221 31.2675,-17.23221 12.1253,0 18.9943,17.454 31.2663,17.23221 8.4973,-0.15361 20.2181,-9.10816 26.6241,-14.60187 v -71.5227 c -6.406,5.4937 -18.1268,14.44825 -26.6241,14.60186 -12.2718,0.22179 -19.141,-17.2327 -31.2663,-17.2327 -12.1256,0 -19.1419,17.2327 -31.2675,17.2327 -12.125,0 -19.1408,-17.2327 -31.2662,-17.2327 -12.1253,0 -19.141,17.2327 -31.2663,17.2327 -12.1256,0 -19.1416,-17.2327 -31.2667,-17.2327 z"
|
|
216
|
+
sodipodi:nodetypes="sccssssssccssssss" />
|
|
217
|
+
</clipPath>
|
|
218
|
+
</defs>
|
|
219
|
+
<g
|
|
220
|
+
inkscape:label="Layer 1"
|
|
221
|
+
inkscape:groupmode="layer"
|
|
222
|
+
id="layer1"
|
|
223
|
+
transform="translate(-348.9855,-50.102299)">
|
|
224
|
+
<rect
|
|
225
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.239;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
226
|
+
id="link"
|
|
227
|
+
width="169.33333"
|
|
228
|
+
height="95.744629"
|
|
229
|
+
x="348.9855"
|
|
230
|
+
y="50.102299"
|
|
231
|
+
inkscape:export-filename="page-with-alert.png"
|
|
232
|
+
inkscape:export-xdpi="96"
|
|
233
|
+
inkscape:export-ydpi="96" />
|
|
234
|
+
<path
|
|
235
|
+
id="path16"
|
|
236
|
+
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58749, 1.58749;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
|
|
237
|
+
d="m 350.0676,50.992911 v 12.465093 c 4.63848,-2.872772 9.8057,-5.311834 13.98038,-5.311834 10.15225,0 16.02692,14.428294 26.17956,14.428294 10.15238,0 16.0264,-14.428294 26.17891,-14.428294 10.15239,0 16.02679,14.428294 26.17918,14.428294 10.15251,0 16.0273,-14.428294 26.17994,-14.428294 10.15239,0 15.90374,14.613969 26.17905,14.428294 7.11485,-0.129119 16.92855,-7.626166 22.29216,-12.226037 v -9.355516"
|
|
238
|
+
sodipodi:nodetypes="ccsssssscc" />
|
|
239
|
+
<path
|
|
240
|
+
id="path17"
|
|
241
|
+
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linejoin:bevel;stroke-dasharray:1.58751, 1.58751;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
|
|
242
|
+
d="m 517.23678,144.95634 v -18.82138 c -5.36361,4.59974 -15.17744,12.0973 -22.29216,12.22603 -10.27518,0.18555 -16.02666,-14.42894 -26.17905,-14.42894 -10.15264,0 -16.02743,14.42894 -26.17994,14.42894 -10.15239,0 -16.02679,-14.42894 -26.17918,-14.42894 -10.15251,0 -16.02653,14.42894 -26.17891,14.42894 -10.15277,0 -16.02731,-14.42894 -26.17956,-14.42894 -4.17468,0 -9.3419,2.43958 -13.98038,5.31235 v 15.71194"
|
|
243
|
+
sodipodi:nodetypes="ccsssssscc" />
|
|
244
|
+
<g
|
|
245
|
+
id="g261"
|
|
246
|
+
transform="matrix(0.83729337,0,0,0.83729337,-2860.8425,-438.0861)"
|
|
247
|
+
clip-path="url(#clipPath16)">
|
|
248
|
+
<g
|
|
249
|
+
id="g231"
|
|
250
|
+
transform="matrix(1.1169639,0,0,1.1169639,-447.0429,40.620264)"
|
|
251
|
+
clip-path="none"
|
|
252
|
+
style="fill:#d9b9d1">
|
|
253
|
+
<text
|
|
254
|
+
xml:space="preserve"
|
|
255
|
+
style="font-size:7.85689px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;text-align:end;writing-mode:lr-tb;direction:ltr;text-anchor:end;fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:1.14574;stroke-linejoin:round;stroke-dasharray:none"
|
|
256
|
+
x="4003.2441"
|
|
257
|
+
y="509.30618"
|
|
258
|
+
id="text226"><tspan
|
|
259
|
+
sodipodi:role="line"
|
|
260
|
+
id="tspan226"
|
|
261
|
+
style="text-align:end;text-anchor:end;fill:#d9b9d1;stroke:none;stroke-width:1.14575"
|
|
262
|
+
x="4003.2441"
|
|
263
|
+
y="509.30618">[ ]( )</tspan></text>
|
|
264
|
+
<rect
|
|
265
|
+
style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:1.14574;stroke-linejoin:round;stroke-dasharray:none"
|
|
266
|
+
id="rect228"
|
|
267
|
+
width="78.986603"
|
|
268
|
+
height="5.7871399"
|
|
269
|
+
x="3916.0693"
|
|
270
|
+
y="503.59286"
|
|
271
|
+
rx="3.2737057"
|
|
272
|
+
ry="2.8935699" />
|
|
273
|
+
<rect
|
|
274
|
+
style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:1.14574;stroke-linejoin:round;stroke-dasharray:none"
|
|
275
|
+
id="rect251"
|
|
276
|
+
width="52.693195"
|
|
277
|
+
height="5.7871399"
|
|
278
|
+
x="3849.27"
|
|
279
|
+
y="503.59286"
|
|
280
|
+
rx="3.2737057"
|
|
281
|
+
ry="2.8935699" />
|
|
282
|
+
</g>
|
|
283
|
+
<g
|
|
284
|
+
id="g255"
|
|
285
|
+
transform="matrix(1.1169639,0,0,1.1169639,-447.0429,62.946179)"
|
|
286
|
+
clip-path="none"
|
|
287
|
+
style="fill:#d9b9d1">
|
|
288
|
+
<text
|
|
289
|
+
xml:space="preserve"
|
|
290
|
+
style="font-size:7.85689px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;text-align:end;writing-mode:lr-tb;direction:ltr;text-anchor:end;fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:1.14574;stroke-linejoin:round;stroke-dasharray:none"
|
|
291
|
+
x="4003.2441"
|
|
292
|
+
y="509.30618"
|
|
293
|
+
id="text254"><tspan
|
|
294
|
+
sodipodi:role="line"
|
|
295
|
+
id="tspan254"
|
|
296
|
+
style="text-align:end;text-anchor:end;fill:#d9b9d1;stroke:none;stroke-width:1.14575"
|
|
297
|
+
x="4003.2441"
|
|
298
|
+
y="509.30618">[ ]( )</tspan></text>
|
|
299
|
+
<rect
|
|
300
|
+
style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:1.14574;stroke-linejoin:round;stroke-dasharray:none"
|
|
301
|
+
id="rect254"
|
|
302
|
+
width="78.986603"
|
|
303
|
+
height="5.7871399"
|
|
304
|
+
x="3916.0693"
|
|
305
|
+
y="503.59286"
|
|
306
|
+
rx="3.2737057"
|
|
307
|
+
ry="2.8935699" />
|
|
308
|
+
<rect
|
|
309
|
+
style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:1.14574;stroke-linejoin:round;stroke-dasharray:none"
|
|
310
|
+
id="rect255"
|
|
311
|
+
width="52.693195"
|
|
312
|
+
height="5.7871399"
|
|
313
|
+
x="3849.27"
|
|
314
|
+
y="503.59286"
|
|
315
|
+
rx="3.2737057"
|
|
316
|
+
ry="2.8935699" />
|
|
317
|
+
</g>
|
|
318
|
+
<g
|
|
319
|
+
id="g258"
|
|
320
|
+
transform="matrix(1.1169639,0,0,1.1169639,-447.0429,85.272095)"
|
|
321
|
+
clip-path="none"
|
|
322
|
+
style="fill:#ecdce8">
|
|
323
|
+
<text
|
|
324
|
+
xml:space="preserve"
|
|
325
|
+
style="font-size:7.85689px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;text-align:end;writing-mode:lr-tb;direction:ltr;text-anchor:end;fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.14574;stroke-linejoin:round;stroke-dasharray:none"
|
|
326
|
+
x="4003.2441"
|
|
327
|
+
y="509.30618"
|
|
328
|
+
id="text257"><tspan
|
|
329
|
+
sodipodi:role="line"
|
|
330
|
+
id="tspan257"
|
|
331
|
+
style="text-align:end;text-anchor:end;fill:#ecdce8;stroke:none;stroke-width:1.14575"
|
|
332
|
+
x="4003.2441"
|
|
333
|
+
y="509.30618">[ ]( )</tspan></text>
|
|
334
|
+
<rect
|
|
335
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.14574;stroke-linejoin:round;stroke-dasharray:none"
|
|
336
|
+
id="rect257"
|
|
337
|
+
width="78.986603"
|
|
338
|
+
height="5.7871399"
|
|
339
|
+
x="3916.0693"
|
|
340
|
+
y="503.59286"
|
|
341
|
+
rx="3.2737057"
|
|
342
|
+
ry="2.8935699" />
|
|
343
|
+
<rect
|
|
344
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:1.14574;stroke-linejoin:round;stroke-dasharray:none"
|
|
345
|
+
id="rect258"
|
|
346
|
+
width="52.693195"
|
|
347
|
+
height="5.7871399"
|
|
348
|
+
x="3849.27"
|
|
349
|
+
y="503.59286"
|
|
350
|
+
rx="3.2737057"
|
|
351
|
+
ry="2.8935699" />
|
|
352
|
+
</g>
|
|
353
|
+
<g
|
|
354
|
+
id="g260"
|
|
355
|
+
transform="matrix(1.1169639,0,0,1.1169639,-447.0429,107.59801)"
|
|
356
|
+
clip-path="none"
|
|
357
|
+
style="fill:#f6edf4">
|
|
358
|
+
<text
|
|
359
|
+
xml:space="preserve"
|
|
360
|
+
style="font-size:7.85689px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;text-align:end;writing-mode:lr-tb;direction:ltr;text-anchor:end;fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:1.14574;stroke-linejoin:round;stroke-dasharray:none"
|
|
361
|
+
x="4003.2441"
|
|
362
|
+
y="509.30618"
|
|
363
|
+
id="text258"><tspan
|
|
364
|
+
sodipodi:role="line"
|
|
365
|
+
id="tspan258"
|
|
366
|
+
style="text-align:end;text-anchor:end;fill:#f6edf4;stroke:none;stroke-width:1.14575"
|
|
367
|
+
x="4003.2441"
|
|
368
|
+
y="509.30618">[ ]( )</tspan></text>
|
|
369
|
+
<rect
|
|
370
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:1.14574;stroke-linejoin:round;stroke-dasharray:none"
|
|
371
|
+
id="rect259"
|
|
372
|
+
width="78.986603"
|
|
373
|
+
height="5.7871399"
|
|
374
|
+
x="3916.0693"
|
|
375
|
+
y="503.59286"
|
|
376
|
+
rx="3.2737057"
|
|
377
|
+
ry="2.8935699" />
|
|
378
|
+
<rect
|
|
379
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:1.14574;stroke-linejoin:round;stroke-dasharray:none"
|
|
380
|
+
id="rect260"
|
|
381
|
+
width="52.693195"
|
|
382
|
+
height="5.7871399"
|
|
383
|
+
x="3849.27"
|
|
384
|
+
y="503.59286"
|
|
385
|
+
rx="3.2737057"
|
|
386
|
+
ry="2.8935699" />
|
|
387
|
+
</g>
|
|
388
|
+
</g>
|
|
389
|
+
<path
|
|
390
|
+
id="path868-4"
|
|
391
|
+
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.794;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
392
|
+
d="m 364.04798,60.816617 c -4.17468,0 -9.3419,2.439449 -13.98038,5.312221 V 126.0145 c 4.63848,-2.8729 9.8057,-5.31196 13.98038,-5.31196 10.15225,0 16.02692,14.42829 26.17956,14.42829 10.15238,0 16.0264,-14.42829 26.17891,-14.42829 10.15239,0 16.02679,14.42829 26.17918,14.42829 10.15251,0 16.0273,-14.42829 26.17994,-14.42829 10.15239,0 15.90374,14.61409 26.17905,14.42829 7.11485,-0.12912 16.92855,-7.62616 22.29216,-12.22604 v -59.8854 c -5.36361,4.599742 -15.17744,12.097434 -22.29216,12.226037 -10.27518,0.185674 -16.02666,-14.42881 -26.17905,-14.42881 -10.15264,0 -16.02743,14.42881 -26.17994,14.42881 -10.15239,0 -16.02679,-14.42881 -26.17918,-14.42881 -10.15251,0 -16.02653,14.42881 -26.17891,14.42881 -10.15277,0 -16.02731,-14.42881 -26.17956,-14.42881 z"
|
|
393
|
+
sodipodi:nodetypes="sccssssssccssssss" />
|
|
394
|
+
</g>
|
|
395
|
+
</svg>
|
|
Binary file
|