jekyll-theme-centos 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/_config.yml +196 -0
- data/_data/base/announcement_schema.yml +49 -0
- data/_data/base/artwork_schema.yml +46 -0
- data/_data/base/backtotop_schema.yml +59 -0
- data/_data/base/bits.yml +96 -0
- data/_data/base/bits_schema.yml +185 -0
- data/_data/base/breadcrumb_schema.yml +27 -0
- data/_data/base/breakingnews_schema.yml +67 -0
- data/_data/base/card_schema.yml +146 -0
- data/_data/base/color.yml +1042 -0
- data/_data/base/color_schema.yml +1036 -0
- data/_data/base/configuration_variables_schema.yml +42 -0
- data/_data/base/content.yml +2 -0
- data/_data/base/content_schema.yml +26 -0
- data/_data/base/copyright.yml +12 -0
- data/_data/base/copyright_schema.yml +74 -0
- data/_data/base/copyvalue_schema.yml +49 -0
- data/_data/base/datatable_schema.yml +57 -0
- data/_data/base/event_schema.yml +130 -0
- data/_data/base/fontawesome_schema.yml +62 -0
- data/_data/base/footer.yml +9 -0
- data/_data/base/footer_schema.yml +55 -0
- data/_data/base/head_schema.yml +19 -0
- data/_data/base/heading_anchor.yml +2 -0
- data/_data/base/heading_anchor_schema.yml +37 -0
- data/_data/base/highlight_schema.yml +98 -0
- data/_data/base/image_schema.yml +34 -0
- data/_data/base/languages.yml +186 -0
- data/_data/base/link_schema.yml +187 -0
- data/_data/base/locales_schema.yml +158 -0
- data/_data/base/navbar.yml +20 -0
- data/_data/base/navbar_schema.yml +129 -0
- data/_data/base/navindex_schema.yml +67 -0
- data/_data/base/ogp.yml +24 -0
- data/_data/base/ogp_schema.yml +192 -0
- data/_data/base/project.yml +37 -0
- data/_data/base/project_schema.yml +124 -0
- data/_data/base/script_schema.yml +41 -0
- data/_data/base/shortcut_schema.yml +74 -0
- data/_data/base/social.yml +26 -0
- data/_data/base/social_schema.yml +57 -0
- data/_data/base/sponsors.yml +41 -0
- data/_data/base/sponsors_schema.yml +73 -0
- data/_data/base/title_schema.yml +49 -0
- data/_data/base/toc_schema.yml +114 -0
- data/_data/download/cards.yml +309 -0
- data/_data/download/navbar.yml +11 -0
- data/_includes/base/announcement.html.liquid +65 -0
- data/_includes/base/artwork.html.liquid +63 -0
- data/_includes/base/backtotop.html.liquid +73 -0
- data/_includes/base/bits.html.liquid +152 -0
- data/_includes/base/breadcrumb.html.liquid +77 -0
- data/_includes/base/breakingnews.html.liquid +90 -0
- data/_includes/base/card.html.liquid +110 -0
- data/_includes/base/color-table.html.liquid +33 -0
- data/_includes/base/configuration_variables-nested.html.liquid +98 -0
- data/_includes/base/configuration_variables.html.liquid +98 -0
- data/_includes/base/content.html.liquid +7 -0
- data/_includes/base/copyright.html.liquid +70 -0
- data/_includes/base/copyvalue.html.liquid +82 -0
- data/_includes/base/datatable.html.liquid +83 -0
- data/_includes/base/event.html.liquid +105 -0
- data/_includes/base/fontawesome.html.liquid +91 -0
- data/_includes/base/footer.html.liquid +69 -0
- data/_includes/base/head.html.liquid +135 -0
- data/_includes/base/heading_anchor.html.liquid +67 -0
- data/_includes/base/highlight.html.liquid +84 -0
- data/_includes/base/image.html.liquid +42 -0
- data/_includes/base/link.html.liquid +129 -0
- data/_includes/base/locales.html.liquid +78 -0
- data/_includes/base/navbar.html.liquid +121 -0
- data/_includes/base/navindex.html.liquid +200 -0
- data/_includes/base/ogp.html.liquid +144 -0
- data/_includes/base/project.html.liquid +104 -0
- data/_includes/base/shortcut.html.liquid +77 -0
- data/_includes/base/social.html.liquid +76 -0
- data/_includes/base/sponsors-cards.html.liquid +69 -0
- data/_includes/base/sponsors-carousel.html.liquid +91 -0
- data/_includes/base/title.html.liquid +65 -0
- data/_includes/base/toc-generator.html.liquid +189 -0
- data/_includes/base/toc.html.liquid +95 -0
- data/_includes/download/cards-body-commands.html +7 -0
- data/_includes/download/cards-body-convert.html +10 -0
- data/_includes/download/cards-body-doc.html +9 -0
- data/_includes/download/cards-body-documentation.html +11 -0
- data/_includes/download/cards-body-eol.html +16 -0
- data/_includes/download/cards-body-mirrors.html +8 -0
- data/_includes/download/cards-body-screenshot.html +26 -0
- data/_includes/download/cards-body-screenshots.html +32 -0
- data/_includes/download/cards-body.html +8 -0
- data/_includes/download/cards-footer.html +3 -0
- data/_includes/download/cards-header-commands.html +8 -0
- data/_includes/download/cards-header-convert.html +8 -0
- data/_includes/download/cards-header-doc.html +8 -0
- data/_includes/download/cards-header-documentation.html +8 -0
- data/_includes/download/cards-header-eol.html +8 -0
- data/_includes/download/cards-header-mirrors.html +13 -0
- data/_includes/download/cards-header-screenshot.html +8 -0
- data/_includes/download/cards-header-screenshots.html +8 -0
- data/_includes/download/cards-header.html +13 -0
- data/_includes/download/cards.html +120 -0
- data/_layouts/base/default.html +68 -0
- data/_layouts/download/cards.html +7 -0
- data/_layouts/download/default.html +7 -0
- data/_layouts/people/default.html +68 -0
- data/_sass/base/_customization.scss +331 -0
- data/_sass/base/_light-dark.scss +10 -0
- data/_sass/base/_maps.scss +104 -0
- data/_sass/base/_variables.scss +232 -0
- data/_sass/bootstrap/_accordion.scss +153 -0
- data/_sass/bootstrap/_alert.scss +68 -0
- data/_sass/bootstrap/_badge.scss +38 -0
- data/_sass/bootstrap/_breadcrumb.scss +40 -0
- data/_sass/bootstrap/_button-group.scss +147 -0
- data/_sass/bootstrap/_buttons.scss +216 -0
- data/_sass/bootstrap/_card.scss +238 -0
- data/_sass/bootstrap/_carousel.scss +226 -0
- data/_sass/bootstrap/_close.scss +66 -0
- data/_sass/bootstrap/_containers.scss +41 -0
- data/_sass/bootstrap/_dropdown.scss +250 -0
- data/_sass/bootstrap/_forms.scss +9 -0
- data/_sass/bootstrap/_functions.scss +302 -0
- data/_sass/bootstrap/_grid.scss +39 -0
- data/_sass/bootstrap/_helpers.scss +12 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_list-group.scss +199 -0
- data/_sass/bootstrap/_maps.scss +174 -0
- data/_sass/bootstrap/_mixins.scss +42 -0
- data/_sass/bootstrap/_modal.scss +240 -0
- data/_sass/bootstrap/_nav.scss +197 -0
- data/_sass/bootstrap/_navbar.scss +289 -0
- data/_sass/bootstrap/_offcanvas.scss +147 -0
- data/_sass/bootstrap/_pagination.scss +109 -0
- data/_sass/bootstrap/_placeholders.scss +51 -0
- data/_sass/bootstrap/_popover.scss +196 -0
- data/_sass/bootstrap/_progress.scss +68 -0
- data/_sass/bootstrap/_reboot.scss +617 -0
- data/_sass/bootstrap/_root.scss +187 -0
- data/_sass/bootstrap/_spinners.scss +86 -0
- data/_sass/bootstrap/_tables.scss +171 -0
- data/_sass/bootstrap/_toasts.scss +73 -0
- data/_sass/bootstrap/_tooltip.scss +119 -0
- data/_sass/bootstrap/_transitions.scss +27 -0
- data/_sass/bootstrap/_type.scss +106 -0
- data/_sass/bootstrap/_utilities.scss +806 -0
- data/_sass/bootstrap/_variables-dark.scss +102 -0
- data/_sass/bootstrap/_variables.scss +1753 -0
- data/_sass/bootstrap/bootstrap-grid.scss +62 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
- data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
- data/_sass/bootstrap/bootstrap.scss +52 -0
- data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
- data/_sass/bootstrap/forms/_form-check.scss +189 -0
- data/_sass/bootstrap/forms/_form-control.scss +214 -0
- data/_sass/bootstrap/forms/_form-range.scss +91 -0
- data/_sass/bootstrap/forms/_form-select.scss +80 -0
- data/_sass/bootstrap/forms/_form-text.scss +11 -0
- data/_sass/bootstrap/forms/_input-group.scss +132 -0
- data/_sass/bootstrap/forms/_labels.scss +36 -0
- data/_sass/bootstrap/forms/_validation.scss +12 -0
- data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
- data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
- data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
- data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
- data/_sass/bootstrap/helpers/_position.scss +36 -0
- data/_sass/bootstrap/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap/helpers/_stacks.scss +15 -0
- data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap/helpers/_vr.scss +8 -0
- data/_sass/bootstrap/mixins/_alert.scss +18 -0
- data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
- data/_sass/bootstrap/mixins/_banner.scss +7 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap/mixins/_buttons.scss +70 -0
- data/_sass/bootstrap/mixins/_caret.scss +69 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
- data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
- data/_sass/bootstrap/mixins/_container.scss +11 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_forms.scss +163 -0
- data/_sass/bootstrap/mixins/_gradients.scss +47 -0
- data/_sass/bootstrap/mixins/_grid.scss +151 -0
- data/_sass/bootstrap/mixins/_image.scss +16 -0
- data/_sass/bootstrap/mixins/_list-group.scss +26 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_pagination.scss +10 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_utilities.scss +97 -0
- data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
- data/_sass/bootstrap/utilities/_api.scss +47 -0
- data/_sass/bootstrap/vendor/_rfs.scss +348 -0
- data/assets/css/base/stylesheet.min.scss +35 -0
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/favicon.svg +1 -0
- data/assets/img/anaconda-symbolic.svg +1 -0
- data/assets/img/anaconda.svg +1 -0
- data/assets/img/base/centos-colors.gpl +55 -0
- data/assets/img/base/example-ogp-image.svg +297 -0
- data/assets/img/base/example-sponsors-design.svg +226 -0
- data/assets/img/base/example-sponsors-logo-1.svg +120 -0
- data/assets/img/base/example-sponsors-logo-2.svg +116 -0
- data/assets/img/base/example-sponsors-logo-3.svg +123 -0
- data/assets/img/base/example-sponsors-logo-4.svg +116 -0
- data/assets/img/base/example-sponsors-logo-5.svg +116 -0
- data/assets/img/base/example-sponsors-logo-6.svg +116 -0
- data/assets/img/base/example-sponsors-logo-7.svg +116 -0
- data/assets/img/base/example-sponsors-logo-8.svg +110 -0
- data/assets/img/base/page-layout-default.svg +1217 -0
- data/assets/img/base/page-with-alert.svg +383 -0
- data/assets/img/base/page-with-announcement.svg +956 -0
- data/assets/img/base/page-with-artwork.svg +1009 -0
- data/assets/img/base/page-with-backtotop.svg +1009 -0
- data/assets/img/base/page-with-bits.svg +891 -0
- data/assets/img/base/page-with-breadcrumb.svg +676 -0
- data/assets/img/base/page-with-breakingnews.svg +957 -0
- data/assets/img/base/page-with-color.svg +57 -0
- data/assets/img/base/page-with-copyright.svg +1018 -0
- data/assets/img/base/page-with-copyvalue.svg +57 -0
- data/assets/img/base/page-with-datatable.svg +857 -0
- data/assets/img/base/page-with-event.svg +518 -0
- data/assets/img/base/page-with-fontawesome.svg +147 -0
- data/assets/img/base/page-with-footer.svg +1018 -0
- data/assets/img/base/page-with-heading.svg +57 -0
- data/assets/img/base/page-with-highlight.svg +86 -0
- data/assets/img/base/page-with-image.svg +57 -0
- data/assets/img/base/page-with-link.svg +57 -0
- data/assets/img/base/page-with-locales.svg +1009 -0
- data/assets/img/base/page-with-navbar.svg +958 -0
- data/assets/img/base/page-with-navindex.svg +279 -0
- data/assets/img/base/page-with-ogp.svg +401 -0
- data/assets/img/base/page-with-project.svg +423 -0
- data/assets/img/base/page-with-shortcut.svg +937 -0
- data/assets/img/base/page-with-social.svg +937 -0
- data/assets/img/base/page-with-sponsors.svg +937 -0
- data/assets/img/base/page-with-title.svg +584 -0
- data/assets/img/base/page-with-toc.svg +399 -0
- data/assets/img/base/screenshot-1200x600.svg +114 -0
- data/assets/img/centos-dynamicmsg-logo.svg +1 -0
- data/assets/img/centos-dynamicmsg-type.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
- data/assets/img/centos-gdm-whitelogo.svg +1 -0
- data/assets/img/centos-ipa-whiteheader.svg +1 -0
- data/assets/img/centos-logo-2bits.svg +1 -0
- data/assets/img/centos-logo.svg +1 -0
- data/assets/img/centos-message-logo.svg +1 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/centos-poweredby-logo.svg +1 -0
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +1 -0
- data/assets/img/centos-symbol.svg +1 -0
- data/assets/img/centos-type.svg +1 -0
- data/assets/img/centos-vertical-logo.svg +1 -0
- data/assets/img/centos-vertical-message-logo.svg +1 -0
- data/assets/img/centos-whitelogo.svg +1 -0
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-1.png +0 -0
- data/assets/img/download/distribution-release-screenshot-2.png +0 -0
- data/assets/img/download/distribution-release-screenshot-3.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
- data/assets/img/download/download.svg +421 -0
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/page.svg +900 -0
- data/assets/img/people/page.webp +0 -0
- data/assets/img/people/username.webp +0 -0
- data/assets/js/base/backtotop.js +20 -0
- data/assets/js/base/copyvalue.js +145 -0
- data/assets/js/base/datatable.js +41 -0
- data/assets/js/base/heading-anchor.js +108 -0
- data/assets/js/base/highlight.js +12 -0
- data/assets/js/base/init-tooltips.js +12 -0
- data/assets/js/bootstrap.bundle.js +6312 -0
- data/assets/js/bootstrap.bundle.js.map +1 -0
- data/assets/js/bootstrap.bundle.min.js +7 -0
- data/assets/js/bootstrap.bundle.min.js.map +1 -0
- data/assets/js/bootstrap.esm.js +4447 -0
- data/assets/js/bootstrap.esm.js.map +1 -0
- data/assets/js/bootstrap.esm.min.js +7 -0
- data/assets/js/bootstrap.esm.min.js.map +1 -0
- data/assets/js/bootstrap.js +4494 -0
- data/assets/js/bootstrap.js.map +1 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/bootstrap.min.js.map +1 -0
- data/site.webmanifest +11 -0
- metadata +611 -0
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="232.20497mm"
|
|
6
|
+
height="100.54167mm"
|
|
7
|
+
viewBox="0 0 232.20497 100.54167"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
|
11
|
+
sodipodi:docname="page-with-navindex.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.036062"
|
|
27
|
+
inkscape:cx="246.60686"
|
|
28
|
+
inkscape:cy="195.45162"
|
|
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
|
+
<defs
|
|
36
|
+
id="defs1">
|
|
37
|
+
<clipPath
|
|
38
|
+
clipPathUnits="userSpaceOnUse"
|
|
39
|
+
id="clipPath849">
|
|
40
|
+
<path
|
|
41
|
+
id="path850"
|
|
42
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10628;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
43
|
+
d="m 55.618325,83.265911 c -6.04539,0 -13.528005,3.532567 -20.244753,7.692778 v 86.719251 c 6.716748,-4.16008 14.199363,-7.69218 20.244753,-7.69218 14.701301,0 23.208023,20.89345 37.909957,20.89345 14.701618,0 23.208018,-20.89345 37.909638,-20.89345 14.70162,0 23.20803,20.89345 37.90933,20.89345 14.70193,0 23.20897,-20.89345 37.91059,-20.89345 14.70161,0 23.03038,21.1625 37.90964,20.89345 10.30301,-0.18611 24.51407,-11.04325 32.28116,-17.70421 V 86.455718 c -7.76709,6.66096 -21.97815,17.518102 -32.28116,17.704372 -14.87926,0.26889 -23.20803,-20.894179 -37.90964,-20.894179 -14.70162,0 -23.20866,20.894179 -37.91059,20.894179 -14.7013,0 -23.20771,-20.894179 -37.90933,-20.894179 -14.70162,0 -23.20802,20.894179 -37.909638,20.894179 -14.701934,0 -23.208656,-20.894179 -37.909957,-20.894179 z"
|
|
44
|
+
sodipodi:nodetypes="sccssssssccssssss" />
|
|
45
|
+
</clipPath>
|
|
46
|
+
<marker
|
|
47
|
+
style="overflow:visible"
|
|
48
|
+
id="Triangle-4"
|
|
49
|
+
refX="0"
|
|
50
|
+
refY="0"
|
|
51
|
+
orient="auto-start-reverse"
|
|
52
|
+
inkscape:stockid="Triangle arrow"
|
|
53
|
+
markerWidth="1"
|
|
54
|
+
markerHeight="1"
|
|
55
|
+
viewBox="0 0 1 1"
|
|
56
|
+
inkscape:isstock="true"
|
|
57
|
+
inkscape:collect="always"
|
|
58
|
+
preserveAspectRatio="xMidYMid">
|
|
59
|
+
<path
|
|
60
|
+
transform="scale(0.5)"
|
|
61
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
62
|
+
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
63
|
+
id="path135-4" />
|
|
64
|
+
</marker>
|
|
65
|
+
</defs>
|
|
66
|
+
<g
|
|
67
|
+
inkscape:label="Layer 1"
|
|
68
|
+
inkscape:groupmode="layer"
|
|
69
|
+
id="layer1"
|
|
70
|
+
transform="translate(-39.952311,-96.724857)">
|
|
71
|
+
<g
|
|
72
|
+
id="g856"
|
|
73
|
+
transform="translate(-4421.7264,-1060.6936)">
|
|
74
|
+
<rect
|
|
75
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.234193;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
76
|
+
id="navindex"
|
|
77
|
+
width="232.20497"
|
|
78
|
+
height="100.54167"
|
|
79
|
+
x="4461.6787"
|
|
80
|
+
y="1157.4185"
|
|
81
|
+
inkscape:export-filename="page-with-navindex.png"
|
|
82
|
+
inkscape:export-xdpi="96"
|
|
83
|
+
inkscape:export-ydpi="96" />
|
|
84
|
+
<g
|
|
85
|
+
id="g850"
|
|
86
|
+
transform="translate(9.0307466,4.844555)">
|
|
87
|
+
<g
|
|
88
|
+
id="g12-6"
|
|
89
|
+
transform="matrix(0.83707121,0,0,0.83707121,4437.8232,1088.1042)"
|
|
90
|
+
clip-path="url(#clipPath849)">
|
|
91
|
+
<rect
|
|
92
|
+
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
93
|
+
id="rect1-3"
|
|
94
|
+
width="20.700989"
|
|
95
|
+
height="20.700989"
|
|
96
|
+
x="69.227852"
|
|
97
|
+
y="18.23258" />
|
|
98
|
+
<rect
|
|
99
|
+
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
100
|
+
id="rect3-1"
|
|
101
|
+
width="20.700989"
|
|
102
|
+
height="20.700989"
|
|
103
|
+
x="169.95142"
|
|
104
|
+
y="18.23258" />
|
|
105
|
+
<rect
|
|
106
|
+
style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
107
|
+
id="rect4"
|
|
108
|
+
width="20.700989"
|
|
109
|
+
height="20.700989"
|
|
110
|
+
x="33.538883"
|
|
111
|
+
y="72.915123" />
|
|
112
|
+
<rect
|
|
113
|
+
style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
114
|
+
id="rect5-7"
|
|
115
|
+
width="20.700989"
|
|
116
|
+
height="20.700989"
|
|
117
|
+
x="69.227852"
|
|
118
|
+
y="72.915123" />
|
|
119
|
+
<rect
|
|
120
|
+
style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
121
|
+
id="rect6-59"
|
|
122
|
+
width="20.700989"
|
|
123
|
+
height="20.700989"
|
|
124
|
+
x="105.23221"
|
|
125
|
+
y="72.915123" />
|
|
126
|
+
<rect
|
|
127
|
+
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
128
|
+
id="rect10-6"
|
|
129
|
+
width="20.700989"
|
|
130
|
+
height="20.700989"
|
|
131
|
+
x="169.95142"
|
|
132
|
+
y="72.915123" />
|
|
133
|
+
<path
|
|
134
|
+
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
135
|
+
d="M 145.17705,39.081755 V 157.69622"
|
|
136
|
+
id="path11-2" />
|
|
137
|
+
<path
|
|
138
|
+
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
139
|
+
d="m 108.8707,118.38796 v -10.80007 h 71.65062 v 10.80007"
|
|
140
|
+
id="path12-1"
|
|
141
|
+
sodipodi:nodetypes="cccc" />
|
|
142
|
+
<path
|
|
143
|
+
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
144
|
+
d="M 43.753033,72.520787 V 61.310592 h 71.650627 v 11.210195"
|
|
145
|
+
id="path13-7"
|
|
146
|
+
sodipodi:nodetypes="cccc" />
|
|
147
|
+
<path
|
|
148
|
+
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
149
|
+
d="M 79.578344,39.081755 V 72.520787"
|
|
150
|
+
id="path14-8"
|
|
151
|
+
sodipodi:nodetypes="cc" />
|
|
152
|
+
<path
|
|
153
|
+
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
154
|
+
d="M 180.30191,38.67329 V 72.517635"
|
|
155
|
+
id="path15-5"
|
|
156
|
+
sodipodi:nodetypes="cc" />
|
|
157
|
+
<rect
|
|
158
|
+
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
159
|
+
id="rect15-7"
|
|
160
|
+
width="20.700989"
|
|
161
|
+
height="20.700989"
|
|
162
|
+
x="79.943916"
|
|
163
|
+
y="169.51932" />
|
|
164
|
+
<rect
|
|
165
|
+
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
166
|
+
id="rect17"
|
|
167
|
+
width="20.700989"
|
|
168
|
+
height="20.700989"
|
|
169
|
+
x="151.79588"
|
|
170
|
+
y="169.51932" />
|
|
171
|
+
<path
|
|
172
|
+
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
173
|
+
d="m 90.477778,169.41766 v -11.50287 h 71.650632 v 11.20766"
|
|
174
|
+
id="path17"
|
|
175
|
+
sodipodi:nodetypes="cccc" />
|
|
176
|
+
<path
|
|
177
|
+
style="fill:none;stroke:#c795ba;stroke-width:1.32292;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Triangle-4)"
|
|
178
|
+
d="M 145.58274,39.183482 V 157.62119 h -19.36561 v 6.54027"
|
|
179
|
+
id="path19"
|
|
180
|
+
sodipodi:nodetypes="cccc" />
|
|
181
|
+
<rect
|
|
182
|
+
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
183
|
+
id="rect7-4"
|
|
184
|
+
width="20.700989"
|
|
185
|
+
height="20.700989"
|
|
186
|
+
x="99.33905"
|
|
187
|
+
y="118.7833" />
|
|
188
|
+
<rect
|
|
189
|
+
style="fill:#f6edf4;stroke:#c795ba;stroke-width:1.32292;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
190
|
+
id="rect8-1"
|
|
191
|
+
width="20.700989"
|
|
192
|
+
height="20.700989"
|
|
193
|
+
x="134.82655"
|
|
194
|
+
y="118.7833" />
|
|
195
|
+
<rect
|
|
196
|
+
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
197
|
+
id="rect9-8"
|
|
198
|
+
width="20.700989"
|
|
199
|
+
height="20.700989"
|
|
200
|
+
x="169.50171"
|
|
201
|
+
y="118.7833" />
|
|
202
|
+
<rect
|
|
203
|
+
style="fill:#f6edf4;stroke:#c795ba;stroke-width:1.32292;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
|
204
|
+
id="rect16-5"
|
|
205
|
+
width="20.700989"
|
|
206
|
+
height="20.700989"
|
|
207
|
+
x="115.8699"
|
|
208
|
+
y="169.51932" />
|
|
209
|
+
<rect
|
|
210
|
+
style="fill:#f6edf4;stroke:#c795ba;stroke-width:1.32292;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
211
|
+
id="rect2"
|
|
212
|
+
width="20.700989"
|
|
213
|
+
height="20.700989"
|
|
214
|
+
x="134.82655"
|
|
215
|
+
y="18.23258" />
|
|
216
|
+
<rect
|
|
217
|
+
style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
218
|
+
id="rect19-9"
|
|
219
|
+
width="20.700989"
|
|
220
|
+
height="20.700989"
|
|
221
|
+
x="186.73036"
|
|
222
|
+
y="169.72639" />
|
|
223
|
+
<rect
|
|
224
|
+
style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
225
|
+
id="rect20-7"
|
|
226
|
+
width="20.700989"
|
|
227
|
+
height="20.700989"
|
|
228
|
+
x="258.58234"
|
|
229
|
+
y="169.72639" />
|
|
230
|
+
<path
|
|
231
|
+
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
232
|
+
d="m 197.26422,169.32952 v -11.20765 h 71.65063 v 11.20765"
|
|
233
|
+
id="path20-5"
|
|
234
|
+
sodipodi:nodetypes="cccc" />
|
|
235
|
+
<rect
|
|
236
|
+
style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
237
|
+
id="rect21-3"
|
|
238
|
+
width="20.700989"
|
|
239
|
+
height="20.700989"
|
|
240
|
+
x="222.65634"
|
|
241
|
+
y="169.72639" />
|
|
242
|
+
<path
|
|
243
|
+
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
244
|
+
d="m 233.00684,169.32952 v -19.71728 h -52.54433 v -9.73098"
|
|
245
|
+
id="path21-8"
|
|
246
|
+
sodipodi:nodetypes="cccc" />
|
|
247
|
+
<path
|
|
248
|
+
style="fill:none;stroke:#b472a3;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
249
|
+
d="m 137.14103,34.171069 h 16.07205"
|
|
250
|
+
id="path22-8" />
|
|
251
|
+
<path
|
|
252
|
+
style="fill:none;stroke:#c795ba;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
253
|
+
d="m 137.14103,134.72179 h 16.07205"
|
|
254
|
+
id="path23" />
|
|
255
|
+
<path
|
|
256
|
+
style="font-weight:bold;font-size:9.19894px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#c795ba;fill-opacity:1;stroke-width:0.689921"
|
|
257
|
+
d="m 148.78764,31.802704 -2.87927,-6.439258 h -1.47183 l -2.87007,6.439258 h 1.52703 l 0.57033,-1.379841 h 2.98965 l 0.57034,1.379841 z m -3.62438,-4.976627 1.02108,2.465316 h -2.04217 z"
|
|
258
|
+
id="text1"
|
|
259
|
+
aria-label="A" />
|
|
260
|
+
<path
|
|
261
|
+
style="font-weight:bold;font-size:9.19894px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#c795ba;stroke-width:0.689921"
|
|
262
|
+
d="m 147.14103,129.00501 c 0.52434,-0.27597 0.8555,-0.77271 0.8555,-1.41664 0,-1.00268 -0.8279,-1.6742 -2.43772,-1.6742 h -3.14604 v 6.43925 h 3.33002 c 1.6926,0 2.5757,-0.64392 2.5757,-1.75699 0,-0.80951 -0.45994,-1.36145 -1.17746,-1.59142 z m -1.7662,-1.96857 c 0.72672,0 1.12227,0.24837 1.12227,0.75431 0,0.50594 -0.39555,0.76351 -1.12227,0.76351 h -1.48103 v -1.51782 z m -1.48103,4.19471 v -1.59141 h 1.7386 c 0.77271,0 1.18667,0.25757 1.18667,0.8003 0,0.55194 -0.41396,0.79111 -1.18667,0.79111 z"
|
|
263
|
+
id="text2"
|
|
264
|
+
aria-label="B" />
|
|
265
|
+
<path
|
|
266
|
+
style="font-weight:bold;font-size:9.19894px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#d9b9d1;stroke-width:0.689921"
|
|
267
|
+
d="m 126.63435,183.19983 c 1.12227,0 2.05136,-0.40475 2.65849,-1.14986 l -0.95669,-0.8831 c -0.43235,0.50594 -0.97508,0.76351 -1.61901,0.76351 -1.20506,0 -2.06056,-0.8463 -2.06056,-2.06056 0,-1.21426 0.8555,-2.06056 2.06056,-2.06056 0.64393,0 1.18666,0.25757 1.61901,0.75431 l 0.95669,-0.8831 c -0.60713,-0.73592 -1.53622,-1.14067 -2.64929,-1.14067 -2.00537,0 -3.4956,1.38904 -3.4956,3.33002 0,1.94097 1.49023,3.33001 3.4864,3.33001 z"
|
|
268
|
+
id="text3"
|
|
269
|
+
aria-label="C" />
|
|
270
|
+
</g>
|
|
271
|
+
<path
|
|
272
|
+
id="path849"
|
|
273
|
+
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
274
|
+
d="m 4484.3797,1157.8037 c -5.0604,0 -11.3239,2.957 -16.9463,6.4394 v 72.5902 c 5.6224,-3.4823 11.8859,-6.4389 16.9463,-6.4389 12.306,0 19.4268,17.4893 31.7333,17.4893 12.3063,0 19.4268,-17.4893 31.7331,-17.4893 12.3063,0 19.4268,17.4893 31.7328,17.4893 12.3066,0 19.4276,-17.4893 31.7339,-17.4893 12.3063,0 19.2781,17.7145 31.733,17.4893 8.6244,-0.1558 20.5201,-9.244 27.0217,-14.8197 v -72.5902 c -6.5016,5.5757 -18.3973,14.6639 -27.0217,14.8198 -12.4549,0.2251 -19.4267,-17.4899 -31.733,-17.4899 -12.3063,0 -19.4273,17.4899 -31.7339,17.4899 -12.306,0 -19.4265,-17.4899 -31.7328,-17.4899 -12.3063,0 -19.4268,17.4899 -31.7331,17.4899 -12.3065,0 -19.4273,-17.4899 -31.7333,-17.4899 z"
|
|
275
|
+
sodipodi:nodetypes="sccssssssccssssss" />
|
|
276
|
+
</g>
|
|
277
|
+
</g>
|
|
278
|
+
</g>
|
|
279
|
+
</svg>
|