jekyll-theme-centos 2.52.0.beta.3 → 2.52.0.beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
Binary file
|
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="640"
|
|
6
|
+
height="361.86948"
|
|
7
|
+
viewBox="0 0 169.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-alert.svg"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview1"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#000000"
|
|
20
|
+
borderopacity="0.25"
|
|
21
|
+
inkscape:showpageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
inkscape:deskcolor="#d1d1d1"
|
|
25
|
+
inkscape:document-units="px"
|
|
26
|
+
inkscape:zoom="1"
|
|
27
|
+
inkscape:cx="319.5"
|
|
28
|
+
inkscape:cy="180.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="clipPath979">
|
|
41
|
+
<path
|
|
42
|
+
id="path980"
|
|
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 3939.5211,1446.2524 c -5.0604,0 -11.3239,2.9571 -16.9463,6.4394 v 72.5902 c 5.6224,-3.4823 11.8859,-6.4389 16.9463,-6.4389 12.3061,0 19.4271,17.4894 31.7334,17.4894 12.3063,0 19.4267,-17.4894 31.733,-17.4894 12.3063,0 19.4268,17.4894 31.7328,17.4894 12.3066,0 19.4276,-17.4894 31.7342,-17.4894 12.3063,0 19.2778,17.7145 31.733,17.4894 8.6241,-0.1559 20.5198,-9.2441 27.0214,-14.8198 v -72.5902 c -6.5016,5.5757 -18.3973,14.6639 -27.0214,14.8198 -12.455,0.2251 -19.4267,-17.4899 -31.733,-17.4899 -12.3066,0 -19.4276,17.4899 -31.7342,17.4899 -12.306,0 -19.4265,-17.4899 -31.7328,-17.4899 -12.3063,0 -19.4267,17.4899 -31.733,17.4899 -12.3066,0 -19.4273,-17.4899 -31.7334,-17.4899 z"
|
|
45
|
+
sodipodi:nodetypes="sccssssssccssssss" />
|
|
46
|
+
</clipPath>
|
|
47
|
+
<clipPath
|
|
48
|
+
clipPathUnits="userSpaceOnUse"
|
|
49
|
+
id="clipPath885">
|
|
50
|
+
<path
|
|
51
|
+
id="path885"
|
|
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="clipPath883">
|
|
59
|
+
<path
|
|
60
|
+
id="path883"
|
|
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="clipPath891-7">
|
|
68
|
+
<path
|
|
69
|
+
id="path891-5"
|
|
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 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"
|
|
72
|
+
sodipodi:nodetypes="sccssssssccssssss" />
|
|
73
|
+
</clipPath>
|
|
74
|
+
<clipPath
|
|
75
|
+
clipPathUnits="userSpaceOnUse"
|
|
76
|
+
id="clipPath883-7">
|
|
77
|
+
<path
|
|
78
|
+
id="path883-5"
|
|
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
|
+
</defs>
|
|
84
|
+
<g
|
|
85
|
+
inkscape:label="Layer 1"
|
|
86
|
+
inkscape:groupmode="layer"
|
|
87
|
+
id="layer1"
|
|
88
|
+
transform="translate(-155.35497,-80.246895)">
|
|
89
|
+
<rect
|
|
90
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.23899999;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
91
|
+
id="alert"
|
|
92
|
+
width="169.33333"
|
|
93
|
+
height="95.744629"
|
|
94
|
+
x="155.35497"
|
|
95
|
+
y="80.246895"
|
|
96
|
+
inkscape:export-filename="page-with-alert.png"
|
|
97
|
+
inkscape:export-xdpi="96"
|
|
98
|
+
inkscape:export-ydpi="96" />
|
|
99
|
+
<g
|
|
100
|
+
id="g1"
|
|
101
|
+
transform="matrix(1.2911918,0,0,1.2911918,-45.237943,-23.237102)">
|
|
102
|
+
<g
|
|
103
|
+
id="g922"
|
|
104
|
+
clip-path="url(#clipPath979)"
|
|
105
|
+
transform="matrix(0.63892935,0,0,0.63892935,-2350.0552,-835.50818)">
|
|
106
|
+
<g
|
|
107
|
+
id="g915"
|
|
108
|
+
transform="translate(-89.049133,-136.55941)">
|
|
109
|
+
<rect
|
|
110
|
+
style="fill:#ecdce8;fill-opacity:1;stroke:none;stroke-width:0.298078;stroke-opacity:1"
|
|
111
|
+
id="rect88-5-2-4"
|
|
112
|
+
width="167.48444"
|
|
113
|
+
height="14.393218"
|
|
114
|
+
x="4029.1987"
|
|
115
|
+
y="1609.4308"
|
|
116
|
+
rx="1.3229167"
|
|
117
|
+
ry="1.3229167"
|
|
118
|
+
clip-path="url(#clipPath885)"
|
|
119
|
+
transform="translate(0,-25.26771)" />
|
|
120
|
+
<path
|
|
121
|
+
id="rect885"
|
|
122
|
+
clip-path="url(#clipPath885)"
|
|
123
|
+
style="fill:#f6edf4;stroke-width:0.298078"
|
|
124
|
+
transform="translate(2.6458335,-25.26771)"
|
|
125
|
+
d="m 4029.1987,1609.4308 h 163.5322 c 0.7329,0 1.3229,0.59 1.3229,1.3229 v 11.7474 c 0,0.7329 -0.59,1.3229 -1.3229,1.3229 h -163.5322 z"
|
|
126
|
+
sodipodi:nodetypes="csssscc" />
|
|
127
|
+
<rect
|
|
128
|
+
style="fill:none;fill-opacity:1;stroke:#ecdce8;stroke-width:0.298078;stroke-opacity:1"
|
|
129
|
+
id="rect886"
|
|
130
|
+
width="167.48444"
|
|
131
|
+
height="14.393218"
|
|
132
|
+
x="4029.1987"
|
|
133
|
+
y="1609.4308"
|
|
134
|
+
rx="1.3229167"
|
|
135
|
+
ry="1.3229167"
|
|
136
|
+
clip-path="url(#clipPath885)"
|
|
137
|
+
transform="translate(0,-25.26771)" />
|
|
138
|
+
<path
|
|
139
|
+
d="m 4038.0455,1594.0055 c 1.4615,0 2.646,-1.1845 2.646,-2.646 0,-1.4614 -1.1845,-2.6457 -2.646,-2.6457 -1.4612,0 -2.6457,1.1843 -2.6457,2.6457 0,1.4615 1.1845,2.646 2.6457,2.646 z m -0.3307,-3.6381 c 0,-0.183 0.1483,-0.3307 0.3307,-0.3307 0.1831,0 0.3309,0.1482 0.3309,0.3307 0,0.183 -0.1482,0.3307 -0.3309,0.3307 -0.1828,0 -0.3307,-0.1482 -0.3307,-0.3307 z m -0.083,0.6614 h 0.4961 c 0.1376,0 0.2481,0.1112 0.2481,0.2482 v 0.9093 h 0.083 c 0.1377,0 0.248,0.1112 0.248,0.2482 0,0.1376 -0.1112,0.2479 -0.248,0.2479 h -0.8268 c -0.1376,0 -0.2479,-0.1112 -0.2479,-0.2479 0,-0.1377 0.1112,-0.2482 0.2479,-0.2482 h 0.248 v -0.6614 h -0.248 c -0.1376,0 -0.2479,-0.1112 -0.2479,-0.2479 0,-0.1377 0.1112,-0.2482 0.2479,-0.2482 z"
|
|
140
|
+
id="path1-35-1"
|
|
141
|
+
style="fill:#d9b9d1;stroke-width:0.0103352" />
|
|
142
|
+
<rect
|
|
143
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
144
|
+
id="rect276-5-1-7-0"
|
|
145
|
+
width="37.78056"
|
|
146
|
+
height="1.9886599"
|
|
147
|
+
x="4045.158"
|
|
148
|
+
y="1615.6331"
|
|
149
|
+
ry="0.37640932"
|
|
150
|
+
rx="0.37640932"
|
|
151
|
+
clip-path="url(#clipPath883)"
|
|
152
|
+
transform="translate(0,-25.26771)" />
|
|
153
|
+
</g>
|
|
154
|
+
<rect
|
|
155
|
+
style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.298078;stroke-opacity:1"
|
|
156
|
+
id="rect887"
|
|
157
|
+
width="167.48444"
|
|
158
|
+
height="14.393218"
|
|
159
|
+
x="4029.1987"
|
|
160
|
+
y="1609.4308"
|
|
161
|
+
rx="1.6035736"
|
|
162
|
+
ry="1.6035736"
|
|
163
|
+
clip-path="url(#clipPath885)"
|
|
164
|
+
transform="translate(-89.049133,-124.93313)" />
|
|
165
|
+
<path
|
|
166
|
+
id="rect889"
|
|
167
|
+
clip-path="url(#clipPath885)"
|
|
168
|
+
style="fill:#ecdce8;stroke-width:0.298078"
|
|
169
|
+
transform="matrix(1,0,0,0.99600536,-86.4033,-118.57509)"
|
|
170
|
+
d="m 4029.1987,1609.6312 h 163.2514 c 0.8884,0 1.6036,0.7181 1.6036,1.61 v 10.9728 c 0,0.8919 -0.7152,1.61 -1.6036,1.61 h -163.2514 z"
|
|
171
|
+
sodipodi:nodetypes="csssscc" />
|
|
172
|
+
<rect
|
|
173
|
+
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.298078;stroke-opacity:1"
|
|
174
|
+
id="rect890"
|
|
175
|
+
width="167.48444"
|
|
176
|
+
height="14.393218"
|
|
177
|
+
x="4029.1987"
|
|
178
|
+
y="1609.4308"
|
|
179
|
+
rx="1.3229167"
|
|
180
|
+
ry="1.3229167"
|
|
181
|
+
clip-path="url(#clipPath885)"
|
|
182
|
+
transform="translate(-89.049133,-124.93313)" />
|
|
183
|
+
<rect
|
|
184
|
+
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
185
|
+
id="rect891"
|
|
186
|
+
width="37.78056"
|
|
187
|
+
height="1.9886599"
|
|
188
|
+
x="4045.158"
|
|
189
|
+
y="1615.6331"
|
|
190
|
+
ry="0.37640932"
|
|
191
|
+
rx="0.37640932"
|
|
192
|
+
clip-path="url(#clipPath883)"
|
|
193
|
+
transform="translate(-89.049133,-124.93313)" />
|
|
194
|
+
<path
|
|
195
|
+
d="m 3804.8999,1627.8351 c 0.089,0 0.171,0.049 0.2134,0.1274 l 1.3097,2.4253 c 0.041,0.075 0.039,0.1662 0,0.2395 -0.044,0.073 -0.1231,0.1183 -0.2086,0.1183 h -2.6193 c -0.086,0 -0.165,-0.045 -0.2087,-0.1183 -0.044,-0.073 -0.045,-0.1643 0,-0.2395 l 1.3097,-2.4253 c 0.043,-0.078 0.1243,-0.1274 0.2134,-0.1274 z m 0,2.1343 c -0.1073,0 -0.194,0.087 -0.194,0.1941 0,0.1073 0.087,0.194 0.194,0.194 0.1073,0 0.194,-0.087 0.194,-0.194 0,-0.1074 -0.087,-0.1941 -0.194,-0.1941 z m 0,-1.1641 c -0.1103,0 -0.1983,0.094 -0.1904,0.2043 l 0.045,0.6306 c 0.01,0.076 0.069,0.1352 0.1449,0.1352 0.076,0 0.1394,-0.059 0.1449,-0.1352 l 0.045,-0.6306 c 0.01,-0.1103 -0.079,-0.2043 -0.1904,-0.2043 z"
|
|
196
|
+
id="path1-6"
|
|
197
|
+
style="fill:#a14f8c;stroke-width:0.00606336;fill-opacity:1"
|
|
198
|
+
clip-path="url(#clipPath891-7)"
|
|
199
|
+
transform="matrix(1.8181299,0,0,1.8181299,-2968.8114,-1470.5673)" />
|
|
200
|
+
<g
|
|
201
|
+
id="g5"
|
|
202
|
+
transform="translate(0,-1.5049086)">
|
|
203
|
+
<rect
|
|
204
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
205
|
+
id="rect891-6"
|
|
206
|
+
width="111.06383"
|
|
207
|
+
height="1.9886475"
|
|
208
|
+
x="4045.158"
|
|
209
|
+
y="1615.6331"
|
|
210
|
+
ry="0.37640932"
|
|
211
|
+
rx="0.37640932"
|
|
212
|
+
clip-path="url(#clipPath883-7)"
|
|
213
|
+
transform="translate(-105.1574,-146.60573)" />
|
|
214
|
+
<rect
|
|
215
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
216
|
+
id="rect1"
|
|
217
|
+
width="111.06383"
|
|
218
|
+
height="1.9886475"
|
|
219
|
+
x="4045.158"
|
|
220
|
+
y="1615.6331"
|
|
221
|
+
ry="0.37640932"
|
|
222
|
+
rx="0.37640932"
|
|
223
|
+
clip-path="url(#clipPath883-7)"
|
|
224
|
+
transform="translate(-105.1574,-141.87519)" />
|
|
225
|
+
<rect
|
|
226
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
227
|
+
id="rect2"
|
|
228
|
+
width="71.455452"
|
|
229
|
+
height="1.9886475"
|
|
230
|
+
x="4045.158"
|
|
231
|
+
y="1615.6331"
|
|
232
|
+
ry="0.37640932"
|
|
233
|
+
rx="0.37640932"
|
|
234
|
+
clip-path="url(#clipPath883-7)"
|
|
235
|
+
transform="translate(-105.1574,-137.14465)" />
|
|
236
|
+
</g>
|
|
237
|
+
<g
|
|
238
|
+
id="g6"
|
|
239
|
+
transform="translate(0,0.43117514)">
|
|
240
|
+
<rect
|
|
241
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
242
|
+
id="rect3"
|
|
243
|
+
width="111.06383"
|
|
244
|
+
height="1.9886475"
|
|
245
|
+
x="4045.158"
|
|
246
|
+
y="1615.6331"
|
|
247
|
+
ry="0.37640932"
|
|
248
|
+
rx="0.37640932"
|
|
249
|
+
clip-path="url(#clipPath883-7)"
|
|
250
|
+
transform="translate(-105.1574,-111.64783)" />
|
|
251
|
+
<rect
|
|
252
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
253
|
+
id="rect4"
|
|
254
|
+
width="111.06383"
|
|
255
|
+
height="1.9886475"
|
|
256
|
+
x="4045.158"
|
|
257
|
+
y="1615.6331"
|
|
258
|
+
ry="0.37640932"
|
|
259
|
+
rx="0.37640932"
|
|
260
|
+
clip-path="url(#clipPath883-7)"
|
|
261
|
+
transform="translate(-105.1574,-106.91729)" />
|
|
262
|
+
<rect
|
|
263
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
264
|
+
id="rect5"
|
|
265
|
+
width="71.455452"
|
|
266
|
+
height="1.9886475"
|
|
267
|
+
x="4045.158"
|
|
268
|
+
y="1615.6331"
|
|
269
|
+
ry="0.37640932"
|
|
270
|
+
rx="0.37640932"
|
|
271
|
+
clip-path="url(#clipPath883-7)"
|
|
272
|
+
transform="translate(-105.1574,-102.18675)" />
|
|
273
|
+
</g>
|
|
274
|
+
<g
|
|
275
|
+
id="g917"
|
|
276
|
+
transform="translate(-89.049133,-109.86725)">
|
|
277
|
+
<rect
|
|
278
|
+
style="fill:#c795ba;fill-opacity:1;stroke:none;stroke-width:0.298078;stroke-opacity:1"
|
|
279
|
+
id="rect912"
|
|
280
|
+
width="167.48444"
|
|
281
|
+
height="14.393218"
|
|
282
|
+
x="4029.1987"
|
|
283
|
+
y="1609.4308"
|
|
284
|
+
rx="1.3229167"
|
|
285
|
+
ry="1.3229167"
|
|
286
|
+
clip-path="url(#clipPath885)"
|
|
287
|
+
transform="translate(0,21.828127)" />
|
|
288
|
+
<rect
|
|
289
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:#ecdce8;stroke-width:0.298078;stroke-opacity:1"
|
|
290
|
+
id="rect913"
|
|
291
|
+
width="164.85507"
|
|
292
|
+
height="14.393188"
|
|
293
|
+
x="4029.1987"
|
|
294
|
+
y="1609.4308"
|
|
295
|
+
rx="1.3229167"
|
|
296
|
+
ry="1.3229167"
|
|
297
|
+
clip-path="url(#clipPath885)"
|
|
298
|
+
transform="translate(2.6458335,21.828127)" />
|
|
299
|
+
<rect
|
|
300
|
+
style="fill:none;fill-opacity:1;stroke:#ecdce8;stroke-width:0.298078;stroke-opacity:1"
|
|
301
|
+
id="rect914"
|
|
302
|
+
width="167.48444"
|
|
303
|
+
height="14.393218"
|
|
304
|
+
x="4029.1987"
|
|
305
|
+
y="1609.4308"
|
|
306
|
+
rx="1.3229167"
|
|
307
|
+
ry="1.3229167"
|
|
308
|
+
clip-path="url(#clipPath885)"
|
|
309
|
+
transform="translate(0,21.828127)" />
|
|
310
|
+
<rect
|
|
311
|
+
style="fill:#ecdce8;fill-opacity:1;stroke-width:0.0958719;stroke-linecap:round;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
312
|
+
id="rect915"
|
|
313
|
+
width="37.78056"
|
|
314
|
+
height="1.9886599"
|
|
315
|
+
x="4045.158"
|
|
316
|
+
y="1615.6331"
|
|
317
|
+
ry="0.37640932"
|
|
318
|
+
rx="0.37640932"
|
|
319
|
+
clip-path="url(#clipPath883)"
|
|
320
|
+
transform="translate(0,21.828121)" />
|
|
321
|
+
<path
|
|
322
|
+
d="m 4038.0456,1641.1014 c -1.4614,0 -2.6458,-1.1845 -2.6458,-2.6459 0,-1.4614 1.1844,-2.6458 2.6458,-2.6458 1.4614,0 2.6459,1.1844 2.6459,2.6458 0,1.4614 -1.1845,2.6459 -2.6459,2.6459 z m 1.2196,-3.7858 c -0.1106,-0.081 -0.2656,-0.056 -0.3462,0.055 l -1.2341,1.6971 -0.5384,-0.5385 c -0.097,-0.097 -0.2543,-0.097 -0.3504,0 -0.096,0.097 -0.097,0.2543 0,0.3504 l 0.7441,0.7441 c 0.052,0.052 0.122,0.078 0.1943,0.072 0.072,-0.01 0.1385,-0.042 0.1809,-0.1013 l 1.4046,-1.9327 c 0.081,-0.1106 0.056,-0.2656 -0.055,-0.3462 z"
|
|
323
|
+
id="path1-54"
|
|
324
|
+
style="fill:#c795ba;fill-opacity:1;stroke-width:0.0103353" />
|
|
325
|
+
</g>
|
|
326
|
+
<g
|
|
327
|
+
id="g921"
|
|
328
|
+
transform="translate(0,-137.4324)">
|
|
329
|
+
<rect
|
|
330
|
+
style="fill:#f6edf4;fill-opacity:1;stroke:none;stroke-width:0.167923;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
331
|
+
id="rect920"
|
|
332
|
+
width="167.48431"
|
|
333
|
+
height="16.320366"
|
|
334
|
+
x="3940.1497"
|
|
335
|
+
y="1565.6255" />
|
|
336
|
+
<path
|
|
337
|
+
d="m 4024.8922,1570.4721 v 0.6252 c 0,0.1381 -0.112,0.2501 -0.2501,0.2501 h -4.0012 c -0.1381,0 -0.2501,-0.112 -0.2501,-0.2501 v -0.6252 c 0,-0.1381 0.112,-0.25 0.2501,-0.25 h 4.0012 c 0.1381,0 0.2501,0.1119 0.2501,0.25 z m -4.5014,2.0006 v 0.6252 c 0,0.1381 0.112,0.2501 0.2501,0.2501 h 6.5019 c 0.1382,0 0.2501,-0.112 0.2501,-0.2501 v -0.6252 c 0,-0.1381 -0.1119,-0.25 -0.2501,-0.25 h -6.5019 c -0.1381,0 -0.2501,0.1119 -0.2501,0.25 z m 0.2501,4.8765 h 6.5019 c 0.1382,0 0.2501,-0.112 0.2501,-0.2501 v -0.6252 c 0,-0.1381 -0.1119,-0.25 -0.2501,-0.25 h -6.5019 c -0.1381,0 -0.2501,0.1119 -0.2501,0.25 v 0.6252 c 0,0.1381 0.112,0.2501 0.2501,0.2501 z m 4.0012,-3.1259 h -4.0012 c -0.1381,0 -0.2501,0.1119 -0.2501,0.25 v 0.6252 c 0,0.1381 0.112,0.2501 0.2501,0.2501 h 4.0012 c 0.1381,0 0.2501,-0.112 0.2501,-0.2501 v -0.6252 c 0,-0.1381 -0.112,-0.25 -0.2501,-0.25 z"
|
|
338
|
+
id="path920"
|
|
339
|
+
style="fill:#ecdce8;stroke-width:0.0156297" />
|
|
340
|
+
</g>
|
|
341
|
+
</g>
|
|
342
|
+
<path
|
|
343
|
+
id="path868-4"
|
|
344
|
+
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.614936;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
345
|
+
d="m 167.0204,88.444115 c -3.2332,0 -7.2351,1.8893 -10.8275,4.1142 v 46.380145 c 3.5924,-2.225 7.5943,-4.114 10.8275,-4.114 7.8627,0 12.4125,11.1744 20.2755,11.1744 7.8628,0 12.4121,-11.1744 20.275,-11.1744 7.8628,0 12.4124,11.1744 20.2752,11.1744 7.8629,0 12.4128,-11.1744 20.2758,-11.1744 7.8628,0 12.3171,11.3183 20.2751,11.1744 5.5103,-0.1 13.1108,-5.9063 17.2648,-9.4688 V 90.150115 c -4.154,3.5624 -11.7546,9.3692 -17.2648,9.4688 -7.9579,0.1438 -12.4123,-11.1748 -20.2751,-11.1748 -7.863,0 -12.4129,11.1748 -20.2758,11.1748 -7.8628,0 -12.4124,-11.1748 -20.2752,-11.1748 -7.8629,0 -12.4122,11.1748 -20.275,11.1748 -7.8631,0 -12.4128,-11.1748 -20.2755,-11.1748 z"
|
|
346
|
+
sodipodi:nodetypes="sccssssssccssssss" />
|
|
347
|
+
<path
|
|
348
|
+
id="path11"
|
|
349
|
+
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.614742;stroke-linejoin:bevel;stroke-dasharray:1.22948, 1.22948;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
|
|
350
|
+
d="m 156.1929,80.835868 v 9.653944 c 3.5924,-2.2249 7.5943,-4.1139 10.8275,-4.1139 7.8627,0 12.4125,11.1744 20.2755,11.1744 7.8628,0 12.4121,-11.1744 20.275,-11.1744 7.8628,0 12.4124,11.1744 20.2752,11.1744 7.8629,0 12.4128,-11.1744 20.2758,-11.1744 7.8628,0 12.3171,11.318201 20.2751,11.1744 5.5103,-0.1 13.1108,-5.9063 17.2648,-9.4688 v -7.245644"
|
|
351
|
+
sodipodi:nodetypes="ccsssssscc" />
|
|
352
|
+
<path
|
|
353
|
+
id="path12"
|
|
354
|
+
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.614742;stroke-linejoin:bevel;stroke-dasharray:1.22949, 1.22949;stroke-dashoffset:0;paint-order:fill markers stroke;stop-color:#000000"
|
|
355
|
+
d="m 285.6618,153.6085 v -14.57675 c -4.154,3.5624 -11.7546,9.3691 -17.2648,9.4688 -7.9579,0.1437 -12.4123,-11.1749 -20.2751,-11.1749 -7.863,0 -12.4129,11.1749 -20.2758,11.1749 -7.8628,0 -12.4124,-11.1749 -20.2752,-11.1749 -7.8629,0 -12.4122,11.1749 -20.275,11.1749 -7.8631,0 -12.4128,-11.1749 -20.2755,-11.1749 -3.2332,0 -7.2351,1.8894 -10.8275,4.1143 v 12.16855"
|
|
356
|
+
sodipodi:nodetypes="ccsssssscc" />
|
|
357
|
+
</g>
|
|
358
|
+
</g>
|
|
359
|
+
</svg>
|
|
Binary file
|