Merge pull request #24 from crossplaneio/homepage-updates
Updated homepage for v0.3 release
|
@ -6,7 +6,7 @@
|
|||
</div>
|
||||
<div class="links sm-hidden">
|
||||
<a href="{{twitterLink}}">Twitter</a><a href="{{latestDocs}}">Documentation</a
|
||||
><a href="{{githubLink}}">GitHub</a><a href="{{slackLink}}">Slack Channel</a><a href="{{forumLink}}">Forum</a>
|
||||
><a href="{{githubLink}}">GitHub</a><a href="{{slackLink}}">Slack Channel</a><a href="{{youtubeLink}}">YouTube</a><a href="{{forumLink}}">Forum</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
{% assign githubLink = "https://github.com/crossplaneio/crossplane" %}
|
||||
{% assign twitterLink = "https://twitter.com/crossplane_io" %}
|
||||
{% assign forumLink = "https://groups.google.com/forum/#!forum/crossplane-dev" %}
|
||||
{% assign youtubeLink = "https://www.youtube.com/channel/UC19FgzMBMqBro361HbE46Fw" %}
|
||||
{% assign podcastLink = "https://www.youtube.com/playlist?list=PL510POnNVaaYFuK-B_SIUrpIonCtLVOzT" %}
|
||||
{% assign blogLink = "https://blog.crossplane.io/" %}
|
||||
{% assign communityMeetingLink = "https://github.com/crossplaneio/crossplane/#community-meeting" %}
|
||||
{% assign latestDocs = site.data.versions[0].path | append: '/' | relative_url %}
|
||||
|
|
|
@ -9,14 +9,18 @@ $page-width: 1280px;
|
|||
$page-padding: 60px;
|
||||
$page-padding-small: 30px;
|
||||
$dark-background-color: #183d54;
|
||||
$darkish-background-color: #f4f5f7;
|
||||
$light-background-color: #f3f5fa;
|
||||
$red: #f3807b;
|
||||
$blue: #96ffe0;
|
||||
$dark-blue: #35d0ba;
|
||||
$orange: #f3c47b;
|
||||
$brown: #d8ae64;
|
||||
$white: #FFFFFF;
|
||||
|
||||
$dark-text: #505a72;
|
||||
$muted-text: #c7ced3;
|
||||
$dark-blue-text: #183d54;
|
||||
|
||||
$header-font: "Avenir";
|
||||
$body-font: "Avenir-Roman";
|
||||
|
|
|
@ -322,6 +322,10 @@ pre > code {
|
|||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
|
||||
td {
|
||||
padding: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.alert {
|
||||
|
|
166
css/index.scss
|
@ -49,12 +49,18 @@
|
|||
}
|
||||
}
|
||||
|
||||
#kinds {
|
||||
text-align: center;
|
||||
#providers {
|
||||
background-color: $darkish-background-color;
|
||||
padding-bottom: 30px;
|
||||
|
||||
h2 {
|
||||
margin-top: 100px;
|
||||
font-weight: 900;
|
||||
margin-top: 55px;
|
||||
margin-bottom: 30px;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
a {
|
||||
|
@ -67,46 +73,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 25px 0;
|
||||
}
|
||||
|
||||
.img {
|
||||
margin-top: 0;
|
||||
height: 93px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
h4 {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.specific-kind {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
p {
|
||||
font-size: 14px;
|
||||
margin-bottom: 30px;
|
||||
|
||||
&:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#providers {
|
||||
h2 {
|
||||
margin-top: 55px;
|
||||
margin-bottom: 30px;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
margin-right: 70px;
|
||||
|
@ -115,7 +81,7 @@
|
|||
margin-right: 0;
|
||||
}
|
||||
|
||||
@media (max-width: $sm-width) {
|
||||
@media (max-width: $md-width) {
|
||||
margin: 40px auto 0;
|
||||
display: block;
|
||||
|
||||
|
@ -125,53 +91,87 @@
|
|||
}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 50px;
|
||||
.provider-wrap {
|
||||
min-height: 65px;
|
||||
position: relative;
|
||||
|
||||
@media (max-width: $md-width) {
|
||||
margin: 15px 0;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 100px;
|
||||
@media (max-width: $md-width) {
|
||||
margin: 35px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.provider-image {
|
||||
max-width: 90%;
|
||||
}
|
||||
|
||||
.coming-soon {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
|
||||
img {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
span {
|
||||
color: $red;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#features {
|
||||
background-color: $light-background-color;
|
||||
padding-bottom: 90px;
|
||||
#blueprint {
|
||||
background: $dark-background-color;
|
||||
color: $white;
|
||||
padding: 45px 0;
|
||||
|
||||
h2 {
|
||||
margin-top: 100px;
|
||||
margin-bottom: 30px;
|
||||
font-weight: 900;
|
||||
.blueprint-header {
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
|
||||
.blueprint-item {
|
||||
text-align: left;
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 22px;
|
||||
line-height: 34px;
|
||||
margin: 25px 0;
|
||||
.blueprint-bullet img {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 30px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.feature {
|
||||
padding: 0 45px;
|
||||
p {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
@media (max-width: $sm-width) {
|
||||
padding: 0;
|
||||
.blueprint-img {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
img {
|
||||
max-width: 95%;
|
||||
width: auto;
|
||||
max-height: 720px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 16px;
|
||||
line-height: 1.56;
|
||||
margin-bottom: 20px;
|
||||
@media (max-width: $md-width) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#use-cases {
|
||||
background-color: $red;
|
||||
color: white;
|
||||
background-color: $white;
|
||||
color: $dark-blue-text;
|
||||
text-align: left;
|
||||
padding-top: 80px;
|
||||
padding-bottom: 65px;
|
||||
|
@ -207,20 +207,18 @@
|
|||
}
|
||||
|
||||
#testimonials {
|
||||
padding-top: 50px;
|
||||
padding-bottom: 100px;
|
||||
padding-top: 100px;
|
||||
|
||||
.testimonial {
|
||||
padding: 0 58px;
|
||||
padding: 0 58px 100px;
|
||||
text-align: left;
|
||||
|
||||
@media (max-width: $sm-width) {
|
||||
padding: 0 38px;
|
||||
padding: 0 38px 75px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
line-height: 1.67;
|
||||
margin-top: 50px;
|
||||
margin-bottom: 35px;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
@ -243,8 +241,14 @@
|
|||
font-family: $header-font;
|
||||
}
|
||||
|
||||
.signature img {
|
||||
margin-top: 20px;
|
||||
.exec-img {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.exec-info {
|
||||
vertical-align: text-bottom;
|
||||
display: inline-block;
|
||||
margin-left: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -306,10 +310,14 @@
|
|||
background-color: $red;
|
||||
}
|
||||
|
||||
&.forum .topbar {
|
||||
&.youtube .topbar {
|
||||
background-color: $orange;
|
||||
}
|
||||
|
||||
&.podcast .topbar {
|
||||
background-color: $brown;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding: 60px 40px;
|
||||
|
||||
|
|
|
@ -379,6 +379,10 @@ body {
|
|||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: $lg-width) {
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22">
|
||||
<g fill="none" fill-rule="evenodd" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" transform="translate(2 1)">
|
||||
<rect width="18" height="18" y="2" rx="2"/>
|
||||
<path d="M13 0v4M5 0v4M0 8h18"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 338 B |
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 8.9 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 192 KiB |
After Width: | Height: | Size: 14 KiB |
|
@ -0,0 +1,57 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="88" height="81" viewBox="0 0 88 81">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M2 10.583C2 6.395 5.408 3 9.611 3c4.204 0 7.612 3.395 7.612 7.583 0 4.189-3.408 7.584-7.612 7.584C5.408 18.167 2 14.772 2 10.583z"/>
|
||||
<path fill="#505A72" d="M36.04 10.583C36.04 6.395 39.446 3 43.65 3c4.204 0 7.61 3.395 7.61 7.583 0 4.189-3.406 7.584-7.61 7.584-4.203 0-7.61-3.395-7.61-7.584"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M36.04 10.583C36.04 6.395 39.446 3 43.65 3c4.204 0 7.61 3.395 7.61 7.583 0 4.189-3.406 7.584-7.61 7.584-4.203 0-7.61-3.395-7.61-7.584zM70.078 10.583C70.078 6.395 73.486 3 77.689 3c4.204 0 7.612 3.395 7.612 7.583 0 4.189-3.408 7.584-7.612 7.584-4.203 0-7.611-3.395-7.611-7.584zM2 40.391c0-4.188 3.408-7.583 7.611-7.583 4.204 0 7.612 3.395 7.612 7.583 0 4.19-3.408 7.584-7.612 7.584C5.408 47.975 2 44.581 2 40.391z"/>
|
||||
<path fill="#505A72" d="M36.04 40.391c0-4.188 3.407-7.583 7.61-7.583 4.204 0 7.61 3.395 7.61 7.583 0 4.19-3.406 7.584-7.61 7.584-4.203 0-7.61-3.394-7.61-7.584"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M36.04 40.391c0-4.188 3.407-7.583 7.61-7.583 4.204 0 7.61 3.395 7.61 7.583 0 4.19-3.406 7.584-7.61 7.584-4.203 0-7.61-3.394-7.61-7.584zM70.078 40.391c0-4.188 3.408-7.583 7.611-7.583 4.204 0 7.612 3.395 7.612 7.583 0 4.19-3.408 7.584-7.612 7.584-4.203 0-7.611-3.394-7.611-7.584z"/>
|
||||
<path fill="#505A72" d="M2 70.2c0-4.19 3.408-7.585 7.611-7.585 4.204 0 7.612 3.396 7.612 7.585 0 4.188-3.408 7.584-7.612 7.584C5.408 77.784 2 74.388 2 70.2"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M2 70.2c0-4.19 3.408-7.585 7.611-7.585 4.204 0 7.612 3.396 7.612 7.585 0 4.188-3.408 7.584-7.612 7.584C5.408 77.784 2 74.388 2 70.2zM36.04 70.2c0-4.19 3.407-7.585 7.61-7.585 4.204 0 7.61 3.396 7.61 7.585 0 4.188-3.406 7.584-7.61 7.584-4.203 0-7.61-3.396-7.61-7.584z"/>
|
||||
<path fill="#505A72" d="M70.078 70.2c0-4.19 3.408-7.585 7.611-7.585 4.204 0 7.612 3.396 7.612 7.585 0 4.188-3.408 7.584-7.612 7.584-4.203 0-7.611-3.396-7.611-7.584"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M70.078 70.2c0-4.19 3.408-7.585 7.611-7.585 4.204 0 7.612 3.396 7.612 7.585 0 4.188-3.408 7.584-7.612 7.584-4.203 0-7.611-3.396-7.611-7.584z"/>
|
||||
<path fill="#505A72" d="M17.222 10.583h52.856"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M17.222 10.583h52.856"/>
|
||||
<path fill="#505A72" d="M17.222 40.391h52.856"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M17.222 40.391h52.856"/>
|
||||
<path fill="#505A72" d="M17.222 70.2H36.04"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M17.222 70.2H36.04"/>
|
||||
<path fill="#505A72" d="M51.26 70.2h18.818"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M51.26 70.2h18.818"/>
|
||||
<path fill="#505A72" d="M43.65 62.616v-44.45"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M43.65 62.616v-44.45"/>
|
||||
<path fill="#505A72" d="M9.61 32.808V18.167"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M9.61 32.808V18.167"/>
|
||||
<path fill="#505A72" d="M9.61 62.616V47.974"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M9.61 62.616V47.974"/>
|
||||
<path fill="#505A72" d="M77.689 62.616V47.974"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M77.689 62.616V47.974"/>
|
||||
<g>
|
||||
<path fill="#505A72" d="M77.689 32.808V18.167"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M77.689 32.808V18.167"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#505A72" d="M14.553 16.344L72.229 64.92"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M14.553 16.344L72.229 64.92"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#505A72" d="M72.229 15.86l-57.16 49.062"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M72.229 15.86l-57.16 49.062"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#505A72" d="M49.7 65.611l22.528-19.943"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M49.7 65.611l22.528-19.943"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#505A72" d="M37.6 65.611L15.072 45.668"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M37.6 65.611L15.072 45.668"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#505A72" d="M14.553 34.63L38.19 15.86"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M14.553 34.63L38.19 15.86"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#505A72" d="M49.7 15.172L72.228 34.63"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M49.7 15.172L72.228 34.63"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22">
|
||||
<g fill="none" fill-rule="evenodd" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
|
||||
<path d="M21 3.91v5.454h-5.455M1 18.455V13h5.455"/>
|
||||
<path d="M3.282 8.455a8.182 8.182 0 0 1 13.5-3.055L21 9.364M1 13l4.218 3.964a8.182 8.182 0 0 0 13.5-3.055"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 395 B |
|
@ -0,0 +1,18 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="197" height="40" viewBox="0 0 197 40">
|
||||
<defs>
|
||||
<path id="a" d="M0 .266h33.195V33.67H0z"/>
|
||||
<path id="c" d="M0 33.734h197V.33H0z"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd" transform="translate(0 5)">
|
||||
<g transform="translate(0 .064)">
|
||||
<mask id="b" fill="#fff">
|
||||
<use xlink:href="#a"/>
|
||||
</mask>
|
||||
<path fill="#0080FF" d="M16.614 33.67V27.2c6.83 0 12.083-6.8 9.488-13.996-.985-2.674-3.086-4.82-5.745-5.777-7.158-2.607-13.922 2.674-13.922 9.54H0C0 6.04 10.507-2.476 21.9 1.089c4.99 1.552 8.93 5.546 10.474 10.53 3.546 11.488-4.892 22.05-15.76 22.05" mask="url(#b)"/>
|
||||
</g>
|
||||
<mask id="d" fill="#fff">
|
||||
<use xlink:href="#c"/>
|
||||
</mask>
|
||||
<path fill="#0080FF" d="M10.211 27.264h6.403v-6.437H10.21zM5.286 32.215h4.925v-4.951H5.286zM1.15 27.264h4.136v-4.126H1.15zM49.578 11.254h1.905c2.101 0 3.841.43 5.155 1.222 1.444.891 2.2 2.574 2.2 4.984 0 2.509-.756 4.258-2.2 5.216-1.248.825-2.988 1.254-5.122 1.254H49.61V11.254h-.033zM59.1 10c-1.904-1.32-4.268-2.014-7.026-2.014h-6.009v19.179h6.009c2.758 0 5.122-.693 7.026-2.113 1.05-.726 1.871-1.782 2.43-3.07.558-1.287.853-2.805.853-4.522 0-1.683-.295-3.202-.853-4.49-.559-1.254-1.38-2.277-2.43-2.97zM66.586 7.755c-.591 0-1.084.198-1.478.594-.394.397-.623.892-.623 1.453 0 .594.197 1.09.623 1.485.394.396.887.627 1.478.627.59 0 1.083-.198 1.477-.627.394-.396.624-.924.624-1.485 0-.594-.197-1.09-.624-1.453a2.052 2.052 0 0 0-1.477-.594M64.846 27.198h3.382V13.664h-3.382zM79.654 22.775c-.591.66-1.347.99-2.332.99-.985 0-1.74-.33-2.298-.99-.59-.66-.886-1.552-.886-2.64 0-1.09.295-2.015.886-2.675.591-.66 1.346-1.023 2.298-1.023.985 0 1.74.33 2.332 1.023.59.66.886 1.585.886 2.674 0 1.09-.328 1.98-.886 2.64zm.886-7.988c-1.017-.925-2.167-1.453-3.382-1.453-1.871 0-3.414.66-4.629 1.915-1.215 1.254-1.806 2.904-1.806 4.852 0 1.914.591 3.532 1.806 4.852 1.215 1.255 2.758 1.915 4.63 1.915 1.313 0 2.43-.363 3.349-1.09v.33c0 1.123-.296 1.981-.887 2.609-.591.594-1.412.89-2.43.89-1.576 0-2.528-.626-3.743-2.244l-2.298 2.212.066.099c.492.693 1.247 1.386 2.265 2.046 1.018.66 2.266.99 3.776.99 2.003 0 3.645-.627 4.826-1.848 1.215-1.221 1.806-2.872 1.806-4.918v-12.28h-3.316v1.123h-.033zM86.746 27.198h3.382V13.664h-3.382zM88.486 7.755c-.591 0-1.084.198-1.478.594-.394.397-.623.892-.623 1.453 0 .594.197 1.09.623 1.485.394.396.887.627 1.478.627.59 0 1.083-.198 1.477-.627.394-.396.624-.924.624-1.485 0-.594-.197-1.09-.624-1.453a2.052 2.052 0 0 0-1.477-.594M97.548 10.033h-3.316v3.664h-1.938V16.8h1.938v5.612c0 1.75.36 3.004 1.05 3.73.69.726 1.905 1.09 3.645 1.09.558 0 1.116-.034 1.641-.067h.165v-3.103l-1.15.066c-.82 0-1.345-.132-1.608-.43-.263-.296-.394-.89-.394-1.782v-5.15h3.152v-3.102H97.58v-3.631h-.033zM116.558 27.165h3.382V7.986h-3.382zM154.12 22.345c-.592.694-1.215 1.288-1.708 1.585-.46.297-1.05.462-1.74.462-.985 0-1.806-.363-2.462-1.122-.657-.76-.985-1.716-.985-2.872 0-1.155.328-2.113.952-2.839.656-.76 1.445-1.122 2.43-1.122 1.083 0 2.232.693 3.217 1.848l2.233-2.145c-1.445-1.915-3.316-2.806-5.549-2.806-1.871 0-3.48.693-4.794 2.013-1.313 1.32-1.97 3.037-1.97 5.05 0 2.015.657 3.698 1.97 5.051 1.313 1.354 2.923 2.014 4.794 2.014 2.463 0 4.433-1.056 5.746-3.004l-2.134-2.113zM160.62 18.748c.165-.66.46-1.189.887-1.618.46-.462 1.05-.693 1.773-.693.821 0 1.445.231 1.872.693.394.43.624.957.689 1.585h-5.22v.033zm7.388-3.202a5.486 5.486 0 0 0-1.937-1.618c-.82-.396-1.74-.594-2.79-.594-1.905 0-3.448.693-4.597 2.08-1.117 1.386-1.708 3.07-1.708 5.083 0 2.047.624 3.73 1.872 5.05 1.215 1.288 2.889 1.948 4.892 1.948 2.265 0 4.17-.924 5.548-2.773l.066-.099-2.2-2.145c-.196.264-.492.528-.755.792-.328.33-.656.56-.985.726-.492.264-1.083.363-1.707.363-.952 0-1.707-.264-2.299-.825-.557-.495-.886-1.189-.951-2.047h8.963l.033-1.254c0-.891-.131-1.716-.361-2.509a7.506 7.506 0 0 0-1.084-2.178zM175.002 22.015c.394-.264.919-.395 1.609-.395.82 0 1.674.165 2.56.495v1.32c-.722.693-1.707 1.023-2.922 1.023-.59 0-1.05-.132-1.346-.396-.295-.264-.46-.561-.46-.99 0-.43.198-.792.559-1.057m6.008-7.328c-1.018-.89-2.43-1.32-4.202-1.32a7.11 7.11 0 0 0-3.12.726c-.886.462-1.74 1.189-2.298 2.179l.033.033 2.167 2.08c.886-1.42 1.871-1.915 3.185-1.915.722 0 1.28.198 1.74.56.46.364.657.86.657 1.453v.66a8.366 8.366 0 0 0-2.496-.395c-1.674 0-3.053.396-4.071 1.188-1.018.792-1.543 1.948-1.543 3.367 0 1.254.427 2.31 1.313 3.07.887.726 1.97 1.122 3.25 1.122 1.281 0 2.496-.528 3.58-1.42v1.123h3.316v-8.715c.065-1.617-.46-2.904-1.51-3.796M195.588 14.952c-.952-1.057-2.265-1.585-3.94-1.585-1.346 0-2.43.396-3.25 1.155v-.825h-3.316v13.534h3.381v-7.493c0-1.023.23-1.849.723-2.41.492-.594 1.116-.858 2.003-.858.754 0 1.346.264 1.773.76.426.527.656 1.22.656 2.112v7.823H197v-7.823c0-1.849-.46-3.334-1.412-4.39M106.314 22.015c.394-.264.92-.395 1.61-.395.82 0 1.674.165 2.56.495v1.32c-.722.693-1.707 1.023-2.922 1.023-.591 0-1.05-.132-1.346-.396-.296-.264-.46-.561-.46-.99 0-.43.164-.792.558-1.057m6.009-7.328c-1.018-.89-2.43-1.32-4.203-1.32a7.111 7.111 0 0 0-3.12.726c-.886.462-1.74 1.189-2.297 2.179l.033.033 2.166 2.08c.887-1.42 1.872-1.915 3.185-1.915.723 0 1.28.198 1.74.56.46.364.657.86.657 1.453v.66a8.363 8.363 0 0 0-2.495-.395c-1.675 0-3.054.396-4.072 1.188-1.017.792-1.543 1.948-1.543 3.367 0 1.254.427 2.31 1.314 3.07.886.726 1.97 1.122 3.25 1.122s2.495-.528 3.579-1.42v1.123h3.316v-8.715c.033-1.617-.492-2.904-1.51-3.796M132.22 11.188c-3.513 0-6.37 2.872-6.37 6.404s2.857 6.404 6.37 6.404 6.37-2.872 6.37-6.404-2.857-6.404-6.37-6.404m0 16.274c-5.418 0-9.85-4.423-9.85-9.903s4.4-9.903 9.85-9.903c5.417 0 9.85 4.424 9.85 9.903 0 5.48-4.433 9.903-9.85 9.903" mask="url(#d)"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.6 KiB |
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22">
|
||||
<g fill="none" fill-rule="evenodd" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
|
||||
<path d="M4 8l-3 3 3 3M8 4l3-3 3 3M14 18l-3 3-3-3M18 8l3 3-3 3M1 11h20M11 1v20"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 308 B |
Before Width: | Height: | Size: 652 KiB |
After Width: | Height: | Size: 171 KiB |
|
@ -1,255 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="554" height="500" viewBox="0 0 554 500">
|
||||
<defs>
|
||||
<path id="a" d="M.745 33.537l103.614 58.484 56.655-32.214L57.726.928"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.274" d="M491.34 270.014L542.9 240.07 286.395 94.183"/>
|
||||
<g opacity=".25">
|
||||
<path fill="#FFF" d="M377.181 390.648l11.312 6.531c4.453 2.571 11.188 2.85 15.044.623l136.152-78.606c3.856-2.227 3.373-6.115-1.08-8.687l-100.097-57.79c-4.452-2.57-11.187-2.85-15.044-.624l-136.152 78.608c-3.856 2.226-3.372 6.115 1.08 8.685l73.031 42.164 15.754 9.096z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".827" d="M377.181 390.648l11.312 6.531c4.453 2.571 11.188 2.85 15.044.623l136.152-78.606c3.856-2.227 3.373-6.115-1.08-8.687l-100.097-57.79c-4.452-2.57-11.187-2.85-15.044-.624l-136.152 78.608c-3.856 2.226-3.372 6.115 1.08 8.685l73.031 42.164 15.754 9.096z"/>
|
||||
</g>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.274" d="M258.352 424.828l91.311-57.574"/>
|
||||
<path fill="#DCE7F2" d="M542.285 307.882v-6.028c.003-.05 0-.101 0-.152v-.041h-.002c-.005-1.704-1.243-3.5-3.674-4.903l-100.096-57.79c-4.453-2.571-11.188-2.85-15.044-.624L287.316 316.95c-1.702.984-2.555 2.29-2.598 3.666h-.006v6.312h.009c-.02 1.719 1.22 3.536 3.675 4.953l100.097 57.79c4.453 2.57 11.188 2.85 15.045.625l136.15-78.607c1.763-1.017 2.608-2.381 2.594-3.808h.003z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".827" d="M542.285 307.882v-6.028c.003-.05 0-.101 0-.152v-.041h-.002c-.005-1.704-1.243-3.5-3.674-4.903l-100.096-57.79c-4.453-2.571-11.188-2.85-15.044-.624L287.316 316.95c-1.702.984-2.555 2.29-2.598 3.666h-.006v6.312h.009c-.02 1.719 1.22 3.536 3.675 4.953l100.097 57.79c4.453 2.57 11.188 2.85 15.045.625l136.15-78.607c1.763-1.017 2.608-2.381 2.594-3.808h.003z"/>
|
||||
<path fill="#FFF" d="M377.181 376.897l11.312 6.53c4.453 2.572 11.188 2.851 15.044.624l136.152-78.607c3.856-2.227 3.373-6.115-1.08-8.686l-100.097-57.79c-4.452-2.57-11.187-2.85-15.044-.624l-136.152 78.607c-3.856 2.226-3.372 6.115 1.08 8.686l73.031 42.164"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".827" d="M377.181 376.897l11.312 6.53c4.453 2.572 11.188 2.851 15.044.624l136.152-78.607c3.856-2.227 3.373-6.115-1.08-8.686l-100.097-57.79c-4.452-2.57-11.187-2.85-15.044-.624l-136.152 78.607c-3.856 2.226-3.372 6.115 1.08 8.686l73.031 42.164"/>
|
||||
<path fill="#FFF" d="M366.154 370.53l1.077.622"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.157" d="M366.154 370.53l1.077.622M542.285 301.702v-.041h-.002v-.002a3.544 3.544 0 0 0-.058-.621c-.002-.02-.007-.036-.01-.054a3.823 3.823 0 0 0-.155-.567c-.01-.033-.024-.066-.036-.098a4.388 4.388 0 0 0-.233-.518l-.07-.132a5.686 5.686 0 0 0-.302-.473c-.038-.054-.074-.107-.114-.161a6.404 6.404 0 0 0-.361-.432c-.054-.06-.104-.12-.161-.18a8.188 8.188 0 0 0-.423-.402c-.067-.06-.131-.123-.201-.182a9.78 9.78 0 0 0-.51-.395c-.073-.054-.14-.11-.216-.162-.257-.18-.531-.355-.824-.523l-100.096-57.791c-1.113-.643-2.37-1.142-3.687-1.495a18.71 18.71 0 0 0-6.077-.588c-1.984.14-3.835.624-5.28 1.459L287.316 316.95a7.129 7.129 0 0 0-1.031.732c-.04.035-.084.067-.122.1a5.017 5.017 0 0 0-.71.789c-.031.044-.064.088-.093.132a3.861 3.861 0 0 0-.437.858c-.013.036-.022.072-.033.108-.1.31-.163.626-.172.947h-.006v6.312h.009c-.02 1.718 1.22 3.536 3.675 4.953l100.097 57.79c4.453 2.572 11.188 2.85 15.045.625l136.15-78.608c1.762-1.017 2.609-2.381 2.594-3.807h.003v-6.028c.003-.05 0-.101 0-.152z"/>
|
||||
<path stroke="#B1CEE6" stroke-dasharray="3.186,3.186" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M398.623 295.817l-15.157-8.751c-2.053-1.185-1.795-3.253.573-4.62l13.868-8.007c2.369-1.367 5.952-1.516 8.002-.331l15.158 8.751c2.051 1.184 1.793 3.253-.575 4.62l-13.867 8.006c-2.368 1.368-5.952 1.517-8.002.332z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".743" d="M299.163 317.597l56.981-32.609 103.288 58.88-56.656 32.214z"/>
|
||||
<g fill="#2785C5" opacity=".5">
|
||||
<path d="M359.09 340.436l6.272-3.919c.194-.12.18-.33-.032-.467l-5.876-3.816c-.23-.15-.597-.149-.776.004l-5.317 4.54c-.146.125-.113.31.078.434l4.92 3.195c.21.136.538.15.731.03M357.96 340.656l-4.753-3.086c-.23-.15-.598-.15-.776.003l-3.913 3.342c-.147.125-.115.31.076.434l4.05 2.629c.21.137.538.15.731.03l4.616-2.885c.194-.121.18-.33-.03-.467M358.426 341.405l-4.616 2.885c-.194.12-.179.33.032.467l4.065 2.64a.76.76 0 0 0 .68.057l5.32-2.428c.243-.11.252-.344.02-.495l-4.769-3.097c-.21-.136-.539-.15-.732-.03M359.557 341.185l4.937 3.206a.76.76 0 0 0 .68.057l7.227-3.299c.242-.11.252-.344.02-.495l-5.89-3.825c-.212-.137-.54-.15-.734-.03l-6.272 3.92c-.194.12-.179.33.032.466"/>
|
||||
</g>
|
||||
<path stroke="#2768C5" stroke-linecap="round" stroke-linejoin="round" stroke-width=".333" d="M360.288 339.688l5.075-3.17c.194-.122.179-.33-.032-.468l-5.876-3.816c-.231-.15-.598-.149-.776.004l-4.123 3.521M358.358 340.407c.212.137.539.15.732.029M354.555 335.76l-1.193 1.018c-.147.125-.114.31.077.434l3.198 2.077M349.087 340.43l-.569.484c-.147.125-.115.311.076.435l4.05 2.63c.21.136.538.15.731.028l4.616-2.885c.194-.12.18-.33-.03-.466l-4.754-3.086c-.23-.15-.598-.15-.776.003l-1.37 1.171M357.234 342.151l-3.424 2.139c-.193.121-.18.33.032.466l4.066 2.641c.19.124.48.149.68.057l5.32-2.428c.242-.11.252-.344.019-.495l-1.67-1.084M359.557 341.185l1.896 1.232M359.525 340.718c-.193.121-.18.33.032.467M360.722 339.97l-1.197.748M364.154 337.826l-1.068.668M363.022 343.436l1.472.955a.76.76 0 0 0 .679.057l7.228-3.299c.242-.11.252-.344.019-.495l-5.89-3.825c-.211-.137-.54-.15-.733-.03l-.574.36"/>
|
||||
<g fill="#2785C5">
|
||||
<path d="M363.287 330.902l-.805-.523.78-.488 6.177 1.75.025-.015-2.582-3.996.74-.463 5.5 3.57-.59.369-4.475-2.906-.014.009 2.654 4.044-.288.179-6.34-1.765-.013.008 4.494 2.919-.57.356-2.926-1.902M374.319 329.516l-3.555-2.31.576-.36 2.14 1.391 1.044.677.743.483-.288.18-.29.18-.37-.24m-4.288-3.646c.118.077.179.164.182.261.002.098-.047.178-.151.242a.658.658 0 0 1-.38.094.764.764 0 0 1-.406-.125c-.11-.07-.17-.155-.18-.252-.007-.097.04-.179.15-.247a.667.667 0 0 1 .388-.092.767.767 0 0 1 .397.12M373.563 326.088c-.053-.468.204-.88.771-1.234a2.82 2.82 0 0 1 1.033-.391l.644.418c-.474.036-.862.148-1.164.337-.373.232-.53.516-.473.85.056.334.315.65.776.95.457.297.93.463 1.417.497.487.034.917-.065 1.289-.298.314-.196.497-.453.549-.773l.597.389c-.094.294-.332.56-.71.797a2.833 2.833 0 0 1-1.132.392 3.62 3.62 0 0 1-1.309-.075c-.447-.104-.891-.261-1.234-.523-.951-.725-1.054-1.336-1.054-1.336M378.965 322.893c-.187.01-.376.073-.565.192-.256.16-.332.374-.23.644.104.27.364.541.783.812l2.002 1.301-.576.36-3.927-2.55.576-.36.81.526.014-.009c-.192-.227-.283-.442-.274-.648.01-.206.121-.376.337-.51.151-.095.283-.155.4-.182l.65.424zM384.192 323.257c.627-.44.47-.792.47-.792-.062-.293-.337-.599-.825-.916-.494-.32-.972-.503-1.435-.549a1.941 1.941 0 0 0-1.255.28c-.37.232-.528.502-.474.812.054.31.327.624.818.942.47.306.946.477 1.428.514.48.036.905-.06 1.273-.29m-3.54-2.353c.535-.334 1.135-.477 1.802-.429.666.048 1.316.277 1.95.69.624.404.964.831 1.018 1.28.056.451-.19.845-.736 1.186-.531.333-1.14.48-1.827.437a3.925 3.925 0 0 1-1.936-.65s-2.29-1.357-.27-2.514M388.686 319.892c.863.702-.344 1.456-.344 1.456a2.82 2.82 0 0 1-1.13.403l-.674-.438c.534-.015.97-.128 1.31-.34.791-.494.134-.855-.225-.924-.36-.068-.648.023-1.12.122-1.463.31-2.025-.205-2.025-.205-.325-.21-.477-.46-.455-.752.021-.29.217-.55.584-.78a2.67 2.67 0 0 1 .954-.36l.633.41a2.295 2.295 0 0 0-1.096.327c-.189.12-.291.248-.305.387-.013.138.06.26.221.365.174.112.353.172.534.177.183.005.471-.048.884-.13.92-.182 1.525-.312 2.254.282m-2.254-.282c.5-.11.906-.153 1.219-.126M391.455 316.79c-.493-.321-.972-.504-1.436-.55a1.944 1.944 0 0 0-1.253.28c-.371.232-.53.502-.474.812.054.31.326.624.817.943.47.306.947.477 1.428.513.48.036.905-.061 1.273-.29.375-.234.532-.498.47-.792-.061-.294-.337-.6-.825-.916m.567-.385c.624.406.964.833 1.019 1.282.056.45-.19.845-.736 1.186-.532.332-1.141.478-1.828.437a3.942 3.942 0 0 1-1.935-.651c-.65-.422-1-.856-1.052-1.306-.051-.448.209-.85.78-1.208.535-.334 1.135-.476 1.802-.428.666.048 1.317.277 1.95.688M390.55 312.33c.16-.118.34-.181.487-.215l.568.368a1.247 1.247 0 0 0-.487.172c-.402.252-.327.559.228.918l.606.394.843-.527.533.346-.842.527.892.58 2.501 1.625-.577.359-3.394-2.203-.61.382-.534-.347.612-.382-.637-.413c-.399-.26-.613-.535-.643-.83 0 0-.016-.4.454-.753M393.97 313.385l-.533-.346.618-.386-.959-.623.373-.493 1.162.755.907-.566.534.346-.908.567 2.217 1.438c.263.172.491.268.685.288a.887.887 0 0 0 .578-.148c.142-.089.224-.194.246-.314l.536.348c-.054.141-.19.281-.414.42-.628.393-1.328.338-2.1-.163l-.894-.58-1.43-.93-.348.218-.27.17m2.048.541l-.785-.51"/>
|
||||
</g>
|
||||
<path fill="#2785C5" d="M376.627 335.335l-3.689-1.207-.016.01 1.834 2.366 1.871-1.17zm-1.49 2.958l-.525-.7.524.7zm-.525-.7l-.509-.681.51.682zm-1.396-1.864l-.74-.992.74.992zm-1.03-1.38l-.435-.578.654-.411 7.974 2.526-.7.437-2.216-.715-2.293 1.433 1.108 1.406-.7.438-.442-.592-2.95-3.943zM379.923 330.81l.193.124 1.158 3.664 2.258-1.412.572.371-3.166 1.98-.21-.137-1.145-3.65-2.066 1.29-.572-.37.646-.404m0 0l.605-.378m.838-.523l.89-.556M383.58 331.051l.88.571m2.186-.718c-.052-.278-.272-.542-.66-.794l-2.424-1.575.618-.385 4.207 2.731-.62.386-.664-.432-.014.01c.255.492.115.905-.418 1.24-.921.574-1.981.474-3.178-.304l-2.514-1.63.618-.388 1.528.993 1.149.746c.43.28 1.067.403 1.587.27.237-.06.457-.174.608-.374.295-.389.177-.494.177-.494M388.47 326.339c-.202.01-.403.078-.607.206-.274.17-.355.4-.246.69.111.288.39.578.84.87l2.144 1.392-.617.386-4.207-2.731.617-.385.867.562.015-.01c-.204-.241-.302-.472-.293-.693.01-.221.131-.403.361-.548.161-.1.303-.165.427-.193l.698.454zM392.844 324.903c-.395-.249-.782-.392-1.164-.428a1.601 1.601 0 0 0-1.028.233c-.287.178-.418.404-.398.676.022.274.191.546.508.82l2.082-1.301zm-.995 1.349l-.524.328c.484.301.961.465 1.431.49.471.025.9-.084 1.29-.327.436-.273.68-.621.733-1.044l.628.408c-.065.386-.376.753-.933 1.102-.55.343-1.173.485-1.869.426-.697-.058-1.387-.31-2.072-.754-.416-.271-.719-.566-.908-.885-.189-.321-.243-.626-.16-.918.081-.292.288-.542.62-.749.498-.312 1.066-.441 1.7-.385.634.056 1.271.291 1.91.705l.352.23-1.266.792-.932.581z"/>
|
||||
<path stroke="#20719E" stroke-linecap="round" stroke-linejoin="round" stroke-width=".238" d="M376.627 335.335l-3.689-1.207-.016.01 1.834 2.366 1.871-1.17zm-1.49 2.958l-.525-.7.524.7zm-.525-.7l-.509-.681.51.682zm-1.396-1.864l-.74-.992.74.992zm-1.03-1.38l-.435-.578.654-.411 7.974 2.526-.7.437-2.216-.715-2.293 1.433 1.108 1.406-.7.438-.442-.592-2.95-3.943zM379.923 330.81l.193.124 1.158 3.664 2.258-1.412.572.371-3.166 1.98-.21-.137-1.145-3.65-2.066 1.29-.572-.37.646-.404m0 0l.605-.378m.838-.523l.89-.556M383.58 331.051l.88.571m.773.205c.375.046.72-.028 1.031-.222m.382-.7c-.052-.279-.272-.543-.66-.795l-2.424-1.575.618-.385 4.207 2.731-.62.386-.664-.432-.014.01c.255.492.115.905-.418 1.24-.921.574-1.981.474-3.178-.304l-2.514-1.63.618-.388 1.528.993M388.47 326.339c-.202.01-.403.078-.607.206-.274.17-.355.4-.246.69.111.288.39.578.84.87l2.144 1.392-.617.386-4.207-2.731.617-.385.867.562.015-.01c-.204-.241-.302-.472-.293-.693.01-.221.131-.403.361-.548.161-.1.303-.165.427-.193l.698.454zM392.844 324.903c-.395-.249-.782-.392-1.164-.428a1.601 1.601 0 0 0-1.028.233c-.287.178-.418.404-.398.676.022.274.191.546.508.82l2.082-1.301zm-.995 1.349l-.524.328c.484.301.961.465 1.431.49.471.025.9-.084 1.29-.327.436-.273.68-.621.733-1.044l.628.408c-.065.386-.376.753-.933 1.102-.55.343-1.173.485-1.869.426-.697-.058-1.387-.31-2.072-.754-.416-.271-.719-.566-.908-.885-.189-.321-.243-.626-.16-.918.081-.292.288-.542.62-.749.498-.312 1.066-.441 1.7-.385.634.056 1.271.291 1.91.705l.352.23-1.266.792-.932.581z"/>
|
||||
<path fill="#D8AE64" d="M416.188 305.807l10.397 6.003c2.052 1.184 5.635 1.036 8.004-.332l13.867-8.006c1.376-.795 2.038-1.825 1.95-2.782v-6.398c.074-.812-.376-1.599-1.375-2.176l-15.157-8.75c-2.052-1.186-5.635-1.037-8.004.331l-13.867 8.006c-1.291.745-1.953 1.7-1.958 2.604h-.003v6.66h.004c-.036.782.418 1.535 1.382 2.092l1.122.647"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M416.188 305.807l10.397 6.003c2.052 1.184 5.635 1.036 8.004-.332l13.867-8.006c1.376-.795 2.038-1.825 1.95-2.782v-6.398c.074-.812-.376-1.599-1.375-2.176l-15.157-8.75c-2.052-1.186-5.635-1.037-8.004.331l-13.867 8.006c-1.291.745-1.953 1.7-1.958 2.604h-.003v6.66h.004c-.036.782.418 1.535 1.382 2.092l1.122.647"/>
|
||||
<path fill="#DCE7F2" d="M414.362 304.753l.154.089"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M414.362 304.753l.154.089"/>
|
||||
<path fill="#F9D093" d="M435.036 304.485l-.446.258c-2.37 1.367-5.952 1.516-8.004.332l-15.157-8.751c-2.051-1.185-1.794-3.253.575-4.621l13.866-8.006c2.369-1.367 5.952-1.517 8.004-.332l15.157 8.751c2.05 1.184 1.794 3.253-.575 4.621l-10.772 6.219"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M435.036 304.485l-.446.258c-2.37 1.367-5.952 1.516-8.004.332l-15.157-8.751c-2.051-1.185-1.794-3.253.575-4.621l13.866-8.006c2.369-1.367 5.952-1.517 8.004-.332l15.157 8.751c2.05 1.184 1.794 3.253-.575 4.621l-10.772 6.219"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".832" d="M419.23 295.977c-.583-2.258.63-4.754 3.563-6.587 4.583-2.862 11.626-3.02 15.733-.354 4.107 2.667 3.722 7.15-.86 10.013-4.582 2.863-11.626 3.022-15.733.355"/>
|
||||
<path fill="#004680" d="M426.538 297.673c-.555.347-1.407.367-1.904.043-.497-.322-.45-.864.104-1.212.555-.346 1.406-.365 1.904-.043.497.323.45.865-.104 1.212M434.378 296.561c-.555.347-1.407.366-1.904.043-.497-.322-.45-.865.104-1.212.555-.346 1.406-.365 1.904-.043.497.323.45.865-.104 1.212M428.434 292.7c-.555.348-1.407.367-1.903.044-.497-.322-.45-.864.103-1.211.555-.347 1.407-.366 1.904-.043.497.322.451.865-.104 1.21M432.788 293.768c-.555.347-1.407.365-1.903.043-.497-.323-.451-.865.103-1.212.555-.347 1.407-.365 1.904-.043.497.323.45.865-.104 1.212M438.31 294.948c-.437-.284-1.19-.268-1.678.037-.488.306-.529.784-.092 1.068.437.285 1.19.267 1.678-.038.488-.304.529-.784.092-1.067m-2.008 1.254c-.555-.36-.503-.968.116-1.356.62-.386 1.575-.408 2.13-.047.555.36.503.968-.117 1.355-.619.387-1.574.408-2.129.048"/>
|
||||
<path stroke="#004680" stroke-width=".309" d="M438.31 294.948c-.437-.284-1.19-.268-1.678.037-.488.306-.529.784-.092 1.068.437.285 1.19.267 1.678-.038.488-.304.529-.784.092-1.067zm-2.008 1.254c-.555-.36-.503-.968.116-1.356.62-.386 1.575-.408 2.13-.047.555.36.503.968-.117 1.355-.619.387-1.574.408-2.129.048z"/>
|
||||
<path fill="#004680" d="M435.707 290.798c-.438-.285-1.19-.268-1.678.037-.488.306-.53.784-.092 1.068.438.285 1.19.268 1.678-.038.488-.304.529-.783.091-1.067m-2.007 1.255c-.555-.36-.504-.97.115-1.356.62-.387 1.576-.41 2.13-.047.555.36.503.966-.115 1.355-.62.387-1.576.407-2.13.048"/>
|
||||
<path stroke="#004680" stroke-width=".309" d="M435.707 290.798c-.438-.285-1.19-.268-1.678.037-.488.306-.53.784-.092 1.068.438.285 1.19.268 1.678-.038.488-.304.529-.783.091-1.067zm-2.008 1.255c-.555-.36-.504-.97.115-1.356.62-.387 1.576-.41 2.13-.047.555.36.503.966-.115 1.355-.62.387-1.576.407-2.13.048z"/>
|
||||
<path fill="#004680" d="M429.243 289.06c-.437-.284-1.19-.268-1.678.037-.487.305-.528.784-.091 1.068.437.284 1.19.267 1.677-.038.488-.304.529-.784.092-1.068m-2.008 1.255c-.555-.36-.503-.969.117-1.356.62-.386 1.575-.408 2.13-.047.555.36.502.968-.117 1.355-.62.387-1.574.408-2.13.048"/>
|
||||
<path stroke="#004680" stroke-width=".309" d="M429.243 289.06c-.437-.284-1.19-.268-1.678.037-.487.305-.528.784-.091 1.068.437.284 1.19.267 1.677-.038.488-.304.529-.784.092-1.068zm-2.008 1.254c-.555-.36-.503-.969.117-1.356.62-.386 1.575-.408 2.13-.047.555.36.502.968-.117 1.355-.62.387-1.574.408-2.13.048z"/>
|
||||
<path fill="#FFF" d="M425.637 297.09l1.897-4.973"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".619" d="M425.637 297.09l1.897-4.973"/>
|
||||
<path fill="#FFF" d="M425.637 297.09l6.251-3.906"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".619" d="M425.637 297.09l6.251-3.906"/>
|
||||
<path fill="#FFF" d="M433.478 295.977l-8.104 1.112"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".619" d="M433.478 295.977l-8.104 1.112"/>
|
||||
<path fill="#35D0BA" d="M452.683 260.514c.073-.812-.377-1.6-1.376-2.177l-15.157-8.75c-2.05-1.185-5.634-1.036-8.003.331l-13.867 8.006c-1.29.745-1.953 1.7-1.957 2.605h-.004v6.66h.004c-.036.782.418 1.535 1.382 2.092l15.158 8.751c2.05 1.184 5.634 1.036 8.003-.332l13.867-8.006c1.376-.795 2.038-1.826 1.95-2.783v-6.397z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M452.683 260.514c.073-.812-.377-1.6-1.376-2.177l-15.157-8.75c-2.05-1.185-5.634-1.036-8.003.331l-13.867 8.006c-1.29.745-1.953 1.7-1.957 2.605h-.004v6.66h.004c-.036.782.418 1.535 1.382 2.092l15.158 8.751c2.05 1.184 5.634 1.036 8.003-.332l13.867-8.006c1.376-.795 2.038-1.826 1.95-2.783v-6.397z"/>
|
||||
<path fill="#35EEBA" d="M419.696 266.004l-5.99-3.458c-2.052-1.185-1.794-3.253.574-4.621l13.867-8.006c2.369-1.367 5.952-1.517 8.003-.332l15.157 8.75c2.052 1.186 1.794 3.254-.574 4.622l-13.867 8.006c-2.368 1.367-5.952 1.516-8.003.332l-4.365-2.521"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M419.696 266.004l-5.99-3.458c-2.052-1.185-1.794-3.253.574-4.621l13.867-8.006c2.369-1.367 5.952-1.517 8.003-.332l15.157 8.75c2.052 1.186 1.794 3.254-.574 4.622l-13.867 8.006c-2.368 1.367-5.952 1.516-8.003.332l-4.365-2.521"/>
|
||||
<path fill="#FFF" d="M422.504 267.626l-.299-.173"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M422.504 267.626l-.299-.173M441.84 263.352c-.577.648-1.32 1.256-2.226 1.797-4.518 2.701-11.383 2.721-15.333.043-3.949-2.677-3.487-7.037 1.032-9.737 4.518-2.702 11.383-2.72 15.333-.044 1.974 1.338 2.846 3.098 2.66 4.86M427.24 258.86c-2.08 1.04-3.835 2.507-4.787 4.569M441.837 256.401s-6.116-.371-11.609 1.29M424.012 256.366s-.567 7.429 13.058 9.95M440.193 255.104s-10.27 5.041-6.103 11.916M428.325 258.386s.16-.08.323-.138"/>
|
||||
<path fill="#F3807B" d="M480.646 276.601c.073-.813-.376-1.6-1.375-2.177l-15.157-8.75c-2.052-1.185-5.635-1.037-8.004.331l-13.866 8.006c-1.291.745-1.953 1.7-1.958 2.605h-.004v6.66h.005c-.037.782.418 1.534 1.381 2.092l15.158 8.751c2.051 1.184 5.634 1.035 8.004-.332l13.866-8.006c1.376-.795 2.038-1.826 1.95-2.783v-6.397z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M480.646 276.601c.073-.813-.376-1.6-1.375-2.177l-15.157-8.75c-2.052-1.185-5.635-1.037-8.004.331l-13.866 8.006c-1.291.745-1.953 1.7-1.958 2.605h-.004v6.66h.005c-.037.782.418 1.534 1.381 2.092l15.158 8.751c2.051 1.184 5.634 1.035 8.004-.332l13.866-8.006c1.376-.795 2.038-1.826 1.95-2.783v-6.397z"/>
|
||||
<path fill="#EFA0A0" d="M458.56 288.013a5.829 5.829 0 0 1-1.734-.63l-15.158-8.75c-2.05-1.185-1.794-3.255.576-4.622l13.866-8.006c2.37-1.368 5.952-1.516 8.004-.332l15.157 8.751c2.051 1.185 1.794 3.253-.575 4.621l-13.866 8.006c-.95.548-2.094.9-3.257 1.05"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M458.56 288.013a5.829 5.829 0 0 1-1.734-.63l-15.158-8.75c-2.05-1.185-1.794-3.255.576-4.622l13.866-8.006c2.37-1.368 5.952-1.516 8.004-.332l15.157 8.751c2.051 1.185 1.794 3.253-.575 4.621l-13.866 8.006c-.95.548-2.094.9-3.257 1.05"/>
|
||||
<path fill="#FFF" d="M460.062 288.18l-.077-.003"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M460.062 288.18l-.077-.003"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".862" d="M466.13 270.312c1.018.31 1.962.732 2.787 1.27 4.113 2.67 3.738 7.144-.838 9.992-4.576 2.847-11.62 2.99-15.734.32-4.113-2.672-3.738-7.146.838-9.994 1.503-.935 3.272-1.578 5.117-1.927M462.898 269.717c1.122.087 2.215.284 3.232.595M459.788 269.758c.5-.05 1-.08 1.5-.089"/>
|
||||
<path fill="#004680" d="M468.312 276.88c-.753.468-3.097-.278-5.233-1.665-2.138-1.388-3.26-2.893-2.507-3.361.753-.47 3.095.276 5.233 1.664 2.138 1.388 3.26 2.893 2.507 3.362"/>
|
||||
<path fill="#004680" d="M459.433 272.561l-1.614 1.005s.05 1.638 2.771 3.406c2.723 1.768 5.01 1.595 5.01 1.595l1.573-.98s-2.79-.389-4.84-1.72c-2.05-1.332-2.9-3.306-2.9-3.306"/>
|
||||
<path fill="#004680" d="M456.908 274.133l-1.614 1.004s.049 1.64 2.77 3.406c2.724 1.77 5.01 1.595 5.01 1.595l1.573-.98s-2.79-.389-4.84-1.72c-2.05-1.332-2.9-3.305-2.9-3.305"/>
|
||||
<path fill="#004680" d="M454.465 275.653l-1.615 1.005s.05 1.638 2.772 3.406c2.723 1.768 5.01 1.594 5.01 1.594l1.572-.979s-2.789-.389-4.84-1.721c-2.05-1.332-2.899-3.305-2.899-3.305"/>
|
||||
<path fill="#FFCD3C" d="M472.87 303.404l12.269 7.084c2.05 1.184 5.634 1.035 8.003-.332l13.867-8.006c1.377-.795 2.038-1.826 1.95-2.782v-6.398c.074-.813-.376-1.6-1.375-2.176l-15.157-8.751c-2.052-1.185-5.635-1.036-8.003.332l-13.867 8.006c-1.291.745-1.954 1.699-1.958 2.604h-.003v6.659h.003c-.036.783.418 1.535 1.383 2.093l.724.418"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M472.87 303.404l12.269 7.084c2.05 1.184 5.634 1.035 8.003-.332l13.867-8.006c1.377-.795 2.038-1.826 1.95-2.782v-6.398c.074-.813-.376-1.6-1.375-2.176l-15.157-8.751c-2.052-1.185-5.635-1.036-8.003.332l-13.867 8.006c-1.291.745-1.954 1.699-1.958 2.604h-.003v6.659h.003c-.036.783.418 1.535 1.383 2.093l.724.418"/>
|
||||
<path fill="#FFE8B6" d="M493.4 303.271l-.258.15c-2.37 1.367-5.952 1.515-8.004.331l-15.156-8.75c-2.052-1.185-1.795-3.254.574-4.622l13.867-8.005c2.369-1.369 5.952-1.517 8.003-.333l15.158 8.751c2.05 1.185 1.794 3.253-.576 4.622l-9.48 5.473"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M493.4 303.271l-.258.15c-2.37 1.367-5.952 1.515-8.004.331l-15.156-8.75c-2.052-1.185-1.795-3.254.574-4.622l13.867-8.005c2.369-1.369 5.952-1.517 8.003-.333l15.158 8.751c2.05 1.185 1.794 3.253-.576 4.622l-9.48 5.473"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".928" d="M492.934 286.18l-1.946 1.217M495.842 288.069l-1.947 1.217M498.556 289.832l-1.947 1.216M494.236 287.026l-1.946 1.217M497.144 288.915l-1.946 1.216M499.858 290.677l-1.946 1.216M480.579 293.901l-1.946 1.217M483.486 295.79l-1.946 1.217M486.2 297.552l-1.946 1.216M481.88 294.747l-1.946 1.217M484.788 296.635l-1.947 1.216M487.502 298.398l-1.946 1.216M499.341 294.533l-1.744-1.134M496.097 296.56l-1.744-1.134M493.069 298.452l-1.744-1.133M497.89 295.44l-1.746-1.133M494.645 297.467l-1.745-1.133M491.617 299.359l-1.745-1.133M488.267 287.34l-1.744-1.132M485.023 289.368l-1.744-1.133M481.996 291.26l-1.745-1.134M486.815 288.249l-1.745-1.133M483.57 290.276l-1.744-1.134M480.542 292.168l-1.745-1.133M487.795 298.6l-7.872-5.113c-.397-.257-.359-.689.082-.965l8.784-5.488c.442-.276 1.12-.29 1.515-.035l7.873 5.113c.395.257.358.69-.083.965l-8.783 5.488c-.442.276-1.12.291-1.516.034z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".928" d="M488.45 295.441l-3.558-2.31c-.195-.127-.176-.34.04-.476l3.97-2.481c.218-.135.553-.143.749-.016l3.557 2.31c.195.127.177.34-.041.476l-3.97 2.48c-.217.136-.552.144-.747.017z"/>
|
||||
<path stroke="#B1CEE6" stroke-dasharray="3.186,3.186" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M455.921 325.785l-15.157-8.751c-2.052-1.185-1.794-3.253.574-4.621l13.867-8.006c2.368-1.367 5.952-1.516 8.003-.332l15.157 8.75c2.052 1.186 1.794 3.255-.574 4.622l-13.867 8.006c-2.369 1.368-5.952 1.517-8.003.332z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.274" d="M236.773 124.067l78.132-47.93 113.799 65.92-78.77 46.039"/>
|
||||
<g opacity=".25">
|
||||
<path fill="#FFF" d="M240.991 312.289l11.312 6.53c4.453 2.572 11.188 2.85 15.044.624L403.5 240.836c3.856-2.227 3.372-6.115-1.08-8.686l-100.096-57.791c-4.454-2.57-11.189-2.85-15.045-.623l-136.152 78.607c-3.856 2.226-3.372 6.115 1.08 8.686l73.031 42.164 15.754 9.096z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".827" d="M240.991 312.289l11.312 6.53c4.453 2.572 11.188 2.85 15.044.624L403.5 240.836c3.856-2.227 3.372-6.115-1.08-8.686l-100.096-57.791c-4.454-2.57-11.189-2.85-15.045-.623l-136.152 78.607c-3.856 2.226-3.372 6.115 1.08 8.686l73.031 42.164 15.754 9.096z"/>
|
||||
</g>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.274" d="M203.048 282.876l-95.915 54.653 151.219 87.299"/>
|
||||
<path fill="#DCE7F2" d="M406.095 229.522v-6.027c.002-.051 0-.101 0-.152v-.042h-.002c-.005-1.704-1.244-3.5-3.674-4.903l-100.096-57.791c-4.454-2.57-11.189-2.85-15.045-.623L151.126 238.59c-1.703.984-2.556 2.29-2.598 3.666h-.007v6.312h.01c-.02 1.719 1.221 3.536 3.675 4.953l100.097 57.79c4.453 2.572 11.188 2.85 15.044.625L403.5 233.329c1.761-1.016 2.607-2.381 2.593-3.807h.003z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".827" d="M406.095 229.522v-6.027c.002-.051 0-.101 0-.152v-.042h-.002c-.005-1.704-1.244-3.5-3.674-4.903l-100.096-57.791c-4.454-2.57-11.189-2.85-15.045-.623L151.126 238.59c-1.703.984-2.556 2.29-2.598 3.666h-.007v6.312h.01c-.02 1.719 1.221 3.536 3.675 4.953l100.097 57.79c4.453 2.572 11.188 2.85 15.044.625L403.5 233.329c1.761-1.016 2.607-2.381 2.593-3.807h.003z"/>
|
||||
<path fill="#FFF" d="M240.991 298.537l11.312 6.53c4.453 2.572 11.188 2.85 15.044.624L403.5 227.084c3.856-2.226 3.372-6.115-1.08-8.686l-100.096-57.791c-4.454-2.57-11.189-2.85-15.045-.623L151.126 238.59c-3.856 2.227-3.372 6.115 1.08 8.686l73.031 42.164"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".827" d="M240.991 298.537l11.312 6.53c4.453 2.572 11.188 2.85 15.044.624L403.5 227.084c3.856-2.226 3.372-6.115-1.08-8.686l-100.096-57.791c-4.454-2.57-11.189-2.85-15.045-.623L151.126 238.59c-3.856 2.227-3.372 6.115 1.08 8.686l73.031 42.164"/>
|
||||
<path fill="#FFF" d="M229.964 292.17l1.077.621"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.157" d="M229.964 292.17l1.077.621M406.095 223.342v-.042h-.002v-.001a3.624 3.624 0 0 0-.058-.621c-.002-.02-.007-.036-.01-.054a3.864 3.864 0 0 0-.155-.568c-.01-.032-.024-.065-.036-.097a4.557 4.557 0 0 0-.233-.518l-.07-.132a5.438 5.438 0 0 0-.303-.473c-.037-.054-.073-.108-.113-.161a7.375 7.375 0 0 0-.36-.432c-.055-.06-.106-.12-.163-.18a8.148 8.148 0 0 0-.422-.402c-.068-.061-.13-.123-.202-.183a9.217 9.217 0 0 0-.509-.393c-.073-.055-.139-.11-.217-.163a10.91 10.91 0 0 0-.824-.524l-100.095-57.791c-1.114-.642-2.37-1.142-3.688-1.494a18.704 18.704 0 0 0-6.076-.588c-1.985.14-3.835.624-5.28 1.459L151.126 238.59a6.95 6.95 0 0 0-1.03.733c-.042.034-.085.065-.124.1a5.06 5.06 0 0 0-.802.92 3.866 3.866 0 0 0-.438.858c-.012.036-.02.072-.033.108-.098.31-.162.626-.17.947h-.008v6.312h.01c-.02 1.719 1.221 3.535 3.675 4.953l100.097 57.79c4.453 2.572 11.188 2.85 15.044.624L403.5 233.329c1.761-1.017 2.607-2.381 2.593-3.807h.003v-6.027c.002-.051 0-.102 0-.153z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".743" d="M162.974 239.237l56.98-32.61 103.289 58.88-56.656 32.215z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".633" d="M244.227 239.393c.253.472.708.905 1.366 1.303.822.497 1.809.802 2.961.915 1.152.113 2.417-.06 3.794-.517l2.712-.91c.931-.298 1.667-.442 2.208-.432.542.01 1.031.147 1.47.412.639.387.895.845.768 1.372-.128.527-.625 1.082-1.492 1.663a11.27 11.27 0 0 1-1.831.983c-.674.29-1.363.518-2.066.687a10.33 10.33 0 0 0-.514.134 1.12 1.12 0 0 0-.308.137c-.209.14-.149.31.179.508l.795.48c.146.09.32.158.523.21.202.05.489.044.86-.019M243.928 237.952c-.054.49.046.97.3 1.441M246.016 235.173c-.611.41-1.098.853-1.461 1.33M248.082 234.103c-.354.144-.71.307-1.07.49a9.488 9.488 0 0 0-.996.58M260.729 238.48c-.821-.497-1.765-.796-2.83-.897-1.065-.102-2.278.072-3.639.518l-2.665.878c-1.013.33-1.807.495-2.381.496-.575 0-1.081-.132-1.519-.397-.639-.387-.888-.814-.747-1.282.142-.467.606-.964 1.393-1.492a9.953 9.953 0 0 1 3.255-1.412c.368-.085.609-.164.721-.24.209-.14.15-.309-.179-.508l-.74-.447a1.585 1.585 0 0 0-.641-.235 3.033 3.033 0 0 0-.793.043M262.19 239.824c-.298-.487-.786-.936-1.46-1.344M261.918 242.888c.395-.52.612-1.04.654-1.556M255.652 246.32c.607-.105 1.348-.332 2.22-.685a13.117 13.117 0 0 0 2.395-1.256c.707-.474 1.258-.971 1.652-1.491M224.373 260.079c.233-.336.615-.683 1.145-1.038.417-.28.88-.55 1.386-.807a18.1 18.1 0 0 1 1.525-.69l.657.397c.53.322.938.624 1.224.909.286.287.464.593.53.92a1.88 1.88 0 0 1-.302 1.478 4.207 4.207 0 0 1-1.133 1.127m0 0c-.627.42-1.298.63-2.01.629m-2.163-.662c-.785-.476-1.162-.991-1.131-1.547m0 0c.012-.234.102-.472.272-.716m.382-2.744a13.64 13.64 0 0 0-1.582.902c-1.413.947-2.132 1.948-2.155 2.999-.023 1.052.632 1.98 1.965 2.787 1.26.762 2.602 1.144 4.025 1.145 1.425 0 2.714-.388 3.871-1.163 1.624-1.087 2.252-2.43 1.887-4.023.49.114.938.204 1.338.273.401.068.808.104 1.22.107.275.003.484-.045.63-.141a.544.544 0 0 0 .224-.326l.21-.98c.03-.205-.037-.358-.2-.458a1.333 1.333 0 0 0-.452-.15 15.203 15.203 0 0 1-1.57-.381c-.452-.14-.97-.387-1.553-.741l-5.095-3.082c-1.718-1.038-3.382-1.558-4.994-1.56m-1.957.265a9.257 9.257 0 0 0-1.978.807m-.942.572c-.755.506-1.37 1.046-1.844 1.62m0 0c-.474.574-.815 1.105-1.023 1.594-.084.196-.103.348-.058.457.046.11.196.242.451.397l.767.464c.33.198.59.233.784.104a.993.993 0 0 0 .175-.171 2.74 2.74 0 0 0 .276-.447 8.3 8.3 0 0 1 .948-1.316c.37-.422.796-.795 1.278-1.12 1.06-.71 2.05-1.063 2.968-1.062.917.003 1.97.362 3.156 1.08l1.15.696a28.39 28.39 0 0 0-1.92.852M237.091 248.233l-1.68-1.586 12.226 4.659c.375.146.674.213.895.204.223-.009.462-.1.72-.272l1.18-.792c.241-.161.368-.31.38-.446.012-.136-.097-.325-.327-.567l-8.782-9.554a3.52 3.52 0 0 0-.287-.296 1.55 1.55 0 0 0-.222-.165c-.256-.155-.497-.157-.72-.006l-1.279.856c-.257.173-.387.324-.392.455-.004.131.11.317.34.558l8.105 7.946-12.66-4.893c-.375-.144-.669-.209-.882-.195-.213.015-.448.109-.705.281l-1.109.743c-.257.172-.39.327-.404.463-.012.136.105.319.352.55l8.21 7.702-12.67-4.713c-.39-.134-.688-.197-.893-.188-.205.01-.436.101-.693.273l-1.349.904c-.226.151-.21.304.045.459.11.066.36.166.751.3"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".633" d="M228.459 251.995l12.12 4.077c.391.135.693.194.905.18.213-.015.44-.104.682-.265l1.18-.791c.257-.173.388-.33.39-.472.003-.14-.118-.327-.364-.558l-.295-.278"/>
|
||||
<path fill="#F7971D" d="M231.732 269.315s13.136-1.809 26-10.456c5.126-3.445 11.058-12.23 11.058-12.23s2.183-.777 1.565 1.362c-.618 2.138-1.998 8.622-10.668 13.91-4.158 2.535-10.501 5.4-16.156 6.8-10.055 2.488-18.406 2.22-11.8.614"/>
|
||||
<path stroke="#F7971D" stroke-linecap="round" stroke-linejoin="round" stroke-width=".572" d="M266.973 255.051c1.876-2.508 3.154-5.196 3.512-7.814.12-.884-1.466-1.024-1.863-.287M235.731 268.46a77.767 77.767 0 0 1-5.787 1.168c-.848.138-.63.752.23.73 10.954-.267 21.432-3.04 29.367-8.357a33.165 33.165 0 0 0 1.554-1.108M237.29 268.067c-.518.136-1.038.268-1.559.394M239.234 267.527c-.343.1-.687.197-1.031.293"/>
|
||||
<path stroke="#F7971D" stroke-linecap="round" stroke-linejoin="round" stroke-width=".572" d="M268.622 246.95c-2.633 4.89-6.973 9.31-12 12.678-4.103 2.751-8.841 5.028-13.89 6.78M264.819 245.312c-.61.69-1.062 1.458-1.203 2.26M268.016 242.898c-.54.28-1.117.63-1.669 1.038"/>
|
||||
<path stroke="#F7971D" stroke-linecap="round" stroke-linejoin="round" stroke-width=".572" d="M263.616 247.572c-.08.46.428.68.811.348 1.262-1.101 4.072-3.55 5.496-3.43 1.425.123 3.678 3.048 4.684 4.355.304.396.85.27.868-.194.12-3.03-4.097-6.383-5.295-6.472-.202-.015-.509.044-.883.167"/>
|
||||
<path fill="#F7971D" d="M263.616 247.572c-.08.46.428.68.811.348 1.262-1.101 4.072-3.55 5.496-3.43 1.425.123 3.678 3.048 4.684 4.355.304.396.85.27.868-.194.12-3.03-4.097-6.383-5.295-6.472-1.189-.09-6.04 2.4-6.564 5.393"/>
|
||||
<path stroke="#B1CEE6" stroke-dasharray="3.186,3.186" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M352.369 231.497l-15.157-8.751c-2.051-1.184-1.794-3.253.575-4.621l13.866-8.005c2.369-1.368 5.952-1.517 8.004-.332l15.157 8.75c2.05 1.185 1.794 3.253-.575 4.62l-13.866 8.007c-2.37 1.368-5.952 1.517-8.004.332zM319.827 250.734l-15.157-8.751c-2.051-1.185-1.794-3.253.575-4.621l13.867-8.006c2.368-1.367 5.95-1.516 8.003-.331l15.157 8.751c2.05 1.184 1.794 3.252-.575 4.62l-13.866 8.006c-2.37 1.368-5.952 1.517-8.004.332z"/>
|
||||
<path fill="#FFCD3C" d="M251.56 210.843l12.269 7.083c2.051 1.185 5.634 1.037 8.003-.331l13.867-8.006c1.376-.795 2.038-1.826 1.95-2.783v-6.397c.073-.813-.376-1.6-1.375-2.176l-15.158-8.751c-2.051-1.185-5.634-1.036-8.003.33l-13.867 8.008c-1.291.745-1.953 1.698-1.957 2.604h-.004v6.659h.004c-.036.783.418 1.536 1.383 2.093l.724.418"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M251.56 210.843l12.269 7.083c2.051 1.185 5.634 1.037 8.003-.331l13.867-8.006c1.376-.795 2.038-1.826 1.95-2.783v-6.397c.073-.813-.376-1.6-1.375-2.176l-15.158-8.751c-2.051-1.185-5.634-1.036-8.003.33l-13.867 8.008c-1.291.745-1.953 1.698-1.957 2.604h-.004v6.659h.004c-.036.783.418 1.536 1.383 2.093l.724.418"/>
|
||||
<path fill="#FFE8B6" d="M272.09 210.71l-.258.15c-2.368 1.367-5.952 1.516-8.003.33l-15.157-8.75c-2.052-1.184-1.794-3.252.574-4.62l13.867-8.006c2.369-1.368 5.952-1.517 8.003-.332l15.158 8.75c2.05 1.186 1.794 3.254-.575 4.622l-9.481 5.473"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M272.09 210.71l-.258.15c-2.368 1.367-5.952 1.516-8.003.33l-15.157-8.75c-2.052-1.184-1.794-3.252.574-4.62l13.867-8.006c2.369-1.368 5.952-1.517 8.003-.332l15.158 8.75c2.05 1.186 1.794 3.254-.575 4.622l-9.481 5.473"/>
|
||||
<path fill="#FFE8B6" d="M272.595 199.005l-4.286-2.474 3.144-2.201 4.286 2.474z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M272.595 199.005l-4.286-2.474 3.144-2.201 4.286 2.474z"/>
|
||||
<path fill="#FFE8B6" d="M265.37 204.064l-4.285-2.474 3.144-2.201 4.285 2.474z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M265.37 204.064l-4.285-2.474 3.144-2.201 4.285 2.474z"/>
|
||||
<path fill="#FFE8B6" d="M268.25 205.727l-.546-.315 3.143-2.202 4.286 2.475-1.058.74"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M268.25 205.727l-.546-.315 3.143-2.202 4.286 2.475-1.058.74"/>
|
||||
<path fill="#FFE8B6" d="M269.847 206.648l-.776-.448"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M269.847 206.648l-.776-.448"/>
|
||||
<path fill="#FFE8B6" d="M272.4 207.598l-.41.288-1.46-.843"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M272.4 207.598l-.41.288-1.46-.843"/>
|
||||
<path fill="#FFE8B6" d="M274.075 206.425l-.514.36"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M274.075 206.425l-.514.36"/>
|
||||
<path fill="#FFE8B6" d="M259.752 196.804l2.143 1.237-3.144 2.2-4.286-2.473 3.144-2.201.892.515"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M259.752 196.804l2.143 1.237-3.144 2.2-4.286-2.473 3.144-2.201.892.515"/>
|
||||
<path fill="#FFE8B6" d="M260.75 196.105l1.484-1.04 13.239 7.644-1.485 1.04"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M260.75 196.105l1.484-1.04 13.239 7.644-1.485 1.04"/>
|
||||
<path fill="#FFE8B6" d="M269.893 198.16l-2.524 1.767"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M269.893 198.16l-2.524 1.767"/>
|
||||
<path fill="#D8AE64" d="M281.117 228.268l10.397 6.003c2.052 1.184 5.635 1.036 8.003-.332l13.868-8.005c1.376-.795 2.038-1.826 1.95-2.783v-6.397c.073-.813-.376-1.6-1.376-2.177l-15.156-8.75c-2.052-1.185-5.635-1.037-8.004.33l-13.867 8.007c-1.291.746-1.953 1.699-1.958 2.604h-.003v6.66h.004c-.036.783.418 1.535 1.383 2.092l1.12.648"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M281.117 228.268l10.397 6.003c2.052 1.184 5.635 1.036 8.003-.332l13.868-8.005c1.376-.795 2.038-1.826 1.95-2.783v-6.397c.073-.813-.376-1.6-1.376-2.177l-15.156-8.75c-2.052-1.185-5.635-1.037-8.004.33l-13.867 8.007c-1.291.746-1.953 1.699-1.958 2.604h-.003v6.66h.004c-.036.783.418 1.535 1.383 2.092l1.12.648"/>
|
||||
<path fill="#DCE7F2" d="M279.29 227.214l.154.089"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M279.29 227.214l.154.089"/>
|
||||
<path fill="#F9D093" d="M299.964 226.945l-.447.258c-2.368 1.368-5.95 1.516-8.003.332l-15.157-8.75c-2.052-1.185-1.794-3.254.574-4.622l13.867-8.006c2.37-1.367 5.952-1.516 8.004-.33l15.157 8.75c2.051 1.184 1.794 3.253-.575 4.62l-10.773 6.22"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M299.964 226.945l-.447.258c-2.368 1.368-5.95 1.516-8.003.332l-15.157-8.75c-2.052-1.185-1.794-3.254.574-4.622l13.867-8.006c2.37-1.367 5.952-1.516 8.004-.33l15.157 8.75c2.051 1.184 1.794 3.253-.575 4.62l-10.773 6.22"/>
|
||||
<path fill="#004680" d="M285.638 215.674l.002.001h-.002z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".832" d="M284.159 217.993c-.583-2.259.63-4.755 3.563-6.587 4.583-2.863 11.626-3.022 15.733-.355 4.107 2.667 3.722 7.15-.86 10.013-4.582 2.864-11.626 3.023-15.733.355"/>
|
||||
<path fill="#004680" d="M291.465 219.69c-.554.346-1.406.365-1.903.042-.497-.323-.45-.865.104-1.21.554-.348 1.406-.367 1.903-.044.498.322.451.865-.104 1.211M299.306 218.577c-.554.347-1.406.366-1.903.043-.497-.323-.45-.865.104-1.211.554-.347 1.406-.366 1.903-.043.498.322.451.865-.104 1.21M293.363 214.717c-.555.346-1.407.366-1.904.043-.497-.323-.45-.865.104-1.212.555-.346 1.406-.366 1.904-.043.497.323.45.865-.104 1.212M297.716 215.784c-.555.346-1.407.365-1.904.043-.496-.323-.45-.865.104-1.212.555-.346 1.406-.366 1.904-.043.497.323.45.865-.104 1.212M303.238 216.963c-.437-.284-1.19-.267-1.677.038-.488.305-.53.784-.092 1.067.437.285 1.19.268 1.677-.037.488-.305.529-.784.092-1.068m-2.008 1.255c-.555-.361-.503-.969.117-1.356.62-.387 1.575-.408 2.13-.048.555.36.502.969-.117 1.356-.62.387-1.574.408-2.13.048"/>
|
||||
<path stroke="#004680" stroke-width=".309" d="M303.238 216.963c-.437-.284-1.19-.267-1.677.038-.488.305-.53.784-.092 1.067.437.285 1.19.268 1.677-.037.488-.305.529-.784.092-1.068zm-2.008 1.255c-.555-.361-.503-.969.117-1.356.62-.387 1.575-.408 2.13-.048.555.36.502.969-.117 1.356-.62.387-1.574.408-2.13.048z"/>
|
||||
<path fill="#004680" d="M300.635 212.813c-.437-.284-1.19-.267-1.678.038s-.529.784-.092 1.067c.437.285 1.19.268 1.678-.037s.53-.784.092-1.068m-2.008 1.255c-.555-.36-.503-.969.116-1.356.62-.387 1.575-.408 2.13-.048.555.36.503.97-.117 1.356-.619.387-1.574.408-2.129.048"/>
|
||||
<path stroke="#004680" stroke-width=".309" d="M300.635 212.813c-.437-.284-1.19-.267-1.678.038s-.529.784-.092 1.067c.437.285 1.19.268 1.678-.037s.53-.784.092-1.068zm-2.008 1.255c-.555-.36-.503-.969.116-1.356.62-.387 1.575-.408 2.13-.048.555.36.503.97-.117 1.356-.619.387-1.574.408-2.129.048z"/>
|
||||
<path fill="#004680" d="M294.171 211.075c-.437-.284-1.189-.267-1.678.038-.487.305-.528.784-.092 1.067.438.284 1.191.268 1.678-.038.488-.304.53-.783.092-1.067m-2.008 1.254c-.555-.36-.503-.968.116-1.355.621-.387 1.576-.409 2.13-.048.556.36.503.968-.116 1.356-.619.386-1.574.408-2.13.047"/>
|
||||
<path stroke="#004680" stroke-width=".309" d="M294.171 211.075c-.437-.284-1.189-.267-1.678.038-.487.305-.528.784-.092 1.067.438.284 1.191.268 1.678-.038.488-.304.53-.783.092-1.067zm-2.008 1.254c-.555-.36-.503-.968.116-1.355.621-.387 1.576-.409 2.13-.048.556.36.503.968-.116 1.356-.619.386-1.574.408-2.13.047z"/>
|
||||
<path fill="#FFF" d="M290.566 219.105l1.896-4.972"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".619" d="M290.566 219.105l1.896-4.972"/>
|
||||
<path fill="#FFF" d="M290.566 219.105l6.25-3.905"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".619" d="M290.566 219.105l6.25-3.905"/>
|
||||
<path fill="#FFF" d="M298.407 217.993l-8.104 1.112"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".619" d="M298.407 217.993l-8.104 1.112"/>
|
||||
<path fill="#35D0BA" d="M317.612 182.976c.073-.813-.377-1.6-1.376-2.177l-15.157-8.751c-2.051-1.184-5.635-1.036-8.003.332l-13.867 8.006c-1.291.745-1.953 1.699-1.958 2.604h-.003v6.659h.004c-.036.784.418 1.536 1.382 2.093l15.158 8.75c2.05 1.185 5.633 1.037 8.003-.331l13.867-8.006c1.376-.794 2.038-1.825 1.95-2.783v-6.396z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M317.612 182.976c.073-.813-.377-1.6-1.376-2.177l-15.157-8.751c-2.051-1.184-5.635-1.036-8.003.332l-13.867 8.006c-1.291.745-1.953 1.699-1.958 2.604h-.003v6.659h.004c-.036.784.418 1.536 1.382 2.093l15.158 8.75c2.05 1.185 5.633 1.037 8.003-.331l13.867-8.006c1.376-.794 2.038-1.825 1.95-2.783v-6.396z"/>
|
||||
<path fill="#35EEBA" d="M284.625 188.465l-5.99-3.459c-2.052-1.184-1.795-3.253.574-4.621l13.867-8.005c2.368-1.368 5.952-1.517 8.003-.332l15.157 8.75c2.052 1.185 1.794 3.254-.574 4.622l-13.867 8.005c-2.37 1.368-5.953 1.517-8.004.332l-4.365-2.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M284.625 188.465l-5.99-3.459c-2.052-1.184-1.795-3.253.574-4.621l13.867-8.005c2.368-1.368 5.952-1.517 8.003-.332l15.157 8.75c2.052 1.185 1.794 3.254-.574 4.622l-13.867 8.005c-2.37 1.368-5.953 1.517-8.004.332l-4.365-2.52"/>
|
||||
<path fill="#FFF" d="M287.433 190.086l-.3-.172"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M287.433 190.086l-.3-.172"/>
|
||||
<path fill="#004680" d="M296.494 188.88l5.374-5.318-9.204 3.39-.903-.46 3.312-6.388-7.093 4.438-3.1-1.58 12.516-7.61 3.055 1.557-3.281 5.939 8.528-3.265 3.056 1.556-9.173 9.315z"/>
|
||||
<path fill="#F3807B" d="M345.575 199.063c.073-.813-.376-1.6-1.376-2.177l-15.156-8.751c-2.052-1.184-5.635-1.036-8.004.332l-13.866 8.006c-1.291.745-1.954 1.698-1.958 2.604h-.004v6.659h.004c-.036.784.418 1.536 1.382 2.093l15.158 8.75c2.05 1.185 5.634 1.037 8.003-.331l13.867-8.006c1.376-.795 2.038-1.825 1.95-2.783v-6.396z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M345.575 199.063c.073-.813-.376-1.6-1.376-2.177l-15.156-8.751c-2.052-1.184-5.635-1.036-8.004.332l-13.866 8.006c-1.291.745-1.954 1.698-1.958 2.604h-.004v6.659h.004c-.036.784.418 1.536 1.382 2.093l15.158 8.75c2.05 1.185 5.634 1.037 8.003-.331l13.867-8.006c1.376-.795 2.038-1.825 1.95-2.783v-6.396z"/>
|
||||
<path fill="#EFA0A0" d="M323.488 210.474a5.829 5.829 0 0 1-1.733-.63l-15.158-8.75c-2.05-1.185-1.794-3.254.576-4.622l13.866-8.006c2.369-1.367 5.952-1.516 8.004-.332l15.156 8.751c2.052 1.185 1.795 3.254-.574 4.621l-13.867 8.006c-.95.548-2.093.9-3.256 1.05"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M323.488 210.474a5.829 5.829 0 0 1-1.733-.63l-15.158-8.75c-2.05-1.185-1.794-3.254.576-4.622l13.866-8.006c2.369-1.367 5.952-1.516 8.004-.332l15.156 8.751c2.052 1.185 1.795 3.254-.574 4.621l-13.867 8.006c-.95.548-2.093.9-3.256 1.05"/>
|
||||
<path fill="#FFF" d="M324.99 210.64l-.076-.001"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M324.99 210.64l-.076-.001"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".928" d="M329.45 191.961l-1.945 1.216M332.359 193.85l-1.946 1.215M335.073 195.612l-1.946 1.216M330.753 192.806l-1.947 1.216M333.66 194.695l-1.945 1.216M336.375 196.457l-1.947 1.216M317.095 199.681l-1.946 1.217M320.003 201.57l-1.947 1.216M322.717 203.332l-1.946 1.216M318.398 200.527l-1.947 1.216M321.305 202.415l-1.946 1.217M324.019 204.178l-1.946 1.216M335.859 200.313l-1.745-1.133M332.614 202.34l-1.744-1.134M329.586 204.232l-1.745-1.133M334.406 201.22l-1.745-1.133M331.162 203.248l-1.745-1.133M328.133 205.14l-1.744-1.133M324.785 193.12l-1.745-1.132M321.54 195.148l-1.745-1.133M318.512 197.04l-1.745-1.133M323.332 194.028l-1.745-1.133M320.087 196.056l-1.745-1.133M317.06 197.948l-1.745-1.133M324.312 204.38l-7.872-5.112c-.396-.258-.358-.69.083-.966l8.783-5.487c.442-.276 1.12-.291 1.516-.035l7.872 5.112c.395.257.358.69-.083.965l-8.783 5.489c-.442.275-1.12.29-1.516.034z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".928" d="M324.966 201.221l-3.558-2.31c-.195-.127-.176-.34.041-.477l3.97-2.479c.218-.136.553-.144.748-.017l3.557 2.31c.196.127.178.34-.04.476l-3.97 2.48c-.218.137-.553.144-.748.017z"/>
|
||||
<g opacity=".25">
|
||||
<path fill="#FFF" d="M104.762 234.553l11.312 6.53c4.453 2.572 11.188 2.85 15.044.625L267.27 163.1c3.857-2.226 3.373-6.115-1.08-8.686l-100.096-57.79c-4.453-2.571-11.188-2.85-15.044-.624L14.898 174.607c-3.857 2.227-3.373 6.115 1.08 8.686l73.03 42.164 15.754 9.096z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".827" d="M104.762 234.553l11.312 6.53c4.453 2.572 11.188 2.85 15.044.625L267.27 163.1c3.857-2.226 3.373-6.115-1.08-8.686l-100.096-57.79c-4.453-2.571-11.188-2.85-15.044-.624L14.898 174.607c-3.857 2.227-3.373 6.115 1.08 8.686l73.03 42.164 15.754 9.096z"/>
|
||||
</g>
|
||||
<path fill="#DCE7F2" d="M269.866 151.786v-6.027c.002-.05 0-.1 0-.152v-.042h-.002c-.005-1.704-1.243-3.499-3.674-4.903l-100.096-57.79c-4.453-2.57-11.188-2.85-15.044-.624L14.898 160.855c-1.703.984-2.557 2.291-2.599 3.666h-.007v6.312h.01c-.02 1.72 1.221 3.536 3.676 4.953l100.096 57.791c4.453 2.571 11.188 2.85 15.044.624l136.152-78.608c1.762-1.016 2.607-2.38 2.593-3.807h.003z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".827" d="M269.866 151.786v-6.027c.002-.05 0-.1 0-.152v-.042h-.002c-.005-1.704-1.243-3.499-3.674-4.903l-100.096-57.79c-4.453-2.57-11.188-2.85-15.044-.624L14.898 160.855c-1.703.984-2.557 2.291-2.599 3.666h-.007v6.312h.01c-.02 1.72 1.221 3.536 3.676 4.953l100.096 57.791c4.453 2.571 11.188 2.85 15.044.624l136.152-78.608c1.762-1.016 2.607-2.38 2.593-3.807h.003z"/>
|
||||
<g>
|
||||
<path fill="#FFF" d="M104.762 220.801l11.312 6.531c4.453 2.571 11.188 2.85 15.044.623l136.152-78.607c3.857-2.226 3.373-6.115-1.08-8.686l-100.096-57.79c-4.453-2.57-11.188-2.85-15.044-.624L14.898 160.855c-3.857 2.227-3.373 6.115 1.08 8.686l73.03 42.164"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".827" d="M104.762 220.801l11.312 6.531c4.453 2.571 11.188 2.85 15.044.623l136.152-78.607c3.857-2.226 3.373-6.115-1.08-8.686l-100.096-57.79c-4.453-2.57-11.188-2.85-15.044-.624L14.898 160.855c-3.857 2.227-3.373 6.115 1.08 8.686l73.03 42.164"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFF" d="M93.735 214.435l1.077.622"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.4" d="M93.735 214.435l1.077.622"/>
|
||||
</g>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.157" d="M269.866 145.607v-.042h-.002v-.001a3.645 3.645 0 0 0-.058-.622c-.002-.018-.007-.035-.01-.053a3.952 3.952 0 0 0-.154-.568c-.01-.032-.025-.065-.036-.097a4.749 4.749 0 0 0-.304-.65 5.7 5.7 0 0 0-.303-.473c-.037-.054-.073-.108-.113-.161a6.662 6.662 0 0 0-.36-.432c-.055-.06-.105-.12-.162-.18a8.176 8.176 0 0 0-.423-.402c-.068-.061-.13-.123-.2-.183a9.246 9.246 0 0 0-.51-.393c-.074-.055-.14-.11-.217-.163-.258-.18-.53-.355-.824-.524L166.094 82.872c-1.113-.642-2.369-1.142-3.687-1.495a18.736 18.736 0 0 0-6.077-.587c-1.984.14-3.835.624-5.28 1.459L14.897 160.856a6.95 6.95 0 0 0-1.03.733c-.04.034-.085.065-.123.1a4.973 4.973 0 0 0-.71.788l-.093.132a3.909 3.909 0 0 0-.438.858c-.012.036-.02.072-.032.108-.099.31-.163.626-.172.947h-.007v6.312h.01c-.02 1.718 1.221 3.536 3.675 4.953l100.097 57.79c4.453 2.572 11.188 2.85 15.044.624l136.152-78.607c1.761-1.017 2.607-2.381 2.593-3.807h.003v-6.027c.002-.051 0-.102 0-.153z"/>
|
||||
<path stroke="#B1CEE6" stroke-dasharray="3.186,3.186" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M126.204 139.722l-15.157-8.751c-2.05-1.185-1.794-3.253.574-4.621l13.867-8.006c2.37-1.367 5.952-1.516 8.004-.331l15.156 8.75c2.052 1.185 1.795 3.253-.574 4.62l-13.867 8.007c-2.369 1.368-5.952 1.516-8.003.332z"/>
|
||||
<g>
|
||||
<path fill="#FFF" d="M92.346 137.382l86.145 49.106"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M92.346 137.382l86.145 49.106"/>
|
||||
</g>
|
||||
<g transform="translate(26 127.965)">
|
||||
<mask id="b" fill="#fff">
|
||||
<use xlink:href="#a"/>
|
||||
</mask>
|
||||
<path fill="#FFF" d="M-7.658 60.011L-27 48.622 69.176-5.986l2.45-1.396 109.666 62.516-1.893 1.075-98.532 55.928L-.495 64.23" mask="url(#b)"/>
|
||||
</g>
|
||||
<g>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".743" d="M26.745 161.502l56.981-32.61 103.288 58.88-56.656 32.215z"/>
|
||||
<path stroke="#B1CEE6" stroke-dasharray="3.186,3.186" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M125.62 139.18l-15.157-8.75c-2.05-1.185-1.794-3.253.574-4.621l13.868-8.006c2.368-1.367 5.951-1.516 8.003-.331l15.157 8.75c2.051 1.185 1.794 3.253-.575 4.62l-13.867 8.007c-2.368 1.368-5.952 1.516-8.003.332zM153.97 154.768l-15.158-8.751c-2.05-1.185-1.794-3.253.574-4.621l13.868-8.006c2.368-1.368 5.951-1.516 8.003-.331l15.157 8.75c2.051 1.185 1.794 3.253-.575 4.62l-13.867 8.007c-2.368 1.368-5.952 1.516-8.003.332zM212.943 152.753l-15.157-8.75c-2.051-1.186-1.794-3.254.575-4.622l13.867-8.006c2.368-1.368 5.952-1.516 8.003-.33l15.157 8.75c2.052 1.184 1.794 3.252-.574 4.62l-13.868 8.006c-2.368 1.368-5.951 1.516-8.003.332z"/>
|
||||
<path fill="#D8AE64" d="M144.85 115.392l10.397 6.003c2.052 1.184 5.635 1.036 8.004-.332l13.867-8.005c1.376-.795 2.038-1.826 1.95-2.783v-6.397c.074-.813-.376-1.6-1.376-2.177l-15.156-8.75c-2.052-1.185-5.635-1.037-8.004.331l-13.867 8.006c-1.29.746-1.953 1.7-1.958 2.604h-.003v6.66h.004c-.036.783.418 1.535 1.383 2.092l1.121.647"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M144.85 115.392l10.397 6.003c2.052 1.184 5.635 1.036 8.004-.332l13.867-8.005c1.376-.795 2.038-1.826 1.95-2.783v-6.397c.074-.813-.376-1.6-1.376-2.177l-15.156-8.75c-2.052-1.185-5.635-1.037-8.004.331l-13.867 8.006c-1.29.746-1.953 1.7-1.958 2.604h-.003v6.66h.004c-.036.783.418 1.535 1.383 2.092l1.121.647"/>
|
||||
<path fill="#D8AE64" d="M143.023 114.338l.155.089"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M143.023 114.338l.155.089"/>
|
||||
<path fill="#F9D093" d="M163.698 114.07l-.447.258c-2.369 1.368-5.952 1.516-8.004.332l-15.156-8.751c-2.052-1.184-1.795-3.253.574-4.621l13.867-8.006c2.37-1.367 5.952-1.516 8.003-.332l15.157 8.75c2.051 1.186 1.795 3.255-.575 4.622l-10.772 6.219"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M163.698 114.07l-.447.258c-2.369 1.368-5.952 1.516-8.004.332l-15.156-8.751c-2.052-1.184-1.795-3.253.574-4.621l13.867-8.006c2.37-1.367 5.952-1.516 8.003-.332l15.157 8.75c2.051 1.186 1.795 3.255-.575 4.622l-10.772 6.219"/>
|
||||
<path fill="#004680" d="M157.166 111.8l-11.302-6.792c-.52-.312-.492-.869.064-1.243l7.95-5.363c.556-.374 1.428-.425 1.948-.112l11.3 6.79c.52.313.493.87-.064 1.244l-7.95 5.363c-.554.374-1.427.424-1.946.112"/>
|
||||
<path fill="#004680" d="M165.295 99.109c-1.973-1.186-5.292-.995-7.398.426s-2.214 3.541-.24 4.727c1.973 1.185 5.292.994 7.398-.426 2.106-1.421 2.214-3.541.24-4.727m-9.046 6.102c-2.7-1.623-2.553-4.524.33-6.469 2.881-1.944 7.423-2.205 10.124-.582 2.7 1.622 2.552 4.524-.329 6.469-2.883 1.943-7.424 2.205-10.125.582"/>
|
||||
<path fill="#35D0BA" d="M205.717 154.12c.074-.813-.376-1.6-1.375-2.177l-15.158-8.751c-2.05-1.184-5.634-1.036-8.003.332l-13.867 8.006c-1.29.745-1.953 1.699-1.957 2.604h-.004v6.659h.004c-.036.784.418 1.536 1.383 2.093l15.157 8.75c2.051 1.185 5.634 1.037 8.003-.331l13.867-8.006c1.376-.794 2.038-1.825 1.95-2.783v-6.396z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M205.717 154.12c.074-.813-.376-1.6-1.375-2.177l-15.158-8.751c-2.05-1.184-5.634-1.036-8.003.332l-13.867 8.006c-1.29.745-1.953 1.699-1.957 2.604h-.004v6.659h.004c-.036.784.418 1.536 1.383 2.093l15.157 8.75c2.051 1.185 5.634 1.037 8.003-.331l13.867-8.006c1.376-.794 2.038-1.825 1.95-2.783v-6.396z"/>
|
||||
<path fill="#35EEBA" d="M172.73 159.609l-5.99-3.459c-2.052-1.184-1.795-3.253.574-4.621l13.868-8.005c2.369-1.368 5.952-1.517 8.004-.332l15.155 8.75c2.052 1.185 1.795 3.254-.574 4.622l-13.867 8.005c-2.369 1.368-5.952 1.517-8.003.332l-4.365-2.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M172.73 159.609l-5.99-3.459c-2.052-1.184-1.795-3.253.574-4.621l13.868-8.005c2.369-1.368 5.952-1.517 8.004-.332l15.155 8.75c2.052 1.185 1.795 3.254-.574 4.622l-13.867 8.005c-2.369 1.368-5.952 1.517-8.003.332l-4.365-2.52"/>
|
||||
<path fill="#FFF" d="M175.539 161.23l-.3-.173"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M175.539 161.23l-.3-.173"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".862" d="M191.04 147.126c1.018.31 1.961.733 2.787 1.27 4.113 2.67 3.738 7.145-.838 9.992-4.576 2.847-11.621 2.99-15.734.32-4.113-2.672-3.738-7.146.838-9.994 1.503-.935 3.272-1.578 5.116-1.926M187.807 146.532c1.123.086 2.215.284 3.233.594M184.698 146.572c.5-.05 1-.08 1.5-.088"/>
|
||||
<path fill="#004680" d="M193.221 153.694c-.753.468-3.096-.277-5.233-1.665-2.138-1.388-3.26-2.893-2.507-3.361.753-.47 3.096.276 5.234 1.664 2.137 1.388 3.26 2.893 2.506 3.362"/>
|
||||
<path fill="#004680" d="M184.343 149.376l-1.615 1.005s.05 1.638 2.773 3.406c2.722 1.768 5.009 1.594 5.009 1.594l1.573-.98s-2.79-.39-4.84-1.72c-2.051-1.332-2.9-3.305-2.9-3.305"/>
|
||||
<path fill="#004680" d="M181.817 150.947l-1.615 1.005s.05 1.638 2.772 3.406c2.723 1.768 5.01 1.594 5.01 1.594l1.573-.98s-2.79-.388-4.84-1.72c-2.05-1.332-2.9-3.305-2.9-3.305"/>
|
||||
<path fill="#004680" d="M179.375 152.467l-1.615 1.005s.05 1.638 2.773 3.406c2.722 1.768 5.009 1.594 5.009 1.594l1.572-.98s-2.788-.388-4.84-1.72c-2.05-1.332-2.9-3.305-2.9-3.305"/>
|
||||
<path fill="#F3807B" d="M207.644 119.965c.073-.813-.376-1.6-1.375-2.177l-15.158-8.751c-2.051-1.184-5.634-1.035-8.003.332l-13.867 8.006c-1.291.745-1.953 1.699-1.958 2.604h-.003v6.659h.004c-.036.784.418 1.536 1.382 2.093l15.158 8.751c2.051 1.185 5.634 1.036 8.003-.331l13.867-8.007c1.376-.794 2.038-1.825 1.95-2.782v-6.397z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M207.644 119.965c.073-.813-.376-1.6-1.375-2.177l-15.158-8.751c-2.051-1.184-5.634-1.035-8.003.332l-13.867 8.006c-1.291.745-1.953 1.699-1.958 2.604h-.003v6.659h.004c-.036.784.418 1.536 1.382 2.093l15.158 8.751c2.051 1.185 5.634 1.036 8.003-.331l13.867-8.007c1.376-.794 2.038-1.825 1.95-2.782v-6.397z"/>
|
||||
<path fill="#EFA0A0" d="M185.557 131.377c-.642-.132-1.233-.341-1.733-.63l-15.157-8.751c-2.051-1.184-1.794-3.253.575-4.62l13.866-8.007c2.369-1.367 5.952-1.516 8.004-.331l15.157 8.75c2.05 1.185 1.794 3.254-.575 4.62l-13.866 8.007c-.95.548-2.094.9-3.257 1.05"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M185.557 131.377c-.642-.132-1.233-.341-1.733-.63l-15.157-8.751c-2.051-1.184-1.794-3.253.575-4.62l13.866-8.007c2.369-1.367 5.952-1.516 8.004-.331l15.157 8.75c2.05 1.185 1.794 3.254-.575 4.62l-13.866 8.007c-.95.548-2.094.9-3.257 1.05"/>
|
||||
<path fill="#FFF" d="M187.06 131.543c-.026 0-.051 0-.077-.002"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width=".867" d="M187.06 131.543c-.026 0-.051 0-.077-.002M196.359 122.902c-.577.647-1.32 1.255-2.225 1.796-4.52 2.702-11.384 2.721-15.333.044-3.95-2.677-3.488-7.037 1.03-9.738 4.52-2.702 11.384-2.721 15.334-.043 1.975 1.338 2.847 3.097 2.66 4.859M181.759 118.41c-2.08 1.04-3.834 2.506-4.788 4.569M196.357 115.95s-6.117-.372-11.61 1.29M178.531 115.916s-.567 7.428 13.057 9.949M194.711 114.653s-10.269 5.042-6.102 11.916M182.843 117.936s.162-.082.324-.138"/>
|
||||
<path fill="#A8C9FB" d="M87.21 186.427c-.282 0-.57-.01-.865-.032-1.947-.14-3.677-.732-5.144-1.759-1.491-1.044-2.265-2.228-2.3-3.517-.032-1.303.666-2.376 2.076-3.19.686-.396 1.49-.68 2.39-.845a8.924 8.924 0 0 1 1.59-.148c.346 0 .687.022 1.022.066a.204.204 0 0 1 .177.195l.036 1.074a.201.201 0 0 1-.203.21h-.027a6.706 6.706 0 0 0-.894-.062c-.98 0-1.885.236-2.69.7-.923.534-1.37 1.205-1.366 2.053.004.845.558 1.661 1.648 2.423a7.295 7.295 0 0 0 3.782 1.311c.194.012.385.018.57.018 1.144 0 2.136-.237 2.947-.705.98-.567 1.445-1.25 1.418-2.086-.017-.5-.356-1.036-1.01-1.593l-3.267 1.886a.207.207 0 0 1-.218-.009l-1.171-.82a.205.205 0 0 1-.086-.175.205.205 0 0 1 .102-.167l4.525-2.612a.193.193 0 0 1 .1-.028c.033 0 .065.008.094.023.306.157.58.321.824.491 1.409.987 2.142 2.032 2.178 3.107.089 1.252-.613 2.321-2.09 3.173-1.168.675-2.564 1.018-4.148 1.018"/>
|
||||
<path fill="#004680" d="M84.957 176.733a9.14 9.14 0 0 0-1.626.151c-.922.17-1.749.462-2.456.87-1.48.855-2.212 1.989-2.175 3.37.034 1.359.837 2.596 2.385 3.679 1.497 1.049 3.262 1.653 5.246 1.796.298.02.591.032.877.032 1.621 0 3.052-.353 4.254-1.046 1.547-.894 2.284-2.028 2.188-3.37-.037-1.128-.799-2.227-2.264-3.253a7.196 7.196 0 0 0-.847-.505.404.404 0 0 0-.39.01l-4.525 2.612a.408.408 0 0 0-.03.685l1.172.82a.403.403 0 0 0 .435.018l3.143-1.813c.537.483.816.936.83 1.351.024.754-.406 1.376-1.317 1.902-.78.45-1.736.68-2.844.68-.181 0-.369-.007-.558-.019a7.096 7.096 0 0 1-3.678-1.274c-1.032-.723-1.558-1.483-1.561-2.258-.004-.769.41-1.382 1.264-1.875a5.107 5.107 0 0 1 2.59-.674c.279 0 .57.02.866.06a.403.403 0 0 0 .326-.102.404.404 0 0 0 .132-.316l-.035-1.074a.406.406 0 0 0-.353-.39 8.08 8.08 0 0 0-1.049-.067m0 .406c.337 0 .669.022.996.064l.035 1.076a6.933 6.933 0 0 0-.918-.063c-1.022 0-1.953.242-2.793.727-.984.568-1.472 1.311-1.468 2.23.004.92.582 1.782 1.734 2.59a7.46 7.46 0 0 0 3.886 1.345c.198.013.394.02.584.02 1.185 0 2.2-.245 3.047-.734 1.043-.602 1.55-1.358 1.52-2.268-.02-.59-.416-1.202-1.192-1.833l-3.39 1.957-1.17-.819 4.525-2.613c.297.153.564.312.8.477 1.36.953 2.057 1.936 2.093 2.948.083 1.18-.58 2.177-1.987 2.99-1.144.66-2.495.991-4.05.991-.276 0-.56-.01-.85-.032-1.918-.138-3.599-.712-5.041-1.723-1.444-1.008-2.18-2.128-2.212-3.356-.032-1.227.625-2.23 1.973-3.008.67-.386 1.444-.66 2.325-.82a8.696 8.696 0 0 1 1.553-.145"/>
|
||||
<path fill="#FFB5B5" d="M96.336 175.462c-.622 0-1.156.127-1.588.376-.498.288-.729.655-.705 1.123.023.478.374.958 1.043 1.426a4.554 4.554 0 0 0 2.268.83c.145.012.285.018.421.018.622 0 1.156-.126 1.587-.376.498-.287.73-.655.706-1.123-.024-.478-.375-.957-1.043-1.425a4.551 4.551 0 0 0-2.268-.831 5.101 5.101 0 0 0-.42-.018m1.56 5.26c-.223 0-.45-.01-.683-.031-1.322-.12-2.52-.55-3.562-1.28-1.064-.743-1.635-1.572-1.698-2.463-.064-.91.423-1.671 1.448-2.262.816-.472 1.763-.711 2.813-.711.222 0 .448.01.68.03 1.323.12 2.522.55 3.563 1.28 1.064.745 1.635 1.574 1.698 2.464.065.909-.422 1.67-1.447 2.263-.817.47-1.763.71-2.813.71"/>
|
||||
<path fill="#E04646" d="M97.775 179.032a4.366 4.366 0 0 1-2.573-.812c-.614-.43-.935-.857-.956-1.27-.012-.245.037-.61.604-.936.4-.232.9-.35 1.488-.35.13 0 .264.007.403.018a4.362 4.362 0 0 1 2.168.795c.614.43.936.857.956 1.269.013.245-.037.61-.604.937-.401.23-.901.349-1.486.349m-1.56-5.26c-1.086 0-2.066.248-2.915.738-1.097.633-1.618 1.459-1.548 2.453.067.953.668 1.834 1.785 2.615 1.07.75 2.3 1.192 3.66 1.315.239.022.472.033.7.033 1.086 0 2.066-.25 2.914-.74 1.098-.633 1.619-1.458 1.548-2.452-.067-.953-.667-1.834-1.784-2.616-1.071-.75-2.302-1.191-3.661-1.314a7.587 7.587 0 0 0-.7-.032m1.56 5.666c.662 0 1.225-.134 1.69-.403.565-.326.834-.762.808-1.31-.028-.546-.404-1.073-1.13-1.581a4.744 4.744 0 0 0-2.804-.885c-.662 0-1.226.134-1.691.403-.565.326-.834.763-.807 1.309.027.546.404 1.074 1.129 1.582a4.744 4.744 0 0 0 2.806.885m-1.56-5.26c.216 0 .437.01.663.03 1.293.117 2.448.532 3.464 1.243 1.016.712 1.553 1.482 1.612 2.312.059.83-.39 1.52-1.346 2.073-.79.455-1.693.683-2.711.683a7.2 7.2 0 0 1-.664-.031c-1.292-.117-2.447-.531-3.463-1.243-1.016-.711-1.554-1.482-1.613-2.311-.058-.83.39-1.521 1.347-2.073.789-.455 1.693-.683 2.71-.683"/>
|
||||
<path fill="#FFF3B8" d="M104.29 170.87c-.622 0-1.156.126-1.588.375-.498.288-.727.655-.704 1.124.022.477.373.957 1.042 1.425a4.554 4.554 0 0 0 2.268.83c.144.012.284.018.42.018.623 0 1.157-.127 1.589-.376.498-.287.729-.655.706-1.123-.024-.478-.376-.958-1.043-1.425a4.548 4.548 0 0 0-2.269-.83 5.101 5.101 0 0 0-.42-.019m1.56 5.26c-.222 0-.45-.01-.683-.03-1.322-.12-2.52-.55-3.562-1.28-1.063-.745-1.634-1.574-1.697-2.464-.065-.909.422-1.67 1.447-2.262.818-.472 1.764-.71 2.813-.71.222 0 .449.01.681.03 1.323.12 2.522.55 3.563 1.28 1.065.744 1.636 1.573 1.698 2.463.064.91-.422 1.671-1.448 2.263-.816.471-1.763.71-2.811.71"/>
|
||||
<path fill="#DDD247" d="M105.729 174.44c-.13 0-.265-.006-.404-.018a4.353 4.353 0 0 1-2.168-.795c-.615-.43-.936-.856-.957-1.269-.012-.245.037-.609.604-.937.401-.23.902-.349 1.488-.349a4.362 4.362 0 0 1 2.571.812c.614.43.936.857.956 1.27.013.245-.037.61-.604.936-.401.232-.901.35-1.486.35m-1.56-5.26c-1.086 0-2.066.247-2.915.737-1.097.633-1.618 1.46-1.548 2.453.067.954.668 1.834 1.785 2.616 1.07.75 2.301 1.192 3.66 1.314.239.022.472.033.7.033 1.086 0 2.066-.248 2.914-.738 1.098-.634 1.619-1.459 1.548-2.453-.067-.954-.667-1.834-1.784-2.616-1.07-.75-2.302-1.192-3.66-1.315a7.625 7.625 0 0 0-.7-.032m1.56 5.667c.661 0 1.224-.135 1.689-.404.565-.326.834-.762.808-1.309-.028-.546-.404-1.073-1.13-1.582a4.73 4.73 0 0 0-2.368-.866 5.041 5.041 0 0 0-.436-.019c-.662 0-1.226.134-1.691.403-.565.327-.834.763-.807 1.31.027.546.404 1.073 1.129 1.581a4.725 4.725 0 0 0 2.369.867 5.5 5.5 0 0 0 .437.02m-1.559-5.262c.215 0 .436.011.662.031 1.293.117 2.448.531 3.464 1.243 1.016.711 1.554 1.482 1.612 2.311.059.83-.39 1.521-1.346 2.073-.79.456-1.693.683-2.711.683a7.56 7.56 0 0 1-.664-.03c-1.292-.117-2.447-.53-3.463-1.243-1.016-.712-1.554-1.482-1.613-2.312-.058-.829.39-1.52 1.347-2.072.789-.456 1.693-.684 2.712-.684"/>
|
||||
<path fill="#A8C9FB" d="M112.139 166.314c-.594 0-1.11.124-1.534.37-.487.28-.708.64-.674 1.098.036.473.394.95 1.063 1.42a4.625 4.625 0 0 0 2.706.863c.593 0 1.104-.12 1.519-.36.496-.287.72-.646.687-1.099-.035-.467-.397-.945-1.077-1.42-.701-.492-1.46-.778-2.25-.85a4.773 4.773 0 0 0-.44-.022zm4.729 7.335c-.891 0-1.714-.122-2.447-.363a.206.206 0 0 1-.128-.125.207.207 0 0 1 .02-.178l.619-.966a.205.205 0 0 1 .244-.08c.419.16.88.24 1.37.24l.135-.003c.534-.015 1-.136 1.387-.359.592-.342.866-.716.838-1.143-.031-.44-.376-.896-1.028-1.352l-.3-.21a1.76 1.76 0 0 1-.16.792c-.182.412-.534.771-1.048 1.068-.677.39-1.507.59-2.468.59-.261 0-.532-.016-.813-.044-1.31-.133-2.495-.567-3.528-1.289-1.053-.737-1.63-1.558-1.716-2.438-.09-.906.32-1.627 1.218-2.145a4.346 4.346 0 0 1 1.696-.543 6.077 6.077 0 0 1 1.05-.03l-.314-.22a.202.202 0 0 1 .016-.342l1.147-.663a.202.202 0 0 1 .218.01l6.328 4.431c1.199.84 1.785 1.697 1.74 2.551-.043.852-.558 1.568-1.53 2.13a5.016 5.016 0 0 1-2.543.681h-.003z"/>
|
||||
<path fill="#004680" d="M113.699 169.862a4.421 4.421 0 0 1-2.588-.827c-.618-.433-.946-.86-.977-1.268-.018-.238.023-.59.572-.908.393-.227.875-.342 1.432-.342.136 0 .277.007.422.02.756.07 1.48.344 2.153.815.627.44.96.865.99 1.27.017.233-.024.582-.586.906-.383.222-.86.334-1.418.334m-.94-6.247a.4.4 0 0 0-.203.055l-1.147.662a.407.407 0 0 0-.164.53 5.926 5.926 0 0 0-.51.037 4.55 4.55 0 0 0-1.774.568c-1.211.7-1.386 1.66-1.32 2.341.094.943.7 1.812 1.804 2.585 1.06.742 2.279 1.188 3.623 1.324.287.03.568.045.834.045.997 0 1.86-.208 2.569-.617.553-.318.934-.709 1.133-1.16.074-.169.125-.336.154-.5l.003.002c.599.418.916.822.94 1.2.01.124.036.507-.735.952-.356.205-.791.317-1.291.332l-.13.002c-.465 0-.902-.076-1.298-.227a.408.408 0 0 0-.486.161l-.62.966a.408.408 0 0 0 .217.606c.754.247 1.599.373 2.51.373a5.22 5.22 0 0 0 2.647-.709c1.036-.597 1.585-1.369 1.633-2.295.048-.928-.567-1.846-1.827-2.728l-6.33-4.43a.402.402 0 0 0-.231-.075m.939 6.653c.633 0 1.173-.129 1.622-.388.565-.326.827-.756.788-1.289-.04-.534-.428-1.058-1.163-1.572-.735-.515-1.518-.81-2.35-.887a4.83 4.83 0 0 0-.458-.02c-.632 0-1.177.13-1.635.395-.556.321-.814.751-.774 1.29.04.54.423 1.063 1.149 1.571a4.808 4.808 0 0 0 2.82.9m-.938-6.246l6.328 4.431c1.143.8 1.694 1.592 1.654 2.374-.041.783-.517 1.437-1.43 1.964a4.794 4.794 0 0 1-2.441.655h-.003c-.872 0-1.667-.118-2.383-.354l.618-.965a4.053 4.053 0 0 0 1.584.25c.57-.016 1.065-.145 1.482-.386.66-.38.974-.826.939-1.333-.035-.508-.406-1.009-1.114-1.504l-.64-.449-.051.031c.118.35.094.71-.07 1.084-.165.373-.487.697-.965.973-.65.375-1.437.562-2.366.562a7.83 7.83 0 0 1-.793-.042c-1.28-.13-2.424-.548-3.431-1.253-1.007-.705-1.551-1.469-1.631-2.292-.081-.823.292-1.472 1.117-1.949a4.14 4.14 0 0 1 1.618-.517c.232-.026.46-.039.682-.039.353 0 .693.033 1.02.1l.053-.03-.925-.649 1.148-.662"/>
|
||||
<path fill="#BDFFBF" d="M121.54 167.675a.2.2 0 0 1-.117-.037l-9.744-6.822a.204.204 0 0 1 .015-.343l1.2-.693a.202.202 0 0 1 .218.01l9.744 6.823a.204.204 0 0 1-.015.343l-1.199.692a.208.208 0 0 1-.102.027"/>
|
||||
<path fill="#05D305" d="M112.996 159.55a.4.4 0 0 0-.203.055l-1.2.692a.406.406 0 0 0-.03.685l9.744 6.823a.405.405 0 0 0 .437.019l1.199-.692a.409.409 0 0 0 .03-.686l-9.744-6.822a.403.403 0 0 0-.233-.074m0 .406l9.744 6.823-1.2.693-9.744-6.823 1.2-.693"/>
|
||||
<path fill="#FFB5B5" d="M123.806 159.964c-.34 0-.712.062-1.106.185-.553.172-.973.506-1.285 1.021-.207.344-.236.664-.086.977.14.293.415.546.818.756l1.776-2.937a4.414 4.414 0 0 0-.117-.002m.336 4.973a7.739 7.739 0 0 1-1.67-.188c-1.246-.276-2.166-.803-2.735-1.566-.594-.795-.617-1.657-.07-2.561.546-.902 1.409-1.539 2.563-1.894a6.592 6.592 0 0 1 1.94-.283c.585 0 1.202.071 1.835.212l.287.077a.204.204 0 0 1 .12.301l-2.62 4.332c.206.025.406.038.599.038a3.9 3.9 0 0 0 1.329-.224c.652-.236 1.117-.578 1.383-1.017.414-.684.29-1.201-.387-1.626a.204.204 0 0 1-.012-.337l1.162-.845a.205.205 0 0 1 .228-.008c.564.356.943.828 1.127 1.404.187.587.072 1.231-.34 1.913-.555.917-1.45 1.574-2.656 1.953a6.925 6.925 0 0 1-2.083.319"/>
|
||||
<path fill="#E04646" d="M122.075 162.63c-.272-.167-.461-.358-.563-.57-.075-.158-.15-.41.078-.784.284-.47.667-.775 1.17-.932.28-.088.547-.143.797-.165l-1.482 2.45zm2.095-4.388c-.697 0-1.37.098-2 .292-1.204.37-2.104 1.037-2.677 1.983-.585.968-.558 1.933.08 2.788.6.803 1.56 1.356 2.854 1.642a7.907 7.907 0 0 0 1.715.194c.729 0 1.45-.11 2.144-.328 1.255-.394 2.187-1.081 2.768-2.043.445-.734.566-1.433.36-2.08-.198-.622-.606-1.131-1.212-1.514a.405.405 0 0 0-.456.016l-1.161.845a.407.407 0 0 0 .023.674c.586.366.679.757.32 1.348-.24.399-.67.712-1.278.93a3.69 3.69 0 0 1-1.26.214 4.46 4.46 0 0 1-.255-.008l2.453-4.054a.406.406 0 0 0-.242-.602l-.28-.076a8.74 8.74 0 0 0-1.896-.221zm-1.945 4.926l2.038-3.37a2.828 2.828 0 0 0-.457-.037c-.362 0-.751.065-1.167.195a2.434 2.434 0 0 0-1.397 1.11c-.244.403-.276.793-.097 1.169.18.376.54.687 1.08.933zm1.945-4.52c.572 0 1.169.07 1.79.208l.28.075-2.778 4.591c.32.057.63.086.929.086.495 0 .96-.079 1.397-.236.7-.253 1.197-.62 1.489-1.103.474-.784.323-1.418-.453-1.904l1.16-.846c.527.332.874.763 1.043 1.294.169.531.063 1.113-.32 1.746-.531.878-1.38 1.5-2.543 1.865a6.72 6.72 0 0 1-2.022.31 7.536 7.536 0 0 1-1.627-.184c-1.201-.267-2.073-.763-2.615-1.489-.542-.725-.561-1.504-.06-2.334.523-.862 1.339-1.464 2.45-1.806a6.384 6.384 0 0 1 1.88-.273z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.274" d="M77.403 212.145l-61.582 38 271.172 155.868"/>
|
||||
<path fill="#F3807B" d="M74.156 267.64c.073-.806-.373-1.585-1.363-2.156l-15.017-8.67c-2.032-1.173-5.582-1.027-7.93.33l-13.738 7.93c-1.28.74-1.935 1.683-1.94 2.58h-.003v6.597h.004c-.035.776.414 1.522 1.37 2.074l15.017 8.67c2.032 1.172 5.582 1.025 7.929-.33l13.739-7.93c1.363-.788 2.019-1.81 1.932-2.758v-6.337z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.173" d="M74.156 267.64c.073-.806-.373-1.585-1.363-2.156l-15.017-8.67c-2.032-1.173-5.582-1.027-7.93.33l-13.738 7.93c-1.28.74-1.935 1.683-1.94 2.58h-.003v6.597h.004c-.035.776.414 1.522 1.37 2.074l15.017 8.67c2.032 1.172 5.582 1.025 7.929-.33l13.739-7.93c1.363-.788 2.019-1.81 1.932-2.758v-6.337z"/>
|
||||
<path fill="#EFA0A0" d="M62.263 275.811l-3.778 2.182c-2.347 1.354-5.897 1.502-7.93.328l-15.017-8.669c-2.032-1.174-1.777-3.223.57-4.578l13.738-7.93c2.347-1.356 5.897-1.503 7.93-.33l15.016 8.67c2.033 1.173 1.778 3.223-.569 4.577l-7.564 4.366"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.173" d="M62.263 275.811l-3.778 2.182c-2.347 1.354-5.897 1.502-7.93.328l-15.017-8.669c-2.032-1.174-1.777-3.223.57-4.578l13.738-7.93c2.347-1.356 5.897-1.503 7.93-.33l15.016 8.67c2.033 1.173 1.778 3.223-.569 4.577l-7.564 4.366"/>
|
||||
<path stroke="#EDEDED" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.323" d="M41.088 258.916l-6.266-3.807M32.99 265.347l-13.97-8.417"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.274" d="M64.75 278.27l12.06 6.932"/>
|
||||
<path fill="#35D0BA" d="M177.604 303.753c.073-.806-.373-1.585-1.363-2.157l-15.017-8.67c-2.032-1.173-5.582-1.026-7.929.329l-13.739 7.932c-1.279.738-1.935 1.683-1.939 2.58h-.004v6.596h.004c-.035.777.414 1.522 1.37 2.074l15.017 8.67c2.032 1.172 5.582 1.026 7.929-.33l13.739-7.93c1.363-.787 2.019-1.81 1.932-2.757v-6.337z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.173" d="M177.604 303.753c.073-.806-.373-1.585-1.363-2.157l-15.017-8.67c-2.032-1.173-5.582-1.026-7.929.329l-13.739 7.932c-1.279.738-1.935 1.683-1.939 2.58h-.004v6.596h.004c-.035.777.414 1.522 1.37 2.074l15.017 8.67c2.032 1.172 5.582 1.026 7.929-.33l13.739-7.93c1.363-.787 2.019-1.81 1.932-2.757v-6.337z"/>
|
||||
<path fill="#35EEBA" d="M144.922 309.19l-5.935-3.426c-2.033-1.174-1.778-3.222.57-4.578l13.738-7.932c2.346-1.354 5.897-1.5 7.93-.328l15.016 8.67c2.032 1.173 1.777 3.222-.569 4.577l-13.739 7.932c-2.347 1.355-5.897 1.502-7.929.328l-4.325-2.496"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.173" d="M144.922 309.19l-5.935-3.426c-2.033-1.174-1.778-3.222.57-4.578l13.738-7.932c2.346-1.354 5.897-1.5 7.93-.328l15.016 8.67c2.032 1.173 1.777 3.222-.569 4.577l-13.739 7.932c-2.347 1.355-5.897 1.502-7.929.328l-4.325-2.496"/>
|
||||
<path stroke="#EDEDED" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.323" d="M170.156 293.884l6.98-4.15M180.573 299.355l13.272-7.547"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.274" d="M146.413 314.816l-13.599 8.079"/>
|
||||
<path fill="#F7D186" d="M378.166 170.842l10.302 5.947c2.032 1.174 5.583 1.027 7.929-.328l13.739-7.932c1.362-.787 2.018-1.808 1.931-2.756v-6.337c.073-.806-.373-1.586-1.363-2.157l-15.017-8.67c-2.032-1.173-5.583-1.025-7.929.329l-13.738 7.932c-1.28.738-1.935 1.683-1.94 2.579h-.003v6.598h.004c-.035.775.414 1.52 1.37 2.073l1.11.64"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.173" d="M378.166 170.842l10.302 5.947c2.032 1.174 5.583 1.027 7.929-.328l13.739-7.932c1.362-.787 2.018-1.808 1.931-2.756v-6.337c.073-.806-.373-1.586-1.363-2.157l-15.017-8.67c-2.032-1.173-5.583-1.025-7.929.329l-13.738 7.932c-1.28.738-1.935 1.683-1.94 2.579h-.003v6.598h.004c-.035.775.414 1.52 1.37 2.073l1.11.64"/>
|
||||
<path fill="#FFE8B6" d="M396.84 169.532l-.443.255c-2.347 1.355-5.898 1.502-7.93.33l-15.017-8.67c-2.032-1.173-1.777-3.223.57-4.578l13.738-7.93c2.347-1.356 5.897-1.503 7.93-.33l15.016 8.67c2.032 1.173 1.778 3.222-.569 4.577l-10.672 6.161"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.173" d="M396.84 169.532l-.443.255c-2.347 1.355-5.898 1.502-7.93.33l-15.017-8.67c-2.032-1.173-1.777-3.223.57-4.578l13.738-7.93c2.347-1.356 5.897-1.503 7.93-.33l15.016 8.67c2.032 1.173 1.778 3.222-.569 4.577l-10.672 6.161"/>
|
||||
<path stroke="#EDEDED" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.323" d="M405.527 149.851l11.372-7.508M402.61 148.394l5.56-3.513M413.318 155.456l3.014-1.745"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.274" d="M370.298 176.215l11.11-6.611"/>
|
||||
<path fill="#FFCD3C" d="M252.749 110.878l12.156 7.018c2.032 1.173 5.582 1.025 7.929-.33l13.739-7.931c1.363-.787 2.018-1.808 1.931-2.756v-6.337c.074-.806-.373-1.585-1.362-2.157l-15.017-8.67c-2.032-1.172-5.583-1.025-7.929.33l-13.739 7.93c-1.279.739-1.935 1.684-1.94 2.58h-.003v6.598h.004c-.036.776.414 1.52 1.37 2.073l.717.414"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.173" d="M252.749 110.878l12.156 7.018c2.032 1.173 5.582 1.025 7.929-.33l13.739-7.931c1.363-.787 2.018-1.808 1.931-2.756v-6.337c.074-.806-.373-1.585-1.362-2.157l-15.017-8.67c-2.032-1.172-5.583-1.025-7.929.33l-13.739 7.93c-1.279.739-1.935 1.684-1.94 2.58h-.003v6.598h.004c-.036.776.414 1.52 1.37 2.073l.717.414"/>
|
||||
<g>
|
||||
<path fill="#FFE8B6" d="M273.09 110.746l-.256.147c-2.347 1.355-5.897 1.502-7.93.33l-15.017-8.67c-2.032-1.174-1.777-3.223.57-4.578l13.738-7.93c2.347-1.356 5.897-1.503 7.93-.33l15.017 8.67c2.032 1.173 1.777 3.222-.57 4.577l-9.393 5.423"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.173" d="M273.09 110.746l-.256.147c-2.347 1.355-5.897 1.502-7.93.33l-15.017-8.67c-2.032-1.174-1.777-3.223.57-4.578l13.738-7.93c2.347-1.356 5.897-1.503 7.93-.33l15.017 8.67c2.032 1.173 1.777 3.222-.57 4.577l-9.393 5.423"/>
|
||||
</g>
|
||||
<path stroke="#EDEDED" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.323" d="M256.333 116.905l-11.375 7.412M259.179 120.611l-5.887 3.706"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.274" d="M252.068 114.675l5.112-3.211M332.062 86.075l-2.443-1.463"/>
|
||||
<g>
|
||||
<path fill="#D8AE64" d="M294.68 397.994l12.154 7.018c2.033 1.172 5.583 1.026 7.93-.33l13.738-7.931c1.364-.787 2.02-1.808 1.933-2.756v-6.337c.072-.807-.373-1.586-1.363-2.157l-15.017-8.67c-2.032-1.173-5.583-1.025-7.93.329l-13.738 7.932c-1.279.738-1.936 1.683-1.939 2.58h-.004v6.596h.004c-.036.777.414 1.522 1.37 2.074l.717.414"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1" d="M294.68 397.994l12.154 7.018c2.033 1.172 5.583 1.026 7.93-.33l13.738-7.931c1.364-.787 2.02-1.808 1.933-2.756v-6.337c.072-.807-.373-1.586-1.363-2.157l-15.017-8.67c-2.032-1.173-5.583-1.025-7.93.329l-13.738 7.932c-1.279.738-1.936 1.683-1.939 2.58h-.004v6.596h.004c-.036.777.414 1.522 1.37 2.074l.717.414"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#F9D093" d="M315.019 397.862l-.255.147c-2.347 1.356-5.896 1.502-7.93.33l-15.016-8.67c-2.032-1.173-1.778-3.223.569-4.578l13.738-7.931c2.347-1.355 5.898-1.502 7.93-.328l15.017 8.669c2.032 1.173 1.777 3.222-.57 4.578l-9.392 5.422"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1" d="M315.019 397.862l-.255.147c-2.347 1.356-5.896 1.502-7.93.33l-15.016-8.67c-2.032-1.173-1.778-3.223.569-4.578l13.738-7.931c2.347-1.355 5.898-1.502 7.93-.328l15.017 8.669c2.032 1.173 1.777 3.222-.57 4.578l-9.392 5.422"/>
|
||||
</g>
|
||||
<path stroke="#EDEDED" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.323" d="M297.945 408.14l-22.413 14.151M297.07 404.526l-10.331 6.504M289.126 399.98l-3.173 2.141"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.274" d="M299.163 399.128l-14.346 9.013"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 76 KiB |
After Width: | Height: | Size: 439 KiB |
After Width: | Height: | Size: 765 KiB |
Before Width: | Height: | Size: 493 KiB |
After Width: | Height: | Size: 164 KiB |
|
@ -1,385 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="554" height="500" viewBox="0 0 554 500">
|
||||
<defs>
|
||||
<path id="a" d="M77.479.76C76.119 1.44.655 44.668.655 44.668l10.395 69.886 77.59-45.7c2.949-1.711 4.317-2.273 4.331-7.336l.398-48.426c0-4.97-2.114-7.973-5.108-9.304L80.875.873s-.998-.388-2.063-.388c-.456 0-.925.071-1.333.275"/>
|
||||
<path id="c" d="M28.705 12.693C13.38 21.155-1.048 30.201.845 61.979c1.195 20.077 16.28 31.676 32.11 24.054L67.63 66.206 33.05 40.148 51.042.097 28.705 12.693z"/>
|
||||
<path id="e" d="M83.858.76C82.498 1.44.283 49.248.283 49.248L6.026 59.4c-.057.773.287 1.52.912 1.98l10.166 7.472 1.292 44.673 76.35-44.458c1.979-.684 5.614-1.638 5.628-6.703V11.75c0-4.97-2.74-6.632-5.734-7.963L87.254.873s-.998-.388-2.063-.388c-.456 0-.925.071-1.333.275z"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#DCE7F2" d="M421.515 235.618c0-11.338 8.01-25.153 17.89-30.858 5.01-2.892 9.539-3.139 12.787-1.205l.004-.009 10.476 5.775v.004c3.313 1.812 5.371 5.814 5.371 11.558 0 11.337-8.01 25.152-17.89 30.856-5.015 2.896-9.547 3.14-12.796 1.2l-10.578-5.818-.035-.02-.08-.044.003-.004c-3.185-1.867-5.152-5.819-5.152-11.435"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M421.515 235.618c0-11.338 8.01-25.153 17.89-30.858 5.01-2.892 9.539-3.139 12.787-1.205l.004-.009 10.476 5.775v.004c3.313 1.812 5.371 5.814 5.371 11.558 0 11.337-8.01 25.152-17.89 30.856-5.015 2.896-9.547 3.14-12.796 1.2l-10.578-5.818-.035-.02-.08-.044.003-.004c-3.185-1.867-5.152-5.819-5.152-11.435z"/>
|
||||
<path fill="#DCE7F2" d="M432.264 241.54c0 11.337 8.01 15.903 17.89 10.2 9.88-5.704 17.889-19.52 17.889-30.857 0-11.338-8.01-15.904-17.889-10.2-9.88 5.705-17.89 19.52-17.89 30.857"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M432.264 241.54c0 11.337 8.01 15.903 17.89 10.2 9.88-5.704 17.889-19.52 17.889-30.857 0-11.338-8.01-15.904-17.889-10.2-9.88 5.705-17.89 19.52-17.89 30.857z"/>
|
||||
<path fill="#DCE7F2" d="M437.661 238.424c0 7.917 5.593 11.107 12.493 7.123 6.899-3.984 12.493-13.632 12.493-21.548 0-7.918-5.594-11.107-12.493-7.123-6.9 3.983-12.493 13.63-12.493 21.548"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M437.661 238.424c0 7.917 5.593 11.107 12.493 7.123 6.899-3.984 12.493-13.632 12.493-21.548 0-7.918-5.594-11.107-12.493-7.123-6.9 3.983-12.493 13.63-12.493 21.548z"/>
|
||||
<path fill="#DCE7F2" d="M438.584 237.722c.43 6.062 5.155 7.527 10.552 3.273 5.396-4.255 9.422-12.618 8.991-18.68-.43-6.061-5.155-7.527-10.552-3.273-5.396 4.255-9.422 12.618-8.99 18.68"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M438.584 237.722c.43 6.062 5.155 7.527 10.552 3.273 5.396-4.255 9.422-12.618 8.991-18.68-.43-6.061-5.155-7.527-10.552-3.273-5.396 4.255-9.422 12.618-8.99 18.68z"/>
|
||||
<path fill="#FFF" d="M444.573 231.934c-.144-2.01 1.191-4.784 2.982-6.195 1.052-.83 2.018-.987 2.671-.582l.01-.016 2.36 1.559-.006.009c.442.29.739.84.796 1.65.144 2.011-1.192 4.785-2.982 6.196-1.077.85-2.069.999-2.722.554l-.011.014-2.385-1.556.012-.02c-.404-.302-.67-.843-.725-1.613"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M444.573 231.934c-.144-2.01 1.191-4.784 2.982-6.195 1.052-.83 2.018-.987 2.671-.582l.01-.016 2.36 1.559-.006.009c.442.29.739.84.796 1.65.144 2.011-1.192 4.785-2.982 6.196-1.077.85-2.069.999-2.722.554l-.011.014-2.385-1.556.012-.02c-.404-.302-.67-.843-.725-1.613z"/>
|
||||
<path fill="#FFF" d="M446.905 233.469c.143 2.01 1.709 2.496 3.5 1.085 1.79-1.41 3.124-4.184 2.982-6.195-.143-2.01-1.71-2.496-3.5-1.085-1.79 1.41-3.125 4.185-2.982 6.195"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M446.905 233.469c.143 2.01 1.709 2.496 3.5 1.085 1.79-1.41 3.124-4.184 2.982-6.195-.143-2.01-1.71-2.496-3.5-1.085-1.79 1.41-3.125 4.185-2.982 6.195z"/>
|
||||
<path fill="#DCE7F2" d="M343.052 280.451c0-11.337 8.01-25.152 17.89-30.857 5.012-2.893 9.539-3.14 12.787-1.205l.004-.009 10.477 5.775v.003c3.313 1.813 5.372 5.815 5.372 11.56 0 11.336-8.01 25.151-17.891 30.855-5.015 2.896-9.546 3.14-12.795 1.2l-10.579-5.82a1.066 1.066 0 0 1-.035-.017l-.08-.045.002-.004c-3.184-1.868-5.152-5.82-5.152-11.436"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M343.052 280.451c0-11.337 8.01-25.152 17.89-30.857 5.012-2.893 9.539-3.14 12.787-1.205l.004-.009 10.477 5.775v.003c3.313 1.813 5.372 5.815 5.372 11.56 0 11.336-8.01 25.151-17.891 30.855-5.015 2.896-9.546 3.14-12.795 1.2l-10.579-5.82a1.066 1.066 0 0 1-.035-.017l-.08-.045.002-.004c-3.184-1.868-5.152-5.82-5.152-11.436z"/>
|
||||
<path fill="#DCE7F2" d="M353.802 286.373c0 11.338 8.01 15.904 17.89 10.2 9.88-5.703 17.889-19.52 17.889-30.857s-8.009-15.903-17.89-10.199c-9.88 5.704-17.889 19.519-17.889 30.856"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M353.802 286.373c0 11.338 8.01 15.904 17.89 10.2 9.88-5.703 17.889-19.52 17.889-30.857s-8.009-15.903-17.89-10.199c-9.88 5.704-17.889 19.519-17.889 30.856z"/>
|
||||
<path fill="#DCE7F2" d="M359.2 283.258c0 7.917 5.592 11.106 12.491 7.122 6.9-3.983 12.493-13.63 12.493-21.547 0-7.919-5.593-11.108-12.493-7.124-6.899 3.984-12.492 13.631-12.492 21.549"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M359.2 283.258c0 7.917 5.592 11.106 12.491 7.122 6.9-3.983 12.493-13.63 12.493-21.547 0-7.919-5.593-11.108-12.493-7.124-6.899 3.984-12.492 13.631-12.492 21.549z"/>
|
||||
<path fill="#DCE7F2" d="M360.121 282.555c.43 6.062 5.155 7.527 10.552 3.272 5.397-4.253 9.423-12.616 8.992-18.678-.43-6.061-5.155-7.528-10.552-3.273-5.396 4.255-9.422 12.618-8.992 18.679"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M360.121 282.555c.43 6.062 5.155 7.527 10.552 3.272 5.397-4.253 9.423-12.616 8.992-18.678-.43-6.061-5.155-7.528-10.552-3.273-5.396 4.255-9.422 12.618-8.992 18.679z"/>
|
||||
<path fill="#FFF" d="M366.11 276.768c-.143-2.012 1.193-4.784 2.983-6.195 1.051-.83 2.018-.988 2.67-.582l.011-.016 2.36 1.558-.006.01c.442.29.738.84.796 1.65.144 2.01-1.192 4.785-2.982 6.195-1.078.85-2.069 1-2.723.554l-.01.015-2.385-1.557.012-.02c-.405-.302-.671-.843-.725-1.612"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M366.11 276.768c-.143-2.012 1.193-4.784 2.983-6.195 1.051-.83 2.018-.988 2.67-.582l.011-.016 2.36 1.558-.006.01c.442.29.738.84.796 1.65.144 2.01-1.192 4.785-2.982 6.195-1.078.85-2.069 1-2.723.554l-.01.015-2.385-1.557.012-.02c-.405-.302-.671-.843-.725-1.612z"/>
|
||||
<path fill="#FFF" d="M368.443 278.302c.143 2.012 1.71 2.498 3.5 1.086 1.79-1.411 3.123-4.185 2.982-6.195-.144-2.01-1.71-2.496-3.5-1.085s-3.125 4.184-2.982 6.194"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M368.443 278.302c.143 2.012 1.71 2.498 3.5 1.086 1.79-1.411 3.123-4.185 2.982-6.195-.144-2.01-1.71-2.496-3.5-1.085s-3.125 4.184-2.982 6.194z"/>
|
||||
<path fill="#FFF" d="M277.746 224.346l15.121-8.62 46.523 40.734-6.648 45.027-61.98-35.837-.285-29.254a14.417 14.417 0 0 1 7.27-12.05"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M277.746 224.346l15.121-8.62 46.523 40.734-6.648 45.027-61.98-35.837-.285-29.254a14.417 14.417 0 0 1 7.27-12.05z"/>
|
||||
<path fill="#FFF" d="M479.39 191.373v25.398l-6.073 3.147-4.09 2.364c.093-.9.13-1.802.13-2.683 0-13.36-9.428-18.736-21.072-12.02-11.634 6.728-21.073 22.997-21.073 36.358 0 .882.039 1.735.123 2.551l-16.861 10.064-19.402 11.212c.15-1.248.225-2.487.225-3.706 0-13.557-9.57-19.008-21.383-12.197-11.802 6.82-21.382 23.333-21.382 36.881 0 1.23.075 2.392.226 3.482l-16.017 9.26v-28.823c0-5.001 2.759-10.185 6.07-13.938l11.262-64.624 129.317-73.315.45 6.263"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M479.39 191.373v25.398l-6.073 3.147-4.09 2.364c.093-.9.13-1.802.13-2.683 0-13.36-9.428-18.736-21.072-12.02-11.634 6.728-21.073 22.997-21.073 36.358 0 .882.039 1.735.123 2.551l-16.861 10.064-19.402 11.212c.15-1.248.225-2.487.225-3.706 0-13.557-9.57-19.008-21.383-12.197-11.802 6.82-21.382 23.333-21.382 36.881 0 1.23.075 2.392.226 3.482l-16.017 9.26v-28.823c0-5.001 2.759-10.185 6.07-13.938l11.262-64.624 129.317-73.315.45 6.263"/>
|
||||
<path fill="#FFF" d="M278.058 223.798l6.92-57.197a17.193 17.193 0 0 1 9.669-13.454L407.534 91.35a6.384 6.384 0 0 1 5.564.034l65.248 28.969-118.737 67.456a23.4 23.4 0 0 0-11.702 17.55l-9.094 53.364-60.755-34.925z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M278.058 223.798l6.92-57.197a17.193 17.193 0 0 1 9.669-13.454L407.534 91.35a6.384 6.384 0 0 1 5.564.034l65.248 28.969-118.737 67.456a23.4 23.4 0 0 0-11.702 17.55l-9.094 53.364-60.755-34.925z"/>
|
||||
<path fill="#DCE7F2" d="M283.962 209.185l3.965-35.95c.31-2.544 3.117-3.945 5.337-2.664l48.364 25.998a3.577 3.577 0 0 1 1.761 3.53l-6.234 35.699c-.31 2.544-3.117 3.946-5.337 2.665l-46.094-25.748a3.576 3.576 0 0 1-1.762-3.53"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M283.962 209.185l3.965-35.95c.31-2.544 3.117-3.945 5.337-2.664l48.364 25.998a3.577 3.577 0 0 1 1.761 3.53l-6.234 35.699c-.31 2.544-3.117 3.946-5.337 2.665l-46.094-25.748a3.576 3.576 0 0 1-1.762-3.53z"/>
|
||||
<path fill="#DCE7F2" d="M372.356 220.211l-19.792 11.452c-1.177.682-2.627-.263-2.48-1.613l1.632-19.252a23.854 23.854 0 0 1 11.761-18.072l27.009-15.635c2.089-1.21 4.702.298 4.702 2.71V207l-14.698 8.506"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M372.356 220.211l-19.792 11.452c-1.177.682-2.627-.263-2.48-1.613l1.632-19.252a23.854 23.854 0 0 1 11.761-18.072l27.009-15.635c2.089-1.21 4.702.298 4.702 2.71V207l-14.698 8.506"/>
|
||||
<path fill="#DCE7F2" d="M433.036 185.462l-21.65 12.527c-1.286.745-2.872-.288-2.713-1.765l-.406-22.422c.014-1.981-.748-5.675 4.294-8.665l40.306-22.26c2.284-1.321 5.143.327 5.143 2.966v25.168l-16.077 9.302"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M433.036 185.462l-21.65 12.527c-1.286.745-2.872-.288-2.713-1.765l-.406-22.422c.014-1.981-.748-5.675 4.294-8.665l40.306-22.26c2.284-1.321 5.143.327 5.143 2.966v25.168l-16.077 9.302"/>
|
||||
<path fill="#FFF" d="M396.021 213.841l-10.348 5.573"/>
|
||||
<path stroke="#DCE7F2" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M396.021 213.841l-10.348 5.573"/>
|
||||
<path fill="#DCE7F2" d="M337.117 180.325l93.447-51.324c5.744-3.144 7.853-10.35 4.708-16.097-3.145-5.744-10.347-7.855-16.096-4.709l-109.554 58.69"/>
|
||||
<path fill="#FFF" d="M242.042 292.924l31.933-18.213c1.43-.825 2.589-2.824 2.589-4.463v-85.929c0-2.11 1.49-4.682 3.33-5.744.774-.447 1.484-.55 2.05-.37l.002-.01.041.023c.153.054.295.131.423.228l5.053 2.726c.745.27 1.22 1.059 1.22 2.25v87.622c0 3.165-2.236 7.022-4.995 8.615l-39.673 22.731-5.46-2.949 3.487-6.517z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M242.042 292.924l31.933-18.213c1.43-.825 2.589-2.824 2.589-4.463v-85.929c0-2.11 1.49-4.682 3.33-5.744.774-.447 1.484-.55 2.05-.37l.002-.01.041.023c.153.054.295.131.423.228l5.053 2.726c.745.27 1.22 1.059 1.22 2.25v87.622c0 3.165-2.236 7.022-4.995 8.615l-39.673 22.731-5.46-2.949 3.487-6.517z"/>
|
||||
<path fill="#DCE7F2" d="M247.502 295.873l31.933-18.214c1.43-.824 2.589-2.822 2.589-4.463v-85.928c0-2.11 1.49-4.683 3.33-5.744 1.838-1.062 3.329-.211 3.329 1.898v87.622c0 3.165-2.236 7.023-4.995 8.615l-39.673 22.732 3.487-6.518z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M247.502 295.873l31.933-18.214c1.43-.824 2.589-2.822 2.589-4.463v-85.928c0-2.11 1.49-4.683 3.33-5.744 1.838-1.062 3.329-.211 3.329 1.898v87.622c0 3.165-2.236 7.023-4.995 8.615l-39.673 22.732 3.487-6.518z"/>
|
||||
<path fill="#FFF" d="M247.502 295.873l-5.46-2.949"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M247.502 295.873l-5.46-2.949"/>
|
||||
<path fill="#DCE7F2" d="M288.22 264.003l11.298-6.523c.527-.305.337-1.052-.425-1.67l-.473-.382c-.764-.618-1.81-.872-2.337-.568l-11.297 6.523 3.235 2.62z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M288.22 264.003l11.298-6.523c.527-.305.337-1.052-.425-1.67l-.473-.382c-.764-.618-1.81-.872-2.337-.568l-11.297 6.523 3.235 2.62z"/>
|
||||
<path fill="#DCE7F2" d="M305.74 253.176V247.2l-.054-5.145-17.172-8.038-4.834.967v6.679z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M305.74 253.176V247.2l-.054-5.145-17.172-8.038-4.834.967v6.679z"/>
|
||||
<path fill="#FFF" d="M304.87 245.064l-20.839-9.993"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M304.87 245.064l-20.839-9.993"/>
|
||||
<path fill="#DCE7F2" d="M305.74 277.32v-5.976l-.054-5.145-17.172-8.038-4.834.968v6.68z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M305.74 277.32v-5.976l-.054-5.145-17.172-8.038-4.834.968v6.68z"/>
|
||||
<path fill="#FFF" d="M304.87 269.208l-20.839-9.991"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M304.87 269.208l-20.839-9.991"/>
|
||||
<path fill="#FFF" d="M269.029 310.253l31.934-18.213c1.427-.825 2.586-2.824 2.586-4.463v-85.929c0-2.11 1.492-4.682 3.33-5.744.775-.446 1.485-.55 2.05-.369l.003-.01.042.022c.153.054.293.132.422.228l5.053 2.726c.745.271 1.22 1.06 1.22 2.251v87.621c0 3.165-2.236 7.022-4.994 8.615l-39.673 22.731-5.46-2.948 3.487-6.518z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M269.029 310.253l31.934-18.213c1.427-.825 2.586-2.824 2.586-4.463v-85.929c0-2.11 1.492-4.682 3.33-5.744.775-.446 1.485-.55 2.05-.369l.003-.01.042.022c.153.054.293.132.422.228l5.053 2.726c.745.271 1.22 1.06 1.22 2.251v87.621c0 3.165-2.236 7.022-4.994 8.615l-39.673 22.731-5.46-2.948 3.487-6.518z"/>
|
||||
<path fill="#FFF" d="M309.01 256.043v-51.446c0-2.11 1.49-4.68 3.33-5.743 1.839-1.062 3.33-.212 3.33 1.899v87.62c0 3.166-2.237 7.023-4.996 8.616l-39.672 22.731 3.486-6.517 31.934-18.214c1.429-.825 2.588-2.823 2.588-4.463V272.1"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M309.01 256.043v-51.446c0-2.11 1.49-4.68 3.33-5.743 1.839-1.062 3.33-.212 3.33 1.899v87.62c0 3.166-2.237 7.023-4.996 8.616l-39.672 22.731 3.486-6.517 31.934-18.214c1.429-.825 2.588-2.823 2.588-4.463V272.1"/>
|
||||
<path fill="#FFF" d="M309.01 260.998v-1.07"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M309.01 260.998v-1.07"/>
|
||||
<path fill="#FFF" d="M274.488 313.203l-5.46-2.95"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M274.488 313.203l-5.46-2.95"/>
|
||||
<path fill="#FFCD3C" d="M308.976 280.723c.12-1.319-.61-2.596-2.232-3.532l-24.594-14.2c-3.329-1.921-9.143-1.68-12.987.538l-22.501 12.992c-2.095 1.21-3.17 2.757-3.177 4.225h-.006v10.807h.007c-.059 1.27.678 2.49 2.243 3.394l24.595 14.2c3.329 1.922 9.143 1.68 12.987-.538l22.5-12.99c2.234-1.29 3.308-2.963 3.165-4.516v-10.38z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.203" d="M308.976 280.723c.12-1.319-.61-2.596-2.232-3.532l-24.594-14.2c-3.329-1.921-9.143-1.68-12.987.538l-22.501 12.992c-2.095 1.21-3.17 2.757-3.177 4.225h-.006v10.807h.007c-.059 1.27.678 2.49 2.243 3.394l24.595 14.2c3.329 1.922 9.143 1.68 12.987-.538l22.5-12.99c2.234-1.29 3.308-2.963 3.165-4.516v-10.38z"/>
|
||||
<path fill="#FFE8B6" d="M290.054 293.787l-6.743 3.893c-3.844 2.219-9.658 2.46-12.987.538l-24.595-14.2c-3.329-1.922-2.91-5.278.933-7.497l22.501-12.992c3.844-2.219 9.658-2.459 12.986-.538l24.595 14.2c3.329 1.92 2.912 5.278-.933 7.497l-11.203 6.47"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.402" d="M290.054 293.787l-6.743 3.893c-3.844 2.219-9.658 2.46-12.987.538l-24.595-14.2c-3.329-1.922-2.91-5.278.933-7.497l22.501-12.992c3.844-2.219 9.658-2.459 12.986-.538l24.595 14.2c3.329 1.92 2.912 5.278-.933 7.497l-11.203 6.47"/>
|
||||
<path fill="#FFF" d="M431.544 211.903l39.976-24.144c1.954-1.128 1.71-3.1-.548-4.403l-10.305-5.95-47.053 28.23 10.306 5.951c2.256 1.303 5.67 1.444 7.624.316"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M431.544 211.903l39.976-24.144c1.954-1.128 1.71-3.1-.548-4.403l-10.305-5.95-47.053 28.23 10.306 5.951c2.256 1.303 5.67 1.444 7.624.316z"/>
|
||||
<path fill="#FFF" d="M463.968 184.341l-36.06 21.737"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M463.968 184.341l-36.06 21.737"/>
|
||||
<path fill="#FFF" d="M425.898 188.312l-.708-29.676"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M425.898 188.312l-.708-29.676"/>
|
||||
<path fill="#FFF" d="M319.602 282.12c.297 4.015 2.446 7.13 4.797 6.955 2.351-.174 4.014-3.571 3.716-7.589-.298-4.015-2.447-7.13-4.798-6.955-2.35.174-4.014 3.573-3.715 7.589"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M319.602 282.12c.297 4.015 2.446 7.13 4.797 6.955 2.351-.174 4.014-3.571 3.716-7.589-.298-4.015-2.447-7.13-4.798-6.955-2.35.174-4.014 3.573-3.715 7.589z"/>
|
||||
<path fill="#FFF" d="M473.86 140.7l-15.782-9.345-58.162 33.621 17.61 10.427"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M473.86 140.7l-15.782-9.345-58.162 33.621 17.61 10.427"/>
|
||||
<path fill="#DCE7F2" d="M463.383 147.427l-11.912 7.008-15.766-9.046 12.516-7.25zM440.658 160.542l-11.912 7.007-15.848-8.876 12.41-7.303z"/>
|
||||
<path fill="#FFF" d="M472.746 149.605l-53.837 32.332-.153 3.995 5.222-.999 15.436-8.985 29.953-18.126z"/>
|
||||
<path fill="#FFF" d="M474.68 150.198v-8.892l-56.93 33.102v9.442"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M474.68 150.198v-8.892l-56.93 33.102v9.442"/>
|
||||
<g>
|
||||
<path fill="#FFF" d="M466.598 159.605c.825.765 1.82 1.213 2.892 1.213 2.855 0 5.17-3.18 5.17-7.102v-7.1"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M466.598 159.605c.825.765 1.82 1.213 2.892 1.213 2.855 0 5.17-3.18 5.17-7.102v-7.1"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFF" d="M458.42 164.32c.825.766 1.82 1.214 2.891 1.214 2.857 0 5.173-3.18 5.173-7.102"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M458.42 164.32c.825.766 1.82 1.214 2.891 1.214 2.857 0 5.173-3.18 5.173-7.102"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFF" d="M450.593 168.636c.825.765 1.822 1.213 2.892 1.213 2.856 0 5.172-3.18 5.172-7.102"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M450.593 168.636c.825.765 1.822 1.213 2.892 1.213 2.856 0 5.172-3.18 5.172-7.102"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFF" d="M442.466 172.95c.825.765 1.821 1.213 2.892 1.213 2.855 0 5.172-3.18 5.172-7.102"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M442.466 172.95c.825.765 1.821 1.213 2.892 1.213 2.855 0 5.172-3.18 5.172-7.102"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFF" d="M434.389 178.168c.825.765 1.82 1.213 2.891 1.213 2.857 0 5.173-3.18 5.173-7.102"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M434.389 178.168c.825.765 1.82 1.213 2.891 1.213 2.857 0 5.173-3.18 5.173-7.102"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFF" d="M426.311 182.934c.826.765 1.821 1.213 2.893 1.213 2.855 0 5.171-3.18 5.171-7.102"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M426.311 182.934c.826.765 1.821 1.213 2.893 1.213 2.855 0 5.171-3.18 5.171-7.102"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFF" d="M417.866 184.114c-.05 2.208 1.038 2.997 1.038 2.997.011.011-.194.01-.182.019.817.746 1.8 1.18 2.855 1.18 2.857 0 5.172-3.179 5.172-7.1"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M417.866 184.114c-.05 2.208 1.038 2.997 1.038 2.997.011.011-.194.01-.182.019.817.746 1.8 1.18 2.855 1.18 2.857 0 5.172-3.179 5.172-7.1"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#DCE7F2" d="M345.104 188.62l-48.384-25.805"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M345.104 188.62l-48.384-25.805"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#DCE7F2" d="M463.558 147.126l-15.498-8.688"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M463.558 147.126l-15.498-8.688"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#DCE7F2" d="M451.346 153.948l-15.498-8.688"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M451.346 153.948l-15.498-8.688"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#DCE7F2" d="M440.517 160.335l-15.496-8.688"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M440.517 160.335l-15.496-8.688"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#DCE7F2" d="M428.305 167.158l-15.496-8.689"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M428.305 167.158l-15.496-8.689"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFF" d="M414.641 103.726l29.577-16.696c.71-.412 1.287-.633 1.29-1.854V72.983c0-1.196-.66-1.597-1.381-1.917l-1.778-.703s-.491-.191-.82-.026c-.327.163-27.908 15.17-27.908 15.17"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M414.641 103.726l29.577-16.696c.71-.412 1.287-.633 1.29-1.854V72.983c0-1.196-.66-1.597-1.381-1.917l-1.778-.703s-.491-.191-.82-.026c-.327.163-27.908 15.17-27.908 15.17"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#DCE7F2" d="M345.007 166.114c-15.83 7.62-30.914-3.978-32.11-24.054-1.891-31.778 12.535-40.825 27.861-49.286l22.338-12.597"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M345.007 166.114c-15.83 7.62-30.914-3.978-32.11-24.054-1.891-31.778 12.535-40.825 27.861-49.286l22.338-12.597"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#DCE7F2" d="M345.429 165.93l77.59-44.494c2.948-1.712 5.342-2.631 5.355-7.695V63.126c0-4.969-2.74-6.632-5.733-7.963l-7.386-2.914s-2.038-.793-3.398-.114c-1.358.68-76.823 43.908-76.823 43.908"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M345.429 165.93l77.59-44.494c2.948-1.712 5.342-2.631 5.355-7.695V63.126c0-4.969-2.74-6.632-5.733-7.963l-7.386-2.914s-2.038-.793-3.398-.114c-1.358.68-76.823 43.908-76.823 43.908"/>
|
||||
</g>
|
||||
<g transform="translate(334.379 51.376)">
|
||||
<mask id="b" fill="#fff">
|
||||
<use xlink:href="#a"/>
|
||||
</mask>
|
||||
<path fill="#35D0BA" d="M88.64 70.06L42.415 36.814l-9.806-10.491L78.891.486l15.821 6.662-.717 58.033s-.277 4.213-5.354 4.88" mask="url(#b)"/>
|
||||
</g>
|
||||
<g transform="translate(312.053 80.081)">
|
||||
<mask id="d" fill="#fff">
|
||||
<use xlink:href="#c"/>
|
||||
</mask>
|
||||
<path fill="#F3807B" d="M66.31 66.206L33.052 84.82s-16.29 9.566-26.986-8C-4.629 59.253.274 28.207 23.447 16.62l2.508 2.902L66.31 66.206z" mask="url(#d)"/>
|
||||
</g>
|
||||
<g transform="translate(328 51.376)">
|
||||
<mask id="f" fill="#fff">
|
||||
<use xlink:href="#e"/>
|
||||
</mask>
|
||||
<path fill="#FFCD3C" d="M95.02 70.06l-44.218-31.8a25.16 25.16 0 0 1-3.7-3.253l-6.479-9.616L.401 48.299s.768 7.465 4.34 12.921c2.656 4.055 9.09 4.723 12.363 7.634 7.677 6.825 34.578 26.058 34.578 26.058L95.02 70.06z" mask="url(#f)"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#DCE7F2" d="M355.136 240.709c3.624.909 6.563-1.608 6.533-5.594l-.096-12.019c-.032-3.985-3.023-7.991-6.646-8.901-3.624-.91-6.564 1.607-6.532 5.593l.095 12.019c.03 3.987 3.022 7.993 6.646 8.902"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M355.136 240.709c3.624.909 6.563-1.608 6.533-5.594l-.096-12.019c-.032-3.985-3.023-7.991-6.646-8.901-3.624-.91-6.564 1.607-6.532 5.593l.095 12.019c.03 3.987 3.022 7.993 6.646 8.902z"/>
|
||||
<path fill="#DCE7F2" d="M353.448 234.522c1.653.393 2.974-.768 2.938-2.58l-.112-5.462c-.037-1.813-1.42-3.616-3.07-4.01-1.653-.393-2.975.768-2.939 2.58l.11 5.463c.04 1.812 1.42 3.615 3.073 4.009"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M353.448 234.522c1.653.393 2.974-.768 2.938-2.58l-.112-5.462c-.037-1.813-1.42-3.616-3.07-4.01-1.653-.393-2.975.768-2.939 2.58l.11 5.463c.04 1.812 1.42 3.615 3.073 4.009z"/>
|
||||
<path fill="#F3807B" d="M324.061 151.602c0 9.162 6.55 16.59 14.63 16.59"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M324.061 151.602c0 9.162 6.55 16.59 14.63 16.59"/>
|
||||
<path fill="#FFF" d="M464.76 148.376v3.84"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M464.76 148.376v3.84"/>
|
||||
<path fill="#FFF" d="M452.01 154.98v3.84"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M452.01 154.98v3.84"/>
|
||||
<path fill="#FFF" d="M428.97 168.19v3.84"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M428.97 168.19v3.84"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.887" d="M270.477 262.154l-23.815 14.367s-3.183 1.856-3.183 5.944v9.087l-2.024.94-2.9 7.024 5.46 2.875 6.869-3.935 18.145 10.486-4.31 7.884 5.758 3.602 40.576-22.583s3.49-1.606 4.616-5.208l17.073 9.492 15.981-8.907 9.54 5.305s4.562 3.732 14.366-1.201c9.807-4.932 17.984-21.415 17.593-28.813l36.527-20.506 9.094 5.052s4.193 3.822 11.052 1.138c6.859-2.686 19.416-12.224 22.044-31.11l10.901-5.45-.45-96.853-49.825-22.089v-2.246l15.495-9.006a3.166 3.166 0 0 0 1.576-2.758l-.084-12.305a1.82 1.82 0 0 0-1.042-1.632l-2.98-1.407a2.48 2.48 0 0 0-2.243.066l-11.03 6.017v-12.96a8.346 8.346 0 0 0-5.265-7.756l-10.372-4.236-79.582 45.359a42.39 42.39 0 0 0-21.4 37.245l.092 9.336-17.027 9.343a24.082 24.082 0 0 0-12.41 19.08l-.565 6.698-.56.103a7.557 7.557 0 0 0-6.192 7.39l-.225 39.554c-3.39 3.753-5.833 8.183-5.751 13.24l.477 24.334z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.837" d="M390.734 98.552l-7.1-5.032M403.519 107.614l-7.893-5.594M423.02 121.436l-19.502-13.822M379.683 146.287l-34.579-26.058M339.39 107.614l-1.074.723a26.801 26.801 0 0 0-11.345 17.07"/>
|
||||
<path fill="#DCE7F2" d="M187.424 414.924l-52.157 30.112c-9.35 5.399-25.683 4.723-36.48-1.512l-63.21-36.494c-6.273-3.622-9.29-7.198-8.89-11.56v-6.023c-.335-3.706 1.716-7.294 6.27-9.923l69.091-39.89c9.35-5.4 25.685-4.72 36.482 1.512l63.21 36.495c5.884 3.397 8.903 7.744 8.923 11.87h.017v6.097h-.019c.164 3.569-1.905 7-6.302 9.54l-8.223 4.746"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M187.424 414.924l-52.157 30.112c-9.35 5.399-25.683 4.723-36.48-1.512l-63.21-36.494c-6.273-3.622-9.29-7.198-8.89-11.56v-6.023c-.335-3.706 1.716-7.294 6.27-9.923l69.091-39.89c9.35-5.4 25.685-4.72 36.482 1.512l63.21 36.495c5.884 3.397 8.903 7.744 8.923 11.87h.017v6.097h-.019c.164 3.569-1.905 7-6.302 9.54l-8.223 4.746"/>
|
||||
<path fill="#FFF" d="M71.933 421.577l26.853 15.503c11.662 6.733 26.267 7.41 36.482 1.513l69.091-39.89c9.35-5.398 8.178-14.828-2.62-21.062l-63.209-36.494c-10.798-6.234-27.13-6.911-36.482-1.513l-69.09 39.89c-9.352 5.398-8.179 14.829 2.618 21.062l17.633 10.18"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M71.933 421.577l26.853 15.503c11.662 6.733 26.267 7.41 36.482 1.513l69.091-39.89c9.35-5.398 8.178-14.828-2.62-21.062l-63.209-36.494c-10.798-6.234-27.13-6.911-36.482-1.513l-69.09 39.89c-9.352 5.398-8.179 14.829 2.618 21.062l17.633 10.18"/>
|
||||
<path fill="#FFF" d="M61.72 415.68l1.088.628"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M61.72 415.68l1.088.628"/>
|
||||
<path fill="#35D0BA" d="M88.299 362.047c-.116-1.278.591-2.514 2.16-3.42l23.812-13.747c3.222-1.86 8.85-1.628 12.572.52l21.785 12.578c2.027 1.17 3.068 2.669 3.076 4.091h.005v10.46h-.007c.056 1.232-.657 2.414-2.172 3.289l-23.811 13.746c-3.223 1.862-8.85 1.628-12.572-.52l-21.785-12.578c-2.162-1.247-3.201-2.867-3.063-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M88.299 362.047c-.116-1.278.591-2.514 2.16-3.42l23.812-13.747c3.222-1.86 8.85-1.628 12.572.52l21.785 12.578c2.027 1.17 3.068 2.669 3.076 4.091h.005v10.46h-.007c.056 1.232-.657 2.414-2.172 3.289l-23.811 13.746c-3.223 1.862-8.85 1.628-12.572-.52l-21.785-12.578c-2.162-1.247-3.201-2.867-3.063-4.37v-10.05z"/>
|
||||
<path fill="#35D0BA" d="M125.72 378.983l23.81-13.747c3.222-1.86 2.818-5.11-.903-7.258L126.843 345.4c-3.721-2.147-9.35-2.381-12.573-.52l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.258l21.784 12.578c3.721 2.147 9.35 2.381 12.573.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M125.72 378.983l23.81-13.747c3.222-1.86 2.818-5.11-.903-7.258L126.843 345.4c-3.721-2.147-9.35-2.381-12.573-.52l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.258l21.784 12.578c3.721 2.147 9.35 2.381 12.573.52z"/>
|
||||
<path fill="#35D0BA" d="M88.299 351.552c-.116-1.278.591-2.513 2.16-3.42l23.812-13.747c3.222-1.86 8.85-1.627 12.572.521l21.785 12.577c2.027 1.171 3.068 2.67 3.076 4.092h.005v10.46h-.007c.056 1.231-.657 2.413-2.172 3.288l-23.811 13.748c-3.223 1.86-8.85 1.627-12.572-.521l-21.785-12.578c-2.162-1.247-3.201-2.868-3.063-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M88.299 351.552c-.116-1.278.591-2.513 2.16-3.42l23.812-13.747c3.222-1.86 8.85-1.627 12.572.521l21.785 12.577c2.027 1.171 3.068 2.67 3.076 4.092h.005v10.46h-.007c.056 1.231-.657 2.413-2.172 3.288l-23.811 13.748c-3.223 1.86-8.85 1.627-12.572-.521l-21.785-12.578c-2.162-1.247-3.201-2.868-3.063-4.37v-10.05z"/>
|
||||
<path fill="#35D0BA" d="M125.72 368.489l23.81-13.748c3.222-1.86 2.818-5.11-.903-7.258l-21.784-12.577c-3.721-2.148-9.35-2.382-12.573-.521l-23.81 13.748c-3.223 1.86-2.819 5.11.902 7.259l21.784 12.576c3.721 2.149 9.35 2.381 12.573.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M125.72 368.489l23.81-13.748c3.222-1.86 2.818-5.11-.903-7.258l-21.784-12.577c-3.721-2.148-9.35-2.382-12.573-.521l-23.81 13.748c-3.223 1.86-2.819 5.11.902 7.259l21.784 12.576c3.721 2.149 9.35 2.381 12.573.52z"/>
|
||||
<path fill="#35D0BA" d="M88.299 341.145c-.116-1.278.591-2.515 2.16-3.42l23.812-13.747c3.222-1.86 8.85-1.629 12.572.521l21.785 12.576c2.027 1.17 3.068 2.67 3.076 4.092h.005v10.46h-.007c.056 1.232-.657 2.414-2.172 3.288l-23.811 13.748c-3.223 1.86-8.85 1.627-12.572-.521l-21.785-12.578c-2.162-1.248-3.201-2.868-3.063-4.371v-10.048z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M88.299 341.145c-.116-1.278.591-2.515 2.16-3.42l23.812-13.747c3.222-1.86 8.85-1.629 12.572.521l21.785 12.576c2.027 1.17 3.068 2.67 3.076 4.092h.005v10.46h-.007c.056 1.232-.657 2.414-2.172 3.288l-23.811 13.748c-3.223 1.86-8.85 1.627-12.572-.521l-21.785-12.578c-2.162-1.248-3.201-2.868-3.063-4.371v-10.048z"/>
|
||||
<path fill="#35D0BA" d="M125.72 358.082l23.81-13.748c3.222-1.86 2.818-5.11-.903-7.26L126.843 324.5c-3.721-2.149-9.35-2.382-12.573-.521l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.259l21.784 12.577c3.721 2.147 9.35 2.381 12.573.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M125.72 358.082l23.81-13.748c3.222-1.86 2.818-5.11-.903-7.26L126.843 324.5c-3.721-2.149-9.35-2.382-12.573-.521l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.259l21.784 12.577c3.721 2.147 9.35 2.381 12.573.52z"/>
|
||||
<path fill="#35D0BA" d="M88.299 330.65c-.116-1.278.591-2.513 2.16-3.42l23.812-13.747c3.222-1.86 8.85-1.627 12.572.521l21.785 12.578c2.027 1.17 3.068 2.668 3.076 4.09h.005v10.461h-.007c.056 1.231-.657 2.413-2.172 3.287l-23.811 13.748c-3.223 1.86-8.85 1.628-12.572-.52L91.362 345.07c-2.162-1.248-3.201-2.868-3.063-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M88.299 330.65c-.116-1.278.591-2.513 2.16-3.42l23.812-13.747c3.222-1.86 8.85-1.627 12.572.521l21.785 12.578c2.027 1.17 3.068 2.668 3.076 4.09h.005v10.461h-.007c.056 1.231-.657 2.413-2.172 3.287l-23.811 13.748c-3.223 1.86-8.85 1.628-12.572-.52L91.362 345.07c-2.162-1.248-3.201-2.868-3.063-4.37v-10.05z"/>
|
||||
<path fill="#35EEBA" d="M125.72 347.587l23.81-13.748c3.222-1.86 2.818-5.11-.903-7.258l-21.784-12.577c-3.721-2.147-9.35-2.381-12.573-.52L90.46 327.23c-3.223 1.86-2.819 5.11.902 7.258l21.784 12.577c3.721 2.148 9.35 2.382 12.573.521"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M125.72 347.587l23.81-13.748c3.222-1.86 2.818-5.11-.903-7.258l-21.784-12.577c-3.721-2.147-9.35-2.381-12.573-.52L90.46 327.23c-3.223 1.86-2.819 5.11.902 7.258l21.784 12.577c3.721 2.148 9.35 2.382 12.573.521z"/>
|
||||
<path fill="#F3807B" d="M52.991 382.384c-.115-1.278.592-2.515 2.161-3.42l23.81-13.747c3.223-1.86 8.853-1.629 12.574.52l21.784 12.578c2.027 1.17 3.068 2.669 3.076 4.091h.005v10.46h-.006c.056 1.232-.656 2.414-2.172 3.288L90.413 409.9c-3.223 1.861-8.853 1.628-12.574-.52l-21.784-12.578c-2.161-1.248-3.201-2.868-3.064-4.371v-10.048z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M52.991 382.384c-.115-1.278.592-2.515 2.161-3.42l23.81-13.747c3.223-1.86 8.853-1.629 12.574.52l21.784 12.578c2.027 1.17 3.068 2.669 3.076 4.091h.005v10.46h-.006c.056 1.232-.656 2.414-2.172 3.288L90.413 409.9c-3.223 1.861-8.853 1.628-12.574-.52l-21.784-12.578c-2.161-1.248-3.201-2.868-3.064-4.371v-10.048z"/>
|
||||
<path fill="#F3807B" d="M90.412 399.32l23.81-13.747c3.223-1.86 2.819-5.11-.902-7.258l-21.784-12.578c-3.722-2.148-9.35-2.381-12.573-.52l-23.81 13.747c-3.223 1.86-2.82 5.11.902 7.258L77.839 398.8c3.72 2.147 9.35 2.381 12.573.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M90.412 399.32l23.81-13.747c3.223-1.86 2.819-5.11-.902-7.258l-21.784-12.578c-3.722-2.148-9.35-2.381-12.573-.52l-23.81 13.747c-3.223 1.86-2.82 5.11.902 7.258L77.839 398.8c3.72 2.147 9.35 2.381 12.573.52z"/>
|
||||
<path fill="#F3807B" d="M52.991 371.89c-.115-1.279.592-2.514 2.161-3.42l23.81-13.748c3.223-1.86 8.853-1.627 12.574.521l21.784 12.578c2.027 1.169 3.068 2.668 3.076 4.09h.005v10.461h-.006c.056 1.231-.656 2.413-2.172 3.287l-23.81 13.748c-3.223 1.86-8.853 1.628-12.574-.521l-21.784-12.577c-2.161-1.248-3.201-2.869-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M52.991 371.89c-.115-1.279.592-2.514 2.161-3.42l23.81-13.748c3.223-1.86 8.853-1.627 12.574.521l21.784 12.578c2.027 1.169 3.068 2.668 3.076 4.09h.005v10.461h-.006c.056 1.231-.656 2.413-2.172 3.287l-23.81 13.748c-3.223 1.86-8.853 1.628-12.574-.521l-21.784-12.577c-2.161-1.248-3.201-2.869-3.064-4.37v-10.05z"/>
|
||||
<path fill="#F3807B" d="M90.412 388.826l23.81-13.748c3.223-1.86 2.819-5.11-.902-7.258l-21.784-12.577c-3.722-2.148-9.35-2.382-12.573-.521l-23.81 13.748c-3.223 1.86-2.82 5.11.902 7.258l21.784 12.577c3.72 2.148 9.35 2.382 12.573.521"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M90.412 388.826l23.81-13.748c3.223-1.86 2.819-5.11-.902-7.258l-21.784-12.577c-3.722-2.148-9.35-2.382-12.573-.521l-23.81 13.748c-3.223 1.86-2.82 5.11.902 7.258l21.784 12.577c3.72 2.148 9.35 2.382 12.573.521z"/>
|
||||
<path fill="#F3807B" d="M52.991 361.48c-.115-1.276.592-2.512 2.161-3.42l23.81-13.745c3.223-1.862 8.853-1.629 12.574.52l21.784 12.577c2.027 1.17 3.068 2.67 3.076 4.091h.005v10.462h-.006c.056 1.23-.656 2.412-2.172 3.287L90.413 389c-3.223 1.86-8.853 1.626-12.574-.521L56.055 375.9c-2.161-1.247-3.201-2.867-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M52.991 361.48c-.115-1.276.592-2.512 2.161-3.42l23.81-13.745c3.223-1.862 8.853-1.629 12.574.52l21.784 12.577c2.027 1.17 3.068 2.67 3.076 4.091h.005v10.462h-.006c.056 1.23-.656 2.412-2.172 3.287L90.413 389c-3.223 1.86-8.853 1.626-12.574-.521L56.055 375.9c-2.161-1.247-3.201-2.867-3.064-4.37v-10.05z"/>
|
||||
<path fill="#FF8F8F" d="M85.367 379.669c.214-.007.427-.017.637-.031"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M85.367 379.669c.214-.007.427-.017.637-.031"/>
|
||||
<path fill="#EFA0A0" d="M90.064 378.606a7.76 7.76 0 0 0 .348-.187l23.81-13.747c3.223-1.86 2.819-5.11-.902-7.26l-21.784-12.578c-3.721-2.147-9.35-2.381-12.573-.52l-23.81 13.747c-3.224 1.86-2.819 5.11.902 7.26l21.783 12.577c.992.572 2.117 1.007 3.297 1.305"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M90.064 378.606a7.76 7.76 0 0 0 .348-.187l23.81-13.747c3.223-1.86 2.819-5.11-.902-7.26l-21.784-12.578c-3.721-2.147-9.35-2.381-12.573-.52l-23.81 13.747c-3.224 1.86-2.819 5.11.902 7.26l21.783 12.577c.992.572 2.117 1.007 3.297 1.305"/>
|
||||
<path fill="#FF8F8F" d="M86.004 379.638c.312-.023.62-.056.924-.1"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M86.004 379.638c.312-.023.62-.056.924-.1"/>
|
||||
<path fill="#FFCD3C" d="M120.01 385.645c-.114-1.277.592-2.514 2.162-3.42l23.81-13.746c3.223-1.86 8.853-1.629 12.574.521l21.784 12.576c2.027 1.17 3.068 2.67 3.076 4.091h.005v10.462h-.007c.057 1.23-.657 2.412-2.172 3.287l-23.811 13.748c-3.223 1.86-8.85 1.626-12.572-.521l-21.785-12.579c-2.162-1.247-3.201-2.867-3.063-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.203" d="M120.01 385.645c-.114-1.277.592-2.514 2.162-3.42l23.81-13.746c3.223-1.86 8.853-1.629 12.574.521l21.784 12.576c2.027 1.17 3.068 2.67 3.076 4.091h.005v10.462h-.007c.057 1.23-.657 2.412-2.172 3.287l-23.811 13.748c-3.223 1.86-8.85 1.626-12.572-.521l-21.785-12.579c-2.162-1.247-3.201-2.867-3.063-4.37v-10.05z"/>
|
||||
<path fill="#FFED3C" d="M157.431 402.583l23.81-13.748c3.224-1.86 2.82-5.11-.902-7.26L158.556 369c-3.722-2.149-9.35-2.382-12.574-.521l-23.81 13.746c-3.223 1.86-2.819 5.111.902 7.26l21.784 12.577c3.721 2.147 9.35 2.381 12.573.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M157.431 402.583l23.81-13.748c3.224-1.86 2.82-5.11-.902-7.26L158.556 369c-3.722-2.149-9.35-2.382-12.574-.521l-23.81 13.746c-3.223 1.86-2.819 5.111.902 7.26l21.784 12.577c3.721 2.147 9.35 2.381 12.573.52z"/>
|
||||
<path fill="#FFCD3C" d="M120.01 375.15c-.114-1.276.592-2.513 2.162-3.419l23.81-13.746c3.223-1.86 8.853-1.63 12.574.52l21.784 12.577c2.027 1.17 3.068 2.67 3.076 4.09h.005v10.462h-.007c.057 1.231-.657 2.414-2.172 3.287l-23.811 13.748c-3.223 1.86-8.85 1.627-12.572-.52l-21.785-12.579c-2.162-1.247-3.201-2.867-3.063-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.203" d="M120.01 375.15c-.114-1.276.592-2.513 2.162-3.419l23.81-13.746c3.223-1.86 8.853-1.63 12.574.52l21.784 12.577c2.027 1.17 3.068 2.67 3.076 4.09h.005v10.462h-.007c.057 1.231-.657 2.414-2.172 3.287l-23.811 13.748c-3.223 1.86-8.85 1.627-12.572-.52l-21.785-12.579c-2.162-1.247-3.201-2.867-3.063-4.37v-10.05z"/>
|
||||
<path fill="#FFE8B6" d="M138.868 388.108l5.99 3.46c3.721 2.147 9.35 2.38 12.573.52l23.81-13.748c3.224-1.86 2.82-5.11-.902-7.259l-21.783-12.576c-3.722-2.149-9.35-2.381-12.574-.52l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.258l11.994 6.924"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.402" d="M138.868 388.108l5.99 3.46c3.721 2.147 9.35 2.38 12.573.52l23.81-13.748c3.224-1.86 2.82-5.11-.902-7.259l-21.783-12.576c-3.722-2.149-9.35-2.381-12.574-.52l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.258l11.994 6.924"/>
|
||||
<path fill="#F7D186" d="M86.695 402.858c-.114-1.277.591-2.513 2.162-3.42l23.81-13.746c3.223-1.861 8.852-1.629 12.573.52l21.784 12.577c2.028 1.17 3.069 2.67 3.076 4.091h.005v10.462h-.006c.056 1.23-.657 2.412-2.172 3.287l-23.812 13.748c-3.221 1.86-8.85 1.626-12.572-.521L89.76 417.277c-2.162-1.247-3.202-2.867-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M86.695 402.858c-.114-1.277.591-2.513 2.162-3.42l23.81-13.746c3.223-1.861 8.852-1.629 12.573.52l21.784 12.577c2.028 1.17 3.069 2.67 3.076 4.091h.005v10.462h-.006c.056 1.23-.657 2.412-2.172 3.287l-23.812 13.748c-3.221 1.86-8.85 1.626-12.572-.521L89.76 417.277c-2.162-1.247-3.202-2.867-3.064-4.37v-10.05z"/>
|
||||
<path fill="#F7D186" d="M124.116 419.796l23.81-13.748c3.224-1.86 2.819-5.11-.902-7.26l-21.784-12.576c-3.72-2.148-9.35-2.382-12.573-.52l-23.811 13.746c-3.222 1.86-2.818 5.11.904 7.26l21.783 12.577c3.72 2.147 9.35 2.381 12.573.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M124.116 419.796l23.81-13.748c3.224-1.86 2.819-5.11-.902-7.26l-21.784-12.576c-3.72-2.148-9.35-2.382-12.573-.52l-23.811 13.746c-3.222 1.86-2.818 5.11.904 7.26l21.783 12.577c3.72 2.147 9.35 2.381 12.573.52z"/>
|
||||
<path fill="#F7D186" d="M86.695 392.363c-.114-1.277.591-2.513 2.162-3.419l23.81-13.746c3.223-1.861 8.852-1.63 12.573.52l21.784 12.577c2.028 1.17 3.069 2.67 3.076 4.09h.005v10.462h-.006c.056 1.231-.657 2.413-2.172 3.287l-23.812 13.748c-3.221 1.86-8.85 1.627-12.572-.52l-21.784-12.58c-2.162-1.246-3.202-2.866-3.064-4.37v-10.049z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M86.695 392.363c-.114-1.277.591-2.513 2.162-3.419l23.81-13.746c3.223-1.861 8.852-1.63 12.573.52l21.784 12.577c2.028 1.17 3.069 2.67 3.076 4.09h.005v10.462h-.006c.056 1.231-.657 2.413-2.172 3.287l-23.812 13.748c-3.221 1.86-8.85 1.627-12.572-.52l-21.784-12.58c-2.162-1.246-3.202-2.866-3.064-4.37v-10.049z"/>
|
||||
<path fill="#F7D186" d="M124.116 409.301l23.81-13.748c3.224-1.86 2.819-5.11-.902-7.259l-21.784-12.576c-3.72-2.149-9.35-2.381-12.573-.52l-23.811 13.747c-3.222 1.86-2.818 5.11.904 7.258l21.783 12.577c3.72 2.148 9.35 2.382 12.573.521"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M124.116 409.301l23.81-13.748c3.224-1.86 2.819-5.11-.902-7.259l-21.784-12.576c-3.72-2.149-9.35-2.381-12.573-.52l-23.811 13.747c-3.222 1.86-2.818 5.11.904 7.258l21.783 12.577c3.72 2.148 9.35 2.382 12.573.521z"/>
|
||||
<path fill="#F7D186" d="M86.695 381.956c-.114-1.278.591-2.513 2.162-3.42l23.81-13.747c3.223-1.86 8.852-1.628 12.573.521l21.784 12.577c2.028 1.17 3.069 2.67 3.076 4.091h.005v10.46h-.006c.056 1.232-.657 2.414-2.172 3.289l-23.812 13.748c-3.221 1.86-8.85 1.626-12.572-.521L89.76 396.376c-2.162-1.248-3.202-2.868-3.064-4.371v-10.049z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M86.695 381.956c-.114-1.278.591-2.513 2.162-3.42l23.81-13.747c3.223-1.86 8.852-1.628 12.573.521l21.784 12.577c2.028 1.17 3.069 2.67 3.076 4.091h.005v10.46h-.006c.056 1.232-.657 2.414-2.172 3.289l-23.812 13.748c-3.221 1.86-8.85 1.626-12.572-.521L89.76 396.376c-2.162-1.248-3.202-2.868-3.064-4.371v-10.049z"/>
|
||||
<path fill="#F7D186" d="M124.116 398.893l23.81-13.747c3.224-1.861 2.819-5.11-.902-7.26L125.24 365.31c-3.72-2.148-9.35-2.382-12.573-.521l-23.811 13.748c-3.222 1.86-2.818 5.11.904 7.259l21.783 12.576c3.72 2.149 9.35 2.381 12.573.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M124.116 398.893l23.81-13.747c3.224-1.861 2.819-5.11-.902-7.26L125.24 365.31c-3.72-2.148-9.35-2.382-12.573-.521l-23.811 13.748c-3.222 1.86-2.818 5.11.904 7.259l21.783 12.576c3.72 2.149 9.35 2.381 12.573.52z"/>
|
||||
<path fill="#F7D186" d="M86.695 371.461c-.114-1.276.591-2.513 2.162-3.42l23.81-13.746c3.223-1.86 8.852-1.628 12.573.52l21.784 12.578c2.028 1.17 3.069 2.67 3.076 4.09h.005v10.461h-.006c.056 1.232-.657 2.414-2.172 3.289l-23.812 13.747c-3.221 1.86-8.85 1.627-12.572-.52L89.76 385.88c-2.162-1.247-3.202-2.867-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M86.695 371.461c-.114-1.276.591-2.513 2.162-3.42l23.81-13.746c3.223-1.86 8.852-1.628 12.573.52l21.784 12.578c2.028 1.17 3.069 2.67 3.076 4.09h.005v10.461h-.006c.056 1.232-.657 2.414-2.172 3.289l-23.812 13.747c-3.221 1.86-8.85 1.627-12.572-.52L89.76 385.88c-2.162-1.247-3.202-2.867-3.064-4.37v-10.05z"/>
|
||||
<path fill="#FFE8C0" d="M139.221 379.678l8.705-5.027c3.224-1.86 2.819-5.11-.902-7.259l-21.784-12.577c-3.72-2.148-9.35-2.381-12.573-.52l-23.811 13.747c-3.222 1.86-2.818 5.11.904 7.259l21.783 12.577c3.72 2.148 9.35 2.382 12.573.521l6.956-4.016"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M139.221 379.678l8.705-5.027c3.224-1.86 2.819-5.11-.902-7.259l-21.784-12.577c-3.72-2.148-9.35-2.381-12.573-.52l-23.811 13.747c-3.222 1.86-2.818 5.11.904 7.259l21.783 12.577c3.72 2.148 9.35 2.382 12.573.521l6.956-4.016"/>
|
||||
<path fill="#FF8F8F" d="M134.586 382.354l.449-.259"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M134.586 382.354l.449-.259"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.594" d="M26.687 395.47v-6.023c-.012-.128.002-.253-.003-.38a8.379 8.379 0 0 1-.01-.923c.01-.156.04-.309.059-.463.036-.305.071-.61.141-.91.036-.16.098-.315.145-.472.085-.291.167-.583.285-.868.07-.17.166-.332.246-.5.13-.267.253-.537.413-.8.113-.184.254-.36.38-.541.166-.237.32-.477.512-.71.168-.201.37-.395.557-.591.19-.201.363-.405.572-.6.252-.234.544-.456.825-.68.183-.146.346-.3.541-.443a18.093 18.093 0 0 1 1.581-1.024c.01-.006.017-.012.027-.017l20.034-11.568v-6.476c-.004-.044 0-.087-.001-.13a2.661 2.661 0 0 1-.005-.32c.005-.052.014-.105.022-.159.011-.105.024-.209.048-.313.012-.055.033-.109.05-.163.028-.1.057-.2.097-.299.025-.058.058-.115.085-.173.045-.092.088-.184.143-.274.038-.065.088-.126.132-.188.057-.081.11-.164.175-.244.058-.069.127-.136.191-.204.066-.068.126-.14.198-.206.09-.084.193-.162.292-.242.061-.047.114-.098.178-.145.172-.125.356-.245.555-.36l23.81-13.747c2.014-1.163 4.969-1.508 7.81-1.078.515.077 1.024.189 1.527.318v-2.41c-.004-.044 0-.088-.002-.132-.004-.106-.01-.212-.002-.317l.004-.058v-9.987c-.004-.045 0-.088-.002-.133-.004-.105-.01-.211-.002-.316.002-.054.013-.107.02-.161.012-.104.025-.209.048-.313.013-.055.033-.108.05-.162.03-.101.057-.201.098-.3.024-.058.057-.114.085-.172.046-.093.087-.184.142-.275.039-.064.088-.124.131-.186.058-.082.11-.165.177-.245.057-.07.126-.136.191-.203.066-.07.125-.14.198-.207.086-.08.185-.155.28-.231.064-.053.122-.107.19-.157a6.3 6.3 0 0 1 .555-.36l23.81-13.746c.806-.465 1.763-.8 2.801-1.007 3.118-.617 6.981-.084 9.772 1.528l21.784 12.577.01.007c.24.138.464.283.677.428.071.05.133.102.2.153.139.102.277.203.402.31.07.06.133.12.198.18.111.1.22.2.32.302.06.064.113.127.17.19.09.103.18.207.26.311.049.063.091.128.136.191.074.108.144.214.207.323.035.063.07.125.101.189a4.236 4.236 0 0 1 .22.515c.039.117.07.234.095.35.013.058.026.114.035.17.02.123.03.244.035.365.001.035.01.072.01.107h.005v1.293l1.075 17.41 32.628 18.839 16.328 9.427.025.016c.698.404 1.351.821 1.968 1.25.204.141.38.288.574.433.405.297.808.597 1.173.905.204.172.382.347.573.52.322.292.64.583.928.88.175.183.331.368.495.552.265.299.523.598.754.9.141.186.269.372.396.559.216.31.418.62.599.934.105.182.2.364.294.547a11.591 11.591 0 0 1 .637 1.499c.114.34.203.677.278 1.015.035.164.073.327.1.49.058.354.087.707.102 1.06.004.104.028.208.028.31h.016v6.097h-.018c.163 3.569-1.906 7-6.302 9.54l-8.223 4.746-8.712 5.03-52.157 30.112c-9.35 5.399-25.683 4.722-36.48-1.512l-63.21-36.493c-6.273-3.623-9.29-7.2-8.89-11.561z"/>
|
||||
<path fill="#DCE7F2" d="M186.088 228.6l-52.157 30.113c-9.35 5.399-25.684 4.721-36.48-1.513L34.24 220.706c-6.273-3.622-9.289-7.198-8.89-11.56v-6.022c-.334-3.708 1.717-7.295 6.271-9.924l69.09-39.89c9.351-5.398 25.686-4.721 36.482 1.512l63.21 36.495c5.885 3.397 8.903 7.744 8.924 11.87h.016v6.097h-.018c.164 3.57-1.905 7-6.302 9.54l-8.223 4.746"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M186.088 228.6l-52.157 30.113c-9.35 5.399-25.684 4.721-36.48-1.513L34.24 220.706c-6.273-3.622-9.289-7.198-8.89-11.56v-6.022c-.334-3.708 1.717-7.295 6.271-9.924l69.09-39.89c9.351-5.398 25.686-4.721 36.482 1.512l63.21 36.495c5.885 3.397 8.903 7.744 8.924 11.87h.016v6.097h-.018c.164 3.57-1.905 7-6.302 9.54l-8.223 4.746"/>
|
||||
<path fill="#FFF" d="M70.597 235.253l26.853 15.504c11.662 6.733 26.267 7.41 36.481 1.512l69.092-39.89c9.35-5.398 8.178-14.828-2.62-21.062l-63.21-36.494c-10.797-6.234-27.13-6.911-36.481-1.513l-69.09 39.89c-9.352 5.399-8.18 14.829 2.618 21.063l17.633 10.18"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M70.597 235.253l26.853 15.504c11.662 6.733 26.267 7.41 36.481 1.512l69.092-39.89c9.35-5.398 8.178-14.828-2.62-21.062l-63.21-36.494c-10.797-6.234-27.13-6.911-36.481-1.513l-69.09 39.89c-9.352 5.399-8.18 14.829 2.618 21.063l17.633 10.18"/>
|
||||
<path fill="#FFF" d="M60.383 229.356l1.088.628"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M60.383 229.356l1.088.628"/>
|
||||
<path fill="#D8AE64" d="M86.962 175.723c-.115-1.278.591-2.514 2.162-3.42l23.81-13.747c3.223-1.86 8.852-1.628 12.573.52l21.784 12.578c2.028 1.17 3.068 2.668 3.076 4.09h.005v10.462h-.006c.056 1.23-.656 2.413-2.172 3.288l-23.81 13.747c-3.223 1.86-8.853 1.627-12.574-.52l-21.784-12.579c-2.161-1.247-3.2-2.867-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M86.962 175.723c-.115-1.278.591-2.514 2.162-3.42l23.81-13.747c3.223-1.86 8.852-1.628 12.573.52l21.784 12.578c2.028 1.17 3.068 2.668 3.076 4.09h.005v10.462h-.006c.056 1.23-.656 2.413-2.172 3.288l-23.81 13.747c-3.223 1.86-8.853 1.627-12.574-.52l-21.784-12.579c-2.161-1.247-3.2-2.867-3.064-4.37v-10.05z"/>
|
||||
<path fill="#D8AE64" d="M124.383 192.66l23.81-13.748c3.223-1.86 2.819-5.11-.902-7.258l-21.784-12.577c-3.721-2.149-9.35-2.382-12.573-.521l-23.81 13.746c-3.223 1.861-2.82 5.111.902 7.26l21.784 12.577c3.721 2.147 9.35 2.381 12.573.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M124.383 192.66l23.81-13.748c3.223-1.86 2.819-5.11-.902-7.258l-21.784-12.577c-3.721-2.149-9.35-2.382-12.573-.521l-23.81 13.746c-3.223 1.861-2.82 5.111.902 7.26l21.784 12.577c3.721 2.147 9.35 2.381 12.573.52z"/>
|
||||
<path fill="#D8AE64" d="M86.962 165.229c-.115-1.278.591-2.515 2.162-3.42l23.81-13.747c3.223-1.86 8.852-1.628 12.573.52l21.784 12.577c2.028 1.171 3.068 2.67 3.076 4.092h.005v10.46h-.006c.056 1.231-.656 2.414-2.172 3.289l-23.81 13.746c-3.223 1.86-8.853 1.628-12.574-.52l-21.784-12.578c-2.161-1.248-3.2-2.867-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M86.962 165.229c-.115-1.278.591-2.515 2.162-3.42l23.81-13.747c3.223-1.86 8.852-1.628 12.573.52l21.784 12.577c2.028 1.171 3.068 2.67 3.076 4.092h.005v10.46h-.006c.056 1.231-.656 2.414-2.172 3.289l-23.81 13.746c-3.223 1.86-8.853 1.628-12.574-.52l-21.784-12.578c-2.161-1.248-3.2-2.867-3.064-4.37v-10.05z"/>
|
||||
<path fill="#D8AE64" d="M124.383 182.165l23.81-13.747c3.223-1.86 2.819-5.11-.902-7.259l-21.784-12.577c-3.721-2.148-9.35-2.381-12.573-.52l-23.81 13.747c-3.223 1.86-2.82 5.11.902 7.258l21.784 12.577c3.721 2.149 9.35 2.382 12.573.521"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M124.383 182.165l23.81-13.747c3.223-1.86 2.819-5.11-.902-7.259l-21.784-12.577c-3.721-2.148-9.35-2.381-12.573-.52l-23.81 13.747c-3.223 1.86-2.82 5.11.902 7.258l21.784 12.577c3.721 2.149 9.35 2.382 12.573.521z"/>
|
||||
<path fill="#D8AE64" d="M86.962 154.82c-.115-1.277.591-2.513 2.162-3.42l23.81-13.746c3.223-1.86 8.852-1.628 12.573.52l21.784 12.578c2.028 1.17 3.068 2.668 3.076 4.091h.005v10.46h-.006c.056 1.232-.656 2.414-2.172 3.289l-23.81 13.746c-3.223 1.86-8.853 1.628-12.574-.52L90.026 169.24c-2.161-1.248-3.2-2.867-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M86.962 154.82c-.115-1.277.591-2.513 2.162-3.42l23.81-13.746c3.223-1.86 8.852-1.628 12.573.52l21.784 12.578c2.028 1.17 3.068 2.668 3.076 4.091h.005v10.46h-.006c.056 1.232-.656 2.414-2.172 3.289l-23.81 13.746c-3.223 1.86-8.853 1.628-12.574-.52L90.026 169.24c-2.161-1.248-3.2-2.867-3.064-4.37v-10.05z"/>
|
||||
<path fill="#D8AE64" d="M124.383 171.758l23.81-13.747c3.223-1.86 2.819-5.11-.902-7.26l-21.784-12.577c-3.721-2.147-9.35-2.381-12.573-.52L89.124 151.4c-3.223 1.86-2.82 5.11.902 7.258l21.784 12.578c3.721 2.148 9.35 2.381 12.573.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M124.383 171.758l23.81-13.747c3.223-1.86 2.819-5.11-.902-7.26l-21.784-12.577c-3.721-2.147-9.35-2.381-12.573-.52L89.124 151.4c-3.223 1.86-2.82 5.11.902 7.258l21.784 12.578c3.721 2.148 9.35 2.381 12.573.52z"/>
|
||||
<path fill="#D8AE64" d="M86.962 144.326c-.115-1.278.591-2.513 2.162-3.42l23.81-13.747c3.223-1.86 8.852-1.627 12.573.521l21.784 12.577c2.028 1.171 3.068 2.669 3.076 4.091h.005v10.46h-.006c.056 1.232-.656 2.414-2.172 3.29l-23.81 13.746c-3.223 1.86-8.853 1.628-12.574-.521l-21.784-12.577c-2.161-1.248-3.2-2.868-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M86.962 144.326c-.115-1.278.591-2.513 2.162-3.42l23.81-13.747c3.223-1.86 8.852-1.627 12.573.521l21.784 12.577c2.028 1.171 3.068 2.669 3.076 4.091h.005v10.46h-.006c.056 1.232-.656 2.414-2.172 3.29l-23.81 13.746c-3.223 1.86-8.853 1.628-12.574-.521l-21.784-12.577c-2.161-1.248-3.2-2.868-3.064-4.37v-10.05z"/>
|
||||
<path fill="#F9D093" d="M124.383 161.264l23.81-13.748c3.223-1.86 2.819-5.11-.902-7.258l-21.784-12.578c-3.721-2.148-9.35-2.382-12.573-.522l-23.81 13.748c-3.223 1.86-2.82 5.11.902 7.26l21.784 12.577c3.721 2.147 9.35 2.381 12.573.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M124.383 161.264l23.81-13.748c3.223-1.86 2.819-5.11-.902-7.258l-21.784-12.578c-3.721-2.148-9.35-2.382-12.573-.522l-23.81 13.748c-3.223 1.86-2.82 5.11.902 7.26l21.784 12.577c3.721 2.147 9.35 2.381 12.573.52z"/>
|
||||
<path fill="#F3807B" d="M51.655 196.06c-.115-1.278.59-2.514 2.161-3.42l23.81-13.747c3.223-1.86 8.852-1.628 12.574.52l21.784 12.578c2.027 1.17 3.068 2.668 3.075 4.09h.006v10.461h-.007c.057 1.231-.656 2.414-2.172 3.289l-23.81 13.746c-3.223 1.86-8.852 1.628-12.573-.52l-21.784-12.578c-2.162-1.248-3.202-2.867-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M51.655 196.06c-.115-1.278.59-2.514 2.161-3.42l23.81-13.747c3.223-1.86 8.852-1.628 12.574.52l21.784 12.578c2.027 1.17 3.068 2.668 3.075 4.09h.006v10.461h-.007c.057 1.231-.656 2.414-2.172 3.289l-23.81 13.746c-3.223 1.86-8.852 1.628-12.573-.52l-21.784-12.578c-2.162-1.248-3.202-2.867-3.064-4.37v-10.05z"/>
|
||||
<path fill="#F3807B" d="M89.076 212.996l23.81-13.746c3.222-1.86 2.818-5.11-.903-7.26L90.2 179.414c-3.72-2.147-9.35-2.381-12.573-.52l-23.81 13.747c-3.222 1.86-2.818 5.11.903 7.258l21.784 12.578c3.72 2.148 9.35 2.381 12.573.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M89.076 212.996l23.81-13.746c3.222-1.86 2.818-5.11-.903-7.26L90.2 179.414c-3.72-2.147-9.35-2.381-12.573-.52l-23.81 13.747c-3.222 1.86-2.818 5.11.903 7.258l21.784 12.578c3.72 2.148 9.35 2.381 12.573.52z"/>
|
||||
<path fill="#F3807B" d="M51.655 185.565c-.115-1.278.59-2.513 2.161-3.42l23.81-13.747c3.223-1.86 8.852-1.627 12.574.521l21.784 12.577c2.027 1.17 3.068 2.669 3.075 4.091h.006v10.462h-.007c.057 1.23-.656 2.412-2.172 3.287l-23.81 13.747c-3.223 1.86-8.852 1.627-12.573-.521l-21.784-12.577c-2.162-1.247-3.202-2.868-3.064-4.371v-10.049z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M51.655 185.565c-.115-1.278.59-2.513 2.161-3.42l23.81-13.747c3.223-1.86 8.852-1.627 12.574.521l21.784 12.577c2.027 1.17 3.068 2.669 3.075 4.091h.006v10.462h-.007c.057 1.23-.656 2.412-2.172 3.287l-23.81 13.747c-3.223 1.86-8.852 1.627-12.573-.521l-21.784-12.577c-2.162-1.247-3.202-2.868-3.064-4.371v-10.049z"/>
|
||||
<path fill="#F3807B" d="M89.076 202.502l23.81-13.747c3.222-1.86 2.818-5.11-.903-7.259L90.2 168.92c-3.72-2.148-9.35-2.382-12.573-.522l-23.81 13.748c-3.222 1.86-2.818 5.11.903 7.26l21.784 12.576c3.72 2.148 9.35 2.382 12.573.521"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M89.076 202.502l23.81-13.747c3.222-1.86 2.818-5.11-.903-7.259L90.2 168.92c-3.72-2.148-9.35-2.382-12.573-.522l-23.81 13.748c-3.222 1.86-2.818 5.11.903 7.26l21.784 12.576c3.72 2.148 9.35 2.382 12.573.521z"/>
|
||||
<path fill="#F3807B" d="M51.655 175.157c-.115-1.278.59-2.513 2.161-3.42l23.81-13.747c3.223-1.86 8.852-1.627 12.574.521l21.784 12.577c2.027 1.171 3.068 2.669 3.075 4.092h.006v10.461h-.007c.057 1.23-.656 2.412-2.172 3.287l-23.81 13.748c-3.223 1.86-8.852 1.627-12.573-.521l-21.784-12.578c-2.162-1.247-3.202-2.868-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M51.655 175.157c-.115-1.278.59-2.513 2.161-3.42l23.81-13.747c3.223-1.86 8.852-1.627 12.574.521l21.784 12.577c2.027 1.171 3.068 2.669 3.075 4.092h.006v10.461h-.007c.057 1.23-.656 2.412-2.172 3.287l-23.81 13.748c-3.223 1.86-8.852 1.627-12.573-.521l-21.784-12.578c-2.162-1.247-3.202-2.868-3.064-4.37v-10.05z"/>
|
||||
<path fill="#FF8F8F" d="M84.031 193.345c.214-.006.425-.016.637-.031"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M84.031 193.345c.214-.006.425-.016.637-.031"/>
|
||||
<path fill="#EFA0A0" d="M88.728 192.283c.118-.061.234-.124.348-.189l23.81-13.746c3.223-1.86 2.819-5.11-.902-7.26L90.2 158.511c-3.721-2.148-9.35-2.381-12.573-.52l-23.81 13.746c-3.224 1.86-2.82 5.11.902 7.26l21.783 12.576c.99.572 2.117 1.008 3.297 1.306"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M88.728 192.283c.118-.061.234-.124.348-.189l23.81-13.746c3.223-1.86 2.819-5.11-.902-7.26L90.2 158.511c-3.721-2.148-9.35-2.381-12.573-.52l-23.81 13.746c-3.224 1.86-2.82 5.11.902 7.26l21.783 12.576c.99.572 2.117 1.008 3.297 1.306"/>
|
||||
<path fill="#FF8F8F" d="M84.668 193.313c.312-.022.62-.055.924-.097"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M84.668 193.313c.312-.022.62-.055.924-.097"/>
|
||||
<path stroke="#B1CEE6" stroke-dasharray="4.336,4.336" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.179" d="M161.364 221.714l21.927-12.659c2.967-1.714 2.595-4.706-.832-6.684L162.4 190.79c-3.426-1.979-8.609-2.193-11.577-.48l-21.927 12.658c-2.967 1.713-2.594 4.706.833 6.685l20.058 11.58c3.428 1.979 8.61 2.194 11.578.481z"/>
|
||||
<path fill="#F7D186" d="M85.36 216.534c-.117-1.278.59-2.513 2.16-3.42l23.811-13.747c3.223-1.86 8.85-1.627 12.573.521l21.784 12.578c2.028 1.17 3.068 2.668 3.076 4.09h.005v10.462h-.006c.055 1.23-.657 2.412-2.172 3.287l-23.812 13.748c-3.222 1.86-8.85 1.627-12.572-.52l-21.785-12.58c-2.161-1.246-3.201-2.867-3.063-4.37v-10.049z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M85.36 216.534c-.117-1.278.59-2.513 2.16-3.42l23.811-13.747c3.223-1.86 8.85-1.627 12.573.521l21.784 12.578c2.028 1.17 3.068 2.668 3.076 4.09h.005v10.462h-.006c.055 1.23-.657 2.412-2.172 3.287l-23.812 13.748c-3.222 1.86-8.85 1.627-12.572-.52l-21.785-12.58c-2.161-1.246-3.201-2.867-3.063-4.37v-10.049z"/>
|
||||
<path fill="#FFE8C0" d="M122.78 233.471l23.81-13.747c3.223-1.86 2.818-5.11-.903-7.258l-21.783-12.578c-3.722-2.148-9.35-2.381-12.574-.52l-23.81 13.746c-3.223 1.86-2.819 5.11.902 7.26l21.784 12.577c3.722 2.148 9.35 2.381 12.573.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M122.78 233.471l23.81-13.747c3.223-1.86 2.818-5.11-.903-7.258l-21.783-12.578c-3.722-2.148-9.35-2.381-12.574-.52l-23.81 13.746c-3.223 1.86-2.819 5.11.902 7.26l21.784 12.577c3.722 2.148 9.35 2.381 12.573.52z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.594" d="M25.35 209.146v-6.023c-.01-.127.003-.253-.002-.38a8.362 8.362 0 0 1-.01-.923c.01-.156.04-.309.059-.463.036-.305.07-.61.141-.91.036-.16.098-.315.145-.472.085-.292.166-.583.285-.868.069-.169.165-.333.246-.5.13-.267.253-.537.413-.8.112-.183.254-.36.38-.541.166-.237.32-.477.512-.708.168-.203.37-.396.557-.593.19-.2.362-.406.572-.599.252-.235.544-.456.825-.681.183-.146.345-.3.54-.442a18.12 18.12 0 0 1 1.582-1.026c.01-.005.017-.011.026-.017l20.035-11.566v-6.477c-.006-.043 0-.087-.003-.13a2.924 2.924 0 0 1-.003-.32c.003-.052.014-.106.02-.159.013-.105.025-.21.05-.313.012-.055.032-.109.05-.163.028-.1.057-.2.097-.299.025-.058.058-.115.085-.173.045-.093.087-.184.143-.274.038-.064.088-.126.132-.189.057-.08.109-.163.175-.243.057-.07.126-.136.191-.203.066-.07.126-.14.198-.207.09-.083.192-.162.291-.24.062-.05.115-.1.179-.146.171-.126.356-.246.555-.36l23.81-13.747c2.014-1.163 4.969-1.509 7.81-1.08.515.078 1.024.19 1.527.318v-2.409c-.005-.044 0-.088-.002-.133-.004-.105-.01-.21-.003-.315l.005-.058v-9.988c-.005-.045 0-.088-.002-.132-.004-.106-.01-.211-.003-.317.003-.054.014-.107.02-.16.013-.106.024-.21.049-.313.013-.055.033-.11.05-.164.03-.1.057-.2.098-.298.024-.059.057-.115.085-.173.045-.092.087-.185.142-.275.038-.063.087-.124.13-.186.058-.082.111-.165.177-.244.058-.07.127-.137.192-.205.066-.069.125-.139.198-.206.086-.08.185-.155.28-.232.064-.052.121-.105.19-.156a6.3 6.3 0 0 1 .554-.36l23.81-13.746c.807-.466 1.763-.8 2.802-1.006 3.117-.618 6.981-.085 9.772 1.527l21.784 12.577.01.007c.24.138.464.282.677.43.07.05.133.1.2.151.139.102.276.204.401.31.072.06.133.12.2.18.11.1.218.2.318.302.06.064.114.128.17.19.092.104.181.207.26.31.049.065.092.129.137.192a4.7 4.7 0 0 1 .308.512 4.088 4.088 0 0 1 .22.516c.039.116.07.233.095.35a3.042 3.042 0 0 1 .07.535c.001.035.009.071.01.106h.005v1.294l1.075 17.41 32.628 18.837 16.328 9.427.025.016c.697.404 1.35.822 1.967 1.25.204.142.381.29.575.433.405.3.808.598 1.173.906.203.171.382.347.573.521.321.29.64.582.927.88.176.182.332.367.496.551.265.299.522.598.754.902.141.185.269.37.396.557.216.31.418.62.599.934.105.182.2.365.294.548a10.963 10.963 0 0 1 .636 1.498c.115.339.204.677.279 1.015.035.164.073.327.1.49.058.354.087.707.102 1.06.004.103.028.208.028.31h.016v6.097h-.019c.164 3.57-1.905 7-6.301 9.54l-8.223 4.745-8.713 5.031-52.156 30.113c-9.35 5.399-25.684 4.722-36.48-1.513L34.24 220.706c-6.273-3.622-9.289-7.198-8.89-11.56z"/>
|
||||
<path fill="#DCE7F2" d="M506.085 409.848L453.93 439.96c-9.352 5.399-25.685 4.723-36.481-1.513l-63.21-36.494c-6.273-3.62-9.29-7.197-8.89-11.56v-6.022c-.334-3.707 1.716-7.293 6.271-9.924l69.09-39.888c9.35-5.4 25.684-4.723 36.482 1.51l63.21 36.495c5.884 3.398 8.903 7.744 8.924 11.872h.016v6.095h-.02c.164 3.57-1.905 7-6.302 9.54l-8.222 4.748"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M506.085 409.848L453.93 439.96c-9.352 5.399-25.685 4.723-36.481-1.513l-63.21-36.494c-6.273-3.62-9.29-7.197-8.89-11.56v-6.022c-.334-3.707 1.716-7.293 6.271-9.924l69.09-39.888c9.35-5.4 25.684-4.723 36.482 1.51l63.21 36.495c5.884 3.398 8.903 7.744 8.924 11.872h.016v6.095h-.02c.164 3.57-1.905 7-6.302 9.54l-8.222 4.748"/>
|
||||
<path fill="#FFF" d="M390.594 416.5l26.854 15.504c11.662 6.733 26.266 7.41 36.48 1.513l69.092-39.89c9.35-5.4 8.178-14.828-2.62-21.063l-63.21-36.493c-10.797-6.235-27.13-6.911-36.482-1.513l-69.09 39.89c-9.35 5.398-8.178 14.83 2.62 21.062l17.632 10.18"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M390.594 416.5l26.854 15.504c11.662 6.733 26.266 7.41 36.48 1.513l69.092-39.89c9.35-5.4 8.178-14.828-2.62-21.063l-63.21-36.493c-10.797-6.235-27.13-6.911-36.482-1.513l-69.09 39.89c-9.35 5.398-8.178 14.83 2.62 21.062l17.632 10.18"/>
|
||||
<path fill="#FFF" d="M380.38 410.604l1.088.628"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M380.38 410.604l1.088.628"/>
|
||||
<path fill="#35D0BA" d="M406.96 356.97c-.116-1.277.591-2.514 2.16-3.42l23.812-13.746c3.222-1.86 8.851-1.629 12.572.52l21.784 12.577c2.028 1.17 3.068 2.67 3.076 4.092h.006v10.46h-.007c.056 1.232-.656 2.414-2.172 3.288l-23.81 13.747c-3.223 1.86-8.853 1.627-12.574-.52l-21.784-12.578c-2.161-1.248-3.202-2.868-3.064-4.371V356.97z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M406.96 356.97c-.116-1.277.591-2.514 2.16-3.42l23.812-13.746c3.222-1.86 8.851-1.629 12.572.52l21.784 12.577c2.028 1.17 3.068 2.67 3.076 4.092h.006v10.46h-.007c.056 1.232-.656 2.414-2.172 3.288l-23.81 13.747c-3.223 1.86-8.853 1.627-12.574-.52l-21.784-12.578c-2.161-1.248-3.202-2.868-3.064-4.371V356.97z"/>
|
||||
<path fill="#35D0BA" d="M444.38 373.908l23.811-13.748c3.222-1.86 2.818-5.11-.903-7.26l-21.784-12.575c-3.72-2.15-9.35-2.382-12.573-.521l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.258l21.785 12.578c3.72 2.147 9.35 2.381 12.572.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M444.38 373.908l23.811-13.748c3.222-1.86 2.818-5.11-.903-7.26l-21.784-12.575c-3.72-2.15-9.35-2.382-12.573-.521l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.258l21.785 12.578c3.72 2.147 9.35 2.381 12.572.52z"/>
|
||||
<path fill="#35D0BA" d="M406.96 346.476c-.116-1.278.591-2.513 2.16-3.42l23.812-13.747c3.222-1.86 8.851-1.627 12.572.521l21.784 12.577c2.028 1.17 3.068 2.669 3.076 4.091h.006v10.46h-.007c.056 1.232-.656 2.414-2.172 3.288l-23.81 13.748c-3.223 1.86-8.853 1.628-12.574-.521l-21.784-12.577c-2.161-1.248-3.202-2.869-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M406.96 346.476c-.116-1.278.591-2.513 2.16-3.42l23.812-13.747c3.222-1.86 8.851-1.627 12.572.521l21.784 12.577c2.028 1.17 3.068 2.669 3.076 4.091h.006v10.46h-.007c.056 1.232-.656 2.414-2.172 3.288l-23.81 13.748c-3.223 1.86-8.853 1.628-12.574-.521l-21.784-12.577c-2.161-1.248-3.202-2.869-3.064-4.37v-10.05z"/>
|
||||
<path fill="#35D0BA" d="M444.38 363.413l23.811-13.748c3.222-1.86 2.818-5.11-.903-7.258l-21.784-12.577c-3.72-2.148-9.35-2.382-12.573-.521l-23.81 13.748c-3.223 1.86-2.819 5.11.902 7.258l21.785 12.577c3.72 2.148 9.35 2.382 12.572.521"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M444.38 363.413l23.811-13.748c3.222-1.86 2.818-5.11-.903-7.258l-21.784-12.577c-3.72-2.148-9.35-2.382-12.573-.521l-23.81 13.748c-3.223 1.86-2.819 5.11.902 7.258l21.785 12.577c3.72 2.148 9.35 2.382 12.572.521z"/>
|
||||
<path fill="#35D0BA" d="M406.96 336.068c-.116-1.277.591-2.513 2.16-3.42l23.812-13.747c3.222-1.86 8.851-1.628 12.572.521l21.784 12.577c2.028 1.17 3.068 2.67 3.076 4.091h.006v10.46h-.007c.056 1.233-.656 2.414-2.172 3.289l-23.81 13.748c-3.223 1.86-8.853 1.626-12.574-.521l-21.784-12.579c-2.161-1.247-3.202-2.867-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M406.96 336.068c-.116-1.277.591-2.513 2.16-3.42l23.812-13.747c3.222-1.86 8.851-1.628 12.572.521l21.784 12.577c2.028 1.17 3.068 2.67 3.076 4.091h.006v10.46h-.007c.056 1.233-.656 2.414-2.172 3.289l-23.81 13.748c-3.223 1.86-8.853 1.626-12.574-.521l-21.784-12.579c-2.161-1.247-3.202-2.867-3.064-4.37v-10.05z"/>
|
||||
<path fill="#35D0BA" d="M444.38 353.006l23.811-13.748c3.222-1.86 2.818-5.11-.903-7.26l-21.784-12.576c-3.72-2.148-9.35-2.382-12.573-.521l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.26l21.785 12.577c3.72 2.147 9.35 2.381 12.572.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M444.38 353.006l23.811-13.748c3.222-1.86 2.818-5.11-.903-7.26l-21.784-12.576c-3.72-2.148-9.35-2.382-12.573-.521l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.26l21.785 12.577c3.72 2.147 9.35 2.381 12.572.52z"/>
|
||||
<path fill="#35D0BA" d="M406.96 325.573c-.116-1.277.591-2.513 2.16-3.42l23.812-13.745c3.222-1.861 8.851-1.63 12.572.52l21.784 12.577c2.028 1.17 3.068 2.67 3.076 4.09h.006v10.462h-.007c.056 1.231-.656 2.412-2.172 3.287l-23.81 13.748c-3.223 1.86-8.853 1.627-12.574-.52l-21.784-12.58c-2.161-1.246-3.202-2.866-3.064-4.37v-10.049z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M406.96 325.573c-.116-1.277.591-2.513 2.16-3.42l23.812-13.745c3.222-1.861 8.851-1.63 12.572.52l21.784 12.577c2.028 1.17 3.068 2.67 3.076 4.09h.006v10.462h-.007c.056 1.231-.656 2.412-2.172 3.287l-23.81 13.748c-3.223 1.86-8.853 1.627-12.574-.52l-21.784-12.58c-2.161-1.246-3.202-2.866-3.064-4.37v-10.049z"/>
|
||||
<path fill="#35EEBA" d="M444.38 342.511l23.811-13.747c3.222-1.861 2.818-5.11-.903-7.26l-21.784-12.576c-3.72-2.148-9.35-2.381-12.573-.52l-23.81 13.746c-3.223 1.861-2.819 5.11.902 7.26l21.785 12.576c3.72 2.148 9.35 2.382 12.572.521"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.651" d="M444.38 342.511l23.811-13.747c3.222-1.861 2.818-5.11-.903-7.26l-21.784-12.576c-3.72-2.148-9.35-2.381-12.573-.52l-23.81 13.746c-3.223 1.861-2.819 5.11.902 7.26l21.785 12.576c3.72 2.148 9.35 2.382 12.572.521z"/>
|
||||
<path fill="#D8AE64" d="M371.652 377.307c-.115-1.277.592-2.514 2.161-3.42l23.812-13.747c3.221-1.86 8.85-1.628 12.572.52l21.784 12.578c2.027 1.17 3.068 2.67 3.075 4.091h.006v10.462h-.007c.057 1.23-.656 2.412-2.172 3.287l-23.811 13.748c-3.222 1.86-8.851 1.626-12.572-.521l-21.784-12.579c-2.162-1.247-3.202-2.867-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M371.652 377.307c-.115-1.277.592-2.514 2.161-3.42l23.812-13.747c3.221-1.86 8.85-1.628 12.572.52l21.784 12.578c2.027 1.17 3.068 2.67 3.075 4.091h.006v10.462h-.007c.057 1.23-.656 2.412-2.172 3.287l-23.811 13.748c-3.222 1.86-8.851 1.626-12.572-.521l-21.784-12.579c-2.162-1.247-3.202-2.867-3.064-4.37v-10.05z"/>
|
||||
<path fill="#D8AE64" d="M409.072 394.245l23.81-13.748c3.224-1.86 2.82-5.11-.901-7.26l-21.784-12.577c-3.721-2.147-9.35-2.381-12.573-.52l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.26l21.784 12.577c3.721 2.147 9.35 2.381 12.572.52"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M409.072 394.245l23.81-13.748c3.224-1.86 2.82-5.11-.901-7.26l-21.784-12.577c-3.721-2.147-9.35-2.381-12.573-.52l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.26l21.784 12.577c3.721 2.147 9.35 2.381 12.572.52z"/>
|
||||
<path fill="#D8AE64" d="M371.652 366.812c-.115-1.277.592-2.513 2.161-3.419l23.812-13.747c3.221-1.86 8.85-1.628 12.572.521l21.784 12.577c2.027 1.17 3.068 2.67 3.075 4.09h.006v10.462h-.007c.057 1.231-.656 2.412-2.172 3.287l-23.811 13.748c-3.222 1.86-8.851 1.627-12.572-.52l-21.784-12.58c-2.162-1.246-3.202-2.866-3.064-4.37v-10.049z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M371.652 366.812c-.115-1.277.592-2.513 2.161-3.419l23.812-13.747c3.221-1.86 8.85-1.628 12.572.521l21.784 12.577c2.027 1.17 3.068 2.67 3.075 4.09h.006v10.462h-.007c.057 1.231-.656 2.412-2.172 3.287l-23.811 13.748c-3.222 1.86-8.851 1.627-12.572-.52l-21.784-12.58c-2.162-1.246-3.202-2.866-3.064-4.37v-10.049z"/>
|
||||
<path fill="#D8AE64" d="M409.072 383.75l23.81-13.748c3.224-1.86 2.82-5.11-.901-7.259l-21.784-12.576c-3.721-2.149-9.35-2.381-12.573-.52l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.258l21.784 12.577c3.721 2.148 9.35 2.382 12.572.521"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M409.072 383.75l23.81-13.748c3.224-1.86 2.82-5.11-.901-7.259l-21.784-12.576c-3.721-2.149-9.35-2.381-12.573-.52l-23.81 13.747c-3.223 1.86-2.819 5.11.902 7.258l21.784 12.577c3.721 2.148 9.35 2.382 12.572.521z"/>
|
||||
<path fill="#D8AE64" d="M371.652 356.405c-.115-1.278.592-2.513 2.161-3.42l23.812-13.747c3.221-1.86 8.85-1.628 12.572.521l21.784 12.577c2.027 1.17 3.068 2.67 3.075 4.091h.006v10.46h-.007c.057 1.232-.656 2.414-2.172 3.289l-23.811 13.748c-3.222 1.86-8.851 1.626-12.572-.521l-21.784-12.579c-2.162-1.247-3.202-2.867-3.064-4.37v-10.05z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M371.652 356.405c-.115-1.278.592-2.513 2.161-3.42l23.812-13.747c3.221-1.86 8.85-1.628 12.572.521l21.784 12.577c2.027 1.17 3.068 2.67 3.075 4.091h.006v10.46h-.007c.057 1.232-.656 2.414-2.172 3.289l-23.811 13.748c-3.222 1.86-8.851 1.626-12.572-.521l-21.784-12.579c-2.162-1.247-3.202-2.867-3.064-4.37v-10.05z"/>
|
||||
<path fill="#D8AE64" d="M404.028 374.593c.214-.007.425-.017.637-.032"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M404.028 374.593c.214-.007.425-.017.637-.032"/>
|
||||
<g>
|
||||
<path fill="#F9D093" d="M408.725 373.53c.118-.061.235-.123.347-.189l23.811-13.746c3.223-1.86 2.819-5.11-.902-7.26l-21.784-12.577c-3.721-2.147-9.35-2.381-12.572-.52l-23.812 13.747c-3.222 1.86-2.818 5.11.903 7.26L396.5 372.82c.99.572 2.116 1.008 3.296 1.307"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M408.725 373.53c.118-.061.235-.123.347-.189l23.811-13.746c3.223-1.86 2.819-5.11-.902-7.26l-21.784-12.577c-3.721-2.147-9.35-2.381-12.572-.52l-23.812 13.747c-3.222 1.86-2.818 5.11.903 7.26L396.5 372.82c.99.572 2.116 1.008 3.296 1.307"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#D8AE64" d="M404.665 374.56c.312-.022.62-.055.924-.097"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M404.665 374.56c.312-.022.62-.055.924-.097"/>
|
||||
</g>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.594" d="M345.348 390.393v-6.022c-.012-.128.002-.253-.003-.38a8.357 8.357 0 0 1-.01-.923c.01-.156.04-.31.059-.464.036-.304.07-.608.141-.91.037-.158.098-.315.145-.472.085-.29.167-.583.285-.868.07-.169.164-.332.246-.498.131-.27.253-.538.413-.8.112-.185.254-.361.38-.543.167-.236.32-.476.512-.708.168-.202.37-.396.557-.592.19-.201.361-.405.572-.6.252-.234.544-.456.825-.68.184-.147.345-.3.541-.443a18.094 18.094 0 0 1 1.58-1.024.156.156 0 0 0 .026-.018l20.035-11.567v-6.476c-.005-.044 0-.086-.002-.13a2.922 2.922 0 0 1-.003-.32c.003-.052.014-.105.022-.158.012-.106.023-.21.047-.314.013-.055.034-.109.05-.163a2.74 2.74 0 0 1 .098-.3c.025-.057.058-.114.085-.172.045-.092.088-.184.143-.274.038-.065.088-.127.13-.188.059-.082.112-.164.177-.245.057-.069.126-.136.191-.203.066-.069.126-.14.2-.206.088-.084.19-.163.29-.241.061-.048.113-.1.178-.146.171-.125.356-.245.554-.36l23.811-13.747c2.014-1.163 4.97-1.508 7.81-1.08.516.078 1.024.191 1.526.319v-2.41c-.004-.044.001-.088-.001-.131-.004-.106-.01-.212-.003-.317l.004-.058v-9.988c-.004-.044.001-.088-.001-.132-.004-.105-.01-.211-.003-.317.003-.053.014-.106.021-.16.013-.105.023-.208.048-.313.013-.055.034-.108.05-.162.03-.101.057-.201.098-.3.024-.058.057-.115.085-.172.045-.093.087-.184.142-.275.038-.063.087-.125.131-.187.057-.082.112-.164.176-.244.059-.07.127-.136.192-.203.066-.07.125-.14.199-.208.085-.08.184-.154.278-.23.065-.053.122-.107.192-.157a6.3 6.3 0 0 1 .553-.359l23.812-13.747c.806-.466 1.76-.8 2.8-1.006 3.118-.62 6.981-.084 9.772 1.526l21.784 12.577.01.007c.24.139.465.283.677.43.07.05.133.101.2.151.139.103.276.204.401.31.072.06.132.12.2.18.11.1.22.2.318.303.06.063.115.127.171.19.092.103.18.206.26.311.049.063.092.128.137.19a4.118 4.118 0 0 1 .526 1.028c.04.116.07.234.096.35.013.058.025.114.035.17.02.123.03.244.034.365.002.035.01.072.01.107h.007v1.293l1.073 17.41 32.63 18.838 16.327 9.427.025.017c.697.403 1.35.821 1.967 1.249.205.141.381.289.575.433.405.298.808.598 1.173.906.203.172.382.347.574.52.32.292.64.583.926.88.176.182.333.367.497.552.264.3.52.598.754.9.14.186.268.372.396.558.215.31.417.622.598.936.105.18.202.363.294.546.166.324.313.649.443.974.068.175.136.349.193.524.115.34.204.677.279 1.016.035.164.073.326.1.488.058.355.087.708.102 1.062.004.104.028.208.03.31h.014v6.096h-.018c.163 3.57-1.905 7-6.302 9.54l-8.223 4.747-8.713 5.03-52.155 30.112c-9.351 5.4-25.684 4.722-36.483-1.513l-63.209-36.493c-6.272-3.622-9.289-7.198-8.889-11.561z"/>
|
||||
<path fill="#FFBD85" d="M255.804 408.68v-2.315h.001c.015-.776.489-1.517 1.451-2.072l16.011-9.245c2.154-1.243 5.917-1.088 8.405.35l14.655 8.46c1.364.788 2.057 1.796 2.053 2.753h.003v2.469h-.004c-.043.748-.519 1.458-1.448 1.993l-16.012 9.245c-2.153 1.243-5.916 1.088-8.403-.35l-14.656-8.46c-1.378-.795-2.072-1.816-2.055-2.78h-.001v-.048z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M255.804 408.68v-2.315h.001c.015-.776.489-1.517 1.451-2.072l16.011-9.245c2.154-1.243 5.917-1.088 8.405.35l14.655 8.46c1.364.788 2.057 1.796 2.053 2.753h.003v2.469h-.004c-.043.748-.519 1.458-1.448 1.993l-16.012 9.245c-2.153 1.243-5.916 1.088-8.403-.35l-14.656-8.46c-1.378-.795-2.072-1.816-2.055-2.78h-.001v-.048z"/>
|
||||
<g>
|
||||
<path fill="#FFBD85" d="M262.11 411.598l10.405 6.008c2.488 1.436 6.25 1.591 8.404.348l16.012-9.244c2.154-1.244 1.884-3.416-.603-4.851l-14.657-8.462c-2.486-1.437-6.25-1.592-8.403-.348l-16.012 9.244c-1.98 1.143-1.912 3.072.046 4.492"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M262.11 411.598l10.405 6.008c2.488 1.436 6.25 1.591 8.404.348l16.012-9.244c2.154-1.244 1.884-3.416-.603-4.851l-14.657-8.462c-2.486-1.437-6.25-1.592-8.403-.348l-16.012 9.244c-1.98 1.143-1.912 3.072.046 4.492"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFBD85" d="M271.2 378.493l1.018-2.94h.01c.148-.586.61-1.155 1.396-1.607 1.928-1.114 5.045-1.12 6.962-.012.73.42 1.18.945 1.35 1.491l9.63 27.692h-.004c.938 2.705-.419 5.63-4.065 7.736-5.782 3.337-15.126 3.354-20.871.037-3.62-2.09-4.945-5.003-3.987-7.709l7.557-21.793"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M271.2 378.493l1.018-2.94h.01c.148-.586.61-1.155 1.396-1.607 1.928-1.114 5.045-1.12 6.962-.012.73.42 1.18.945 1.35 1.491l9.63 27.692h-.004c.938 2.705-.419 5.63-4.065 7.736-5.782 3.337-15.126 3.354-20.871.037-3.62-2.09-4.945-5.003-3.987-7.709l7.557-21.793"/>
|
||||
</g>
|
||||
<path fill="#FFF" d="M273.727 378.078c1.847 1.067 4.853 1.061 6.712-.013 1.86-1.072 1.87-2.807.02-3.875-1.846-1.067-4.852-1.06-6.711.012-1.86 1.074-1.87 2.809-.021 3.876"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M273.727 378.078c1.847 1.067 4.853 1.061 6.712-.013 1.86-1.072 1.87-2.807.02-3.875-1.846-1.067-4.852-1.06-6.711.012-1.86 1.074-1.87 2.809-.021 3.876z"/>
|
||||
<g>
|
||||
<path fill="#FFF" d="M280.108 399.245c1.75-.29 3.402-.836 4.784-1.633 1.607-.927 2.62-2.066 3.037-3.26.125-.35.199-.705.219-1.064l.634 1.824 1.633 4.694c-.334 1.684-1.625 3.315-3.866 4.608-5.255 3.037-13.75 3.052-18.973.036-2.202-1.272-3.474-2.881-3.804-4.542l1.633-4.71.631-1.82c.02.354.094.71.222 1.057.413 1.173 1.411 2.292 2.987 3.204 1.386.8 3.053 1.343 4.82 1.626"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M280.108 399.245c1.75-.29 3.402-.836 4.784-1.633 1.607-.927 2.62-2.066 3.037-3.26.125-.35.199-.705.219-1.064l.634 1.824 1.633 4.694c-.334 1.684-1.625 3.315-3.866 4.608-5.255 3.037-13.75 3.052-18.973.036-2.202-1.272-3.474-2.881-3.804-4.542l1.633-4.71.631-1.82c.02.354.094.71.222 1.057.413 1.173 1.411 2.292 2.987 3.204 1.386.8 3.053 1.343 4.82 1.626"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#DCE7F2" d="M276.611 399.492c.144.003.288.005.432.005"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M276.611 399.492c.144.003.288.005.432.005"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFF" d="M279.556 392.842c-3.126.506-6.61.052-9.056-1.358-1.59-.92-2.48-2.09-2.662-3.294l1.036-2.997 1.111-3.193c.18.56.562 1.1 1.142 1.582.241.206.519.397.83.577 2.819 1.626 7.4 1.617 10.236-.02.325-.186.614-.39.863-.6.581-.488.963-1.029 1.146-1.586l1.11 3.188 1.038 2.983c-.187 1.212-1.091 2.4-2.705 3.333a9.75 9.75 0 0 1-.591.313"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M279.556 392.842c-3.126.506-6.61.052-9.056-1.358-1.59-.92-2.48-2.09-2.662-3.294l1.036-2.997 1.111-3.193c.18.56.562 1.1 1.142 1.582.241.206.519.397.83.577 2.819 1.626 7.4 1.617 10.236-.02.325-.186.614-.39.863-.6.581-.488.963-1.029 1.146-1.586l1.11 3.188 1.038 2.983c-.187 1.212-1.091 2.4-2.705 3.333a9.75 9.75 0 0 1-.591.313"/>
|
||||
</g>
|
||||
<path fill="#FFBD85" d="M51.814 290.379v-2.316c.016-.776.49-1.516 1.452-2.072l16.011-9.244c2.155-1.243 5.918-1.087 8.404.349l14.657 8.462c1.363.787 2.056 1.795 2.052 2.752h.003v2.47h-.004c-.044.747-.519 1.456-1.448 1.993l-16.011 9.243c-2.154 1.244-5.917 1.089-8.405-.347l-14.655-8.462c-1.378-.795-2.072-1.816-2.055-2.78h-.001v-.048z"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M51.814 290.379v-2.316c.016-.776.49-1.516 1.452-2.072l16.011-9.244c2.155-1.243 5.918-1.087 8.404.349l14.657 8.462c1.363.787 2.056 1.795 2.052 2.752h.003v2.47h-.004c-.044.747-.519 1.456-1.448 1.993l-16.011 9.243c-2.154 1.244-5.917 1.089-8.405-.347l-14.655-8.462c-1.378-.795-2.072-1.816-2.055-2.78h-.001v-.048z"/>
|
||||
<g>
|
||||
<path fill="#FFBD85" d="M58.119 293.298l10.407 6.007c2.487 1.437 6.25 1.592 8.403.35l16.011-9.246c2.154-1.244 1.884-3.416-.602-4.851l-14.657-8.462c-2.487-1.436-6.25-1.591-8.403-.349l-16.011 9.244c-1.982 1.144-1.913 3.073.045 4.492"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M58.119 293.298l10.407 6.007c2.487 1.437 6.25 1.592 8.403.35l16.011-9.246c2.154-1.244 1.884-3.416-.602-4.851l-14.657-8.462c-2.487-1.436-6.25-1.591-8.403-.349l-16.011 9.244c-1.982 1.144-1.913 3.073.045 4.492"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFBD85" d="M67.21 260.193l1.019-2.94h.008c.15-.587.612-1.155 1.396-1.608 1.929-1.114 5.046-1.12 6.963-.013.731.421 1.179.945 1.351 1.492l9.628 27.692h-.003c.938 2.706-.418 5.63-4.066 7.735-5.781 3.338-15.125 3.356-20.87.039-3.62-2.09-4.945-5.005-3.987-7.71l7.557-21.792"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M67.21 260.193l1.019-2.94h.008c.15-.587.612-1.155 1.396-1.608 1.929-1.114 5.046-1.12 6.963-.013.731.421 1.179.945 1.351 1.492l9.628 27.692h-.003c.938 2.706-.418 5.63-4.066 7.735-5.781 3.338-15.125 3.356-20.87.039-3.62-2.09-4.945-5.005-3.987-7.71l7.557-21.792"/>
|
||||
</g>
|
||||
<path fill="#FFF" d="M69.736 259.777c1.848 1.067 4.854 1.06 6.713-.013 1.86-1.073 1.869-2.808.021-3.875-1.848-1.066-4.853-1.061-6.713.012-1.859 1.073-1.869 2.808-.02 3.876"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M69.736 259.777c1.848 1.067 4.854 1.06 6.713-.013 1.86-1.073 1.869-2.808.021-3.875-1.848-1.066-4.853-1.061-6.713.012-1.859 1.073-1.869 2.808-.02 3.876z"/>
|
||||
<g>
|
||||
<path fill="#FFF" d="M76.118 280.945c1.75-.292 3.402-.836 4.785-1.633 1.605-.929 2.618-2.066 3.036-3.26.124-.35.198-.706.218-1.064l.636 1.824 1.633 4.694c-.335 1.684-1.626 3.314-3.867 4.608-5.255 3.037-13.75 3.052-18.973.035-2.203-1.272-3.474-2.88-3.805-4.542l1.633-4.709.632-1.821c.02.355.094.71.223 1.058.412 1.173 1.41 2.291 2.985 3.203 1.387.8 3.053 1.343 4.821 1.627"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M76.118 280.945c1.75-.292 3.402-.836 4.785-1.633 1.605-.929 2.618-2.066 3.036-3.26.124-.35.198-.706.218-1.064l.636 1.824 1.633 4.694c-.335 1.684-1.626 3.314-3.867 4.608-5.255 3.037-13.75 3.052-18.973.035-2.203-1.272-3.474-2.88-3.805-4.542l1.633-4.709.632-1.821c.02.355.094.71.223 1.058.412 1.173 1.41 2.291 2.985 3.203 1.387.8 3.053 1.343 4.821 1.627"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#DCE7F2" d="M72.621 281.192c.143.003.288.004.432.004"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M72.621 281.192c.143.003.288.004.432.004"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#FFF" d="M79.063 273.47c.203-.1.4-.204.591-.314 1.614-.932 2.519-2.121 2.706-3.333l-1.038-2.983-1.11-3.188c-.183.557-.565 1.1-1.147 1.586-.248.21-.538.414-.86.6-2.84 1.637-7.42 1.646-10.238.02a5.489 5.489 0 0 1-.83-.576c-.58-.484-.963-1.022-1.142-1.583l-1.111 3.192-1.038 2.999c.184 1.204 1.073 2.373 2.664 3.292 2.446 1.412 5.93 1.864 9.055 1.359"/>
|
||||
<path stroke="#004680" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.355" d="M79.063 273.47c.203-.1.4-.204.591-.314 1.614-.932 2.519-2.121 2.706-3.333l-1.038-2.983-1.11-3.188c-.183.557-.565 1.1-1.147 1.586-.248.21-.538.414-.86.6-2.84 1.637-7.42 1.646-10.238.02a5.489 5.489 0 0 1-.83-.576c-.58-.484-.963-1.022-1.142-1.583l-1.111 3.192-1.038 2.999c.184 1.204 1.073 2.373 2.664 3.292 2.446 1.412 5.93 1.864 9.055 1.359"/>
|
||||
</g>
|
||||
<path stroke="#B1CEE6" stroke-dasharray="4.336,4.336" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.179" d="M447.42 426.267l21.926-12.659c2.967-1.714 2.594-4.706-.831-6.684l-20.06-11.582c-3.427-1.978-8.61-2.192-11.578-.48l-21.925 12.66c-2.969 1.712-2.596 4.705.83 6.683l20.06 11.583c3.427 1.977 8.61 2.192 11.577.479zM485.13 405.36l21.927-12.659c2.967-1.714 2.595-4.706-.831-6.684l-20.059-11.582c-3.428-1.978-8.61-2.192-11.579-.48l-21.925 12.66c-2.968 1.712-2.596 4.706.831 6.683l20.059 11.583c3.427 1.977 8.61 2.192 11.577.479z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 543 KiB |
After Width: | Height: | Size: 994 KiB |
Before Width: | Height: | Size: 462 KiB |
After Width: | Height: | Size: 189 KiB |
2656
images/feature-3.svg
Before Width: | Height: | Size: 306 KiB |
After Width: | Height: | Size: 478 KiB |
After Width: | Height: | Size: 815 KiB |
After Width: | Height: | Size: 176 KiB |
After Width: | Height: | Size: 442 KiB |
After Width: | Height: | Size: 756 KiB |
Before Width: | Height: | Size: 403 KiB |
After Width: | Height: | Size: 277 KiB |
5358
images/hero.svg
Before Width: | Height: | Size: 412 KiB |
After Width: | Height: | Size: 687 KiB |
After Width: | Height: | Size: 1.1 MiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 8.5 KiB |
After Width: | Height: | Size: 14 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
|
||||
<path fill="#505A72" fill-rule="nonzero" d="M31.643 2.071H8.357A7.835 7.835 0 0 0 .5 9.93V29.57C.5 33.93 4 37.43 8.357 37.43h23.286c4.357 0 7.857-3.5 7.857-7.858V9.93c0-4.358-3.5-7.858-7.857-7.858zM8.929 25.643c.285.5.142 1.143-.429 1.428-.143.072-.357.143-.5.143-.357 0-.714-.214-.929-.571a14.055 14.055 0 0 1-1.857-7c0-2.429.643-4.857 1.857-7 .286-.5.929-.714 1.429-.357.5.285.714.928.429 1.428-1 1.786-1.572 3.786-1.572 5.929 0 2.214.5 4.214 1.572 6zm5.5-1c-.215.143-.358.214-.572.214-.357 0-.714-.143-.857-.5a8.74 8.74 0 0 1-1.429-4.786c0-1.5.358-3 1.143-4.285.286-.5.929-.715 1.429-.429s.714.929.357 1.5c-.571.929-.929 2.072-.929 3.214 0 1.286.358 2.5 1.072 3.572.357.5.214 1.143-.214 1.5zM20 22.57a2.79 2.79 0 0 1-2.786-2.785A2.79 2.79 0 0 1 20 17a2.79 2.79 0 0 1 2.786 2.786A2.79 2.79 0 0 1 20 22.57zm7.429 1.715c-.215.357-.572.571-.929.571-.143 0-.357-.071-.571-.143-.5-.285-.715-.928-.358-1.428.572-1 .858-2.072.858-3.215 0-1.285-.358-2.5-1.072-3.571-.357-.5-.214-1.143.286-1.5s1.143-.214 1.5.286c.928 1.428 1.5 3.071 1.5 4.785-.072 1.429-.429 2.929-1.214 4.215zm5.571 2.5c-.214.357-.571.571-.929.571-.214 0-.357-.071-.571-.143-.5-.285-.714-.928-.357-1.5 1.071-1.785 1.571-3.857 1.571-5.928 0-2.072-.571-4.143-1.571-5.929-.286-.5-.143-1.143.357-1.428.5-.286 1.143-.143 1.429.357a14.055 14.055 0 0 1 1.857 7c.071 2.428-.572 4.857-1.786 7z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22">
|
||||
<g fill="none" fill-rule="evenodd" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" transform="translate(1 2)">
|
||||
<rect width="20" height="14" y="4" rx="2"/>
|
||||
<path d="M14 18V2a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 359 B |
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22">
|
||||
<g fill="#F3807B" fill-rule="nonzero">
|
||||
<path d="M0 15h7v7H0zM15 15h7v7h-7zM0 0h7v7H0zM15 0h7v7h-7z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 214 B |
|
@ -0,0 +1,15 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="88" height="88" viewBox="0 0 88 88">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M26.146 70.297a11.645 11.645 0 0 0 5.138-9.664c0-6.437-5.218-11.654-11.654-11.654S7.977 54.196 7.977 60.633l.002.043A5.86 5.86 0 1 0 6.86 72.287h12.77c2.414 0 4.656-.734 6.516-1.99"/>
|
||||
<path fill="#FFF" d="M48.39 83.024l-4.564 2.727-4.564-2.727a56.82 56.82 0 0 1-27.68-48.78V2c8.273 8.854 22.147 9.354 31.036 1.118L43.826 2l1.045.987c8.804 8.31 22.668 7.95 31.027-.808L76.07 2v32.244a56.82 56.82 0 0 1-27.68 48.78"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M48.39 83.024l-4.564 2.727-4.564-2.727a56.82 56.82 0 0 1-27.68-48.78V2c8.273 8.854 22.147 9.354 31.036 1.118L43.826 2l1.045.987c8.804 8.31 22.668 7.95 31.027-.808L76.07 2v32.244a56.82 56.82 0 0 1-27.68 48.78z"/>
|
||||
<path fill="#FFF" d="M43.826 14.073l6.777-6.777"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M43.826 14.073l6.777-6.777"/>
|
||||
<path fill="#FFF" d="M12.656 45.242l21.76-21.76"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M12.656 45.242l21.76-21.76"/>
|
||||
<path fill="#FFF" d="M76.069 29.94L39.077 66.933"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M76.069 29.94L39.077 66.933"/>
|
||||
<path fill="#FFF" d="M57.7 49.947a11.81 11.81 0 0 1-.62-3.76c0-6.531 5.294-11.825 11.824-11.825 5.879 0 10.743 4.296 11.656 9.917.057 0 .112-.008.168-.008a6.87 6.87 0 1 1 0 13.739H58.803a4.108 4.108 0 1 1-1.103-8.064"/>
|
||||
<path stroke="#505A72" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M57.7 49.947a11.81 11.81 0 0 1-.62-3.76c0-6.531 5.294-11.825 11.824-11.825 5.879 0 10.743 4.296 11.656 9.917.057 0 .112-.008.168-.008a6.87 6.87 0 1 1 0 13.739H58.803a4.108 4.108 0 1 1-1.103-8.064z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22">
|
||||
<g fill="none" fill-rule="evenodd" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
|
||||
<path d="M14.333 1H21v6.667M7.667 21H1v-6.667M21 1l-7.778 7.778M1 21l7.778-7.778"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 8.7 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 8.4 KiB |
After Width: | Height: | Size: 16 KiB |
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15">
|
||||
<g fill="#F3807B" fill-rule="nonzero">
|
||||
<path d="M10 10h5v5h-5zM0 0h5v5H0zM10 0h5v5h-5z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 202 B |
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
|
||||
<path fill="#505A72" fill-rule="nonzero" d="M30 5.545H10.09C4.637 5.545.274 10 .274 15.364v9.454a9.777 9.777 0 0 0 9.818 9.818H30a9.777 9.777 0 0 0 9.818-9.818v-9.454A9.777 9.777 0 0 0 30 5.545zm-3.91 15.637l-8.817 4.636c-.91.455-2-.182-2-1.182v-9.181c0-1 1.09-1.637 2-1.182l8.818 4.636c.909.546.909 1.91 0 2.273z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 412 B |
379
index.html
|
@ -11,247 +11,228 @@ stylesheet: index
|
|||
<div>
|
||||
<h1>The open source multicloud control plane.</h1>
|
||||
<p>
|
||||
Workload portability across disparate environments, clusters,
|
||||
regions and clouds. Choose your flavors of cloud!
|
||||
Manage your cloud-native applications and infrastructure across
|
||||
environments, clusters, regions and clouds.
|
||||
</p>
|
||||
<button onclick="window.location.href='{{githubLink}}'">
|
||||
<button onclick="window.location.href='{{ githubLink }}'">
|
||||
Get Started on GitHub
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-7_md-12_md-first hero">
|
||||
<div>
|
||||
<img class="img md-hidden" src="{{ "/images/hero.svg" | relative_url }}" />
|
||||
<img class="img md-gt-hidden" src="{{ "/images/hero-mobile.svg" | relative_url }}" />
|
||||
<img class="img" src="{{ "/images/hero.png" | relative_url }}" srcset="{{ "/images/hero.png" | relative_url }} 1x, {{ "/images/hero@2x.png" | relative_url }} 2x, {{ "/images/hero@3x.png" | relative_url }} 3x" alt="Crossplane hero image" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="kinds">
|
||||
<div>
|
||||
<div class="grid-center">
|
||||
<div class="col-10_sm-12">
|
||||
<h2>The many flavors of managed services we support</h2>
|
||||
<p>
|
||||
Crossplane enables workload portability across clusters and cloud
|
||||
providers for the most common managed services.
|
||||
</p>
|
||||
<p><img src="{{ "/images/pink.svg" | relative_url }}" /></p>
|
||||
</div>
|
||||
<div class="col-3_md-12 specific-kind">
|
||||
<div class="img"><img src="{{ "/images/compute.svg" | relative_url }}" /></div>
|
||||
<h4>Compute</h4>
|
||||
</div>
|
||||
<div class="col-3_md-12 specific-kind">
|
||||
<div class="img"><img src="{{ "/images/database.svg" | relative_url }}" /></div>
|
||||
<h4>Databases</h4>
|
||||
</div>
|
||||
<div class="col-3_md-12 specific-kind">
|
||||
<div class="img"><img src="{{ "/images/storage.svg" | relative_url }}" /></div>
|
||||
<h4>Storage</h4>
|
||||
</div>
|
||||
<div class="col-9_md-12 footer">
|
||||
<p>
|
||||
Additional managed services including serverless, analytics, big data,
|
||||
machine learning and others are coming soon.
|
||||
</p>
|
||||
<p>
|
||||
<a href="{{githubLink}}"
|
||||
>Help support these features and add new ones</a
|
||||
>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="providers">
|
||||
<div>
|
||||
<h2>Supported cloud flavors</h2>
|
||||
<p>
|
||||
Mix and match services from cloud providers and on-prem. Additional
|
||||
support for other cloud providers coming soon.
|
||||
</p>
|
||||
<p>
|
||||
<img src="{{ "/images/google-cloud.svg" | relative_url }}" /> <img src="{{ "/images/aws.svg" | relative_url }}" />
|
||||
<img src="{{ "/images/microsoft-azure.svg" | relative_url }}" />
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="features">
|
||||
<div>
|
||||
<div class="grid-center">
|
||||
<div class="col-10_sm-12 head">
|
||||
<h2>Key Features of Crossplane</h2>
|
||||
<p>
|
||||
Crossplane provides a universal cloud computing API. Control your
|
||||
workloads across clouds and on-prem environments from one unified
|
||||
place.
|
||||
</p>
|
||||
<p><img src="{{ "/images/teal.svg" | relative_url }}" /></p>
|
||||
</div>
|
||||
<div class="col-4_md-6_sm-12 feature">
|
||||
<h3>A strong separation of concerns.</h3>
|
||||
<p>
|
||||
Developers can define workloads without worrying about implementation
|
||||
details, environment constraints, or policies. Administrators can
|
||||
define environment specifics, and policies. Enable a higher degree of
|
||||
reusability and reduce complexity.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-4_md-6_sm-12 feature">
|
||||
<h3>Workload portability across cloud providers.</h3>
|
||||
<p>
|
||||
As a multi-cloud workload and resource orchestrator, Crossplane
|
||||
manages workloads (container, serverless, others) and resources they
|
||||
consume (databases, message queues, buckets, data pipelines, and
|
||||
others) across clouds and on-premise environments.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-4_md-6_sm-12 feature">
|
||||
<h3>Advanced workload scheduling.</h3>
|
||||
<p>
|
||||
Crossplane includes an extensible workload scheduler that can factor
|
||||
availability, reliability, cost, and performance while deploying
|
||||
workloads and their resources.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-4_md-6_sm-12 feature">
|
||||
<h3>Open source that doesn’t have an agenda.</h3>
|
||||
<p>
|
||||
Crossplane is open source software released under the Apache 2.0
|
||||
license. Crossplane is a community driven effort to define a control
|
||||
plane that can span multiple cloud providers, many regions and
|
||||
offerings.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-4_md-6_sm-12 feature">
|
||||
<h3>Built with high levels of extensibility.</h3>
|
||||
<p>
|
||||
Leverages tried and tested Kubernetes machinery to provide a high
|
||||
level of extensibility around APIs, resource controllers, schedulers
|
||||
and other components. This empowers the community to build on-top of
|
||||
it easily.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-4_md-6_sm-12 feature">
|
||||
<h3>Full lifecycle management of resources.</h3>
|
||||
<p>
|
||||
A resource controller is responsible for the entire lifecycle of a
|
||||
resource. This resource is responsible for provisioning, health,
|
||||
scaling, failover, and actively responding to external changes that
|
||||
deviate from the desired configuration.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="use-cases">
|
||||
<div>
|
||||
<div class="grid">
|
||||
<div class="col-6_md-12 img">
|
||||
<img class="md-hidden" src="{{ "/images/feature-1.svg" | relative_url }}" /><img
|
||||
class="md-gt-hidden"
|
||||
src="{{ "/images/feature-1-mobile.svg" | relative_url }}"
|
||||
/>
|
||||
<img src="{{ "/images/feature-1.png" | relative_url }}" srcset="{{ "/images/feature-1.png" | relative_url }} 1x, {{ "/images/feature-1@2x.png" | relative_url }} 2x, {{ "/images/feature-1@3x.png" | relative_url }} 3x" alt="Provision managed services" />
|
||||
</div>
|
||||
<div class="col-6_md-12">
|
||||
<h2>Utilize multiple cloud providers at a single time.</h2>
|
||||
<h2>Provision the managed services your applications depend on using ‘kubectl.’</h2>
|
||||
<p>
|
||||
Schedule work across multiple regions and cloud providers at the same
|
||||
time. Use different regions of multiple cloud providers to improve
|
||||
availability, geographic presence, and reach.
|
||||
<img src="{{ "/images/quad-white-medium.svg" | relative_url }}" />
|
||||
Securely consume managed services such as PostgreSQL, Redis, Buckets and more, from
|
||||
your choice of cloud on-premises.
|
||||
<img src="{{ "/images/quad-red-medium.svg" | relative_url }}" />
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid">
|
||||
<div class="col-6_md-12">
|
||||
<h2>Migrate managed services across multiple clouds.</h2>
|
||||
<h2>Extend Crossplane by adding your own Stack.</h2>
|
||||
<p>
|
||||
Take advantage of automated controllers to move data across regions,
|
||||
clusters or clouds. As a single control-plane that spans multiple
|
||||
cloud providers, controllers work across clouds and use tried and
|
||||
tested methods for completing long running migration tasks.
|
||||
<img src="{{ "/images/quad-white-medium.svg" | relative_url }}" />
|
||||
Add new resources and controllers to Crossplane by extending existing Stacks
|
||||
or building your own.
|
||||
<img src="{{ "/images/quad-red-medium.svg" | relative_url }}" />
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-6_md-12_md-first img">
|
||||
<img class="md-hidden" src="{{ "/images/feature-2.svg" | relative_url }}" /><img
|
||||
class="md-gt-hidden"
|
||||
src="{{ "/images/feature-2-mobile.svg" | relative_url }}"
|
||||
/>
|
||||
<img src="{{ "/images/feature-4.png" | relative_url }}" srcset="{{ "/images/feature-4.png" | relative_url }} 1x, {{ "/images/feature-4@2x.png" | relative_url }} 2x, {{ "/images/feature-4@3x.png" | relative_url }} 3x"
|
||||
alt="Extend Crossplane by adding your own Stack" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid">
|
||||
<div class="col-6_md-12 img">
|
||||
<img class="md-hidden" src="{{ "/images/feature-3.svg" | relative_url }}" /><img
|
||||
class="md-gt-hidden"
|
||||
src="{{ "/images/feature-3-mobile.svg" | relative_url }}"
|
||||
/>
|
||||
<img src="{{ "/images/feature-2.png" | relative_url }}" srcset="{{ "/images/feature-2.png" | relative_url }} 1x, {{ "/images/feature-2@2x.png" | relative_url }} 2x, {{ "/images/feature-2@3x.png" | relative_url }} 3x"
|
||||
alt="Schedule workloads across clusters, regions and clouds" />
|
||||
</div>
|
||||
<div class="col-6_md-12">
|
||||
<h2>Automate all of your tasks across multiple clouds.</h2>
|
||||
<h2>Schedule workloads across clusters, regions and clouds.</h2>
|
||||
<p>
|
||||
Write custom controllers to automate such tasks as setting up
|
||||
replication across databases, or setting up a data protection solution
|
||||
across clouds. With a single control-plane that can span regions and
|
||||
cloud providers, and offers an extensibility model for writing custom
|
||||
controllers, Crossplane automates many of these tasks.
|
||||
<img src="{{ "/images/quad-white-medium.svg" | relative_url }}" />
|
||||
Define complete applications with managed service dependencies for scheduling across
|
||||
clusters and regions to balance reliability, cost, and performance.
|
||||
<img src="{{ "/images/quad-red-medium.svg" | relative_url }}" />
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid">
|
||||
<div class="col-6_md-12">
|
||||
<h2>Manage multiple clusters from a single control plane.</h2>
|
||||
<p>
|
||||
Provision and manage kubernetes clusters: bring your own clusters or generate on demand,
|
||||
with common configuration and policy.
|
||||
<img src="{{ "/images/quad-red-medium.svg" | relative_url }}" />
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-6_md-12_md-first img">
|
||||
<img src="{{ "/images/feature-3.png" | relative_url }}" srcset="{{ "/images/feature-3.png" | relative_url }} 1x, {{ "/images/feature-3@2x.png" | relative_url }} 2x, {{ "/images/feature-3@3x.png" | relative_url }} 3x"
|
||||
alt="Manage multiple clusters from a single control plane" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="providers">
|
||||
<div>
|
||||
<h2>The many flavors of infrastructure we support</h2>
|
||||
<p>
|
||||
Crossplane supports your choice of infrastructure and enables anyone to add their own.
|
||||
</p>
|
||||
<p>
|
||||
<img src="{{ "/images/google-cloud.svg" | relative_url }}" alt="google cloud" /> <img
|
||||
src="{{ "/images/aws.svg" | relative_url }}" alt="aws" />
|
||||
<img src="{{ "/images/microsoft-azure.svg" | relative_url }}" alt="microsoft azure" /> <img
|
||||
src="{{ "/images/comingsoon-pivotal.svg" | relative_url }}" alt="pivotal coming soon" />
|
||||
</p>
|
||||
<p>
|
||||
<a href="{{ githubLink }}">Help support these features and add new ones</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="blueprint">
|
||||
<div class="blueprint-header">
|
||||
<h2>The Blueprint for the Open Cloud</h2>
|
||||
<img src="{{ "/images/teal.svg" | relative_url }}" />
|
||||
</div>
|
||||
<div class="grid">
|
||||
<div class="blueprint-items col-6_md-12 grid">
|
||||
<div class="blueprint-bullet col-1">
|
||||
<img src="{{ "/images/separation.svg" | relative_url }}" />
|
||||
</div>
|
||||
<div class="blueprint-item col-11">
|
||||
<h3>A strong separation of concerns.</h3>
|
||||
<p>Developers can define workloads without worrying about implementation details,
|
||||
environment constraints, or policies. Administrators can define environment specifics,
|
||||
and policies. Enable a higher degree of reusability and reduce complexity.</p>
|
||||
</div>
|
||||
<div class="blueprint-bullet col-1">
|
||||
<img src="{{ "/images/portability.svg" | relative_url }}" />
|
||||
</div>
|
||||
<div class="blueprint-item col-11">
|
||||
<h3>Workload portability across cloud providers.</h3>
|
||||
<p>As a multicloud workload and resource orchestrator, Crossplane manages workloads
|
||||
(container, serverless, others) and resources they consume (databases, message queues,
|
||||
buckets, data pipelines, and others) across clouds and on-premise environments.</p>
|
||||
</div>
|
||||
<div class="blueprint-bullet col-1">
|
||||
<img src="{{ "/images/agenda.svg" | relative_url }}" />
|
||||
</div>
|
||||
<div class="blueprint-item col-11">
|
||||
<h3>Open source that doesn’t have an agenda.</h3>
|
||||
<p>Crossplane is open source software released under the Apache 2.0 license. Crossplane is
|
||||
a true community-driven effort to define a control plane that can span multiple cloud
|
||||
providers, many regions and offerings.</p>
|
||||
</div>
|
||||
<div class="blueprint-bullet col-1">
|
||||
<img src="{{ "/images/extensibility.svg" | relative_url }}" />
|
||||
</div>
|
||||
<div class="blueprint-item col-11">
|
||||
<h3>Built with high levels of extensibility.</h3>
|
||||
<p>Leverages tried and tested Kubernetes machinery to provide a high level of extensibility
|
||||
around APIs, resource controllers, schedulers and other components. This empowers the
|
||||
community to build on top of it easily.</p>
|
||||
</div>
|
||||
<div class="blueprint-bullet col-1">
|
||||
<img src="{{ "/images/cycle.svg" | relative_url }}" />
|
||||
</div>
|
||||
<div class="blueprint-item col-11">
|
||||
<h3>Full lifecycle management of resources.</h3>
|
||||
<p>A resource controller is responsible for the entire lifecycle of a resource. This
|
||||
resource is responsible for provisioning, health, scaling, failover, and actively
|
||||
responding to external changes that deviate from the desired configuration.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="blueprint-img col-6_md-hidden">
|
||||
<img src="{{ "/images/blueprint.png" | relative_url }}" alt="open cloud blueprint" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="testimonials">
|
||||
<div>
|
||||
<div class="grid-center">
|
||||
<div class="testimonial col-4_md-6_sm-12">
|
||||
<div class="testimonial col-6_md-12">
|
||||
<h3>
|
||||
“Crossplane has an opportunity to change the cloud industry as
|
||||
we know it”
|
||||
we know it.”
|
||||
</h3>
|
||||
<p>
|
||||
“Our customers are increasingly looking for a way to deploy
|
||||
their code across multiple cloud environments. The choices available
|
||||
today are too complex and vendor driven but with Crossplane the
|
||||
today are too complex and vendor-driven, but with Crossplane, the
|
||||
ability to orchestrate clouds becomes simple. We look forward to
|
||||
collaborating with them on this vision and as the first complex app
|
||||
running on Crossplane.”
|
||||
</p>
|
||||
<div class="signature">
|
||||
<div class="name">Sid Sijbrandij</div>
|
||||
<div class="title">CEO and Co-Founder of GitLab</div>
|
||||
<a href="https://gitlab.com"><img src="{{ "/images/gitlab.svg" | relative_url }}"/></a>
|
||||
<div class="exec-img">
|
||||
<img src="{{ "/images/sid.jpg" | relative_url }}" srcset="{{ "/images/sid.jpg" | relative_url }} 1x, {{ "/images/sid@2x.jpg" | relative_url }} 2x, {{ "/images/sid@3x.jpg" | relative_url }} 3x" alt="Sid Sijbrandij" />
|
||||
</div>
|
||||
<div class="exec-info">
|
||||
<div class="name">Sid Sijbrandij</div>
|
||||
<div class="title">CEO and Co-Founder of GitLab</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="testimonial col-4_md-6_sm-12">
|
||||
<div class="testimonial col-6_md-12">
|
||||
<h3>
|
||||
“We share the vision of having truly cloud agnostic, managed
|
||||
services and Crossplane is an important step forward in this
|
||||
direction”
|
||||
“We share the vision of having truly cloud-agnostic managed
|
||||
services.”
|
||||
</h3>
|
||||
<p>
|
||||
“Crossplane will make it possible for organizations to take
|
||||
deeper ownership of where they want to run their services and how they
|
||||
manage their application data. Kudos to the Upbound team for
|
||||
architecting and delivering this critical, open source and community
|
||||
driven component of the cloud neutral future.”
|
||||
driven component of the cloud-neutral future.”
|
||||
</p>
|
||||
<div class="signature">
|
||||
<div class="name">Spencer Kimball</div>
|
||||
<div class="title">CEO and Founder of Cockroach Labs</div>
|
||||
<a href="https://www.cockroachlabs.com/"
|
||||
><img src="{{ "/images/cockroachlabs.svg" | relative_url }}"
|
||||
/></a>
|
||||
<div class="exec-img">
|
||||
<img src="{{ "/images/spencer.jpg" | relative_url }}" srcset="{{ "/images/spencer.jpg" | relative_url }} 1x, {{ "/images/spencer@2x.jpg" | relative_url }} 2x, {{ "/images/spencer@3x.jpg" | relative_url }} 3x" alt="Spencer Kimball" />
|
||||
</div>
|
||||
<div class="exec-info">
|
||||
<div class="name">Spencer Kimball</div>
|
||||
<div class="title">CEO and Founder of Cockroach Labs</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="testimonial col-4_md-6_sm-12">
|
||||
<div class="testimonial col-6_md-12">
|
||||
<h3>
|
||||
“Crossplane has the ability to be at the heart of tomorrow’s multicloud deployments.”
|
||||
</h3>
|
||||
<p>
|
||||
“It's exciting to see open cloud standards like Crossplane emerge, that will allow new multicloud technologies like
|
||||
YugabyteDB to take advantage of the broader cloud ecosystem, on-premise and in-public cloud. Future work with
|
||||
Crossplane.io and Rook.io is a natural fit with the Kubernetes ecosystem.”
|
||||
</p>
|
||||
<div class="signature">
|
||||
<div class="exec-img">
|
||||
<img src="{{ "/images/karthik.jpg" | relative_url }}" srcset="{{ "/images/karthik.jpg" | relative_url }} 1x, {{ "/images/karthik@2x.jpg" | relative_url }} 2x, {{ "/images/karthik@3x.jpg" | relative_url }} 3x" alt="Karthik Ranganathan" />
|
||||
</div>
|
||||
<div class="exec-info">
|
||||
<div class="name">Karthik Ranganathan</div>
|
||||
<div class="title">Co-Founder and CTO of Yugabyte</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="testimonial col-6_md-12">
|
||||
<h3>
|
||||
“We created Crossplane to empower organizations to use the best
|
||||
of all the clouds.”
|
||||
|
@ -264,14 +245,19 @@ stylesheet: index
|
|||
cost.”
|
||||
</p>
|
||||
<div class="signature">
|
||||
<div class="name">Bassam Tabbara</div>
|
||||
<div class="title">CEO and Founder of Upbound</div>
|
||||
<a href="https://upbound.io"><img src="{{ "/images/upbound.svg" | relative_url }}"/></a>
|
||||
<div class="exec-img">
|
||||
<img src="{{ "/images/bassam.jpg" | relative_url }}" srcset="{{ "/images/bassam.jpg" | relative_url }} 1x, {{ "/images/bassam@2x.jpg" | relative_url }} 2x, {{ "/images/bassam@3x.jpg" | relative_url }} 3x" />
|
||||
</div>
|
||||
<div class="exec-info">
|
||||
<div class="name">Bassam Tabbara</div>
|
||||
<div class="title">CEO and Founder of Upbound</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="community">
|
||||
<div>
|
||||
<div class="grid-center">
|
||||
|
@ -283,52 +269,65 @@ stylesheet: index
|
|||
</p>
|
||||
</div>
|
||||
|
||||
<div class="col-4_md-6_xs-12 tile">
|
||||
<div class="col-3_md-6_xs-12 tile">
|
||||
<div class="slack">
|
||||
<div class="topbar"></div>
|
||||
<div class="content">
|
||||
<img src="{{ "/images/slack.svg" | relative_url }}" />
|
||||
<img src="{{ "/images/slack.svg" | relative_url }}" alt="slack" />
|
||||
<h3>Slack</h3>
|
||||
<p>
|
||||
Join the Crossplane team and community members in our Slack group.
|
||||
</p>
|
||||
<button
|
||||
class="grey"
|
||||
onclick="window.location.href= '{{slackLink}}';"
|
||||
onclick="window.location.href= '{{ slackLink }}';"
|
||||
>
|
||||
Join Slack
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-4_md-6_xs-12 tile">
|
||||
<div class="col-3_md-6_xs-12 tile">
|
||||
<div class="github">
|
||||
<div class="topbar"></div>
|
||||
<div class="content">
|
||||
<img src="{{ "/images/github.svg" | relative_url }}" />
|
||||
<img src="{{ "/images/github.svg" | relative_url }}" alt="github" />
|
||||
<h3>GitHub</h3>
|
||||
<p>Watch and star Crossplane on Gitub and follow our progress.</p>
|
||||
<button
|
||||
class="grey"
|
||||
onclick="window.location.href = '{{githubLink}}';"
|
||||
onclick="window.location.href = '{{ githubLink }}';"
|
||||
>
|
||||
Visit GitHub
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-4_md-6_xs-12 tile">
|
||||
<div class="forum">
|
||||
<div class="col-3_md-6_xs-12 tile">
|
||||
<div class="youtube">
|
||||
<div class="topbar"></div>
|
||||
<div class="content">
|
||||
<img src="{{ "/images/forum.svg" | relative_url }}" />
|
||||
<h3>Forum</h3>
|
||||
<p>Chat about your use case with others on the Crossplane forum.</p>
|
||||
<img src="{{ "/images/youtube.svg" | relative_url }}" alt="youtube" />
|
||||
<h3>YouTube</h3>
|
||||
<p>Join us discussing features and upcoming news for Crossplane.</p>
|
||||
<button
|
||||
class="grey"
|
||||
onclick="window.location.href = '{{forumLink}}';"
|
||||
onclick="window.location.href = '{{ youtubeLink }}';"
|
||||
>
|
||||
Visit Forum
|
||||
Visit YouTube
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-3_md-6_xs-12 tile">
|
||||
<div class="podcast">
|
||||
<div class="topbar"></div>
|
||||
<div class="content">
|
||||
<img src="{{ "/images/podcast.svg" | relative_url }}" alt="podcast" />
|
||||
<h3>Podcast</h3>
|
||||
<p>Listen to the Crossplane podcast and learn about our roadmap.</p>
|
||||
<button class="grey" onclick="window.location.href = '{{ podcastLink }}';">
|
||||
Visit Podcast
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -337,7 +336,7 @@ stylesheet: index
|
|||
|
||||
<p class="join">
|
||||
You can also join us every other week for our
|
||||
<a href="{{communityMeetingLink}}">community meeting</a> call to discuss
|
||||
<a href="{{ communityMeetingLink }}">community meeting</a> call to discuss
|
||||
Crossplane
|
||||
</p>
|
||||
</div>
|
||||
|
|