jekyll-theme-consulting 0.8.4 → 0.8.9

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: 901e4b7bd438ac7354731b1ea6edb29ad70b960cb10b3e4a02a0aaac61933e35
4
- data.tar.gz: a981a4533dfee5301464c701c943eacd10f4c7e294bbb868ede9786b2a58bbb9
3
+ metadata.gz: 1a53c7f78a475d3425c067c72bbc8f9227f643e9b298494744f96ba3687c591b
4
+ data.tar.gz: 9dd2921dd586459de84039e350ae0284d5354248ce172d335c98d716cd59bfe0
5
5
  SHA512:
6
- metadata.gz: be10235a1497cd00119c6f655deb26069566e459eb4df15bd893415e55fe9b403dcc22d6628a6c437c54568726954d1e570a66db591d12fd76ed2e149b073100
7
- data.tar.gz: da2173d4be41f7d49a499f775e2ed189151462ce1a188126f3ef3d60076b5abbc18b93e3385f085e2c3c059e58be67d6c5aa3194527ce51c542cd5cfd2759056
6
+ metadata.gz: b4171d031d8b2c164fb86d390a7891e6fac32e5a57842de157f451f155be12683a5218982847a9c7843cabc78d0f4643a799b81474b4d45df5747bb5a6dc898a
7
+ data.tar.gz: b7a54df3b6bbde105a0aeb5903a3e210104166967089805126db1c4a9f360a423a86b7690516bec8423e887c55a3e881e37f0dd712beb41126c21862670d716d
data/README.md CHANGED
@@ -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
@@ -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>
@@ -0,0 +1,18 @@
1
+ <article>
2
+ {%- if include.image-src -%}
3
+ <a href="{{ include.target-url | absolute_url }}" class="image" >
4
+ <img class="lazy-loading" src="{{ include.image-src | absolute_url }}" data-src="{{ include.image-placeholder-src | default: image-src | absolute_url }}" alt="{{ include.image-alt-text }}">
5
+ </a>
6
+ {%- endif -%}
7
+ <h3>{{ include.title }}</h3>
8
+ <p>{{ include.content }}</p>
9
+ {%- if include.target-url -%}
10
+ <ul class="actions">
11
+ <li>
12
+ <a href="{{ include.target-url | absolute_url }}" class="button">
13
+ {% if page.lang=="en" %}More{% elsif page.lang=="fr" %}Plus{% endif %}
14
+ </a>
15
+ </li>
16
+ </ul>
17
+ {%- endif -%}
18
+ </article>
@@ -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
 
@@ -37,7 +37,7 @@
37
37
  height: 20%;
38
38
  text-align: center;
39
39
  font-size: 3rem;
40
- color: _palette(accent);
40
+ color: _palette(accent) !important;
41
41
  }
42
42
 
43
43
  .fact-intro, .fact-outro {
@@ -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
  }
@@ -105,7 +105,7 @@
105
105
  }
106
106
 
107
107
  article:hover {
108
- background-color: _palette(accent);
108
+ background-color: _palette(accent) !important;
109
109
 
110
110
  .on {
111
111
  display: none;
@@ -113,14 +113,14 @@
113
113
 
114
114
  .off.icon {
115
115
  display: block;
116
- color: _palette(accent-cp);
116
+ color: _palette(accent-cp) !important;
117
117
  }
118
118
 
119
119
  .off.fact-intro {
120
120
  display: table;
121
121
 
122
122
  p {
123
- color: #ffffff;
123
+ color: #ffffff !important;
124
124
  }
125
125
  }
126
126
 
@@ -128,7 +128,7 @@
128
128
  display: table;
129
129
 
130
130
  h3 {
131
- color: #ffffff;
131
+ color: #ffffff !important;
132
132
  }
133
133
  }
134
134
 
@@ -136,7 +136,7 @@
136
136
  display: table;
137
137
 
138
138
  p {
139
- color: #ffffff;
139
+ color: #ffffff !important;
140
140
  }
141
141
  }
142
142
  }
@@ -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
  }
