jekyll-theme-consulting 0.8.2 → 0.8.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1303e48e96de64a397286ba1e967c908766059f74f63441b9558de6cad51e640
4
- data.tar.gz: faea6567ccf1c4c9296b879be97cb3571896c0beef9e013b6585f0928e3827da
3
+ metadata.gz: 9c1ab3c282d595a71ddc1c748946bd9e1e60be5991840c48727e39304959e885
4
+ data.tar.gz: 6fe650e90a52dc65122d408d8c232e664bcdfe5981ed6d29e173819282c6e185
5
5
  SHA512:
6
- metadata.gz: 47a0d039df89f13940c29499c8490a5eb68586c29d38923a06e376ee44b4c2c5b551455ea2e031a0faf81c1458f884ceabad8ac12abf9f89163447ed7e51711a
7
- data.tar.gz: daec8ff000a41334f72e321615945b1375007062e107f58cd01eeec71df8e8d78bf76636fce3b08e8a4b6491b4e588102267f96cca990210ac05b5d963274ac7
6
+ metadata.gz: 4e04b08e99d3db8c1c49884e4761b7cc7d670ab1cbc63cfe996699cd242ac9ad5a5a146ec7356c53ba6b01de38fe99d228633222898296837dcc0db3b1440955
7
+ data.tar.gz: 188fa42d869fc32790c0163103bd28d760decfec0e690650d25a4d44491a892ade3106c15d5c57461462fc880969dd81b8723a3916b9f8671fcc0a2f5283fcff
data/README.md CHANGED
@@ -24,7 +24,7 @@ You can preview the theme [here](https://moodule.github.io/jekyll-theme-consulti
24
24
 
25
25
  > **Light**: svg images, thumbs and lazy loading for raster images, few libraries
26
26
 
27
- > **Performant**: parallel loading & execution of assets, support lazy-loading, use webp image format, optimal critical path
27
+ > **Performant**: parallel loading & execution of assets, support lazy-loading, minified assets, compressed critical path
28
28
 
29
29
  > **Hardened**: form validation, recaptcha, verified libraries
30
30
 
@@ -207,18 +207,14 @@ Uses the [simple Jekyll search plugin][simple-jekyll-search].
207
207
 
208
208
  Space image in the banner: the Pillars of Creation, courtesy of NASA.
209
209
 
210
- Repository [Jekyll logo][jekyll-logo] icon licensed under a [Creative Commons Attribution 4.0 International License][cc4-license].
211
-
212
210
  ## License
213
211
 
214
- The theme is available as open source under the terms of the [CC-BY-4.0](LICENSE).
212
+ The theme is available as open source under the terms of the [CC-BY-NC-SA-4.0](LICENSE).
215
213
 
216
214
  [ajlkn]: https://aj.lkn.io/
217
- [cc4-license]: http://choosealicense.com/licenses/cc-by-4.0/
218
215
  [contributor-covenant]: http://contributor-covenant.org
219
216
  [cookieconsent]: https://github.com/osano/cookieconsent
220
217
  [html5up]: https://html5up.net/
221
- [jekyll-logo]: https://github.com/jekyll/brand
222
218
  [recaptcha-documentation]: https://developers.google.com/recaptcha/intro
223
219
  [recaptcha-registering]: https://www.google.com/recaptcha/admin
224
220
  [simple-jekyll-search]: https://github.com/christian-fei/Simple-Jekyll-Search
@@ -37,9 +37,12 @@
37
37
  contactFormElement.focus();
38
38
  }
39
39
 
40
- const {{ include.onsubmit_callback | default: 'processContactRequest()' }} = function() {
40
+ const {{ include.onsubmit_callback | default: 'processContactRequest' }} = function() {
41
41
  if (grecaptcha.getResponse(recaptchaWidget).length > 0) {
42
42
  sendContactMessage();
43
+ hideModalWindow();
44
+ resetContactForm();
45
+ grecaptcha.reset();
43
46
  } else {
44
47
  showModalWindow();
45
48
  }
@@ -51,31 +54,25 @@
51
54
  };
52
55
 
53
56
  const sendContactMessage = function() {
54
- const recaptchaToken = grecaptcha.getResponse(recaptchaWidget);
55
-
56
57
  const data = {
57
58
  name: encodeURIComponent(nameInputElement.value),
58
59
  email: encodeURIComponent(emailInputElement.value),
59
60
  message: encodeURIComponent(messageInputElement),
60
- token: recaptchaToken
61
+ token: grecaptcha.getResponse(recaptchaWidget)
61
62
  };
62
-
63
- hideModalWindow();
64
-
65
- if (recaptchaToken.length > 0) {
66
- fetch("{{ '/contact' | absolute_url }}", {
67
- method: 'POST',
68
- mode: 'same-origin',
69
- headers: {'Content-Type': 'application/json',},
70
- body: JSON.stringify(data),
71
- })
72
- .then((response) => {
73
- alert('Message sent!');
74
- })
75
- .catch((error) => {
76
- console.error('Error:', error);
77
- });
78
- }
63
+
64
+ fetch("{{ '/contact' | absolute_url }}", {
65
+ method: 'POST',
66
+ mode: 'same-origin',
67
+ headers: {'Content-Type': 'application/json',},
68
+ body: JSON.stringify(data),
69
+ })
70
+ .then((response) => {
71
+ alert('Message sent!');
72
+ })
73
+ .catch((error) => {
74
+ console.error('Error:', error);
75
+ });
79
76
  };
80
77
 
81
78
  var onRecaptchaLoadCallback = function() {
@@ -83,7 +80,7 @@
83
80
  'sitekey' : '{{ site.recaptcha.sitekey }}',
84
81
  'theme' : 'dark',
85
82
  'size' : 'compact',
86
- 'callback' : sendContactMessage
83
+ 'callback' : processContactRequest
87
84
  });
88
85
  };
89
86
 
@@ -9,7 +9,7 @@
9
9
  <link rel="stylesheet" href="{{ 'assets/css/small.css' | absolute_url }}" media="screen and (max-width:736px)" />
10
10
  <link rel="preload" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet';this.media='all'">
11
11
  <link rel="preload" href="{{ 'assets/css/fontawesome-all.min.css' | absolute_url }}" as="style" onload="this.onload=null;this.rel='stylesheet';this.media='all'">
12
- <link rel="preload" href="{{ 'assets/css/cookieconsent.css' | absolute_url }}" as="style" onload="this.onload=null;this.rel='stylesheet';this.media='all'">
12
+ <link rel="preload" href="{{ 'assets/css/cookieconsent.min.css' | absolute_url }}" as="style" onload="this.onload=null;this.rel='stylesheet';this.media='all'">
13
13
  {%- if include.stylesheets -%}
14
14
  {%- for file in include.stylesheets -%}
15
15
  <link rel="stylesheet" href="{{ file.url | absolute_url }}" />
@@ -24,6 +24,6 @@
24
24
  <noscript><link rel="stylesheet" href="{{ 'assets/css/noscript.css' | absolute_url }}" /></noscript>
25
25
  <noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700&display=swap" /></noscript>
26
26
  <noscript><link rel="stylesheet" href="{{ 'assets/css/fontawesome-all.min.css' | absolute_url }}" /></noscript>
27
- <noscript><link rel="stylesheet" href="{{ 'assets/css/cookieconsent.css' | absolute_url }}" /></noscript>
27
+ <noscript><link rel="stylesheet" href="{{ 'assets/css/cookieconsent.min.css' | absolute_url }}" /></noscript>
28
28
  {% seo %}
29
29
  </head>
@@ -3,9 +3,9 @@
3
3
  <script src="{{ 'assets/js/jquery.scrolly.min.js' | absolute_url }}" type="text/javascript" defer ></script>
4
4
  <script src="{{ 'assets/js/browser.min.js' | absolute_url }}" type="text/javascript" defer ></script>
5
5
  <script src="{{ 'assets/js/breakpoints.min.js' | absolute_url }}" type="text/javascript" defer ></script>