@@ -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>
@@ -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
- width="2800"
9
- height="2800"
10
- viewBox="0 0 740.83332 740.83335"
11
- version="1.1"
12
- id="svg4580">
13
- <defs
14
- id="defs4574" />
15
- <metadata
16
- id="metadata4577">
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
- style="fill:#860071;fill-opacity:1"
29
- id="layer1"
30
- transform="matrix(1.2993798,0,0,1.2993798,-108.93407,574.45112)">
31
- <g
32
- style="fill:#860071;fill-opacity:1"
33
- id="g4546"
34
- transform="matrix(0.26458333,0,0,0.26458333,18.718904,-480.12521)">
35
- <path
36
- d="m 791.54,1720.2284 c -1.21367,-1.3411 -2.20666,-3.6107 -2.20666,-5.0436 0,-1.9467 27.66543,-21.8059 109.44254,-78.5618 60.19339,-41.776 110.74342,-76.6864 112.33332,-77.5785 7.2774,-4.0839 463.4822,-319.86 466.8538,-323.1473 1.4474,-1.4113 1.913,-2.5639 1.0356,-2.5639 -1.4454,0 -506.38113,241.7408 -540.99859,259.0062 C 877.54856,1522.4893 723.71808,1596 721.07705,1596 c -1.29189,0 -3.38271,-1.5778 -4.64624,-3.5062 -2.23329,-3.4085 -2.20567,-3.585 0.99077,-6.3333 2.75123,-2.3656 137.19784,-96.095 143.67132,-100.1605 20.44224,-12.8381 527.1605,-363.3972 532.2102,-368.1951 1.8167,-1.726 2.5453,-3.1382 1.6193,-3.1382 -1.812,0 -569.79812,272.0968 -576.25572,276.0584 -7.93046,4.865 -168.40039,81.2749 -170.68739,81.2749 -1.98416,0 -5.31262,-4.9713 -5.31262,-7.9348 0,-0.8907 113.05866,-80.3647 122.43533,-86.0652 1.20622,-0.7333 8.97966,-5.9833 17.2743,-11.6667 8.29466,-5.6833 15.30406,-10.3333 15.57647,-10.3333 1.25536,0 509.77543,-352.7316 512.71393,-355.6407 l 3.3333,-3.29988 -3.1396,0.93777 c -3.5695,1.0662 -521.67908,249.48651 -561.52706,269.23791 -34.95044,17.3239 -169.54147,81.8517 -171.78565,82.3602 -0.98212,0.2226 -3.02859,-1.2176 -4.54771,-3.2004 -2.28575,-2.9834 -2.46847,-3.9588 -1.05959,-5.6564 1.59236,-1.9186 141.7409,-99.5865 151.25127,-105.4052 13.41858,-8.2098 523.79924,-361.86616 527.47504,-365.50147 2.866,-2.83443 2.9594,-3.16652 0.6666,-2.36857 -4.142,1.44156 -448.57477,214.50224 -491.33329,235.54484 -76.71731,37.7545 -253.89403,122.3252 -256.27284,122.3252 -3.0741,0 -6.09043,-6.1144 -4.3217,-8.7606 0.96323,-1.441 220.04742,-154.0428 243.26121,-169.4421 18.1982,-12.0721 81.83053,-55.95156 272.08582,-187.6243 l 217.4498,-150.49369 254.0028,-121.82826 c 139.7015,-67.00554 264.606,-127.02825 277.5655,-133.38377 38.2185,-18.74289 267.0981,-128.58988 272.7208,-130.88781 4.8638,-1.98787 5.2629,-1.96444 7,0.41109 1.013,1.38554 1.842,3.56947 1.842,4.8532 0,1.58604 -31.6304,24.25835 -98.6975,70.74516 -54.2837,37.62611 -99.6964,69.01111 -100.9173,69.74444 -6.1932,3.72001 -476.1527,329.36585 -478.7134,331.71156 -1.647,1.50886 -2.7362,3.00176 -2.4205,3.31752 0.4871,0.48709 490.3844,-233.9022 571.4153,-273.39123 89.8792,-43.80106 176.8204,-84.94166 178.3027,-84.37285 2.4732,0.94902 5.092,7.22628 3.5945,8.61582 -1.4725,1.36633 -115.5854,80.36769 -129.8972,89.9289 -16.2498,10.85599 -525.3266,363.38857 -533.2665,369.28388 -3.9967,2.96744 -6.6103,5.61414 -5.8079,5.88158 1.2236,0.4079 557.8158,-265.73453 606.4078,-289.96246 32.2277,-16.06873 128.1128,-61.67939 129.6656,-61.67939 0.8796,0 2.5244,1.78915 3.6552,3.97587 2.476,4.78795 9.9804,-1.07076 -63.7866,49.79833 -213.8221,147.44995 -611.4672,423.12161 -614.2009,425.80131 l -3.3333,3.2674 6.6666,-2.5895 c 6.3642,-2.4719 558.7171,-267.34388 592,-283.88402 8.8,-4.37321 46.5236,-22.56993 83.8303,-40.43715 l 67.8303,-32.48585 2.503,3.09119 c 1.3767,1.70014 2.5031,3.84468 2.5031,4.76561 0,1.3936 -150.0972,106.7407 -163.1589,114.51458 -4.0596,2.41614 -496.5368,343.28814 -517.1744,357.96644 -9.8627,7.0147 -13.0332,10.4342 -8,8.6282 3.2086,-1.1513 489.2209,-234.12994 501.6666,-240.48282 19.6799,-10.04552 252.2727,-121.20611 254.3612,-121.56414 1.1963,-0.20506 3.0479,1.27795 4.2187,3.37907 1.998,3.58505 1.9408,3.86896 -1.3421,6.66667 -1.886,1.60718 -68.786,48.10798 -148.6667,103.3351 -79.8808,55.22714 -243.4559,168.38142 -363.5004,251.45402 l -218.2625,151.041 -201.0708,96.4284 C 1205.154,1524.946 1181.0297,1536.5738 1110,1571.2866 c -45.5444,22.2579 -314.73111,151.38 -315.58874,151.38 -0.36554,0 -1.65761,-1.0972 -2.87126,-2.4382 z m 427.5594,-213.0628 c 196.662,-94.3256 362.6673,-174.0214 368.9006,-177.102 7.291,-3.6031 127.6134,-86.1227 337.3334,-231.35 179.3,-124.16194 329.1958,-228.12014 333.102,-231.01818 3.9061,-2.89806 6.7992,-5.57202 6.429,-5.94214 -0.3701,-0.37013 -166.166,78.68156 -368.4353,175.67042 l -367.7624,176.3434 -331.304,229.4418 c -182.2172,126.1931 -332.81724,230.7765 -334.6667,232.4077 -1.84946,1.6312 -2.86794,2.9847 -2.26328,3.0079 0.60466,0.023 162.00468,-77.1333 358.66668,-171.4589 z m -62.1178,-131.2924 367.1947,-176.1269 328.2452,-227.37559 c 372.6379,-258.12637 340.2004,-235.49674 338.4155,-236.09174 -0.752,-0.25064 -166.2479,78.5871 -367.7687,175.19502 L 1456.6667,1087.1247 1430,1105.3952 c -37.4444,25.6548 -635.29716,439.9553 -640.07907,443.5625 -2.189,1.6513 -3.08456,2.9764 -2.02748,3 1.04139,0.023 167.13104,-79.2148 369.08815,-176.0845 z m -71.6483,-124.6561 366.0001,-175.5515 331.304,-229.4916 c 182.2172,-126.22037 332.8172,-230.84782 334.6666,-232.50545 2.8094,-2.51792 2.9239,-2.86638 0.696,-2.1176 -1.4666,0.49295 -167.9666,80.17559 -370,177.07252 l -367.3333,176.17625 -326,225.79638 c -179.30002,124.188 -329.60002,228.4803 -334.00002,231.7606 -5.54066,4.1308 -6.97527,5.7257 -4.66667,5.1881 1.83333,-0.4269 168.03333,-79.7744 369.33329,-176.3277 z M 1011.8354,1129.7967 1378,954.25999 1605.3334,796.89596 c 419.9593,-290.70301 443.0476,-306.76899 441.565,-307.26318 -0.8128,-0.27091 -166.9473,78.86981 -369.188,175.86827 L 1310,841.86187 978.00001,1071.7568 c -182.6,126.4422 -332.87858,230.7233 -333.95239,231.7357 -1.5456,1.4573 -1.57991,1.8408 -0.16463,1.8408 0.98326,0 166.56183,-78.9915 367.95241,-175.5366 z m -70.50205,-125.29 365.99995,-175.57742 332.0001,-229.92247 c 182.6,-126.45738 333.2,-231.09715 334.6666,-232.53284 l 2.6667,-2.61036 -2.6667,0.94899 c -1.4666,0.52193 -167.9666,80.21812 -370,177.10262 L 1236.6667,718.06886 904.00001,948.4963 c -182.96667,126.7351 -333.26667,231.047 -334,231.8044 -0.91087,0.9406 -0.27716,1.1245 2,0.5802 1.83333,-0.4382 168.03333,-79.8066 369.33334,-176.3742 z m 0,0 365.99995,-175.57742 332.0001,-229.92247 c 182.6,-126.45738 333.2,-231.09715 334.6666,-232.53284 l 2.6667,-2.61036 -2.6667,0.94899 c -1.4666,0.52193 -167.9666,80.21812 -370,177.10262 L 1236.6667,718.06886 904.00001,948.4963 c -182.96667,126.7351 -333.26667,231.047 -334,231.8044 -0.91087,0.9406 -0.27716,1.1245 2,0.5802 1.83333,-0.4382 168.03333,-79.8066 369.33334,-176.3742 z m -201.30005,219.4197 17.30004,-12.0735 v -21.6949 c 0,-24.8856 1.5638,-42.9893 6.00196,-69.4831 1.71908,-10.2622 2.87542,-18.9086 2.56964,-19.2144 -0.70954,-0.7096 -19.76416,7.827 -31.84082,14.2649 -10.97458,5.8503 -10.45312,4.537 -13.47148,33.9313 -1.54588,15.0545 -2.04147,30.0945 -1.71638,52.088 0.40643,27.4951 1.04499,34.2553 3.23574,34.2553 0.3417,0 8.40629,-5.4331 17.9213,-12.0736 z M 1011.8354,1129.7967 1378,954.25999 1605.3334,796.89596 c 419.9593,-290.70301 443.0476,-306.76899 441.565,-307.26318 -0.8128,-0.27091 -166.9473,78.86981 -369.188,175.86827 L 1310,841.86187 978.00001,1071.7568 c -182.6,126.4422 -332.87858,230.7233 -333.95239,231.7357 -1.5456,1.4573 -1.57991,1.8408 -0.16463,1.8408 0.98326,0 166.56183,-78.9915 367.95241,-175.5366 z m -230.44308,237.4365 c 8.03424,-5.5551 14.60769,-10.5673 14.60769,-11.1384 0,-0.5709 -3.25509,-7.8861 -7.23353,-16.2559 -8.62214,-18.1391 -17.94015,-44.7634 -22.10914,-63.1722 -1.66076,-7.3334 -3.42902,-13.7944 -3.92949,-14.3578 -0.50045,-0.5634 -8.51896,2.6155 -17.81888,7.0641 -20.10257,9.6162 -19.31339,7.3559 -11.67091,33.4257 8.1723,27.8771 28.30796,74.5346 32.16642,74.5346 0.75909,0 7.95361,-4.545 15.98784,-10.1001 z m 303.94098,-116.0161 366.0001,-175.5515 331.304,-229.4916 c 182.2172,-126.22037 332.8172,-230.84782 334.6666,-232.50545 2.8094,-2.51792 2.9239,-2.86638 0.696,-2.1176 -1.4666,0.49295 -167.9666,80.17559 -370,177.07252 l -367.3333,176.17625 -326,225.79638 c -179.30002,124.188 -329.60002,228.4803 -334.00002,231.7606 -5.54066,4.1308 -6.97527,5.7257 -4.66667,5.1881 1.83333,-0.4269 168.03333,-79.7744 369.33329,-176.3277 z m -208.57113,224.5293 c 7.64748,-5.2728 13.90451,-10.2307 13.90451,-11.0175 0,-0.7868 -4.6386,-5.0226 -10.308,-9.413 -13.38935,-10.3688 -42.84555,-39.8071 -53.01483,-52.9826 C 822.95728,1396.65 818.69861,1392 817.88013,1392 c -3.58161,0 -32.54679,14.7855 -32.54679,16.6137 0,3.0042 20.40459,27.7126 35.33334,42.7862 15.36958,15.5185 37.1559,33.9334 40.14609,33.9334 1.12469,0 8.30191,-4.3141 15.9494,-9.5869 z m 280.21943,-99.8732 367.1947,-176.1269 328.2452,-227.37559 c 372.6379,-258.12637 340.2004,-235.49674 338.4155,-236.09174 -0.752,-0.25064 -166.2479,78.5871 -367.7687,175.19502 L 1456.6667,1087.1247 1430,1105.3952 c -37.4444,25.6548 -635.29716,439.9553 -640.07907,443.5625 -2.189,1.6513 -3.08456,2.9764 -2.02748,3 1.04139,0.023 167.13104,-79.2148 369.08815,-176.0845 z m -128.1313,171.2533 c 9.1121,-6.3471 16.3651,-12.1469 16.1179,-12.8885 -0.2472,-0.7418 -5.8162,-2.7614 -12.3755,-4.4882 -26.3768,-6.9437 -60.80546,-19.7935 -83.19582,-31.0511 -5.86905,-2.951 -11.19347,-5.3654 -11.83203,-5.3654 -0.63856,0 -9.47913,3.9715 -19.64572,8.8254 l -18.48469,8.8254 3.28278,2.6627 c 4.69351,3.8069 37.69602,20.1472 55.13478,27.2985 16.85711,6.9128 48.2499,17.5881 51.9561,17.668 1.3612,0.029 9.9301,-5.1397 19.0422,-11.4868 z m 190.2491,-39.9609 c 196.662,-94.3256 362.6673,-174.0214 368.9006,-177.102 7.291,-3.6031 127.6134,-86.1227 337.3334,-231.35 179.3,-124.16194 329.1958,-228.12014 333.102,-231.01818 3.9061,-2.89806 6.7992,-5.57202 6.429,-5.94214 -0.3701,-0.37013 -166.166,78.68156 -368.4353,175.67042 l -367.7624,176.3434 -331.304,229.4418 c -182.2172,126.1931 -332.81724,230.7765 -334.6667,232.4077 -1.84946,1.6312 -2.86794,2.9847 -2.26328,3.0079 0.60466,0.023 162.00468,-77.1333 358.66668,-171.4589 z M 698.39924,1900.3068 C 487.41882,1778.7713 314.24404,1678.7333 313.56642,1678 c -0.7455,-0.8068 -1.53344,-176.518 -1.99524,-444.9396 -0.7156,-415.94457 -0.6221,-443.76752 1.49948,-446.19364 2.27626,-2.603 760.70354,-442.22056 766.92934,-444.54574 2.9516,-1.10232 16.0849,6.10212 114.6667,62.90183 61.2333,35.28069 111.4833,64.58865 111.6667,65.12878 0.1834,0.54015 -13.2943,7.58199 -29.9505,15.64855 -189.6052,91.82581 -344.16278,222.59653 -446.12665,377.46648 -9.1252,13.86 -20.92237,32.7 -26.21593,41.86666 -12.4278,21.5208 -35.22346,68.03114 -43.78407,89.33334 -7.67664,19.10254 -17.58957,47.39094 -17.58957,50.19514 0,2.6109 1.14649,1.926 28.1926,-16.8423 l 23.0089,-15.9668 8.16479,-18.3597 c 32.86408,-73.89956 76.52184,-140.33192 135.62772,-206.37961 20.07328,-22.43083 62.17112,-64.04442 84.68391,-83.70984 112.6466,-98.3991 251.742,-176.06546 392.9888,-219.4322 114.3126,-35.09719 231.5248,-47.41061 332,-34.87738 l 20,2.49479 136.326,-65.3732 c 75.5837,-36.24514 137.2026,-65.03676 138.2936,-64.61814 2.3973,0.91998 4.1817,7.26791 2.5122,8.93743 -0.6634,0.66345 -45.2508,31.70337 -99.083,68.9776 -53.8322,37.27424 -98.0886,68.4066 -98.3474,69.18304 -0.2588,0.77644 5.8082,3.58057 13.482,6.23141 28.2578,9.76127 61.371,25.43067 82.5248,39.05135 4.9728,3.20196 10.1167,5.82174 11.4307,5.82174 1.314,0 37.3908,-16.8 80.1707,-37.33333 42.7798,-20.53333 78.252,-37.33333 78.827,-37.33333 1.3472,0 5.1967,5.47813 5.1967,7.39536 0,0.80779 -29.3984,21.82428 -65.3297,46.70333 -35.9315,24.87905 -65.3315,45.64349 -65.3334,46.1432 0,0.49971 6.665,7.39971 14.8154,15.33333 16.9288,16.47842 32.5138,35.27287 44.855,54.09144 4.689,7.15 9.0387,13 9.6662,13 0.6274,0 28.6326,-13.22001 62.2337,-29.3778 33.6011,-16.1578 62.3993,-29.71194 63.9964,-30.12033 2.2636,-0.57889 3.3675,0.15476 5.0089,3.32907 l 2.1056,4.0716 -7.009,5.1273 c -3.855,2.82002 -30.2591,21.19394 -58.6758,40.83094 -30.1616,20.84282 -51.6666,36.55794 -51.6666,37.75612 0,1.12886 2.061,7.22686 4.5802,13.55113 9.5622,24.00583 17.4346,55.556 21.4168,85.83197 0.5131,3.90068 1.5024,6.33333 2.5759,6.33333 0.9587,0 36.3955,-16.62462 78.7484,-36.94362 l 77.0056,-36.94361 2.5032,3.09133 c 1.3768,1.70023 2.5032,3.84483 2.5032,4.76576 0,0.92092 -35.5952,26.31671 -79.1004,56.43505 -43.5053,30.11836 -79.7304,55.5484 -80.5003,56.5112 -0.7698,0.96281 -1.803,7.45056 -2.296,14.41723 -2.1237,30.01328 -6.7018,57.55284 -14.8374,89.25465 -5.0511,19.68233 -5.1188,20.07868 -3.4291,20.07868 0.6436,0 56.1923,-26.38489 123.4416,-58.63309 67.2495,-32.24822 123.2339,-58.79822 124.4099,-59 1.2037,-0.20656 3.0502,1.26954 4.2249,3.37761 1.9979,3.58503 1.9408,3.86899 -1.3419,6.66667 -1.8857,1.60718 -67.9564,47.59626 -146.8237,102.19798 l -143.3951,99.27584 -7.8429,14.6879 c -54.0144,101.1554 -132.1344,192.9355 -233.8429,274.7329 -117.7276,94.6803 -262.487,167.5641 -403.5146,203.1621 -74.9888,18.9286 -136.4675,26.8234 -209.1036,26.8522 l -33.2849,0.013 -27.0485,12.9486 c -14.8766,7.1214 -27.0485,13.3737 -27.0485,13.8938 0,5.1514 116.107,8.1471 158,4.0766 119.2313,-11.5851 230.1253,-41.6188 342.0001,-92.6248 84.2284,-38.4015 171.927,-91.3407 239.0738,-144.3167 6.0094,-4.741 11.5775,-8.6256 12.3735,-8.6322 1.8927,-0.016 3.7609,336.4847 1.8875,339.9851 -1.4423,2.6951 -765.5192,445.5487 -769.8402,446.194 -1.8317,0.2736 -137.96855,-77.4254 -386.42876,-220.551 z"
37
- style="fill:#860071;stroke-width:1.33333337;fill-opacity:1"
38
- id="path4548" />
39
- </g>
40
- </g>
41
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="2800" height="2800" viewBox="0 0 740.833 740.833"><path fill="#860071" d="M187.516 541.99c-.417-.46-.759-1.24-.759-1.733 0-.67 9.511-7.497 37.626-27.01 20.694-14.362 38.073-26.364 38.62-26.67 2.501-1.404 159.342-109.966 160.501-111.097.498-.485.658-.881.356-.881-.497 0-174.09 83.11-185.992 89.045-20.783 10.365-73.669 35.638-74.577 35.638-.444 0-1.163-.543-1.597-1.206-.768-1.172-.759-1.232.34-2.177.946-.813 47.168-33.037 49.394-34.435 7.028-4.413 181.234-124.934 182.97-126.583.625-.593.876-1.079.557-1.079-.623 0-195.893 93.545-198.113 94.907-2.727 1.673-57.895 27.942-58.682 27.942-.682 0-1.826-1.709-1.826-2.728 0-.306 38.869-27.629 42.093-29.588.414-.253 3.087-2.057 5.938-4.011 2.852-1.954 5.262-3.553 5.355-3.553.432 0 175.258-121.267 176.269-122.267l1.146-1.135-1.08.323c-1.227.366-179.35 85.772-193.05 92.562-12.015 5.956-58.287 28.14-59.059 28.315-.337.077-1.04-.418-1.563-1.1-.786-1.026-.849-1.361-.364-1.945.547-.66 48.73-34.237 51.999-36.237 4.613-2.823 180.08-124.408 181.343-125.658.985-.974 1.017-1.088.23-.814-1.425.496-154.218 73.745-168.918 80.979-26.375 12.98-87.288 42.055-88.106 42.055-1.056 0-2.093-2.102-1.485-3.012.33-.496 75.65-52.96 83.631-58.253 6.257-4.15 28.133-19.236 93.542-64.505l74.758-51.738 87.325-41.884c48.028-23.036 90.97-43.672 95.425-45.857 13.14-6.444 91.827-44.208 93.76-44.998 1.672-.684 1.81-.676 2.406.141.349.476.634 1.227.634 1.669 0 .545-10.875 8.34-33.932 24.321-18.662 12.936-34.275 23.726-34.695 23.978-2.129 1.279-163.698 113.234-164.579 114.04-.566.52-.94 1.033-.832 1.141.168.168 168.592-80.414 196.45-93.99 30.9-15.059 60.79-29.203 61.299-29.007.85.326 1.75 2.484 1.236 2.962-.506.47-39.738 27.63-44.658 30.917-5.587 3.732-180.604 124.93-183.334 126.958-1.374 1.02-2.273 1.93-1.997 2.022.42.14 191.774-91.358 208.48-99.688 11.08-5.524 44.044-21.205 44.578-21.205.302 0 .868.615 1.257 1.367.85 1.646 3.43-.368-21.93 17.12-73.51 50.693-210.219 145.467-211.159 146.389l-1.146 1.123 2.292-.89c2.188-.85 192.084-91.912 203.527-97.598 3.025-1.504 15.994-7.76 28.82-13.902l23.32-11.169.86 1.063c.473.585.86 1.322.86 1.639 0 .479-51.602 36.696-56.092 39.369-1.396.83-170.707 118.02-177.802 123.067-3.39 2.411-4.48 3.587-2.75 2.966 1.103-.396 168.191-80.492 172.47-82.677 6.766-3.453 86.73-41.67 87.448-41.793.41-.07 1.047.44 1.45 1.162.687 1.233.667 1.33-.461 2.292-.649.553-23.649 16.54-51.111 35.526a436540.742 436540.742 0 00-124.97 86.449l-75.037 51.927-69.127 33.151c-67.584 32.412-75.878 36.41-100.298 48.343-15.657 7.653-108.202 52.044-108.497 52.044-.126 0-.57-.377-.987-.838zm146.992-73.249c67.612-32.429 124.683-59.828 126.826-60.887 2.507-1.238 43.873-29.608 115.973-79.536 61.643-42.687 113.176-78.427 114.519-79.423 1.343-.997 2.337-1.916 2.21-2.043-.127-.127-57.127 27.05-126.666 60.394l-126.434 60.626-113.9 78.881c-62.646 43.384-114.421 79.34-115.057 79.9-.636.561-.986 1.027-.778 1.035.208.007 55.696-26.518 123.307-58.947zm-21.356-45.138l126.24-60.551 112.849-78.17c128.11-88.743 116.959-80.963 116.345-81.167-.259-.087-57.155 27.017-126.437 60.23l-125.966 60.388-9.168 6.282c-12.874 8.82-218.412 151.254-220.056 152.494-.752.568-1.06 1.023-.697 1.031.358.008 57.459-27.233 126.89-60.537zm-24.632-42.856l125.829-60.353 113.9-78.898c62.646-43.394 114.421-79.364 115.057-79.934.966-.866 1.005-.986.24-.728-.505.17-57.747 27.564-127.205 60.876L390.054 282.28l-112.077 77.627c-61.642 42.695-113.314 78.55-114.827 79.678-1.905 1.42-2.398 1.969-1.604 1.784.63-.147 57.768-27.426 126.974-60.62zm-25.268-41.743l125.885-60.349 78.156-54.1c144.38-99.943 152.317-105.466 151.808-105.636-.28-.093-57.396 27.115-126.925 60.463L365.76 240.013 251.62 319.05c-62.776 43.47-114.441 79.321-114.81 79.67-.532.5-.543.632-.057.632.338 0 57.263-27.157 126.5-60.348zm-24.238-43.074l125.829-60.363 114.14-79.046c62.776-43.475 114.552-79.45 115.056-79.943l.917-.898-.917.327c-.504.179-57.746 27.578-127.204 60.886l-126.287 60.561-114.37 79.22c-62.902 43.57-114.574 79.432-114.826 79.693-.314.323-.096.386.687.2.63-.151 57.77-27.438 126.975-60.637zm0 0l125.829-60.363 114.14-79.046c62.776-43.475 114.552-79.45 115.056-79.943l.917-.898-.917.327c-.504.179-57.746 27.578-127.204 60.886l-126.287 60.561-114.37 79.22c-62.902 43.57-114.574 79.432-114.826 79.693-.314.323-.096.386.687.2.63-.151 57.77-27.438 126.975-60.637zm-69.206 75.435l5.948-4.15v-7.46c0-8.555.537-14.779 2.063-23.887.591-3.528.989-6.501.884-6.606-.244-.244-6.795 2.69-10.947 4.904-3.773 2.011-3.594 1.56-4.632 11.665-.531 5.176-.701 10.347-.59 17.908.14 9.453.36 11.777 1.113 11.777.117 0 2.89-1.868 6.161-4.151zm93.444-32.361l125.885-60.349 78.156-54.1c144.38-99.943 152.317-105.466 151.808-105.636-.28-.093-57.396 27.115-126.925 60.463L365.76 240.013 251.62 319.05c-62.776 43.47-114.441 79.321-114.81 79.67-.532.5-.543.632-.057.632.338 0 57.263-27.157 126.5-60.348zm-79.225 81.629c2.762-1.91 5.022-3.633 5.022-3.83 0-.196-1.119-2.71-2.487-5.588-2.964-6.236-6.167-15.39-7.6-21.718-.572-2.521-1.18-4.743-1.352-4.936-.172-.194-2.928.899-6.126 2.428-6.91 3.306-6.64 2.53-4.012 11.492 2.81 9.584 9.732 25.624 11.059 25.624.26 0 2.734-1.562 5.496-3.472zm104.493-39.886l125.829-60.353 113.9-78.898c62.646-43.394 114.421-79.364 115.057-79.934.966-.866 1.005-.986.24-.728-.505.17-57.747 27.564-127.205 60.876L390.054 282.28l-112.077 77.627c-61.642 42.695-113.314 78.55-114.827 79.678-1.905 1.42-2.398 1.969-1.604 1.784.63-.147 57.768-27.426 126.974-60.62zm-71.705 77.192c2.629-1.813 4.78-3.517 4.78-3.788 0-.27-1.595-1.726-3.544-3.236-4.603-3.564-14.73-13.685-18.226-18.215-1.508-1.954-2.972-3.552-3.254-3.552-1.231 0-11.189 5.083-11.189 5.711 0 1.033 7.015 9.528 12.147 14.71 5.284 5.335 12.774 11.666 13.802 11.666.387 0 2.855-1.483 5.484-3.296zm96.337-34.336l126.24-60.551 112.849-78.17c128.11-88.743 116.959-80.963 116.345-81.167-.259-.087-57.155 27.017-126.437 60.23l-125.966 60.388-9.168 6.282c-12.874 8.82-218.412 151.254-220.056 152.494-.752.568-1.06 1.023-.697 1.031.358.008 57.459-27.233 126.89-60.537zm-44.05 58.876c3.132-2.182 5.626-4.176 5.54-4.43-.084-.256-1.999-.95-4.254-1.544-9.068-2.387-20.904-6.805-28.602-10.675-2.018-1.014-3.848-1.845-4.068-1.845-.22 0-3.259 1.366-6.754 3.035l-6.355 3.034 1.129.915c1.613 1.309 12.96 6.927 18.955 9.385 5.795 2.377 16.588 6.047 17.862 6.074.468.01 3.414-1.767 6.547-3.949zm65.406-13.738c67.612-32.429 124.683-59.828 126.826-60.887 2.507-1.238 43.873-29.608 115.973-79.536 61.643-42.687 113.176-78.427 114.519-79.423 1.343-.997 2.337-1.916 2.21-2.043-.127-.127-57.127 27.05-126.666 60.394l-126.434 60.626-113.9 78.881c-62.646 43.384-114.421 79.34-115.057 79.9-.636.561-.986 1.027-.778 1.035.208.007 55.696-26.518 123.307-58.947zm-179.013 135.16C82.96 562.117 23.425 527.725 23.19 527.473c-.256-.278-.527-60.686-.686-152.968-.246-143-.214-152.565.516-153.399.782-.895 261.525-152.033 263.666-152.832 1.014-.379 5.53 2.098 39.421 21.625 21.052 12.13 38.328 22.206 38.39 22.391.064.186-4.57 2.607-10.296 5.38-65.185 31.57-118.321 76.528-153.376 129.771-3.137 4.765-7.193 11.242-9.013 14.393-4.272 7.4-12.11 23.39-15.052 30.713-2.64 6.567-6.048 16.293-6.048 17.257 0 .897.395.662 9.693-5.79l7.91-5.49 2.807-6.312c11.299-25.406 26.308-48.245 46.628-70.952 6.901-7.712 21.374-22.018 29.114-28.779 38.727-33.83 86.548-60.53 135.107-75.44 39.3-12.066 79.597-16.3 114.14-11.99l6.876.857 46.868-22.474c25.985-12.461 47.17-22.36 47.545-22.216.824.317 1.437 2.499.863 3.073-.228.228-15.557 10.9-34.064 23.714-18.507 12.815-33.722 23.518-33.811 23.785-.09.267 1.997 1.23 4.635 2.142 9.715 3.356 21.099 8.743 28.371 13.426 1.71 1.1 3.478 2.001 3.93 2.001.452 0 12.855-5.776 27.562-12.835 14.708-7.06 26.903-12.835 27.1-12.835.464 0 1.787 1.884 1.787 2.543 0 .277-10.107 7.503-22.46 16.056-12.353 8.553-22.46 15.692-22.46 15.864 0 .172 2.29 2.544 5.093 5.271 5.82 5.665 11.178 12.127 15.42 18.597 1.612 2.458 3.108 4.469 3.324 4.469.215 0 9.843-4.545 21.395-10.1s21.453-10.215 22.002-10.355c.778-.2 1.158.053 1.722 1.144l.724 1.4-2.41 1.763c-1.325.97-10.403 7.286-20.172 14.037-10.37 7.166-17.763 12.569-17.763 12.98 0 .389.709 2.485 1.575 4.66 3.287 8.252 5.994 19.1 7.363 29.508.176 1.341.516 2.177.885 2.177.33 0 12.513-5.715 27.073-12.7L691.56 188.3l.861 1.063c.473.585.86 1.322.86 1.639 0 .316-12.237 9.047-27.194 19.402-14.956 10.354-27.41 19.097-27.675 19.428-.265.33-.62 2.561-.79 4.956-.73 10.319-2.304 19.787-5.1 30.686-1.737 6.766-1.76 6.903-1.18 6.903.222 0 19.32-9.071 42.44-20.158 23.12-11.087 42.366-20.215 42.77-20.284.414-.071 1.05.436 1.453 1.161.687 1.233.667 1.33-.461 2.292-.649.553-23.363 16.363-50.477 35.135l-49.299 34.13-2.696 5.05c-18.57 34.777-45.427 66.33-80.394 94.452-40.474 32.55-90.242 57.607-138.726 69.846-25.78 6.507-46.917 9.222-71.889 9.231l-11.443.005-9.299 4.452c-5.114 2.448-9.3 4.597-9.3 4.776 0 1.771 39.918 2.801 54.32 1.402 40.991-3.983 79.116-14.309 117.578-31.844 28.957-13.202 59.108-31.403 82.192-49.615 2.066-1.63 3.98-2.966 4.254-2.968.65-.006 1.293 115.681.65 116.885-.497.926-263.182 153.177-264.667 153.399-.63.094-47.433-26.619-132.852-75.824z"/></svg>