6
- <script src="{{ 'assets/js/lazy-loading.js' | absolute_url }}" type="text/javascript" defer ></script>
7
- <script src="{{ 'assets/js/util.js' | absolute_url }}" type="text/javascript" defer ></script>
8
- <script src="{{ 'assets/js/main.js' | absolute_url }}" type="text/javascript" defer ></script>
6
+ <script src="{{ 'assets/js/lazy-loading.min.js' | absolute_url }}" type="text/javascript" defer ></script>
7
+ <script src="{{ 'assets/js/util.min.js' | absolute_url }}" type="text/javascript" defer ></script>
8
+ <script src="{{ 'assets/js/main.min.js' | absolute_url }}" type="text/javascript" defer ></script>
9
9
  <script src="{{ 'assets/js/cookieconsent.min.js' | absolute_url }}" type="text/javascript" data-cfasync="false" defer ></script>
10
10
  <script src="{{ 'assets/js/cookieconsent.style.min.js' | absolute_url }}" type="text/javascript" defer ></script>
11
11
  {%- if include.scripts -%}
@@ -0,0 +1,6 @@
1
+ {%- assign x12 = include.x1 | plus: include.x2 | times: 0.5 | round -%}
2
+ {%- assign y12 = include.y1 | plus: include.y2 | times: 0.5 | round -%}
3
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none">
4
+ <path d="M0,100L0,{{ include.ys }}Q{{ include.x1 }},{{ include.y1 }} {{ x12 }},{{ y12 }}Q{{ include.x2 }},{{ include.y2 }} 100,{{include.ye}}L100,100L0,100Z"></path>
5
+ <circle cx="{{ include.cx }}" cy="{{ include.cy }}" r="{{ include.r }}"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ {%- assign x12 = include.x1 | plus: include.x2 | times: 0.5 | round -%}
2
+ {%- assign y12 = include.y1 | plus: include.y2 | times: 0.5 | round -%}
3
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none">
4
+ <path d="M0,0L0,{{ include.ys }}Q{{ include.x1 }},{{ include.y1 }} {{ x12 }},{{ y12 }}Q{{ include.x2 }},{{ include.y2 }} 100,{{include.ye}}L100,0L0,0Z"></path>
5
+ <circle cx="{{ include.cx }}" cy="{{ include.cy }}" r="{{ include.r }}"/>
6
+ </svg>
@@ -2,26 +2,59 @@
2
2
  ---
3
3
  {%- assign lang = page.lang | default: site.lang | default: 'en' -%}
4
4
  {%- assign menu = site.data.menus[page.menu][lang] -%}
5
+ {%- assign header = page.header | default: site.header -%}
5
6
  {%- assign title = page.title | default: site.title -%}
6
- {%- assign subtitle = page.subtitle | default: site.subtitle -%}
7
7
  {%- assign description = page.description | default: site.description -%}
8
+ {%- assign stylesheets = page.stylesheets | default: site.stylesheets -%}
9
+ {%- assign scripts = page.scripts | default: site.scripts -%}
8
10
  <!DOCTYPE html>
11
+ <!--
12
+ Consulting template by MOODULE
13
+ https://github.com/moodule/jekyll-theme-consulting
14
+ Free for personal and commercial use under the CCA 4.0 license
15
+ -->
9
16
  <html lang="{{ lang }}">
10
17
 
11
- {% include head.html title=title subtitle=subtitle %}
18
+ {% include head.html title=title subtitle=subtitle %}
12
19
 
13
- <body>
20
+ <body>
14
21
 
15
- {% include navigation.html menu=menu %}
22
+ <style type="text/css">
23
+ .upper-half svg {
24
+ fill: rgba(10,100,130,0.4);
25
+ }
26
+ .lower-half svg {
27
+ fill: rgba(130,0,130,0.4);
28
+ }
29
+ </style>
16
30
 
17
- <main class="page-content" aria-label="Content">
18
- <div class="wrapper">
19
- {{ content }}
20
- </div>
21
- </main>
31
+ <!-- Wrapper -->
32
+ <div id="wrapper">
22
33
 
23
- {% include footer.html %}
34
+ <div class="upper-half" style="position: fixed; z-index: 2; top:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
35
+ {% include waves/top.html ys=80 ye=20 x1=40 y1=80 x2=60 y2=20 cx=50 cy=50 r=4 %}
36
+ </div>
37
+
38
+ <div class="upper-half" style="position: fixed; z-index: 4; top:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
39
+ {% include waves/top.html ys=70 ye=30 x1=20 y1=90 x2=40 y2=20 cx=10 cy=76 r=2%}
40
+ </div>
41
+
42
+ <div class="upper-half" style="position: fixed; z-index: 4; top:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
43
+ {% include waves/top.html ys=65 ye=35 x1=15 y1=85 x2=35 y2=20 cx=10 cy=76 r=2%}
44
+ </div>
45
+
46
+ <div class="lower-half" style="position: fixed; z-index: 3; bottom:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
47
+ {% include waves/bottom.html ys=80 ye=20 x1=40 y1=80 x2=60 y2=20 cx=50 cy=50 r=4 %}
48
+ </div>
49
+
50
+ <div class="upper-half" style="position: fixed; z-index: 1; bottom:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
51
+ {% include waves/bottom.html ys=60 ye=80 x1=20 y1=80 x2=60 y2=100 cx=80 cy=88 r=2 %}
52
+ </div>
24
53
 
25
- </body>
54
+ </div>
55
+
56
+ {% include footer.html %}
57
+
58
+ </body>
26
59
 
27
60
  </html>
@@ -5,6 +5,7 @@ body, input, select, textarea {
5
5
  font-family: _font(family);
6
6
  font-size: 13pt;
7
7
  font-weight: _font(weight);
8
+ text-align: justify;
8
9
  line-height: 1.65;
9
10
  }
10
11
 
@@ -50,7 +50,7 @@
50
50
  margin: 0;
51
51
  display: table-cell;
52
52
  text-align: center;
53
- font-size: 1.5rem;
53
+ font-size: 1rem;
54
54
  }
55
55
  }
56
56
 
@@ -74,10 +74,10 @@
74
74
  h3 {
75
75
  margin: 0;
76
76
  display: table-cell;
77
- vertical-align: baseline;
77
+ vertical-align: middle;
78
78
  text-align: center;
79
79
  text-transform: uppercase;
80
- font-size: 3rem;
80
+ font-size: 2rem;
81
81
  }
82
82
  }
83
83
  }
@@ -35,6 +35,10 @@
35
35
  background-image: url('images/ieam.svg');
36
36
  }
37
37
 
38
+ .ifag {
39
+ background-image: url('images/ifag.svg');
40
+ }
41
+
38
42
  .ifg {
39
43
  background-image: url('images/ifg.svg');
40
44
  }
@@ -121,7 +121,7 @@
121
121
  width: inherit;
122
122
  height: inherit;
123
123
  margin-left: (-0.875em / 2);
124
- font-size: 1.5rem;
124
+ font-size: 2rem;
125
125
  line-height: inherit;
126
126
  text-indent: 0;
127
127
  }
@@ -0,0 +1 @@
1
+ .cc-window{opacity:1;-webkit-transition:opacity 1s ease;-moz-transition:opacity 1s ease;-ms-transition:opacity 1s ease;-o-transition:opacity 1s ease;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{-webkit-transition:transform 1s ease;-moz-transition:transform 1s ease;-ms-transition:transform 1s ease;-o-transition:transform 1s ease;transition:transform 1s ease}.cc-animate.cc-revoke.cc-top{transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-top{transform:translateY(0)}.cc-animate.cc-revoke.cc-active.cc-bottom{transform:translateY(0)}.cc-revoke:hover{transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;-webkit-transition:max-height 1s;-moz-transition:max-height 1s;-ms-transition:max-height 1s;-o-transition:max-height 1s;transition:max-height 1s}.cc-window,.cc-revoke{position:fixed;overflow:hidden;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:flex;flex-wrap:nowrap;z-index:9998}.cc-revoke{z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;width:100%;max-width:100%;flex-direction:column}.cc-window.cc-banner{z-index::10000;padding:1em 1.8em;width:100%;flex-direction:row}.cc-revoke{padding:.5em}.cc-revoke:hover{text-decoration:underline}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-link,.cc-close,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;border:none;padding:.2em;text-decoration:underline}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-highlight .cc-btn:first-child{background-color:#0000;border-color:#0000}.cc-highlight .cc-btn:first-child:hover,.cc-highlight .cc-btn:first-child:focus{background-color:#0000;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:hover,.cc-close:focus{opacity:1}.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:0}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{flex:1 0 auto}.cc-window.cc-banner{align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{display:block;flex:1 1 auto;max-width:100%;margin-right:1em}.cc-compliance{display:flex;align-items:center;justify-content:space-between}.cc-floating .cc-compliance>.cc-btn{flex:1}.cc-btn+.cc-btn{margin-left:.5em}.cc-window.cc-type-categories{display:inline-flex;flex-direction:column;overflow:visible;.form{ text-align: right; } .cc-btn { margin: 0; &.cc-save { margin : 0; display : inline-block; } }}.cc-categories{display:inline-flex;.cc-category{ display : flex; max-width: 100%; margin : 0 2px; position : relative; } .cc-btn { border-right: none; outline : none; input[type=checkbox]{ float: left; height: 26px; width: calc( 100% - 22px ); display: block; position: absolute; top: 0; left: 2px; cursor: pointer; } &:not(.cc-info):not(.cc-save){ padding-left: 26px; } } .cc-info { border-left : none; border-right: 2px solid lightgrey; padding : 4px; font-variant: all-small-caps; &:focus + .cc-tooltip{ display: block; } } .cc-tooltip{ display : none; position : absolute; z-index : 3; width : 190px; bottom : 46px; padding : 8px; border : thin solid lightgrey; box-shadow: 1px 1px 4px rgba( 150, 150, 150, .7 ); &:after{ content : ""; width : 10px; height : 10px; transform : rotate(45deg); position : absolute; bottom : -7px; left : 10px; box-shadow: 2px 1px 1px rgba( 200, 200, 200, .5 ); } p { margin: 0; } }}@media print{.cc-window,.cc-revoke{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window{&.cc-top { top: 0; } &.cc-bottom { bottom: 0; } &.cc-banner, &.cc-floating, &.cc-right, &.cc-left { left: 0; right: 0; } &.cc-banner { flex-direction: column; align-items: unset; .cc-compliance { flex: 1 1 auto; } .cc-message { margin-right: 0; margin-bottom: 1em; } } &.cc-floating { max-width: none; } &.cc-type-categories { flex-direction: column; } .cc-message { margin-bottom: 1em; } .cc-categories{ flex-direction: column; width: 100%; margin-right: 8px; } .cc-category { margin: 4px 0; .cc-btn:not(.cc-info){ width: calc( 100% - 16px); min-width: 140px; } }}}@media screen and (max-width:854px){.cc-window.cc-type-categories .cc-btn.cc-save{margin:8px 0}}
@@ -1,41 +1 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg
3
- xmlns:dc="http://purl.org/dc/elements/1.1/"
4
- xmlns:cc="http://creativecommons.org/ns#"
5
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
- xmlns:svg="http://www.w3.org/2000/svg"
7
- xmlns="http://www.w3.org/2000/svg"
8
- id="svg5416"
9
- version="1.1"
10
- viewBox="0 0 740.83336 740.83336"
11
- height="2800"
12
- width="2800">
13
- <defs
14
- id="defs5410" />
15
- <metadata
16
- id="metadata5413">
17
- <rdf:RDF>
18
- <cc:Work
19
- rdf:about="">
20
- <dc:format>image/svg+xml</dc:format>
21
- <dc:type
22
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
23
- <dc:title></dc:title>
24
- </cc:Work>
25
- </rdf:RDF>
26
- </metadata>
27
- <g
28
- transform="translate(0,443.83364)"
29
- id="layer1">
30
- <text
31
- id="text5983"
32
- y="53.935825"
33
- x="23.33569"
34
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:1000;font-family:'Century Schoolbook L';-inkscape-font-specification:'Century Schoolbook L';letter-spacing:0px;word-spacing:0px;fill:#000066;fill-opacity:1;stroke:none;stroke-width:0.26458332;"
35
- xml:space="preserve"><tspan
36
- style="font-weight:bold;font-size:352.77780151px;stroke-width:0.26458332;fill:#000066;fill-opacity:1;"
37
- y="53.935825"
38
- x="23.33569"
39
- id="tspan5981">CIE</tspan></text>
40
- </g>
41
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="2800" height="2800" viewBox="0 0 740.833 740.833"><text x="23.336" y="53.936" fill="#006" stroke-width=".265" font-family="Century Schoolbook L" font-size="2.822" font-weight="400" letter-spacing="0" style="line-height:1000;-inkscape-font-specification:'Century Schoolbook L'" transform="translate(0 443.834)" word-spacing="0"><tspan x="23.336" y="53.936" font-size="352.778" font-weight="700">CIE</tspan></text></svg>
@@ -1,100 +1 @@
1
-
2
- <svg
3
- xmlns:dc="http://purl.org/dc/elements/1.1/"
4
- xmlns:cc="http://creativecommons.org/ns#"
5
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
- xmlns:svg="http://www.w3.org/2000/svg"
7
- xmlns="http://www.w3.org/2000/svg"
8
- version="1.1"
9
- id="svg4587"
10
- width="2800"
11
- height="2800"
12
- viewBox="0 0 2800 2800">
13
- <metadata
14
- id="metadata4593">
15
- <rdf:RDF>
16
- <cc:Work
17
- rdf:about="">
18
- <dc:format>image/svg+xml</dc:format>
19
- <dc:type
20
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
21
- <dc:title></dc:title>
22
- </cc:Work>
23
- </rdf:RDF>
24
- </metadata>
25
- <defs
26
- id="defs4591" />
27
- <g
28
- id="layer1"
29
- style="display:inline;fill:#0080ff;fill-opacity:1"
30
- transform="translate(0,1584)">
31
- <path
32
- id="path4642"
33
- style="fill:#0080ff;stroke-width:2.8148365;fill-opacity:1"
34
- d="m 1576.7814,46.54443 2.067,-54.99207 -20.8182,-11.9054 c -11.4501,-6.54799 -26.2536,-15.00174 -32.8966,-18.78612 l -12.0783,-6.88072 0.7568,70.72746 0.7568,70.72749 28.3038,14.86073 28.3038,14.86075 1.7689,-11.81003 c 0.9729,-6.49548 2.6991,-36.55642 3.836,-66.80209 z m 8.547,84.38558 c -0.9621,-1.53967 -3.2661,-2.7801 -5.1202,-2.75652 -2.0254,0.0252 -1.6763,1.12598 0.8747,2.75652 5.4374,3.47551 6.4172,3.47551 4.2455,0 z m 38.2101,21.05221 c 0,-0.73854 -5.0946,-3.91343 -11.3215,-7.05533 -6.2268,-3.14191 -11.3215,-5.08717 -11.3215,-4.32283 0,0.76435 4.7763,3.88355 10.6139,6.93159 12.0093,6.27051 12.0291,6.27784 12.0291,4.44657 z m -205.9529,399.55429 -0.7502,-98.67806 h 9.0904 c 6.3136,0 43.2104,17.56527 120.7847,57.50128 61.4319,31.62574 112.6467,56.50521 113.8109,55.28773 1.1643,-1.21745 8.6543,-14.37986 16.6446,-29.24973 l 14.5277,-27.03616 -20.6332,-11.08113 c -11.3483,-6.0946 -42.2856,-22.13312 -68.7497,-35.64117 -99.7673,-50.92406 -178.4363,-91.79253 -181.852,-94.47186 -2.709,-2.12506 -3.5379,-25.64867 -3.5379,-100.41064 v -97.63549 h 8.834 c 5.2192,0 21.4449,6.48047 39.652,15.83676 16.9498,8.71021 31.2619,15.32375 31.8045,14.69674 0.5425,-0.62701 7.5227,-13.73722 15.5113,-29.1338 12.6978,-24.47294 13.9735,-28.39974 10.1427,-31.22151 -2.4101,-1.77524 -27.2336,-14.98718 -55.1634,-29.35982 l -50.7811,-26.1321 V -23.702 -132.21152 l 7.7836,-0.002 c 4.9185,-0.002 40.9588,18.8024 97.916,51.08864 l 90.1325,51.09187 -1.6244,25.19441 c -0.8935,13.85691 -2.4312,42.3277 -3.4172,63.2684 l -1.7926,38.07399 10.9326,1.78634 c 10.3724,1.69474 60.0655,2.63282 60.82,1.14809 0.1955,-0.38492 1.1508,-18.96579 2.1228,-41.29082 l 1.7672,-40.59097 h 7.2776 c 4.2291,0 41.4227,19.34832 88.7911,46.18973 l 81.5133,46.18973 -1.841,47.58942 c -2.4992,64.60992 -9.7813,225.55278 -11.1593,246.63644 l -1.1167,17.08745 35.6369,1.66538 c 19.6003,0.916 35.8495,1.4148 36.1092,1.1085 0.2602,-0.30628 2.545,-49.0561 5.0785,-108.33292 2.5335,-59.27684 5.392,-118.79862 6.3526,-132.27061 1.7254,-24.20253 1.8357,-24.49455 9.2535,-24.49455 4.5338,0 39.8321,18.35386 89.115,46.33668 44.8843,25.48516 81.9196,45.95561 82.3007,45.48987 0.3813,-0.46571 8.0677,-13.32347 17.0814,-28.57276 14.0226,-23.72354 15.7704,-28.16877 12.1082,-30.79317 -2.3542,-1.68734 -40.0683,-23.2231 -83.8094,-47.85762 -72.7358,-40.96423 -79.5384,-45.42951 -79.6381,-52.27628 -0.1,-6.82707 9.567,-13.59201 109.7846,-76.83005 l 109.8938,-69.3438 -18.435,-28.33466 -18.4351,-28.33467 -127.858,80.67049 c -70.3219,44.36787 -130.5468,80.66944 -133.8332,80.66944 -3.2864,0 -43.0104,-21.01539 -88.2756,-46.70086 -98.4977,-55.89193 -95.3648,-51.19623 -52.3052,-78.39789 15.5672,-9.83407 30.105,-18.94327 32.3064,-20.24272 3.5946,-2.12193 -7.0788,-21.60365 -31.1375,-56.83373 -0.9137,-1.33809 -24.7368,12.20608 -52.9401,30.09819 -31.3952,19.91696 -53.4638,32.17772 -56.9136,31.61975 -3.0992,-0.5012 -45.8196,-23.58626 -94.9343,-51.30009 -86.6129,-48.87277 -89.2787,-50.6326 -88.6049,-58.49303 0.6431,-7.50447 7.2929,-11.90166 89.8518,-59.41713 49.0364,-28.22211 91.5948,-51.34426 94.5743,-51.38255 2.9796,-0.0384 28.3265,14.49952 56.3263,32.30622 27.9999,17.8067 51.6723,31.25574 52.6055,29.88669 24.3136,-35.67204 34.7747,-54.76352 31.1725,-56.88993 -2.2014,-1.29944 -16.7392,-10.41889 -32.3064,-20.26549 -43.0384,-27.22284 -45.5458,-23.33267 50.9469,-79.04479 51.2737,-29.60401 82.1422,-45.80547 87.4416,-45.89415 6.0219,-0.10078 42.0588,21.24331 136.0826,80.59954 l 127.8915,80.73658 18.3767,-28.31114 18.3766,-28.31114 -111.2243,-69.92157 c -97.6773,-61.40523 -111.2299,-70.77396 -111.2705,-76.92001 -0.041,-6.24302 9.1219,-12.24205 84.8899,-55.57685 l 84.9364,-48.57838 -5.3325,-8.80885 c -2.933,-4.84486 -10.7604,-17.97123 -17.3944,-29.1697 l -12.0618,-20.36085 -10.2521,5.98526 c -88.519,51.67813 -156.3267,89.32432 -160.8895,89.32432 -6.992,0 -7.2352,-2.75993 -13.8173,-156.76515 -2.5335,-59.27684 -4.7776,-107.97636 -4.9872,-108.22112 -0.2094,-0.24495 -16.5096,0.24858 -36.2224,1.09659 l -35.8414,1.54171 1.1791,14.29994 c 2.2991,27.88136 9.8569,210.90128 10.4568,253.21956 l 0.6087,42.96308 -79.2505,45.79074 c -57.1551,33.02388 -81.8154,45.82594 -88.4495,45.91713 l -9.1987,0.12639 v -31.84294 c 0,-17.51358 -0.7961,-35.77953 -1.7691,-40.59096 l -1.7689,-8.74807 -24.412,0.0309 c -13.4267,0.0168 -29.3316,0.83462 -35.3447,1.8171 l -10.9326,1.78634 1.7926,38.07399 c 0.986,20.94071 2.4887,49.41149 3.3395,63.26841 l 1.5467,25.1944 -91.8651,52.48834 c -50.5258,28.8686 -94.5662,52.48835 -97.8675,52.48835 h -6.0025 l 0.7363,-124.95927 0.7364,-124.95923 53.7772,-27.91137 c 29.5775,-15.35123 54.1762,-28.2738 54.6637,-28.71682 1.0186,-0.9256 -20.7755,-44.35103 -26.893,-53.58536 l -4.0768,-6.15382 -31.9165,16.57995 c -17.554,9.11899 -35.1056,16.57998 -39.0036,16.57998 h -7.0872 l -2.0033,-95.08827 c -1.2664,-60.11488 -0.9924,-96.92337 0.7446,-100.07776 1.5115,-2.74422 64.0031,-36.43829 138.8703,-74.87573 74.8672,-38.43737 135.7759,-70.56033 135.3527,-71.38416 -0.423,-0.82391 -7.4873,-14.47421 -15.6982,-30.33401 l -14.929,-28.83613 -20.4222,10.96999 c -87.5575,47.03302 -208.9049,106.88883 -216.6989,106.88883 h -8.9258 v -85.38104 -85.38108 h -35.3797 -35.3798 v 85.38108 85.38104 h -6.4428 c -5.4193,0 -69.5516,-31.94763 -207.8766,-103.55417 l -26.0992,-13.51072 -15.9824,29.46977 c -12.6134,23.25755 -15.1664,29.96902 -12.111,31.83832 2.1293,1.3027 63.4064,32.96176 136.1714,70.35349 l 132.2999,67.98495 0.016,100.07777 0.016,100.07776 -6.3684,-0.0985 c -3.5025,-0.0544 -20.9761,-7.54659 -38.83,-16.64976 -17.8538,-9.10314 -32.6732,-16.30216 -32.932,-15.99781 -0.2585,0.30432 -7.0869,13.64366 -15.1738,29.64297 -11.5175,22.78619 -13.8879,29.61632 -10.939,31.52001 2.0706,1.33664 26.3724,14.06186 54.0039,28.27821 l 50.2393,25.84795 v 123.89179 123.89183 h -7.5648 c -4.6567,0 -45.7314,-21.63728 -106.8468,-56.28469 -54.6052,-30.95654 -100.4299,-57.34909 -101.8327,-58.65004 -1.513,-1.40324 -1.3514,-28.32655 0.3976,-66.18813 1.6212,-35.1025 2.769,-63.99427 2.5505,-64.20397 -0.2185,-0.20975 -16.6365,-0.89682 -36.4846,-1.52687 l -36.0872,-1.14556 -0.016,23.92189 c -0.01,13.15701 -0.8321,32.42496 -1.8245,42.81764 -1.6044,16.80238 -2.4645,18.89026 -7.7634,18.84571 -3.2775,-0.0279 -42.2587,-20.71162 -86.625,-45.96456 l -80.66582,-45.91443 -0.83929,-21.91326 c -0.46145,-12.05226 1.76948,-79.2337 4.95786,-149.29204 3.18844,-70.05837 5.79501,-130.70382 5.79247,-134.76776 l -0.004,-7.389 -34.11449,-2.02727 c -18.76294,-1.11503 -34.70938,-1.43892 -35.4365,-0.7198 -1.19569,1.18257 -12.40133,229.71937 -12.49199,254.77224 -0.0327,9.81078 -0.59891,10.49766 -8.60719,10.49766 -7.21685,0 -78.94208,-38.12408 -137.40523,-73.03494 l -8.70103,-5.19574 -16.06483,27.46826 c -8.83563,15.1075 -16.04561,28.61533 -16.02213,30.01736 0.0246,1.40201 31.27737,20.18519 69.45298,41.7404 67.70582,38.2289 69.39021,39.3951 68.59404,47.49104 -0.75109,7.63787 -9.43371,13.7366 -108.87492,76.4747 l -108.05861,68.17492 17.48642,27.69689 c 11.64255,18.44067 18.81817,27.23696 21.47129,26.32072 2.19157,-0.7569 59.79515,-36.61156 128.00784,-79.67702 70.02897,-44.21219 126.82467,-78.28344 130.45822,-78.26087 3.53945,0.0224 42.73493,20.64539 87.10114,45.82983 99.80177,56.65236 97.24687,52.56792 50.7266,81.09528 -23.41185,14.35668 -30.86222,20.29689 -29.58512,23.58838 0.93878,2.41966 8.77647,15.42913 17.41712,28.90995 l 15.71031,24.51053 14.61363,-9.22426 c 73.58453,-46.44705 87.51323,-54.78081 91.55863,-54.78081 2.5513,0 9.8453,2.96453 16.209,6.58789 6.3635,3.62336 53.2829,30.22079 104.2651,59.10541 85.1839,48.26206 92.6862,53.1155 92.5866,59.89734 -0.099,6.731 -9.0511,12.48674 -101.8256,65.46689 -58.2766,33.28042 -104.7388,58.08699 -108.7942,58.08699 -4.009,0 -22.7557,-9.87748 -43.2314,-22.77828 -19.8842,-12.528 -42.6685,-26.89072 -50.63182,-31.91711 l -14.47879,-9.13887 -15.7981,24.30378 c -8.68892,13.36708 -16.57562,26.30785 -17.52602,28.75725 -1.3014,3.35446 6.34091,9.55067 30.96996,25.10947 27.44937,17.34043 32.69527,21.77941 32.68177,27.65449 -0.016,6.2167 -9.1977,12.26925 -82.21838,54.18552 C 873.26066,52.47097 845.77427,66.77085 841.49067,65.95284 838.0719,65.29996 779.181,29.32554 710.62206,-13.99028 642.06311,-57.30611 584.11099,-93.39037 581.83973,-94.17749 c -2.8431,-0.98527 -9.58402,7.20799 -21.63763,26.29943 l -17.50802,27.73053 25.99918,16.40691 c 205.65057,129.77685 197.57389,124.37215 196.67692,131.61145 -0.79773,6.43937 -33.14911,26.52475 -140.15228,87.01398 -2.41584,1.36568 1.60323,10.46425 13.50859,30.5812 9.32113,15.7504 17.38546,28.6371 17.92063,28.6371 0.53509,0 31.70101,-17.63609 69.25759,-39.19128 38.36305,-22.01813 71.395,-39.1913 75.38298,-39.1913 6.11378,0 7.1037,1.26204 7.13643,9.09797 0.10145,24.28144 11.34007,252.23328 12.49199,253.37256 0.72736,0.71909 16.67356,0.39522 35.4365,-0.7198 l 34.11457,-2.02729 -0.0245,-8.78862 c -0.0164,-4.83377 -2.55043,-63.58647 -5.63809,-130.56157 -3.08765,-66.97512 -5.61002,-132.48057 -5.60527,-145.56766 l 0.008,-23.7947 81.84285,-46.88959 c 45.01393,-25.78926 84.29913,-46.88957 87.30073,-46.88957 4.6726,0 5.7171,2.71786 7.2619,18.8958 0.9923,10.39269 1.8134,29.03078 1.8244,41.41798 l 0.016,22.5222 36.0874,-1.14557 c 19.848,-0.63005 36.2407,-1.31714 36.4282,-1.52686 0.1874,-0.20975 -0.9311,-28.50052 -2.4856,-62.86846 -1.6227,-35.87252 -1.7678,-63.50349 -0.3412,-64.87331 1.3671,-1.31235 47.701,-28.3028 102.9642,-59.97877 64.2164,-36.80787 103.2875,-57.59514 108.262,-57.59951 l 7.7838,-0.007 -0.01,108.47591 -0.01,108.4759 -53.7188,27.48196 c -29.5453,15.11507 -54.4715,28.68677 -55.3917,30.15931 -1.2331,1.97351 23.2249,51.66815 28.5474,58.00321 0.4017,0.47852 16.1302,-6.76487 34.9516,-16.09644 18.8205,-9.33151 36.7868,-16.96641 39.9242,-16.96641 5.6127,0 5.704,1.60749 5.6913,100.07777 l -0.016,100.07774 -26.1681,13.24099 c -43.398,21.95926 -241.0214,123.85701 -244.7386,126.19101 -2.5291,1.58811 0.5032,10.05812 11.2592,31.44851 8.0964,16.10124 15.4274,29.27502 16.2911,29.27502 0.8636,0 52.9797,-26.45412 115.8134,-58.78693 62.8338,-32.33282 117.2415,-58.78694 120.906,-58.78694 h 6.6629 V 550.92061 651.7816 l 36.0874,-0.78335 36.0885,-0.78354 z m -62.9332,147.43903 c -16.3455,-9.04646 -31.9227,-16.47506 -34.616,-16.50803 -4.4584,-0.0546 -4.9651,-5.27193 -5.6606,-58.28422 l -0.7642,-58.22413 -75.005,38.56457 c -41.2529,21.21049 -77.5526,38.56955 -80.666,38.57543 -3.1135,0 -19.5606,-7.52357 -36.5494,-16.73236 -16.9886,-9.20876 -32.294,-16.74318 -34.0117,-16.74318 -4.4294,0 -58.2212,-103.4703 -58.2212,-111.99033 0,-6.46992 11.6933,-13.05826 142.2266,-80.135 l 142.2267,-73.0855 0.7912,-33.54603 c 0.5825,-24.68391 -0.1653,-34.29594 -2.8304,-36.38467 -1.9919,-1.56123 -17.6321,-10.05138 -34.7559,-18.86699 l -31.1341,-16.02836 -15.5672,-29.83383 -15.567,-29.83379 -59.4381,0.75492 -59.4381,0.75497 -29.7017,-16.5844 c -24.5577,-13.71212 -30.6852,-16.07684 -35.3798,-13.65358 -3.1229,1.61194 -17.3753,9.70453 -31.67205,17.9835 -25.17994,14.58119 -25.95901,15.33595 -24.87165,24.09613 2.09774,16.8996 13.77785,304.20105 12.42171,305.54231 -0.74209,0.73364 -29.08995,2.63347 -62.99605,4.22181 l -61.64735,2.88793 -36.62466,-18.79721 c -36.25043,-18.60518 -36.62631,-18.89773 -36.78863,-28.63168 -0.53918,-32.32566 -7.49831,-159.71447 -8.79546,-160.99741 -0.85655,-0.8472 -14.93042,6.04879 -31.27514,15.3245 -16.34481,9.27573 -32.3991,16.86491 -35.67631,16.86491 -3.27723,0 -19.9611,-7.55832 -37.07532,-16.79626 -17.11424,-9.23795 -32.33929,-16.79628 -33.83345,-16.79628 -4.3384,0 -62.63432,-101.92637 -62.5732,-109.40486 0.0491,-5.86936 8.54336,-11.5995 63.90094,-43.10131 59.90995,-34.0923 63.51413,-36.5975 58.4675,-40.63927 -2.95806,-2.369 -49.48942,-31.99937 -103.40316,-65.84529 -89.23652,-56.02106 -98.03557,-62.22325 -98.14774,-69.18131 -0.17591,-10.89356 62.12501,-106.81065 70.15439,-108.0088 3.52391,-0.52583 17.47488,6.48714 34.80536,17.4961 15.90823,10.10556 31.11569,18.37374 33.79434,18.37374 2.67871,0 50.98775,29.10876 107.3535,64.68614 79.00974,49.87004 103.6145,64.13643 107.42248,62.28616 2.71661,-1.32 26.69759,-14.89728 53.29102,-30.17176 l 48.35166,-27.77173 -26.69088,-16.82465 c -22.58254,-14.2349 -26.66657,-17.93172 -26.53264,-24.01675 0.0925,-4.20963 13.38979,-27.50717 32.06543,-56.18121 26.35215,-40.46032 33.17554,-49.13876 39.19319,-49.84875 5.04769,-0.59555 15.49881,4.34968 34.01777,16.0964 14.7022,9.32586 28.8459,16.95608 31.4304,16.95608 2.5845,0 16.3572,7.24339 30.6063,16.09643 14.2489,8.85304 26.685,15.87728 27.6356,15.60942 2.851,-0.80332 140.1371,-79.62101 142.1918,-81.6342 1.5936,-1.5614 -78.0567,-48.5432 -87.0216,-51.3298 -1.6264,-0.50551 -25.8018,13.48662 -53.7231,31.09365 -27.9213,17.60702 -53.4274,32.51593 -56.6802,33.13093 -3.524,0.66628 -17.424,-5.18445 -34.3937,-14.47684 -15.66393,-8.57731 -31.53386,-16.74353 -35.26674,-18.14719 -8.36116,-3.14407 -70.21346,-98.19673 -70.21346,-107.90171 0,-5.16023 5.06371,-9.69019 24.05821,-21.52241 13.23204,-8.24257 24.05822,-15.72483 24.05822,-16.62723 0,-0.90243 -10.7289,-7.59701 -23.84198,-14.87685 l -23.84205,-13.23613 -128.75411,81.31999 c -84.49515,53.36648 -131.29841,81.32 -136.15586,81.32 -4.07103,0 -20.12915,-6.84128 -35.68474,-15.20286 -15.55568,-8.36155 -30.31854,-15.60494 -32.80646,-16.09644 -6.9228,-1.3675 -68.97466,-98.79146 -68.80383,-108.02472 0.12846,-6.95764 9.28489,-13.38794 102.06233,-71.67814 l 101.92087,-64.03483 -7.95215,-4.7747 c -4.37367,-2.62609 -33.10723,-19.01036 -63.85219,-36.40951 -45.79518,-25.91628 -55.90004,-32.73894 -55.90004,-37.74308 0,-3.35956 13.66158,-29.64875 30.35903,-58.42039 26.26223,-45.25288 31.28538,-52.31205 37.22439,-52.31205 3.77599,0 16.54314,5.49664 28.37143,12.21474 11.82828,6.71813 34.24269,18.88007 49.80974,27.02661 15.56712,8.14652 34.00558,18.32088 40.97436,22.60972 6.9687,4.28882 13.10792,7.36508 13.64277,6.83616 0.53509,-0.52894 3.50533,-55.56619 6.60125,-122.305 3.096,-66.73885 6.51003,-122.22597 7.58675,-123.30458 1.07681,-1.07877 31.15071,-0.63843 66.83103,0.97838 47.0847,2.13357 65.91089,3.96581 68.65712,6.68201 2.08113,2.0583 16.50386,10.43607 32.05054,18.61724 l 28.2667,14.8749 0.0164,15.39657 c 0.0164,14.1497 -9.52633,230.94251 -12.33441,280.22984 l -1.21287,21.28741 24.96958,14.40466 c 13.73327,7.92256 25.58727,14.40466 26.34227,14.40466 0.7552,0 1.8039,-13.75517 2.3308,-30.56709 0.5269,-16.8119 1.8952,-31.49078 3.0407,-32.61974 1.1455,-1.12896 30.4399,-0.76489 65.0987,0.8091 l 63.0161,2.86174 34.8138,18.95274 34.8139,18.95274 -1.6395,25.502 c -0.9017,14.02609 -1.9207,44.31158 -2.2644,67.30107 l -0.6251,41.79911 42.4556,24.5652 c 23.3507,13.51086 43.411,24.61964 44.5786,24.68613 1.1674,0.0666 2.1227,-38.10031 2.1227,-84.81518 v -84.93612 l -13.4443,-7.06439 c -99.6345,-52.35356 -105.4314,-55.865 -105.4314,-63.86454 0,-4.37266 11.9918,-30.51183 27.4536,-59.84218 24.0018,-45.53045 28.3064,-52.07826 34.2365,-52.07826 3.7305,0 17.2975,5.66874 30.1487,12.5972 12.8512,6.92847 24.1919,12.59721 25.2016,12.59721 1.0095,0 1.8357,-28.06294 1.8357,-62.36209 v -62.36208 l -101.1854,-52.05535 c -165.1195,-84.94591 -181.852,-94.35721 -181.852,-102.28343 0,-3.73401 12.4182,-30.62438 27.5962,-59.75623 23.465,-45.03783 28.5581,-52.97653 34.022,-53.03033 3.5342,-0.035 54.0237,24.5012 112.199,54.52441 58.1752,30.02334 106.5489,54.58786 107.497,54.58786 0.9481,0 1.7239,-34.01239 1.7239,-75.58317 V -1084 h 66.2781 c 36.453,0 66.7025,1.0598 67.2215,2.355 0.5187,1.2951 14.9538,9.9923 32.0776,19.3268 l 31.1342,16.9718 0.783,40.8599 c 0.4312,22.47278 1.4694,40.85978 2.3081,40.85978 0.8387,0 35.7473,-17.63607 77.5745,-39.19128 41.8273,-21.5552 77.9797,-39.1913 80.3386,-39.1913 2.3589,0 9.766,3.5854 16.46,7.9675 6.6941,4.3821 22.3839,13.2874 34.8664,19.7895 l 22.6953,11.8218 26.3202,50.15998 c 18.3929,35.05238 26.0494,52.46697 25.4212,57.82009 -0.8308,7.07809 -11.7001,13.19605 -143.0512,80.51722 l -142.1519,72.85702 -0.074,32.65941 c -0.041,17.96268 1.0442,33.07931 2.4116,33.59254 1.3674,0.51321 7.7556,11.33704 14.1962,24.05297 l 11.71,23.11983 14.3416,-7.1878 c 7.8878,-3.95332 16.8769,-6.7989 19.9759,-6.32356 4.19,0.64268 12.6557,14.65265 33.0231,54.65087 l 27.3886,53.78663 36.3717,-1.7083 c 22.9164,-1.07636 37.0518,-0.67967 38.2101,1.07222 2.1481,3.24894 53.7176,31.63199 57.4725,31.63199 1.399,0 15.8423,-7.67257 32.096,-17.05016 l 29.5521,-17.05021 -1.302,-11.64342 c -3.3739,-30.17418 -13.127,-302.03911 -10.9117,-304.15847 3.6803,-3.52077 131.4358,-7.03756 133.681,-3.67982 1.0081,1.50758 15.3508,9.88179 31.8726,18.60932 l 30.0397,15.86828 1.7632,25.88195 c 0.9698,14.23509 2.5987,51.07637 3.6199,81.86952 1.0212,30.79314 2.6579,58.18967 3.6373,60.88112 1.5272,4.19705 8.0164,1.31752 45.5911,-20.23077 41.1215,-23.58229 56.5161,-29.29821 60.7331,-22.54974 0.9294,1.4872 14.8819,9.70269 31.0056,18.25661 16.1237,8.55394 30.9678,17.52113 32.9866,19.92708 2.019,2.40597 15.5849,24.7052 30.1467,49.55387 19.7176,33.64627 26.2618,47.2437 25.6364,53.26595 -0.7691,7.40744 -7.0971,11.67345 -75.3506,50.79895 -40.981,23.49185 -74.7334,43.43654 -75.0051,44.32149 -0.2717,0.88499 45.6764,30.76363 102.1071,66.39698 90.7932,57.33167 102.6013,65.60622 102.6013,71.89848 0,4.23478 -12.878,27.30085 -31.8418,57.03259 -26.6539,41.7885 -32.9478,49.9395 -38.6307,50.02919 -5.9245,0.0934 -22.0124,-7.63754 -66.8009,-32.10125 -6.2269,-3.40112 -55.5073,-34.07749 -109.512,-68.16969 -54.0047,-34.09223 -99.6842,-61.98585 -101.5101,-61.98585 -3.7859,0 -104.3225,56.64598 -104.3363,58.78693 -0.01,0.76984 11.4336,8.32817 25.419,16.79628 23.7633,14.38843 25.3694,15.94646 24.5304,23.79472 -0.5089,4.76345 -14.3182,29.26174 -31.9065,56.6046 -37.3811,58.11314 -34.7703,57.01219 -74.8795,31.57579 -14.5667,-9.23794 -28.761,-16.79625 -31.5426,-16.79625 -2.7816,0 -15.8978,-6.9886 -29.1469,-15.53022 -21.4903,-13.85467 -24.7835,-15.1666 -30.5239,-12.16017 -6.1223,3.20638 -113.1144,64.29007 -114.7873,65.53407 -0.4393,0.32644 13.895,8.86061 31.8532,18.96484 l 32.6511,18.37135 52.7751,-33.39089 c 29.3642,-18.57871 55.7508,-33.39085 59.483,-33.39085 3.6893,0 11.4586,2.92826 17.2654,6.50725 5.8068,3.57899 21.1301,12.04381 34.0518,18.8107 l 23.494,12.30347 30.9908,47.98167 c 17.3985,26.93729 30.9907,50.93487 30.9907,54.71504 0,5.40806 -4.7353,9.68313 -24.0582,21.71986 -13.2321,8.24258 -24.0582,16.00867 -24.0582,17.25795 0,1.72935 34.0907,22.13497 45.5527,27.26635 0.9927,0.44443 60.6798,-36.40238 132.6378,-81.8818 71.9581,-45.47942 133.4831,-82.68982 136.7224,-82.68982 3.2393,0 7.9004,1.74919 10.358,3.8871 2.4576,2.1379 17.842,11.01349 34.1874,19.72353 l 29.719,15.83642 30.6145,47.46187 c 23.0861,35.79043 30.3944,49.33024 29.7191,55.05971 -0.7839,6.65267 -13.2192,15.37762 -99.959,70.13508 -54.4847,34.39546 -100.0638,63.52188 -101.2868,64.72538 -1.2229,1.20347 32.1761,21.60601 74.2201,45.33892 64.8553,36.60944 76.4553,44.1239 76.5209,49.57015 0.041,3.53066 -13.4467,29.66985 -29.9762,58.08708 -35.7282,61.42324 -32.5969,59.86593 -73.04,36.32465 -14.4973,-8.43869 -28.7554,-16.20876 -31.6845,-17.26685 -2.929,-1.05804 -23.9321,-12.41963 -46.6735,-25.2479 -22.7413,-12.82827 -42.0562,-23.32413 -42.9218,-23.32413 -2.4301,0 -4.5187,31.90068 -9.2545,141.3452 -2.3979,55.41483 -5.2619,101.59346 -6.3647,102.61914 -1.1026,1.02571 -29.8799,0.52661 -63.9495,-1.1091 l -61.9447,-2.97402 -28.0779,-15.09266 c -15.4428,-8.30094 -31.191,-16.26327 -34.9958,-17.69404 -5.7438,-2.15987 -6.9179,-4.49963 -6.9179,-13.78631 0,-15.0378 10.7788,-265.47256 12.4209,-288.58588 l 1.2997,-18.29476 -25.9653,-14.51859 -25.9655,-14.51855 -1.4152,30.49339 c -0.7781,16.77137 -2.3371,31.3994 -3.4638,32.50675 -3.0845,3.03128 -124.7821,-3.14188 -131.4427,-6.66747 -5.113,-2.70638 -5.6411,-2.33838 -4.5733,3.18644 0.792,4.09845 -8.4433,24.511 -26.8596,59.36506 -33.6505,63.68644 -31.6718,62.50369 -70.001,41.83931 l -24.1622,-13.02658 0.7617,63.66344 0.7618,63.66339 108.9696,56.2718 c 181.037,93.48727 172.5387,88.67918 172.5999,97.65232 0.033,4.47741 -11.504,29.81802 -27.0774,59.48677 -25.7093,48.97901 -27.5602,51.68677 -35.3298,51.68677 -5.1429,0 -47.5165,-20.26519 -113.6806,-54.36772 l -105.4814,-54.36757 -0.7462,90.75947 -0.7462,90.75951 -64.3525,-0.28807 -64.3524,-0.28807 z" />
35
- <text
36
- xml:space="preserve"
37
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.70857906px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#0080ff;fill-opacity:1;stroke:none;stroke-width:1.00392926"
38
- x="105.491"
39
- y="-593.11829"
40
- id="text4657"
41
- transform="scale(1.0039293,0.99608608)"><tspan
42
- id="tspan4655"
43
- x="105.491"
44
- y="-593.11829"
45
- style="font-weight:bold;font-size:481.88604736px;fill:#0080ff;fill-opacity:1;stroke-width:1.00392926">C</tspan></text>
46
- <text
47
- id="text4714"
48
- y="-1183.8679"
49
- x="1199.2745"
50
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66785812px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#0080ff;fill-opacity:1;stroke:none;stroke-width:1.00011158"
51
- xml:space="preserve"
52
- transform="scale(0.9998884,1.0001116)"><tspan
53
- style="font-weight:bold;font-size:480.05358887px;fill:#0080ff;fill-opacity:1;stroke-width:1.00011158"
54
- y="-1183.8679"
55
- x="1199.2745"
56
- id="tspan4712">N</tspan></text>
57
- <text
58
- xml:space="preserve"
59
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#0080ff;fill-opacity:1;stroke:none"
60
- x="2351.6016"
61
- y="-584"
62
- id="text4718"><tspan
63
- id="tspan4716"
64
- x="2351.6016"
65
- y="-584"
66
- style="font-weight:bold;font-size:480px;fill:#0080ff;fill-opacity:1">E</tspan></text>
67
- <text
68
- id="text4722"
69
- y="611.59686"
70
- x="2336.7239"
71
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.70857906px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#0080ff;fill-opacity:1;stroke:none;stroke-width:1.00392926"
72
- xml:space="preserve"
73
- transform="scale(1.0039293,0.99608608)"><tspan
74
- style="font-weight:bold;font-size:481.88604736px;fill:#0080ff;fill-opacity:1;stroke-width:1.00392926"
75
- y="611.59686"
76
- x="2336.7239"
77
- id="tspan4720">C</tspan></text>
78
- <text
79
- xml:space="preserve"
80
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66785812px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#0080ff;fill-opacity:1;stroke:none;stroke-width:1.00011158"
81
- x="1310.9667"
82
- y="1165.8699"
83
- id="text4726"
84
- transform="scale(0.9998884,1.0001116)"><tspan
85
- id="tspan4724"
86
- x="1310.9667"
87
- y="1165.8699"
88
- style="font-weight:bold;font-size:480.05358887px;fill:#0080ff;fill-opacity:1;stroke-width:1.00011158">I</tspan></text>
89
- <text
90
- id="text4740"
91
- y="616"
92
- x="113.00781"
93
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#0080ff;fill-opacity:1;stroke:none"
94
- xml:space="preserve"><tspan
95
- style="font-weight:bold;font-size:480px;fill:#0080ff;fill-opacity:1"
96
- y="616"
97
- x="113.00781"
98
- id="tspan4738">F</tspan></text>
99
- </g>
100
- </svg>
1
+ CNECIF
@@ -1,46 +1 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg
3
- xmlns:dc="http://purl.org/dc/elements/1.1/"
4
- xmlns:cc="http://creativecommons.org/ns#"
5
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
- xmlns:svg="http://www.w3.org/2000/svg"
7
- xmlns="http://www.w3.org/2000/svg"
8
- viewBox="0 0 2800 2800"
9
- height="2800"
10
- width="2800"
11
- id="svg4651"
12
- version="1.1">
13
- <metadata
14
- id="metadata4657">
15
- <rdf:RDF>
16
- <cc:Work
17
- rdf:about="">
18
- <dc:format>image/svg+xml</dc:format>
19
- <dc:type
20
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
21
- <dc:title></dc:title>
22
- </cc:Work>
23
- </rdf:RDF>
24
- </metadata>
25
- <defs
26
- id="defs4655" />
27
- <g
28
- style="display:inline"
29
- id="layer1">
30
- <g
31
- transform="translate(-250)"
32
- id="g5834">
33
- <rect
34
- style="opacity:1;fill:#00aeef;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
35
- id="rect5210"
36
- width="2000"
37
- height="2500"
38
- x="500"
39
- y="300" />
40
- <path
41
- style="fill:#004fa3;fill-opacity:1;stroke-width:12.56063271"
42
- d="m 800,2327.8174 v -172.182 l 59.35288,55.5785 c 78.64654,73.6449 151.10092,132.1364 269.96302,217.9358 L 1227.468,2500 H 1013.734 800 Z m 680.9962,151.3492 C 1312.5704,2390.1032 1069.1351,2214.089 930.98362,2081.483 l -94.51934,-90.7245 46.11822,-47.7243 46.11822,-47.7245 -64.35035,-71.1469 L 800,1753.0151 v -145.0113 -145.0114 l 77.10276,98.6808 c 285.52504,365.4319 703.91544,659.4944 1153.68844,810.8619 131.9891,44.4194 206.779,62.1714 474.823,112.7017 43.2908,8.1609 -98.6854,12.0814 -462.3277,12.7652 -453.9256,0.8521 -529.8671,-1.6905 -562.2903,-18.8354 z M 2537.5277,2334.2538 C 2064.8919,2283.2122 1589.2101,2064.0039 1231.088,1732.2084 l -72.3528,-67.0341 46.8007,-48.43 46.8007,-48.4308 -95.4403,-111.8079 C 1041.6195,1321.4584 946.49139,1180.733 862.86059,1021.5292 L 800.47962,902.7775 801.36111,574.49532 C 802.23397,249.4223 802.41803,247.19975 820.18641,347.22251 983.79165,1268.1951 1752.473,1968.4745 2668.0537,2030.6553 l 124.9535,8.4857 v 151.5153 151.5151 l -74.9722,1.7396 c -41.2346,0.9574 -122.4628,-3.3892 -180.5073,-9.6572 z m 115.267,-453.8323 C 1740.1902,1809.5142 996.45735,1051.1601 941.74307,135.73201 L 933.63047,0 h 226.82533 226.8253 l 0.1136,78.91382 c 0.1452,101.2178 48.3457,315.81161 101.4173,451.52177 49.2096,125.83426 154.4188,298.84191 244.4111,401.91391 l 64.7963,74.214 -48.9869,48.3352 c -47.077,46.4508 -48.1418,49.2897 -27.3103,72.8021 38.7291,43.7141 219.3958,180.1751 309.0695,233.447 182.1379,108.2007 406.3715,180.6088 631.6533,203.9697 69.8297,7.2414 129.1785,13.1656 131.8865,13.1656 2.7081,0 4.9238,71.0228 4.9238,157.8277 0,86.8059 -4.2172,157.0198 -9.3716,156.0312 -5.1543,-0.9886 -66.8441,-6.2622 -137.0886,-11.7206 z m -40.196,-612.3372 c -471.4917,-70.3864 -866.1782,-406.356 -1018.1161,-866.65347 -31.634,-95.8352 -49.7472,-188.38064 -63.124,-322.51701 L 1523.4889,0 h 223.3747 223.3747 l 14.928,98.53788 c 23.4559,154.82856 71.742,269.59759 170.3373,404.86744 l 58.6206,80.42617 -44.8394,46.4005 -44.8396,46.40063 46.8882,44.97728 c 135.208,129.6979 342.8813,222.7092 546.4449,244.7377 l 82.2217,8.8967 -3.4964,153.1611 -3.4964,153.1599 -31.2385,2.0626 c -17.181,1.1334 -84.3076,-5.8608 -149.17,-15.5436 z m 42.9597,-604.75475 C 2373.8069,599.38729 2163.3242,362.62218 2130.4047,72.60131 L 2122.1642,0 h 338.7493 338.7495 l -3.328,337.75282 -3.3278,337.75197 -31.2384,2.41947 c -17.1811,1.33041 -64.9758,-5.2368 -106.2104,-14.59471 z"
43
- id="path5206" />
44
- </g>
45
- </g>
46
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="2800" height="2800"><path fill="#00aeef" d="M250 300h2000v2500H250z"/><path fill="#004fa3" d="M550 2327.817v-172.182l59.353 55.579c78.646 73.645 151.1 132.136 269.963 217.936l98.152 70.85H550zm680.996 151.35c-168.426-89.064-411.86-265.078-550.012-397.684l-94.52-90.725 46.118-47.724 46.119-47.724-64.35-71.147L550 1753.015v-290.023l77.103 98.681c285.525 365.432 703.915 659.495 1153.688 810.862 131.99 44.42 206.78 62.172 474.823 112.702 43.291 8.16-98.685 12.081-462.328 12.765-453.925.852-529.867-1.69-562.29-18.835zm1056.532-144.913c-472.636-51.042-948.318-270.25-1306.44-602.046l-72.353-67.034 46.8-48.43 46.802-48.43-95.44-111.808c-115.278-135.048-210.406-275.773-294.036-434.977L550.48 902.778l.881-328.283c.873-325.073 1.057-327.295 18.825-227.272 163.606 920.972 932.287 1621.251 1847.868 1683.432l124.953 8.486v303.03l-74.972 1.74c-41.235.957-122.463-3.39-180.507-9.657zm115.267-453.832C1490.19 1809.514 746.457 1051.16 691.743 135.731L683.63 0H1137.281l.114 78.914c.145 101.218 48.345 315.811 101.417 451.522 49.21 125.834 154.419 298.841 244.411 401.913l64.796 74.214-48.987 48.336c-47.077 46.45-48.141 49.29-27.31 72.802 38.73 43.714 219.396 180.175 309.07 233.447 182.138 108.2 406.371 180.609 631.653 203.97 69.83 7.24 129.178 13.165 131.886 13.165 2.709 0 4.924 71.023 4.924 157.828 0 86.806-4.217 157.02-9.371 156.031-5.155-.989-66.844-6.262-137.089-11.72zm-40.196-612.338c-471.492-70.386-866.179-406.356-1018.116-866.653-31.634-95.835-49.748-188.38-63.124-322.517L1273.489 0h446.749l14.928 98.538c23.456 154.828 71.742 269.597 170.338 404.867l58.62 80.426-44.84 46.401-44.839 46.4 46.888 44.978c135.208 129.698 342.882 222.71 546.445 244.738l82.222 8.896-3.496 153.161-3.497 153.16-31.238 2.063c-17.181 1.133-84.308-5.86-149.17-15.544zm42.96-604.754c-281.752-63.943-492.235-300.708-525.154-590.729L1872.165 0h677.498l-3.328 337.753-3.328 337.752-31.238 2.42c-17.181 1.33-64.976-5.238-106.21-14.595z"/></svg>