Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • websites/monnaie-libre-fr
  • midiland/monnaie-libre-fr
  • websites/moneda-libre-org
  • atlasan/g1-monetalibera-it
  • Processus42/monnaie-libre-fr
  • diablade/monnaie-libre-fr
  • Spiranne/monnaie-libre-fr
7 results
Show changes
Showing
with 378 additions and 120 deletions
...@@ -14,7 +14,15 @@ ...@@ -14,7 +14,15 @@
class="absolute inset-0 -z-10" class="absolute inset-0 -z-10"
/> />
<div <div
class="absolute inset-0 -z-1 bg-gradient-to-t from-black via-transparent opacity-50" class="
absolute
inset-0
-z-1
bg-gradient-to-t
from-black
via-transparent
opacity-50
"
/> />
</div> </div>
</template> </template>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<PageToc v-if="document.toc" :document="document" class="mb-8" /> <PageToc v-if="document.toc" :document="document" class="mb-8" />
<PageRelated :document="document" path="faq" /> <PageRelated :document="document" path="faq" class="mb-8" />
</template> </template>
</PageContainer> </PageContainer>
</template> </template>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</li> </li>
<li> <li>
<a <a
:href="`https://forum.monnaie-libre.fr/search?q=${query}`" :href="`${$config.forum_url}/search?q=${query}`"
class="hover:underline" class="hover:underline"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
......
...@@ -37,49 +37,15 @@ ...@@ -37,49 +37,15 @@
<HomeNextEvents /> <HomeNextEvents />
<section id="map"> <HomeMap />
<div class="container flex items-end mb-3">
<FaviconMap class="w-12 h-12 mr-3 fill-current dark:text-gray-100" />
<a
href="https://carte.monnaie-libre.fr"
target="_blank"
class="
group
bg-clip-text bg-gradient-to-r
font-extrabold
from-purple-800
hover:underline
text-4xl text-transparent
to-blue-600
uppercase
"
rel="noopener noreferrer"
>
Carte
<fa
icon="external-link-alt"
class="w-3 ml-1.5 text-gray-500 opacity-0 group-hover:opacity-75"
/>
</a>
</div>
<iframe
src="https://carte.monnaie-libre.fr/?zoom=5"
class="w-screen"
style="height: 50vh; min-height: 600px"
title="Carte monnaie-libre"
/>
</section>
</div> </div>
</template> </template>
<script> <script>
import FaviconMap from '~/static/img/favicon-map-g1.svg?inline' import { headDocument as head } from '~/libs/helpers'
export default { export default {
name: 'HomePage', name: 'HomePage',
components: {
FaviconMap,
},
async asyncData({ $content }) { async asyncData({ $content }) {
const hero = await $content('ui/home-hero').fetch() const hero = await $content('ui/home-hero').fetch()
const intro = await $content('ui/home-intro').fetch() const intro = await $content('ui/home-intro').fetch()
...@@ -91,6 +57,15 @@ export default { ...@@ -91,6 +57,15 @@ export default {
sections, sections,
} }
}, },
data() {
return {
// for head meta tags
document: {
title: "Repenser la création monétaire...et l'expérimenter !",
},
}
},
head,
} }
</script> </script>
......
...@@ -11,23 +11,14 @@ ...@@ -11,23 +11,14 @@
<template #sidebar> <template #sidebar>
<PageToc v-if="document.toc" :document="document" class="mb-8" /> <PageToc v-if="document.toc" :document="document" class="mb-8" />
<aside v-if="pagesWithTerm.length" class="mb-8"> <PageSidebarAside
<h1 class="text-xl uppercase text-gray-400 font-bold mb-2"> v-if="pagesWithTerm.length"
Pages contenant "{{ document.title }}" :title="`Pages contenant «${document.title}»`"
</h1> :items="pagesWithTerm"
class="mb-8"
<nuxt-link />
v-for="(item, index) of pagesWithTerm"
:key="index"
v-prevent-last-char-break
:to="item.path"
class="block hover:text-hover mt-2"
>
{{ item.title }}
</nuxt-link>
</aside>
<PageRelated :document="document" path="lexique" /> <PageRelated :document="document" path="lexique" class="mb-8" />
</template> </template>
</PageContainer> </PageContainer>
</template> </template>
......
...@@ -11,7 +11,17 @@ ...@@ -11,7 +11,17 @@
v-for="item of alphabet" v-for="item of alphabet"
:key="item" :key="item"
:to="`#${item}`" :to="`#${item}`"
class="bg-gray-100 font-semibold h-6 hover:bg-hover-light leading-6 rounded-full text-center text-gray-200 text-sm w-6 my-2" class="
bg-gray-100
font-semibold
h-6
hover:bg-hover-light
leading-6
rounded-full
text-center text-gray-200 text-sm
w-6
my-2
"
:class=" :class="
computedResults.map((item) => item.firstLetter).includes(item) computedResults.map((item) => item.firstLetter).includes(item)
? 'bg-gray-200 text-gray-600' ? 'bg-gray-200 text-gray-600'
......
...@@ -16,7 +16,16 @@ ...@@ -16,7 +16,16 @@
)" )"
:key="item.path" :key="item.path"
:to="item.path.replace(/^\/pages\//, '/')" :to="item.path.replace(/^\/pages\//, '/')"
class="block cursor-pointer dark-hover:bg-gray-700 hover:bg-gray-100 mb-2 p-2 rounded-lg transition-colors" class="
block
cursor-pointer
dark-hover:bg-gray-700
hover:bg-gray-100
mb-2
p-2
rounded-lg
transition-colors
"
> >
<div <div
class="rounded text-gray-400 text-xs uppercase font-semibold" class="rounded text-gray-400 text-xs uppercase font-semibold"
...@@ -65,7 +74,16 @@ ...@@ -65,7 +74,16 @@
:href="item.href" :href="item.href"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
class="block cursor-pointer dark-hover:bg-gray-700 hover:bg-gray-100 mb-2 p-2 rounded-lg transition-colors" class="
block
cursor-pointer
dark-hover:bg-gray-700
hover:bg-gray-100
mb-2
p-2
rounded-lg
transition-colors
"
> >
<h1 class="text-xl" v-html="item.title" /> <h1 class="text-xl" v-html="item.title" />
<div <div
...@@ -128,7 +146,7 @@ export default { ...@@ -128,7 +146,7 @@ export default {
} }
let results = await fetch( let results = await fetch(
`https://forum.monnaie-libre.fr/search.json?q=${query}` `${this.$config.forum_url}/search.json?q=${query}`
).then((response) => response.json()) ).then((response) => response.json())
if (!results.posts) { if (!results.posts) {
...@@ -145,7 +163,7 @@ export default { ...@@ -145,7 +163,7 @@ export default {
post_number: item.post_number, post_number: item.post_number,
title: topic.title, title: topic.title,
description: item.blurb, description: item.blurb,
href: `https://forum.monnaie-libre.fr/t/${topic.slug}/${item.topic_id}/${item.post_number}`, href: `${this.$config.forum_url}/t/${topic.slug}/${item.topic_id}/${item.post_number}`,
} }
}) })
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
<script> <script>
import categories from '~/static/settings/categories.json' import categories from '~/static/settings/categories.json'
const defaultSelected = 'Mises en avant' const defaultSelected = 'Top'
export default { export default {
name: 'RessourcesPage', name: 'RessourcesPage',
...@@ -59,16 +59,22 @@ export default { ...@@ -59,16 +59,22 @@ export default {
selectedCategories() { selectedCategories() {
this.$refs.searchContainer.search(true) this.$refs.searchContainer.search(true)
}, },
'$route.query.filters'() {
this.setSelectedCategoriesFromRouteQuery()
},
}, },
mounted() { mounted() {
// Get url params this.setSelectedCategoriesFromRouteQuery()
const query = this.$route.query
if (query.filters)
this.selectedCategories = Array.isArray(query.filters)
? query.filters
: [query.filters]
}, },
methods: { methods: {
setSelectedCategoriesFromRouteQuery() {
// Get url params
const query = this.$route.query
if (query.filters)
this.selectedCategories = Array.isArray(query.filters)
? query.filters
: [query.filters]
},
async searchFunction(query) { async searchFunction(query) {
return await this.$content('ressources') return await this.$content('ressources')
.search(query) .search(query)
......
...@@ -4,13 +4,13 @@ site_url: https://monnaie-libre.fr ...@@ -4,13 +4,13 @@ site_url: https://monnaie-libre.fr
logo_url: /admin/favicon-admin.svg logo_url: /admin/favicon-admin.svg
backend: backend:
## Local backend configuration ## Local backend configuration
# name: git-gateway # name: git-gateway
# branch: master # branch: master
# local_backend: true # local_backend: true
## gitlab backend configuration https://www.netlifycms.org/docs/gitlab-backend/ ## gitlab backend configuration https://www.netlifycms.org/docs/gitlab-backend/
name: gitlab name: gitlab
repo: "websites/monnaie-libre-fr" repo: 'websites/monnaie-libre-fr'
auth_type: pkce auth_type: pkce
app_id: 6e22ae7895c421f05b6f5443f29db4008e62889efe9166e04d859677e965a173 # Application ID from https://git.duniter.org/groups/websites/-/settings/applications app_id: 6e22ae7895c421f05b6f5443f29db4008e62889efe9166e04d859677e965a173 # Application ID from https://git.duniter.org/groups/websites/-/settings/applications
api_root: https://git.duniter.org/api/v4 api_root: https://git.duniter.org/api/v4
...@@ -23,6 +23,8 @@ media_folder: static/uploads ...@@ -23,6 +23,8 @@ media_folder: static/uploads
public_folder: /uploads public_folder: /uploads
locale: 'fr' locale: 'fr'
slug:
clean_accents: true
# Docs: https://www.netlifycms.org/docs/configuration-options/#collections # Docs: https://www.netlifycms.org/docs/configuration-options/#collections
collections: collections:
...@@ -33,10 +35,15 @@ collections: ...@@ -33,10 +35,15 @@ collections:
format: frontmatter format: frontmatter
folder: content/pages folder: content/pages
create: true create: true
preview_path: "{{slug}}" preview_path: '{{slug}}'
fields: fields:
- { label: Titre, name: title, widget: string } - { label: Titre, name: title, widget: string }
- { label: Résumé, name: description, widget: string, hint: Le résumé est affiché dans les résultats de recherche. } - {
label: Résumé,
name: description,
widget: string,
hint: Le résumé est affiché dans les résultats de recherche.,
}
- { label: Contenu, name: body, widget: markdown } - { label: Contenu, name: body, widget: markdown }
- name: blog - name: blog
...@@ -44,12 +51,33 @@ collections: ...@@ -44,12 +51,33 @@ collections:
format: frontmatter format: frontmatter
folder: content/blog folder: content/blog
create: true create: true
preview_path: "blog/{{slug}}" preview_path: 'blog/{{slug}}'
fields: fields:
- { label: Titre, name: title, widget: string } - { label: Titre, name: title, widget: string }
- { label: Résumé, name: description, widget: string, hint: Le résumé est affiché dans les listes d'articles de blog. } - {
- { label: Date de publication, name: createdAt, widget: datetime, hint: Permet de classer les articles de blog. Le plus récent en premier. } label: Résumé,
- { label: Catégorie, name: categories, required: false, widget: relation, collection: settings, file: categories, search_fields: ["blog.*.title"], value_field: blog.*.title, multiple: true, options_length: 4 } name: description,
widget: string,
hint: Le résumé est affiché dans les listes d'articles de blog.,
}
- {
label: Date de publication,
name: createdAt,
widget: datetime,
hint: Permet de classer les articles de blog. Le plus récent en premier.,
}
- {
label: Catégorie,
name: categories,
required: false,
widget: relation,
collection: settings,
file: categories,
search_fields: ['blog.*.title'],
value_field: blog.*.title,
multiple: true,
options_length: 4,
}
- { label: Contenu, name: body, widget: markdown } - { label: Contenu, name: body, widget: markdown }
- name: faq - name: faq
...@@ -58,10 +86,15 @@ collections: ...@@ -58,10 +86,15 @@ collections:
format: frontmatter format: frontmatter
folder: content/faq folder: content/faq
create: true create: true
preview_path: "faq/{{slug}}" preview_path: 'faq/{{slug}}'
fields: fields:
- { label: Question, name: title, widget: string } - { label: Question, name: title, widget: string }
- { label: Résumé, name: description, widget: string, hint: Le résumé est affiché dans la liste des questions. } - {
label: Résumé,
name: description,
widget: string,
hint: Le résumé est affiché dans la liste des questions.,
}
- { label: Réponse, name: body, widget: markdown } - { label: Réponse, name: body, widget: markdown }
- name: lexique - name: lexique
...@@ -71,11 +104,21 @@ collections: ...@@ -71,11 +104,21 @@ collections:
format: frontmatter format: frontmatter
folder: content/lexique folder: content/lexique
create: true create: true
preview_path: "lexique/{{slug}}" preview_path: 'lexique/{{slug}}'
fields: fields:
- { label: Titre, name: title, widget: string } - { label: Titre, name: title, widget: string }
- { label: Résumé, name: description, widget: string, hint: Le résumé est affiché dans le lexique et dans les bulles d'info. } - {
- { label: Synonymes, name: synonyms, widget: list, hint: Synonymes du titre. Séparé par des virgules. Insensible à la casse. } label: Résumé,
name: description,
widget: string,
hint: Le résumé est affiché dans le lexique et dans les bulles d'info.,
}
- {
label: Synonymes,
name: synonyms,
widget: list,
hint: Synonymes du titre. Séparé par des virgules. Insensible à la casse.,
}
- { label: Définition, name: body, widget: markdown } - { label: Définition, name: body, widget: markdown }
- name: ressources - name: ressources
...@@ -102,7 +145,7 @@ collections: ...@@ -102,7 +145,7 @@ collections:
widget: relation widget: relation
collection: settings collection: settings
file: categories file: categories
search_fields: ["ressources.*.title"] search_fields: ['ressources.*.title']
value_field: ressources.*.title value_field: ressources.*.title
multiple: true multiple: true
- { label: Portefeuille Ğ1, name: wallet, required: false } - { label: Portefeuille Ğ1, name: wallet, required: false }
...@@ -113,6 +156,19 @@ collections: ...@@ -113,6 +156,19 @@ collections:
- { name: url } - { name: url }
- { label: Icône, name: icon, required: false } - { label: Icône, name: icon, required: false }
- name: ui
label: Éléments UI divers
label_singular: Élément UI
description: Éléments de l'interface utilisateur et sections particulières du site ; page d'accueil, boites de dialogues...
format: frontmatter
folder: content/ui
create: true
preview_path: 'ui/{{slug}}'
fields:
- { label: Titre, name: title, widget: string }
- { label: Résumé, name: description, widget: string, required: false }
- { label: Contenu, name: body, widget: markdown, required: false }
- name: settings - name: settings
label: Paramètres label: Paramètres
description: Paramètres généraux du site description: Paramètres généraux du site
...@@ -142,7 +198,7 @@ collections: ...@@ -142,7 +198,7 @@ collections:
widget: list widget: list
fields: fields:
- { label: Titre, name: title } - { label: Titre, name: title }
- { name: url } - { name: url, required: false }
- { label: Icône, name: icon, required: false } - { label: Icône, name: icon, required: false }
- label: Menus du footer - label: Menus du footer
name: menu_footer name: menu_footer
...@@ -151,7 +207,7 @@ collections: ...@@ -151,7 +207,7 @@ collections:
- label: Colonne - label: Colonne
name: column name: column
widget: object widget: object
summary: "{{fields.title}}" summary: '{{fields.title}}'
fields: fields:
- { label: Titre, name: title } - { label: Titre, name: title }
- label: Menus - label: Menus
...@@ -161,12 +217,46 @@ collections: ...@@ -161,12 +217,46 @@ collections:
- { label: Titre, name: title } - { label: Titre, name: title }
- { name: url } - { name: url }
- { label: Icône, name: icon, required: false } - { label: Icône, name: icon, required: false }
- label: Ressources
name: ressources
widget: object
summary: '{{fields.title}}'
fields:
- { label: Titre, name: title }
- name: general - name: general
label: Général label: Général
file: static/settings/globals.json file: static/settings/globals.json
fields: fields:
- { label: Url du site, name: site_url, widget: string } - { label: Url du site, name: site_url, widget: string }
- { label: Titre du site, name: site_title, widget: string } - { label: Titre du site, name: site_title, widget: string }
- { label: Logo du site, name: site_logo, widget: image, allow_multiple: false } - {
- { label: Meta description du site, name: site_description, widget: string } label: Logo du site,
- { label: Url du forum, name: forum_url, widget: string } name: site_logo,
\ No newline at end of file widget: image,
allow_multiple: false,
}
- {
label: Meta description du site,
name: site_description,
widget: string,
}
- { label: Url du forum, name: forum_url, widget: string }
- { label: Url de la carte, name: map_url, widget: string }
- {
label: Compte Twitter,
name: twitter_user,
widget: string,
hint: Sans @,
}
- {
label: Hashtags pour les réseaux sociaux,
name: social_networks_hashtags,
widget: string,
hint: 'Sans #, séparé par des virgules',
}
- {
label: Groupe Facebook,
name: facebook_group,
widget: string,
hint: Url entier,
}
...@@ -71,6 +71,9 @@ ...@@ -71,6 +71,9 @@
aside a[href='#/collections/ressources'] span::before { aside a[href='#/collections/ressources'] span::before {
content: '\f0c1'; content: '\f0c1';
} }
aside a[href='#/collections/ui'] span::before {
content: '\f61f';
}
aside a[href='#/collections/settings'] span::before { aside a[href='#/collections/settings'] span::before {
content: '\f085'; content: '\f085';
} }
......
<svg width="1600" height="1200" viewBox="0 0 1600 1200" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="1600" height="1200" fill="white"/>
<path d="M92.8 795.9H346.3H598.8H741.5C743.4 795.9 743.4 792.9 741.5 792.9C657 792.9 572.5 792.9 488 792.9C403.8 792.9 319.7 792.9 235.5 792.9C187.9 792.9 140.4 792.9 92.8 792.9C90.9 792.9 90.9 795.9 92.8 795.9Z" fill="#E8E8E8"/>
<path d="M232 876.7C236.8 881.5 241.6 886.3 246.3 891C247.7 892.4 249.8 890.2 248.4 888.9C243.6 884.1 238.8 879.3 234.1 874.6C232.7 873.2 230.6 875.4 232 876.7Z" fill="#E8E8E8"/>
<path d="M706.4 874H987.6H1269.8H1428.4C1430.3 874 1430.3 871 1428.4 871C1334.7 871 1240.9 871 1147.2 871C1053.1 871 959.1 871 865 871C812.1 871 759.3 871 706.4 871C704.5 871 704.5 874 706.4 874Z" fill="#E8E8E8"/>
<path d="M849.9 808.6H1103.9H1358.9H1501.9C1503.8 808.6 1503.8 805.6 1501.9 805.6C1417.2 805.6 1332.6 805.6 1247.9 805.6C1162.9 805.6 1077.9 805.6 992.9 805.6C945.2 805.6 897.6 805.6 849.9 805.6C847.9 805.6 847.9 808.6 849.9 808.6Z" fill="#E8E8E8"/>
<path d="M139 1028.6H497.9H599.6C601.5 1028.6 601.5 1025.6 599.6 1025.6C480 1025.6 360.3 1025.6 240.7 1025.6C206.8 1025.6 172.9 1025.6 139 1025.6C137.1 1025.6 137.1 1028.6 139 1028.6Z" fill="#E8E8E8"/>
<path d="M109.8 790.2C100.9 781.3 94.6 770.6 91.1 758.5C90.6 759.1 90.1 759.8 89.7 760.4C92.3 760.2 95 760 97.6 759.8C99.1 759.7 99.6 757.9 98.4 757C94.3 754.2 91.7 750 90.7 745.2C90.2 742.6 90.2 739.9 90.7 737.3C91.2 735.2 92.8 733.3 93.2 731.4C93.8 728.1 90 723 88.7 719.9C86.2 714.1 84 708.3 81.9 702.3C74 679.6 69 656 67 632.1C66.4 632.6 65.7 633.1 65.1 633.5C68.1 634.6 70.4 636.4 72.4 639C73.3 640.3 75.7 639.6 75.1 637.8C70.8 622.9 69.6 607.6 71.5 592.2C70.6 592.6 69.8 592.9 68.9 593.3C76.7 600.5 81.3 609.9 85 619.6C89.1 630.6 92.7 641.9 96.4 653.1C104.1 676.6 111.5 700.2 118.5 723.8C119 725.3 121.7 725.1 121.4 723.4C122.8 720 123.9 719.2 124.6 721.2C125 722 125.4 722.8 125.8 723.6C126.6 725.2 127.4 726.8 128.2 728.4C129.6 731.4 131 734.4 132.3 737.4C135 743.5 138.7 748.7 141.7 754.7C148 767 151.1 780.7 151 794.5C151 796.4 154 796.4 154 794.5C154 781.3 151.3 768.2 145.7 756.2C142.8 750 138.5 744.6 135.9 738.4C132.9 731.2 129.5 724.2 125.8 717.4C125.6 716.9 125 716.7 124.5 716.7C120.6 716.7 117.8 719.6 118.3 723.5C119.3 723.4 120.3 723.2 121.2 723.1C113.8 698.1 106 673.3 97.9 648.6C91.5 629.2 86.5 605.6 70.9 591.2C69.9 590.2 68.5 591 68.3 592.3C66.3 607.9 67.6 623.6 72 638.7C72.9 638.3 73.8 637.9 74.7 637.5C72.3 634.2 69.5 632.1 65.6 630.6C64.7 630.3 63.6 631.1 63.7 632C65.9 658.3 71.6 684.3 80.9 709.1C83.1 714.9 85.5 720.7 88.1 726.4C89.5 729.5 89.9 730.2 88.7 733.2C88 735 87.5 736.9 87.3 738.8C86.3 747 90 755 96.8 759.7C97.1 758.8 97.3 757.8 97.6 756.9C95 757.1 92.3 757.3 89.7 757.5C88.7 757.6 88 758.4 88.3 759.4C91.9 772 98.5 783.2 107.8 792.4C109 793.6 111.2 791.5 109.8 790.2Z" fill="#E8E8E8"/>
<path d="M135.8 977.6C137.7 977.6 137.7 974.6 135.8 974.6C133.9 974.6 133.9 977.6 135.8 977.6Z" fill="#E8E8E8"/>
<path d="M895 1068.6H1231.4H1326.2C1328.1 1068.6 1328.1 1065.6 1326.2 1065.6C1214.1 1065.6 1101.9 1065.6 989.8 1065.6C958.2 1065.6 926.6 1065.6 895 1065.6C893 1065.6 893 1068.6 895 1068.6Z" fill="#E8E8E8"/>
<path d="M821.1 778.2C814.3 764.6 814.2 748.6 820.8 734.9C820 735 819.2 735.1 818.4 735.2C821.1 737.4 823.8 739.6 826.4 741.7C827.3 742.4 829.1 742.1 829 740.6C828.1 727.8 827.5 710.6 837.9 701.1C839.5 699.7 842.5 698.8 843.4 696.9C844.1 695.5 843.9 692.6 844.1 691.1C844.5 688.2 844.9 685.4 845.3 682.5C846.6 673.8 848.2 665.2 850 656.6C857.7 620.8 870.2 586.2 887 553.7C886.1 553.6 885.2 553.5 884.3 553.3C889.1 581.8 884.7 610.5 880.2 638.8C880 640.3 882.2 641.6 882.9 640C884.5 636.4 887.1 634.1 891 633.1C890.4 632.6 889.7 632.1 889.1 631.7C891.6 674.4 885.7 717.2 871.8 757.7C871.4 758.8 872.6 759.8 873.6 759.5C877.1 758.5 880.7 757.6 884.2 756.6C883.6 756.3 883 755.9 882.4 755.6C885.7 764.2 884.8 773.2 879.7 780.9C878.6 782.5 881.2 784 882.3 782.4C887.7 774.1 888.8 764 885.3 754.8C885 754 884.3 753.5 883.5 753.8C880 754.8 876.4 755.7 872.9 756.7L874.7 758.5C888.6 717.8 894.5 674.7 892.1 631.7C892 630.7 891.2 630 890.2 630.3C885.7 631.5 882.3 634.3 880.3 638.6C881.2 639 882.1 639.4 883 639.8C887.6 611 892 581.8 887.1 552.7C886.9 551.4 884.9 551.2 884.4 552.3C867.1 585.8 854.3 621.6 846.6 658.5C844.6 668 843 677.6 841.7 687.2C841.2 690.6 841.6 694.3 839.1 696.6C837 698.4 834.9 699.8 833.2 702.1C825 712.7 825.2 728.1 826.1 740.8C827 740.4 827.8 740.1 828.7 739.7C826 737.5 823.3 735.3 820.7 733.2C820 732.6 818.8 732.6 818.3 733.5C811.2 748.3 811.3 765.2 818.6 779.8C819.4 781.4 822 779.9 821.1 778.2Z" fill="#E8E8E8"/>
<path d="M168 331.7C175.953 331.7 182.4 325.253 182.4 317.3C182.4 309.347 175.953 302.9 168 302.9C160.047 302.9 153.6 309.347 153.6 317.3C153.6 325.253 160.047 331.7 168 331.7Z" fill="#EC615B"/>
<path d="M1269.4 110.4C1275.09 110.4 1279.7 105.789 1279.7 100.1C1279.7 94.4115 1275.09 89.8 1269.4 89.8C1263.71 89.8 1259.1 94.4115 1259.1 100.1C1259.1 105.789 1263.71 110.4 1269.4 110.4Z" fill="#EC615B"/>
<path d="M1456.3 353.3C1460.83 353.3 1464.5 349.629 1464.5 345.1C1464.5 340.571 1460.83 336.9 1456.3 336.9C1451.77 336.9 1448.1 340.571 1448.1 345.1C1448.1 349.629 1451.77 353.3 1456.3 353.3Z" fill="#EC615B"/>
<path d="M664.5 554.6C667.759 554.6 670.4 551.959 670.4 548.7C670.4 545.442 667.759 542.8 664.5 542.8C661.242 542.8 658.6 545.442 658.6 548.7C658.6 551.959 661.242 554.6 664.5 554.6Z" fill="#EC615B"/>
<path d="M202.4 375.6C208.309 375.6 213.1 370.809 213.1 364.9C213.1 358.99 208.309 354.2 202.4 354.2C196.491 354.2 191.7 358.99 191.7 364.9C191.7 370.809 196.491 375.6 202.4 375.6Z" fill="#5B21B6"/>
<path d="M481.1 115.5C485.353 115.5 488.8 112.053 488.8 107.8C488.8 103.548 485.353 100.1 481.1 100.1C476.847 100.1 473.4 103.548 473.4 107.8C473.4 112.053 476.847 115.5 481.1 115.5Z" fill="#5B21B6"/>
<path d="M1452.1 592.1C1460.49 592.1 1467.3 585.295 1467.3 576.9C1467.3 568.505 1460.49 561.7 1452.1 561.7C1443.71 561.7 1436.9 568.505 1436.9 576.9C1436.9 585.295 1443.71 592.1 1452.1 592.1Z" fill="#5B21B6"/>
<path d="M1088.1 230.3C1096.11 230.3 1102.6 223.808 1102.6 215.8C1102.6 207.792 1096.11 201.3 1088.1 201.3C1080.09 201.3 1073.6 207.792 1073.6 215.8C1073.6 223.808 1080.09 230.3 1088.1 230.3Z" fill="#5B21B6"/>
<path d="M972.9 65.9C975.6 63.3 979.4 62 983.1 62.8C987.4 63.7 989 66.8 991.9 69.6C994.6 72.3 998.1 73.4 1001.8 72.4C1006 71.3 1009.5 68.2 1013.1 65.9C1018.7 62.2 1023 60.7 1028.3 65.8C1035.8 72.9 1043.1 70.2 1051.5 65.9C1056.4 63.4 1062.1 59.8 1067.9 60.9C1073.4 62 1077.9 67.3 1083.8 66.7C1086.2 66.4 1087.9 65.1 1089.7 63.5C1092.9 60.4 1095.2 58.8 1099.5 61.3C1103.7 63.7 1107.1 67.2 1112.3 66.4C1114.2 66.1 1113.4 63.2 1111.5 63.5C1106.1 64.3 1102.3 58.3 1097.3 57.1C1092.5 56 1090.5 59.2 1087.2 61.9C1080.9 66.9 1074.6 59 1068.2 58C1063.4 57.2 1058.8 59.1 1054.6 61.1C1049.8 63.4 1044.9 67 1039.4 67.5C1032.6 68.1 1030.6 61.5 1024.9 59.7C1016 56.8 1009.3 67.1 1001.6 69.5C994.4 71.7 991.9 62.7 985.9 60.6C980.6 58.7 974.9 60.1 970.9 63.9C969.4 65.1 971.5 67.2 972.9 65.9Z" fill="#5B21B6"/>
<path d="M1078.5 88.9C1080.5 86.1 1083.7 82.1 1087.3 81.5C1092.2 80.7 1093.1 85.4 1095.9 87.8C1098.5 90 1101.5 90.3 1104.6 89.1C1109.1 87.3 1112.3 83.1 1117 81.7C1122.6 80 1127.5 84.5 1132.4 86.4C1136.2 87.9 1139.9 88 1143.4 85.8C1146 84.2 1148.1 81.8 1151.3 81.4C1153.8 81.1 1156.4 82.2 1158.6 83.3C1165.6 86.8 1172.6 93.8 1181.1 91C1182.9 90.4 1182.1 87.5 1180.3 88.1C1170.6 91.3 1162.9 79.7 1153.7 78.5C1148.5 77.8 1146 80.9 1141.9 83.2C1135.7 86.7 1130.5 81.6 1124.8 79.4C1120.7 77.8 1117 78.1 1113.1 80.1C1108.7 82.4 1103 89.4 1097.9 85.5C1094.2 82.7 1093.2 78 1087.7 78.4C1082.6 78.9 1078.6 83.5 1075.8 87.3C1074.8 88.9 1077.4 90.4 1078.5 88.9Z" fill="#5B21B6"/>
<path d="M141.3 507.6C146.5 502.6 154.1 500.9 161 503.1C165.1 504.5 168.7 510.1 173.2 509.5C175.4 509.2 176.9 507.5 178.4 506.1C181.5 503.3 184.3 501 188.7 500.8C195.4 500.5 200.2 505.7 206.3 507.7C210.7 509.2 214.6 508.1 217.8 504.9C219.8 502.8 221.4 499.9 224.6 499.3C227.3 498.8 229.8 500.2 232 501.5C238.3 505.4 244.8 512.9 252.8 509.4C254.6 508.6 253 506 251.3 506.8C242.9 510.5 235.1 497.2 226.9 496.3C222.3 495.8 219.5 498.6 216.6 501.8C209.9 509.2 203.4 502.2 196.4 499.3C192 497.4 187.1 497.3 182.6 499.3C180.3 500.3 178.6 501.8 176.8 503.6C174.8 505.5 173 507.1 169.9 505.1C168.9 504.5 168 503.4 167 502.7C158.4 497 146.6 498.4 139.3 505.5C137.8 506.8 139.9 508.9 141.3 507.6Z" fill="#5B21B6"/>
<path d="M416.8 431.9C418.6 418 440.4 431.3 447.9 430.8C452.1 430.6 454.5 428.5 457.7 426C462.1 422.6 466.1 424.2 470.5 426.6C475.1 429.1 480.6 433.3 486.2 431.6C487.5 431.2 488.5 430.4 489.6 429.5C492.7 427.1 495 428 498.5 429C504.2 430.8 509.9 432.6 515.6 434.4C517.4 435 518.2 432.1 516.4 431.5C509.8 429.4 503.3 427.1 496.6 425.3C494.8 424.8 492.9 424.3 491 424.9C488.8 425.7 487.5 427.9 485.3 428.6C478.3 431 470.7 421.5 463.6 420.9C459.7 420.6 457.2 422.4 454.3 424.7C447.2 430.4 440.1 426.2 432.6 423.7C425.1 421.3 414.7 422.3 413.5 431.7C413.6 433.8 416.6 433.8 416.8 431.9Z" fill="#5B21B6"/>
<path d="M464.5 414.9C468.6 409.2 473.3 405 480.8 407.5C485.5 409.1 489.6 412 494.8 411.5C499.3 411.1 500.8 407.8 504.2 405.5C507.6 403.3 511 405.2 514.6 406.4C518.1 407.5 521.5 408.5 525 409.6C526.9 410.2 527.6 407.3 525.8 406.7C521.7 405.5 517.6 404.2 513.5 403C510.8 402.2 507.7 400.9 504.8 401.4C502.9 401.7 501.8 402.8 500.5 404C499.4 405.1 498.6 406.9 497.2 407.7C494.8 409.1 491.9 408.6 489.5 407.9C484.1 406.3 479.2 402.5 473.3 403.9C468.3 405.1 464.8 409.5 462 413.4C460.8 414.9 463.4 416.4 464.5 414.9Z" fill="#5B21B6"/>
<path d="M708.1 183.5C698 190.5 693.8 199.7 690.5 206.7C684.5 219.6 683.8 231.2 683.8 236.7C683.8 243.8 683.6 261.7 696.4 277.9C699.9 282.4 708.9 293.4 725 297.3C742.4 301.5 756.4 294.5 760.7 292.3C777.5 283.6 784.3 268.7 786.8 263.1C788 260.3 792.7 249.1 792 233.8C791.7 227.3 790.8 211.7 779.4 197.3C776.4 193.5 762.5 176.8 739.4 175.4C735.1 175.1 721.1 174.5 708.1 183.5Z" fill="white"/>
<path d="M822.2 333.4C809.2 337.6 802.2 348.3 800.5 350.9C793.8 361.4 793.7 371.7 793.7 378C793.5 399.5 804.6 414.6 807.4 418.2C812.8 425.2 822.9 438.2 840.8 440.6C843.1 440.9 862.1 443.2 876.3 429.6C890.1 416.4 889.2 398 888.8 390.1C888.5 385.2 887 366.7 872.2 351.2C869.8 348.7 846.9 325.4 822.2 333.4Z" fill="white"/>
<g clip-path="url(#clip0_502_15)">
<path d="M839.705 370.54C841.451 369.725 843.48 369.704 845.346 370.481C847.211 371.257 848.76 372.768 849.651 374.68C850.543 376.593 850.704 378.75 850.099 380.678C849.495 382.606 848.174 384.147 846.427 384.961C844.681 385.775 842.652 385.796 840.786 385.02C838.921 384.243 837.372 382.733 836.481 380.82C835.589 378.908 835.428 376.75 836.033 374.822C836.637 372.894 837.958 371.354 839.705 370.54ZM841.049 373.424C840.001 373.912 839.209 374.837 838.846 375.993C838.483 377.15 838.58 378.445 839.115 379.592C839.65 380.74 840.579 381.646 841.698 382.112C842.817 382.578 844.035 382.565 845.083 382.077C846.131 381.588 846.923 380.664 847.286 379.507C847.649 378.35 847.552 377.056 847.017 375.908C846.482 374.761 845.553 373.854 844.434 373.389C843.315 372.923 842.097 372.935 841.049 373.424ZM834.527 391.762L857.301 408.286L859.288 380.219C859.502 377.191 858.946 374.101 857.677 371.267C856.408 368.432 854.473 365.954 852.069 364.088C849.665 362.222 846.879 361.035 843.997 360.648C841.116 360.262 838.242 360.69 835.671 361.888C833.101 363.086 830.925 365.012 829.369 367.468C827.812 369.924 826.93 372.821 826.814 375.862C826.697 378.903 827.35 381.978 828.706 384.772C830.061 387.567 832.071 389.979 834.527 391.762ZM862.237 380.67L859.889 413.838L832.977 394.311C830.074 392.203 827.7 389.352 826.098 386.05C824.497 382.747 823.725 379.113 823.863 375.519C824.001 371.926 825.043 368.502 826.883 365.6C828.723 362.699 831.293 360.423 834.331 359.006C837.369 357.59 840.765 357.085 844.17 357.541C847.576 357.998 850.868 359.401 853.709 361.606C856.55 363.811 858.838 366.738 860.337 370.088C861.837 373.438 862.494 377.089 862.242 380.668L862.237 380.67Z" fill="black"/>
</g>
<path d="M593.4 345.4C605.1 325.2 621.3 308.1 640.9 295.5C641.9 294.9 641.9 293 640.5 292.8C634.1 291.7 628.3 292.8 622.3 295.3C622.7 296.2 623.1 297.1 623.5 298C628.8 295.3 634.3 293.6 640.2 292.9C639.7 292.3 639.2 291.6 638.8 291C636.6 297 634.3 303 632.1 309C631.4 310.8 634.3 311.6 635 309.8C637.2 303.8 639.5 297.8 641.7 291.8C642 291 641.2 289.8 640.3 289.9C633.9 290.7 627.9 292.4 622.1 295.4C620.6 296.2 621.7 298.8 623.3 298.1C628.7 295.9 634.1 294.6 639.9 295.6C639.8 294.7 639.7 293.8 639.5 292.9C619.4 305.8 602.8 323.2 590.9 343.9C589.9 345.6 592.5 347.1 593.4 345.4Z" fill="#161616"/>
<path d="M737.8 298C767.734 298 792 270.555 792 236.7C792 202.845 767.734 175.4 737.8 175.4C707.866 175.4 683.6 202.845 683.6 236.7C683.6 270.555 707.866 298 737.8 298Z" stroke="#161616" stroke-width="2" stroke-miterlimit="10"/>
<path d="M732.2 298C758.931 298 780.6 270.555 780.6 236.7C780.6 202.845 758.931 175.4 732.2 175.4C705.469 175.4 683.8 202.845 683.8 236.7C683.8 270.555 705.469 298 732.2 298Z" stroke="#161616" stroke-width="2" stroke-miterlimit="10"/>
<path d="M748.4 208C727.9 203.8 708.6 225.6 710.9 245.5C712.1 256 719.4 263.7 729.8 265.4C738.8 267 749.8 265.9 756.2 258.6C757.5 257.2 755.4 255 754.1 256.5C748.4 263 738.7 263.8 730.6 262.5C720.9 260.9 714.2 253.4 713.8 243.5C713 226.3 729.6 207.1 747.6 210.8C749.5 211.3 750.3 208.4 748.4 208Z" fill="#161616"/>
<path d="M699.3 235.4C712 235.4 724.7 235.4 737.4 235.5C739.3 235.5 739.3 232.5 737.4 232.5C724.7 232.5 712 232.5 699.3 232.4C697.4 232.4 697.4 235.4 699.3 235.4Z" fill="#161616"/>
<path d="M700.7 248.3C711.8 248.7 722.8 249.1 733.9 249.5C735.8 249.6 735.8 246.6 733.9 246.5C722.8 246.1 711.8 245.7 700.7 245.3C698.8 245.3 698.8 248.3 700.7 248.3Z" fill="#161616"/>
<path d="M864.939 437.922C887.819 427.398 895.777 395.844 882.714 367.445C869.651 339.046 840.513 324.556 817.633 335.08C794.753 345.604 786.795 377.158 799.859 405.557C812.922 433.956 842.06 448.447 864.939 437.922Z" stroke="#161616" stroke-width="2" stroke-miterlimit="10"/>
<path d="M861.295 439.041C883.268 432.523 894.002 403.374 885.269 373.935C876.535 344.496 851.643 325.916 829.67 332.434C807.697 338.952 796.963 368.101 805.696 397.54C814.43 426.979 839.322 445.56 861.295 439.041Z" stroke="#161616" stroke-width="2" stroke-miterlimit="10"/>
<path d="M963.2 471.8C964.4 464.3 961.7 457.8 958.4 451.2C955.3 444.9 951.9 438.7 947.5 433.1C944.5 429.3 939.1 422.6 933.9 421.9C926.8 421 928.9 430.5 927.5 434.2C928.5 434.5 929.4 434.7 930.4 435C931.7 430.2 932.2 425.5 932 420.6C931.6 421.1 931.3 421.6 930.9 422C936.8 420.8 942.4 421 948.2 422.7C950.1 423.2 950.9 420.3 949 419.8C942.7 418 936.5 417.8 930.1 419.1C929.5 419.2 929 419.9 929 420.5C929.2 425.2 928.7 429.6 927.5 434.1C927 436 929.7 436.7 930.4 434.9C931.1 433 930.6 430.9 931.2 429C931.7 427.4 934.5 425.5 936.1 426.1C937.3 426.5 938.6 428 939.5 428.8C943.4 432.2 946.5 436.3 949.3 440.7C954.6 449.1 962 460.5 960.4 470.9C960 472.9 962.9 473.7 963.2 471.8Z" fill="#161616"/>
<path d="M414.8 399.9C420.1 403.9 427.6 410 435.5 418.3C441.3 424.4 450.9 435.4 466.7 463.5C480.5 488 485.4 501.4 501.5 523.6C506.2 530.1 513.4 539.5 525.5 542.8C526.7 543.1 541.5 546.9 547.9 539.6C550 537.2 550.7 533.3 552 525.5C553.3 517.6 553.5 511.8 553.5 511.8C554.2 488.4 554 465.1 555.4 447.3C556.3 435.5 559.6 422.5 566 396.5C566.7 393.5 570.9 377.6 582.5 367.9C588.1 363.2 590.6 364.1 591.2 364.3C594.7 365.8 594.3 373.2 594.2 374.4C593.9 378.8 592.4 380.1 589.1 388C584.2 399.4 584.7 402.9 584.9 404.1C585.6 408.4 588.2 411.5 590.1 413.3C606 413.7 618.9 415.8 628.1 417.8C647.4 421.9 653.8 426.2 657.2 429.1C664.2 434.8 668 441.5 670.1 445.9C662.8 445.3 655.4 444.6 648.1 444C647.7 446.8 647.1 450.6 645.9 455.2C644.5 460.9 643.7 463.9 641.7 467.6C640.3 470.2 638.2 474 634 477.2C628.9 481 623.6 481.7 619.9 482.3C616.9 482.7 614.4 482.8 612.6 482.7C606 486.7 599.5 490.6 592.9 494.6C593.7 508.3 593.8 519.8 593.8 528.5C593.7 555.9 591.6 564.3 589.3 570.7C587.1 576.8 584.4 584.2 577.7 591.4C576 593.3 565.5 604.3 549.3 607C532.3 609.9 518.4 602 509.1 596.5C468.8 572.8 445.6 522.7 438.6 506.5" fill="white"/>
<path opacity="0.17" d="M445 437C469.5 475.3 482 504.5 488.9 524.9C491.3 532 496.1 546.9 509.5 559.9C515 565.3 529.3 579.2 548.6 578.4C567.5 577.7 585 563.1 593.6 542.1C593.9 548.3 593.8 558.7 589.4 570.5C587.2 576.5 583.4 586.8 573.5 595.4C572.4 596.3 557.3 608.9 537.5 607.6C516.5 606.2 502.5 590.2 493.4 579.4C455 533.8 447.1 463 445 437Z" fill="#AAAAAA"/>
<path d="M392.7 389.9C425.2 399 446.1 428 461.4 456.4C470 472.3 477.5 488.8 486.7 504.3C494.4 517.3 503.6 531.7 516.6 540.1C528.5 547.8 545.9 548.5 554.9 535.9C556 534.3 553.4 532.8 552.3 534.4C541.6 549.4 521.3 541.8 510.6 531.4C498.8 520 490.2 505 482.5 490.6C467.8 463.2 455.6 433.7 433.3 411.3C422.2 400.1 408.9 391.3 393.6 387.1C391.6 386.5 390.8 389.4 392.7 389.9Z" fill="#161616"/>
<path d="M495.8 582.5C507.8 603.6 533.4 614.2 556.7 606.5C582.2 598.1 593 574.1 595 549C596.4 531.6 595.4 513.9 595.3 496.5C595.3 494.6 592.3 494.6 592.3 496.5C592.5 513.2 593.3 530 592.2 546.6C591.2 562.4 587.6 579 576.3 590.9C553.7 614.6 514.5 609.2 498.4 581C497.4 579.4 494.8 580.9 495.8 582.5Z" fill="#161616"/>
<path d="M553.1 536.2C557.4 502.9 554.1 469.2 558.3 435.9C560.2 420.9 563.6 405.9 569.7 392C572.5 385.6 575.9 379.6 579.9 373.9C581.2 372 582.6 370.2 584.1 368.5C584.5 368 585.1 367 585.7 366.7C585.9 366.5 586.1 366.3 586.2 366.1L592.5 368.5C595.3 372.1 591.1 380.7 589.6 383.9C585.3 393 578.4 407.1 589.5 414.4C591.1 415.5 592.6 412.9 591 411.8C583.7 407 586.7 396.7 589.8 390.2C592.9 383.8 597.1 376.9 595.8 369.5C595.1 365.3 591.2 359.7 586.3 362C583.9 363.1 582 366.1 580.4 368.2C578.2 371 576.1 374 574.2 377C556.6 405 553.7 439.2 553 471.4C552.5 493 552.8 514.7 550 536.1C549.8 538.1 552.8 538.1 553.1 536.2Z" fill="#161616"/>
<path d="M589.7 413.5C612.5 415.8 638.7 417.8 658.2 431.2C660.5 432.8 662.7 434.6 664.5 436.7C665.9 438.4 669 442.3 668.6 444.7C668.2 447 666.1 446.9 664.6 446.7C663 446.5 660.4 444.7 658.9 443.9C656.6 442.7 654.3 441.5 651.9 440.4C641.5 436 630.4 434.2 619.1 435C617.2 435.1 617.2 438.1 619.1 438C627.2 437.4 635.4 438.1 643.2 440.4C650.3 442.5 656.3 446.4 663 449.2C666 450.4 670.8 451.6 671.7 447.2C672.6 442.9 669.2 437.5 666.5 434.5C658.4 425.1 644.8 420.4 633.2 417.3C619 413.4 604.2 411.9 589.6 410.5C587.8 410.4 587.8 413.4 589.7 413.5Z" fill="#161616"/>
<path d="M619.4 435.6C612.1 436.6 603.2 440.7 600.7 448.3C598.3 455.7 604.5 458.8 610.8 458.6C620.8 458.3 631.5 456.5 640.8 452.8C642.8 452 655 445.3 649 442.5C647.3 441.7 645.7 444.3 647.5 445.1C647.3 445 642.7 448.7 641.8 449.2C639.2 450.5 636.4 451.3 633.6 452C628 453.5 622.3 454.6 616.5 455.2C614.2 455.4 611.8 455.7 609.4 455.7C607 455.7 603.8 453.9 603.1 451.4C602.8 450.3 604.1 447.9 604.7 446.9C607.9 441.8 614.5 439.3 620.2 438.5C622.1 438.2 621.3 435.3 619.4 435.6Z" fill="#161616"/>
<path d="M602.7 454.7C601.1 459.1 602.8 463.7 606.3 466.7C611.2 470.8 618.7 470.7 624.7 470.1C636.3 469 648.9 462.1 648.4 448.8C648.3 446.9 645.3 446.9 645.4 448.8C645.8 459 636.8 465 627.7 466.7C620.7 467.9 601 468.1 605.6 455.6C606.3 453.7 603.4 452.9 602.7 454.7Z" fill="#161616"/>
<path d="M604.8 465.6C600.7 477.2 612.9 484.7 623.1 483.3C634.7 481.7 643.7 471.9 645.5 460.5C645.8 458.6 642.9 457.8 642.6 459.7C641.3 468 636.1 475.3 628.3 478.7C619.7 482.5 603.2 479.1 607.7 466.4C608.3 464.6 605.4 463.8 604.8 465.6Z" fill="#161616"/>
<path d="M594.4 495.1C599.1 487.7 610.6 489.8 615 481.7C615.9 480 613.3 478.5 612.4 480.2C608.2 487.8 596.6 486 591.8 493.6C590.8 495.2 593.4 496.7 594.4 495.1Z" fill="#161616"/>
<path d="M547 854.6C540.8 862.5 534.6 871.1 528.3 880.3C519.7 893 512.2 905.4 505.7 917C507 921.4 509.4 927.9 514.3 934.3C521.3 943.5 529.4 947.1 539.3 952.4C541.1 953.4 553.1 960.8 577.2 975.7C586.3 981.3 599.3 989.7 614.5 1001C611.2 993.1 607.2 984.8 602.5 976.2C588.3 950.4 571.7 930.6 556.9 916C564.7 906.4 572.6 896.8 580.4 887.2C569.1 876.4 558 865.5 547 854.6Z" fill="black"/>
<path d="M360.9 678.5C370.5 669 387.1 655.3 411.2 647.3C465.2 629.4 512.7 654.9 522.1 660.1C545.5 647.1 564 636.1 576 629C618.7 603.4 635.3 591.2 667.7 578.2C692.4 568.3 706.7 565.8 720.8 566.1C731.5 566.3 749.1 566.8 766.8 578.3C772 581.6 790.5 593.9 797.1 617.2C801.1 631.2 799 642.8 796.3 656.2C790.8 683.8 779.6 703.4 774.4 712.4C751.5 751.8 740 771.5 719.5 798.5C698.1 826.6 668 863.2 628 903.5C623.6 904 616.7 904.3 608.6 902.6C603.6 901.6 588.2 897.8 559.4 868.2C551.8 860.4 541.7 849.2 530.9 834.3C539.9 822.9 549 811.5 558 800.1C549.4 803.3 537.1 807.2 521.9 809.5C521.9 809.5 491.6 813.9 464.6 808.2C426.4 800.1 382.5 750.5 360.9 678.5Z" fill="white"/>
<path opacity="0.15" d="M477 810.1C491.3 803.1 505.9 795.2 520.7 786.6C591 745.4 645.1 696.8 686 651.7C678 671 668.8 691.1 658.3 711.6C626.7 773.4 590.9 824.5 556.9 865.7C551.1 862 541 854.1 535.3 840.5C533.8 837 532.9 833.6 532.3 830.5C540.3 821 548.4 811.4 556.4 801.9C544 807.7 523.2 815.2 497.4 813.5C489.9 812.9 483 811.6 477 810.1Z" fill="#7A7A7A"/>
<path d="M519.1 664C540.3 651.6 561.6 639.2 582.8 626.7C603.1 614.8 623.2 602.5 643.9 591.4C679.5 572.3 721.9 557.7 760.7 576.7C776.7 584.5 789.9 597.7 795 615.1C801.5 637.3 794.7 660.9 786.5 681.6C770.7 721.4 747.9 758.1 722.3 792.2C693.1 831.1 660 866.8 626.9 902.3C625.6 903.7 627.7 905.8 629 904.4C689.4 839.4 751.5 772.4 786.4 689.5C795 669 802.8 646.5 799.9 624C797.6 606.6 788.3 591.7 774.3 581.3C741.8 557.4 699.8 562.6 664.9 577.7C640 588.5 616.8 603.3 593.4 617C568.2 631.8 542.9 646.5 517.7 661.3C515.9 662.4 517.4 665 519.1 664Z" fill="#161616"/>
<path d="M683.5 654.2C632 711.3 581.6 769.4 532.4 828.4C531.2 829.9 533.3 832 534.5 830.5C583.7 771.5 634.1 713.4 685.6 656.3C686.9 654.9 684.8 652.8 683.5 654.2Z" fill="#161616"/>
<path d="M532.5 829.5C530.2 839.8 538.8 847.8 545 854.8C552.8 863.7 560.8 872.5 569.7 880.5C585.4 894.7 606.8 909.9 629.2 904.9C631.1 904.5 630.3 901.6 628.4 902C607.3 906.7 586.7 891.7 571.9 878.4C564.8 872 558.2 865.1 551.8 858C545.5 850.9 533.1 840.9 535.4 830.4C535.8 828.4 533 827.6 532.5 829.5Z" fill="#161616"/>
<path d="M577.3 886.3C570.5 894.6 563.7 903 556.8 911.3C555.6 912.8 557.7 914.9 558.9 913.4C565.7 905.1 572.5 896.7 579.4 888.4C580.6 887 578.5 884.8 577.3 886.3Z" fill="#161616"/>
<path d="M544.8 854.4C538.8 863.6 532.8 872.7 526.8 881.9C525.7 883.5 528.3 885 529.4 883.4C535.4 874.2 541.4 865.1 547.4 855.9C548.4 854.3 545.8 852.8 544.8 854.4Z" fill="#161616"/>
<path d="M527 879.6C521.5 887.8 516.1 895.9 510.6 904.1C506.6 910 501.9 915.4 506.1 922.4C513.3 934.4 525.2 944.2 536.4 952.3C561.2 970.2 589.8 982.3 613.3 1002.1C614.4 1003 616.3 1002.2 615.8 1000.6C605.3 965.2 575.6 941 557.1 910.1C556.1 908.4 553.5 910 554.5 911.6C572.8 942.2 602.5 966.3 612.9 1001.4C613.7 1000.9 614.6 1000.4 615.4 999.9C594.4 982.2 569.3 970.5 546.4 955.5C534.9 947.9 523.8 939.4 514.8 928.9C512.3 925.9 508.3 922.1 507.3 918.2C506.1 913.5 511.8 907.4 514.1 903.9C519.2 896.3 524.3 888.7 529.4 881C530.6 879.5 528.1 878 527 879.6Z" fill="#161616"/>
<path d="M488.8 815.6C510.8 812.8 534.1 811 555.1 803.6C556.9 803 556.1 800.1 554.3 800.7C533.6 808 510.4 809.8 488.8 812.5C486.9 812.8 486.9 815.8 488.8 815.6Z" fill="#161616"/>
<path d="M279.7 377.8C288.2 378.7 300.9 380 316.4 381.1C370.1 385.1 383.6 382.1 402 390C421.9 398.6 432.3 413.3 446.5 433.3C472.7 470.4 477.3 500.1 502.1 590C510 618.6 516.9 642.5 522.1 660C503.1 655 435.7 639.6 373.2 676.7C354.8 687.6 341 700.6 331 712.3C313.8 600.8 296.8 489.3 279.7 377.8Z" fill="#EC615B"/>
<path d="M283.4 378.3C278.2 379.6 270.8 382.5 265 389C255.4 399.9 256.2 414.6 256.5 421.7C257.5 447.9 253.6 474.4 257.8 500.3C260.7 518.1 260.7 554 260.6 625.8C260.5 685.4 257.7 696.4 257.9 765.5C258 791.8 258.5 813.4 258.9 827.4C256.7 827 253.1 826.4 248.7 825C241.2 822.6 238.3 820.3 230.1 818.3C223.9 816.7 221.4 817 219.3 817.8C216 819 213.9 821.4 212.7 822.9C209.7 822.1 204.9 821.3 199.4 822.6C195.1 823.6 191.3 826.1 184 831C177.4 835.4 173.1 838.9 171.2 840.3C161.1 848.5 159.3 851.9 158.3 854.3C157.2 857.4 156.9 860.1 157 862.1C165.6 859.9 175.1 857.4 179.3 856.3C191.3 853.2 196.5 851.8 203.2 853.6C205.7 854.3 210.3 855.6 213.5 859.9C215.9 863.3 216.4 866.8 216.5 868.7C209.9 872 204.3 873.9 200 875.1C194.5 876.6 190.7 877.2 189.9 879.7C189 882.7 192.9 886.2 193.6 886.9C194.9 888 197.8 890.1 204.6 890.6C206.4 890.7 212.7 891 223.1 887.4C232.2 884.3 232.7 882.2 238.6 881.7C244 881.3 244.5 882.9 250.5 882.5C256.2 882.1 260.4 880.2 265 878.2C270.9 875.5 274.8 872.7 279.4 869.4C288.6 862.8 293.1 859.5 295.9 853.8C298.7 848 298.3 842.5 298.1 840C296.1 802.1 305.6 764.4 307.7 726.4C308.9 705.3 309.5 694.7 309.8 686.5C310.7 666.2 312.1 630.7 312.4 585.2C312.7 542.8 312 516.4 311.3 497.6C309.9 462 308.3 447.8 304.3 432.1C298.8 408.8 290.1 390.5 283.4 378.3Z" fill="white"/>
<path opacity="0.14" d="M284.2 379.1C282.8 394.3 280.8 418.1 280 447.1C277.7 524.8 285.4 558.9 290.9 676.1C294.2 745.5 293.4 773.6 284.2 808.6C275.8 840.6 263.8 865.6 254.6 882.2C259 880.9 265.1 878.7 271.9 874.9C279.6 870.7 290.6 864.7 296.2 854C300.4 846.1 299.8 839.3 299.6 828.8C299.3 812 301.9 795.3 302.3 778.6C302.9 751.4 305.9 745.8 309.6 709C313.4 671.1 313.7 642.7 314.1 609.4C314.3 594.9 313.6 570 312.3 520.3C311.1 472 310.4 462.3 308 448.8C302.4 418.3 292.1 394.5 284.2 379.1Z" fill="#898989"/>
<path d="M283.8 376.9C272.6 374 264 386.1 260.3 395.1C255.2 407.4 254.9 421.4 254.5 434.5C253.5 468.3 257 501.9 258.4 535.6C261.3 603.5 257.9 671.4 256.8 739.3C256.2 777.5 256.4 815.7 258.8 853.9C258.9 855.8 261.9 855.8 261.8 853.9C257.7 789.4 260 724.7 261.5 660.2C262.2 628.6 262.8 596.9 262.2 565.3C261.6 533.1 258.9 501 257.7 468.9C257 451.8 256.8 434.5 258.4 417.4C259.1 409.8 260.4 402 263.6 395C266.8 387.9 274 377.5 283 379.9C284.9 380.3 285.7 377.4 283.8 376.9Z" fill="#161616"/>
<path d="M282.9 379.8C298.2 403.6 304.8 431.3 307.7 459.2C310.8 488.1 310.8 517.5 311.1 546.5C311.8 610.6 310 674.8 305.7 738.7C303.3 775 300.1 811.2 296.1 847.3C295.9 849.2 298.9 849.2 299.1 847.3C306.3 782.3 310.9 716.9 313 651.5C314 619.1 314.4 586.7 314.2 554.3C314 524.3 314 494 311.2 464.1C308.5 434 302 403.9 285.4 378.2C284.5 376.7 281.9 378.2 282.9 379.8Z" fill="#161616"/>
<path d="M236.6 856.5C230.6 861 224.2 864.9 217.4 867.9C210.7 870.9 203.8 872.4 196.7 874.5C185.9 877.6 190.5 889.3 199.4 891.4C205.1 892.8 211.5 892.5 217.3 891.2C224.6 889.5 230.6 883.8 238.2 883.4C248.5 882.8 261.6 887.7 268.4 877C269.4 875.4 266.8 873.9 265.8 875.5C259.8 885 246.3 879.7 237.3 880.4C232.8 880.7 229.3 882.7 225.4 884.8C219.8 887.8 213.9 889.3 207.6 889.3C204.9 889.3 202 889.2 199.4 888.4C195.1 887.1 189.5 881.2 196.3 877.8C198.5 876.7 201.5 876.5 203.9 875.9C206.4 875.2 208.9 874.4 211.3 873.6C220.9 870.2 229.9 865.3 238.1 859.1C239.6 858 238.1 855.4 236.6 856.5Z" fill="#161616"/>
<path d="M218.2 868.9C218.4 858.9 209.1 852.5 199.9 851.7C193 851.2 186.2 853.1 179.6 854.8C172 856.8 164.4 858.7 156.9 860.7C157.5 861.2 158.2 861.7 158.8 862.1C157.5 852.1 167.5 847.7 175.4 845.3C182.6 843.1 189.8 841.5 197.2 840.4C199.1 840.1 198.3 837.2 196.4 837.5C183.6 839.4 153.2 843.1 155.7 862.1C155.8 863.1 156.6 863.8 157.6 863.5C168.1 860.8 178.7 857.5 189.4 855.4C199.3 853.5 215.4 855.2 215.2 868.7C215.2 870.8 218.2 870.8 218.2 868.9Z" fill="#161616"/>
<path d="M169.6 845.4C177.3 834 190.7 828 204.3 829.5C206.2 829.7 206.2 826.7 204.3 826.5C189.6 824.9 175.3 831.7 167 843.9C165.9 845.5 168.5 847 169.6 845.4Z" fill="#161616"/>
<path d="M188.9 830.3C198.6 819.6 213.6 824.2 225.3 828.2C227.1 828.8 227.9 825.9 226.1 825.3C213.3 820.9 197.2 816.6 186.7 828.2C185.5 829.7 187.6 831.8 188.9 830.3Z" fill="#161616"/>
<path d="M215.4 822.6C218.4 816.2 230 819.6 235 821C241.8 822.9 248 826 253.7 829.9C255.3 831 256.8 828.4 255.2 827.3C247.4 821.9 238.5 818.1 229.1 816.6C223.5 815.7 215.6 814.8 212.7 821C212 822.9 214.6 824.4 215.4 822.6Z" fill="#161616"/>
<path d="M295.7 845.6C296.7 854.5 290.5 860.8 283.6 865.4C277.4 869.5 270.8 873.2 264.4 877.1C262.8 878.1 264.3 880.7 265.9 879.7C278.1 872.3 300.7 863.3 298.6 845.6C298.5 843.7 295.5 843.6 295.7 845.6Z" fill="#161616"/>
<path d="M512.6 1032.9C513.2 1034.9 514.2 1035 521.2 1043C527.7 1050.5 529.3 1053.2 538.1 1064.4C541.8 1069.1 547.1 1075.8 553.9 1083.8C556.9 1084.5 561.3 1085.3 566.6 1085.4C578.7 1085.4 587.8 1081.3 590.8 1080C595.5 1078 593.3 1079.5 644.2 1068.1C662.2 1064.1 689.3 1057.9 727.3 1048.8C728.4 1046.9 729.5 1045 730.6 1043.2C725.4 1042.3 717.6 1041.1 708.1 1040.2C688.7 1038.3 681.7 1039.5 662.6 1038.8C642.2 1038 627.5 1035.6 616 1033.8C596.1 1030.6 586 1028.8 578.1 1023.3C564.8 1013.9 559.6 999.3 557.4 991C518.2 1014 510.7 1026.1 512.6 1032.9Z" fill="black"/>
<path d="M323.6 660.9C312.9 665.7 307.3 674 305.1 677.3C299.3 686.1 297.5 695.3 296.9 706C295.1 735.2 302.7 759.2 304.2 764C314.7 796.2 328.6 819.3 338.6 835.6C374.4 894.1 397.2 926.1 397.2 926.1C418 955.3 446.5 993.8 482.6 1038.1C487.9 1038.2 495.7 1037.8 504.7 1035.5C524.4 1030.5 537 1019.4 549.4 1008.2C557.9 1000.5 569.5 988.6 580.3 971.7C573.3 958.1 564.1 940.6 552.9 920.5C547 909.9 529.3 878.3 503.4 837.1C488.7 813.7 475.3 794 448.6 754.6C440.8 743.1 425.4 720.5 401.8 694.2C386.2 676.7 371.8 662.9 351.3 658.9C346 657.7 335.2 655.7 323.6 660.9Z" fill="white"/>
<path opacity="0.06" d="M323.6 660.9C323.1 668.3 322.7 681.4 325 697.2C330.3 733.9 346.2 759.8 354.9 773.6C377 808.7 437.7 902.9 523.6 1027.7C519.1 1030.3 512.8 1033.3 505 1035.4C496.1 1037.8 488.2 1038.2 482.6 1038C475.2 1028.8 464.6 1015.3 451.9 998.8C410.7 945.1 383.2 905.1 371.3 887.6C340.3 841.7 327.8 819.5 317.9 798.7C317.9 798.7 303.6 768.8 297.2 726C296.1 718.9 295.3 711.3 297.1 702C301.3 681.2 315.5 667.5 323.6 660.9Z" fill="#A5A5A5" stroke="#A5A5A5" stroke-miterlimit="10"/>
<path d="M484.9 1036.2C447.8 993.1 413.2 947.9 381.5 900.6C365.8 877.2 350.7 853.3 336.4 829C322 804.5 309.3 779.6 302.4 751.8C295.9 725.5 291.2 692.7 311.7 671.1C332.6 649.1 364.4 659.8 384.1 677.5C393.7 686.1 401.9 696.2 410 706.2C419 717.3 427.7 728.5 436.2 740C453 762.6 469 785.8 484.3 809.5C518.7 862.6 549.8 917.6 580.9 972.6C581.9 974.3 584.4 972.8 583.5 971.1C554.2 919.3 524.9 867.5 492.8 817.3C477 792.5 460.5 768.1 443.1 744.4C434.7 732.9 426.1 721.6 417.2 710.5C408.5 699.6 399.8 688.5 389.8 678.8C372.6 662.1 346.6 648.5 322.7 659.4C299.7 669.9 292.4 697.2 294 720.4C295.9 749.1 305.5 777.7 318.5 803.2C331.9 829.3 347.7 854.3 363.6 878.9C399.5 934.7 439.4 987.9 482.7 1038.1C484.1 1039.8 486.2 1037.6 484.9 1036.2Z" fill="#161616"/>
<path d="M482.6 1039.6C527 1041.3 557.3 1004.3 581.7 972.4C582.9 970.9 580.3 969.4 579.1 970.9C555.3 1001.9 525.8 1038.3 482.6 1036.6C480.7 1036.5 480.7 1039.5 482.6 1039.6Z" fill="#161616"/>
<path d="M512.8 1034.9C519.2 1043.1 525.7 1051.2 532.1 1059.4C538.3 1067.3 544.1 1075.8 550.9 1083.2C556.1 1088.9 561.9 1088 568.8 1086.5C579.2 1084.2 589.6 1081.9 599.9 1079.6C640.8 1070.5 681.6 1061.4 722.5 1052.2C724.4 1051.8 723.6 1048.9 721.7 1049.3C683.4 1057.8 645.2 1066.4 606.9 1074.9C597.2 1077.1 587.4 1079.2 577.7 1081.4C573.3 1082.4 568.8 1083.6 564.4 1084.4C558.3 1085.5 554.7 1083.3 551 1078.8C538.7 1063.6 526.8 1048.2 514.8 1032.9C513.7 1031.2 511.6 1033.4 512.8 1034.9Z" fill="#161616"/>
<path d="M559.6 997.6C563.8 1027.4 597.4 1034.9 622.4 1035.9C658.6 1037.3 694.4 1039.3 730.2 1044.6C729.9 1044 729.5 1043.4 729.2 1042.8C728.3 1046.9 725.1 1049.4 720.9 1049.2C719 1049.1 719 1052.1 720.9 1052.2C726.4 1052.5 731 1049 732.1 1043.6C732.3 1042.9 731.9 1041.9 731.1 1041.8C698.7 1037 666.1 1034.2 633.3 1033.3C607.2 1032.6 567.2 1030.1 562.6 996.9C562.2 994.9 559.3 995.7 559.6 997.6Z" fill="#161616"/>
<path d="M311.9 267.7C311.7 267.1 309.6 259.3 302.5 256.9C295.5 254.6 288.9 259.4 285.8 263.6C280.9 270.2 283 278.2 283.8 281.5C285.5 288.2 289.6 292.4 293.2 296.1C295.5 298.5 297.3 300.3 300.3 301.5C305.4 303.5 310.3 302.3 312.5 301.6C312.9 304.5 313.4 309.2 313.8 315C314.3 322.1 315.1 335.7 312.8 375.3C312.6 379 312.3 384.4 311.8 391C312.7 392.8 314.1 395.2 316.7 397.2C321.2 400.7 326.3 400.8 329.7 401C336 401.3 344.5 401.9 356 403.6C357.6 401.8 359.2 399.7 360.7 397.1C366.3 387.3 366 377.4 365.5 372.5C370.8 374.3 377.5 376 385.5 376.7C390.3 377.1 394.7 377.1 398.5 376.9C402.9 374.3 409 370.2 415.1 363.8C421.4 357.3 424.8 351.4 428.5 344.9C431.2 340.1 437.5 328.6 442.3 312.3C444.2 305.9 447.1 294.7 448.4 280.3C448.7 276.5 450 261.3 447.3 241.3C445.3 226.2 444.2 218.6 439 209.4C437.7 207.1 432.2 197.7 421.4 189.8C404.1 177.1 383.2 175.6 370.9 177.7C340 182.8 312.6 219.6 311.9 267.7Z" fill="white"/>
<path opacity="0.06" d="M343.2 211.7C341.2 216.5 338.7 223.7 336.9 232.5C335 241.6 332.2 261.2 341.5 297.5C346.3 316.1 355.4 343.5 373.7 374.1C370.1 372.9 366.6 371.7 363 370.5C365.2 374.7 367.3 379.8 365.5 381.6C362.4 384.7 348.9 376.5 341.3 370.3C333.8 364.3 321.6 352 314.3 328.1C313.7 319.2 313.1 310.4 312.4 301.5C309.8 302.3 306 303.1 301.7 302.1C286.8 298.7 282.9 277.5 282.7 276.3C281.9 271.8 280.3 262.3 285.8 255.3C291.7 247.7 299.1 251.8 306.3 245.2C317.2 235.2 308.7 218 317.9 210.7C321.4 207.9 328.2 205.9 343.2 211.7Z" fill="#AAAAAA"/>
<path d="M313.7 314.9C303.6 310.4 290 302.3 281.2 287.7C270.2 269.5 279.9 263 268 233.2C260.2 213.6 254.3 198.7 243.9 185C243.7 184.8 239.7 179.4 240.5 178.7C242.2 177.1 263.5 199.2 266.9 196.5C268.9 194.9 262.5 186.4 259.4 175.9C255.9 164.1 256 148 266.9 126C268.4 130.1 271.5 136.9 277.8 143.2C287.9 153.2 299.7 155.7 304.2 156.4C301.6 151.5 294.8 137 297.9 118.6C302.4 92 323.8 78.7 327.1 76.7C335.3 87.4 343.5 98.1 351.8 108.8C351.2 107.3 347.2 96.1 353.5 85.3C358 77.7 365 74.7 367.3 73.8C372.5 90.9 379.8 102.3 385.1 109.3C399.6 128.4 410.9 129.6 429.8 152.3C437.7 161.7 445.1 170.5 449.9 183.3C459.1 207.7 453.3 231.9 448 246.5C447.2 237 445.1 224.3 439.8 210.1C433.7 193.7 425.5 181.5 419.2 173.4C411.5 180.9 403.8 188.5 396.1 196C386.4 190.8 376.7 185.6 366.9 180.4C359 190.8 351.2 201.2 343.3 211.6C335.1 213.5 326.9 215.3 318.6 217.2C317.8 227.2 316.9 237.2 316.1 247.2C317 261.9 315.4 266.4 313.3 267C309.7 268 305.9 255.8 298.3 256.4C290.1 257.1 286.5 266 285.7 268.1C283.7 273.6 285 278.4 285.7 281.3C286.4 283.9 289.9 296 301.2 300.2C305.8 301.9 309.9 301.7 312.3 301.4C312.8 306 313.3 310.4 313.7 314.9Z" fill="#5B21B6"/>
<path d="M312.6 304C314.2 314 318.5 323.1 323.4 331.8C328.3 340.6 333.2 349.6 340 357C353.7 371.8 375.4 378.1 395 378.9C396.9 379 396.9 376 395 375.9C375.6 375.1 354.1 368.8 341 353.7C334.9 346.7 330.4 338.4 326 330.3C321.2 321.7 317 312.9 315.5 303.2C315.2 301.3 312.3 302.1 312.6 304Z" fill="#161616"/>
<path d="M437.4 209.7C448.3 238.9 450.3 271 443.5 301.5C437.2 329.3 423 363.3 395.8 376.5C394.1 377.3 395.6 379.9 397.3 379.1C424.7 365.8 439.4 332 446 304C453.4 272.6 451.6 239.3 440.3 209C439.7 207.1 436.8 207.8 437.4 209.7Z" fill="#161616"/>
<path d="M311.3 303C312.8 320.7 313.3 338.5 312.5 356.2C312.1 364.7 311.4 373.3 310.5 381.8C309.9 386.9 309 393 313.3 396.7C318.1 400.8 326.8 401.8 332.8 402.9C339.7 404.2 347.4 405.6 354.4 405C359.7 404.6 360.9 400.8 362.4 396.2C364.9 388.4 366.3 380.4 366.9 372.3C367 370.4 364 370.4 363.9 372.3C363.4 379.3 362.3 386.1 360.3 392.8C359.2 396.5 358.4 401.3 353.7 402.1C350.7 402.6 347 401.9 344 401.6C337.5 401 331 399.8 324.7 398.1C321.7 397.3 317 396.5 314.8 394.2C312.4 391.6 312.8 387.7 313.1 384.5C315.8 357.3 316.6 330.3 314.2 303C314.2 301.1 311.2 301.1 311.3 303Z" fill="#161616"/>
<path d="M313 299.2C300.5 308.3 285.9 287.9 284.4 277.1C283.4 270.1 286.3 262.5 293 259.3C300.5 255.7 309.1 259.9 310.6 268.1C310.9 270 313.8 269.2 313.5 267.3C312.1 259.3 304.7 254 296.6 255.2C288.2 256.4 282.3 263.7 281.4 271.9C279.7 286.2 298.6 313.6 314.7 301.9C316 300.7 314.5 298.1 313 299.2Z" fill="#161616"/>
<path d="M352.1 231.1C354.6 224 361.1 215.3 369.6 217C377.5 218.5 381.2 226.3 382.4 233.5C382.7 235.4 385.6 234.6 385.3 232.7C383.8 223.9 378.4 214.6 368.5 213.8C359 213.1 352 222.2 349.1 230.3C348.6 232.1 351.5 232.9 352.1 231.1Z" fill="#161616"/>
<path d="M418.2 230.6C419.8 226 423.3 221.8 428.3 220.7C434 219.5 439.6 223.2 440.8 228.8C441.2 230.7 444.1 229.9 443.7 228C442.3 221.4 436 216.9 429.2 217.5C422.4 218.2 417.4 223.6 415.3 229.8C414.7 231.7 417.6 232.5 418.2 230.6Z" fill="#161616"/>
<path d="M405.4 241.7C405.5 255.7 405 269.8 404.1 283.8C403.6 290.6 403.1 297.5 402.3 304.3C401.6 310.9 401.4 318 397.6 323.7C398.5 323.8 399.4 323.9 400.3 324.1C397.7 317.6 395.8 311.1 394.4 304.3C394 302.4 391.1 303.2 391.5 305.1C392.9 311.9 394.9 318.5 397.4 324.9C397.9 326.1 399.4 326.4 400.1 325.3C403.1 320.7 403.9 315.5 404.5 310.2C405.4 302.8 406.1 295.3 406.6 287.8C407.7 272.5 408.2 257.2 408.2 241.8C408.4 239.8 405.4 239.8 405.4 241.7Z" fill="#161616"/>
<path d="M357.2 317.4C360.7 324 363.3 331.1 370 335.1C375.6 338.4 382.3 339.1 388.5 337.3C390.3 336.8 389.6 333.9 387.7 334.4C381.8 336.1 375.5 335.3 370.4 331.8C365 328 362.8 321.6 359.8 316C358.9 314.2 356.3 315.7 357.2 317.4Z" fill="#161616"/>
<path d="M372.3 286.2C375.061 286.2 377.3 280.559 377.3 273.6C377.3 266.641 375.061 261 372.3 261C369.539 261 367.3 266.641 367.3 273.6C367.3 280.559 369.539 286.2 372.3 286.2Z" fill="#161616"/>
<path d="M429.3 286.2C432.061 286.2 434.3 280.559 434.3 273.6C434.3 266.641 432.061 261 429.3 261C426.539 261 424.3 266.641 424.3 273.6C424.3 280.559 426.539 286.2 429.3 286.2Z" fill="#161616"/>
<path d="M1170.3 703.1C1142.6 700.2 1119.5 698 1103.1 696.4C982.4 685.1 1012.4 691.5 984.5 687.3C969.5 685 950.1 681.5 925.1 686.1C901.5 690.4 891.3 698.5 887.1 702.3C876.3 712.1 871.9 723.5 868.7 731.7C862.8 746.9 862.4 759.8 862.2 768.8C862 778.5 861.8 785.5 864.9 794C868.7 804.3 875.1 811 880.6 816.2C902.7 837.1 926 849.4 926.6 849.8C990.5 883.7 972.5 876.4 996.4 887.5C1025.4 901.1 1066 918.4 1117.4 935.2C1119.2 928.4 1121.9 919.2 1125.4 908.3C1129.2 896.7 1133.6 883 1141.1 866.2C1145.7 856 1152.2 842.8 1161.3 827.9C1145.8 821.4 1131.9 815.1 1132.4 813.8C1133.1 812 1161 821.8 1198.5 830.4C1248.6 841.9 1273.7 847.6 1299.2 840.8C1308.1 838.4 1356.2 824.4 1366.1 785.3C1374.4 752.7 1350.9 723.4 1348.1 719.9C1315.9 681 1244.9 674.5 1170.3 703.1Z" fill="white"/>
<path opacity="0.23" d="M967.8 736.8C985.5 743.4 1013.4 753 1048.3 762C1097.3 774.6 1130.1 778.2 1222.2 790.4C1248.7 793.9 1290.8 799.6 1343.5 807C1343 817.9 1342.5 828.8 1342 839.7C1321 841.1 1297.8 841.4 1273 840C1217.5 836.8 1169.9 825.9 1132.4 813.9C1142 818.6 1151.7 823.3 1161.3 828C1157.6 834 1153.9 840.5 1150.2 847.6C1144.8 858.1 1140.6 868 1137.1 877.2C1080.7 830.3 1024.3 783.6 967.8 736.8Z" fill="#AAAAAA"/>
<path d="M1124.5 908.3C1128.1 908.5 1133.5 908.9 1139.9 910.2C1149 912 1157.9 913.7 1164.9 919.2C1170.9 923.9 1172.1 928.7 1176.9 938.6C1181.7 948.6 1186.9 956.2 1197.1 971.5C1207.1 986.4 1203.1 977.9 1230.8 1012C1235 1017.1 1241.1 1024.7 1247.8 1023.8C1250.7 1023.4 1253.7 1021.5 1255.1 1018.7C1257.4 1014 1254.1 1008.1 1253.1 1006.4C1243.6 988.7 1242.6 967.5 1234.7 949C1228.2 933.7 1219.7 911.4 1211.6 881.2C1203.9 877.9 1197.5 875.7 1193.1 874.3C1178.6 869.6 1170.8 868.9 1155.9 863.5C1151 861.7 1147.1 860 1144.6 859C1137.9 875.3 1131.2 891.8 1124.5 908.3Z" fill="black"/>
<path d="M863 784.7C863.6 760 865.1 733.7 879.8 712.8C893.7 693.1 916.4 687 939.3 686.5C964.4 686 989.8 689.1 1014.8 690.9C1041.2 692.9 1067.7 694.9 1094.1 697.1C1124.5 699.6 1154.8 702.3 1185.2 705.1C1187.1 705.3 1187.1 702.3 1185.2 702.1C1128.5 696.8 1071.7 692.1 1014.8 687.9C988.8 686 962.2 682.5 936.1 683.6C914.7 684.5 893.6 690.5 879.8 707.8C862.5 729.4 860.7 758.1 860 784.6C860 786.6 863 786.6 863 784.7Z" fill="#161616"/>
<path d="M860.6 787.3C872.8 821.7 907.8 840.7 937.6 857.9C973.7 878.7 1011 897.4 1049.7 912.7C1060.7 917 1071.7 921.1 1082.9 924.9C1088.6 926.8 1094.4 928.7 1100.2 930.4C1102.8 931.2 1105.4 932 1108 932.7C1109.5 933.1 1110.9 933.5 1112.4 933.9C1113 934.1 1113.6 934.2 1114.1 934.4C1115.4 935 1116.8 935.1 1118.1 934.4V936.5C1118.2 936.4 1118.3 936.3 1118.4 936.1C1119.6 934.6 1117.5 932.5 1116.3 934C1116.2 934.1 1116.1 934.2 1116 934.4C1115.5 935 1115.4 935.9 1116 936.5C1119.3 939.5 1121.8 934.5 1117.8 932.4C1113.8 930.2 1108 929.5 1103.5 928.2C1098 926.6 1092.5 924.8 1087.1 923C1065.4 915.8 1044.1 907.5 1023.2 898.2C1002.7 889.1 982.6 879.1 962.9 868.5C944.2 858.4 925.4 847.9 907.6 836.1C888.9 823.6 871.2 808.1 863.5 786.4C862.8 784.7 859.9 785.5 860.6 787.3Z" fill="#161616"/>
<path d="M967.1 738.1C1030.2 771.4 1098.9 793.2 1160.6 829.3C1160.4 828.6 1160.2 827.9 1160.1 827.2C1140.1 860.2 1125.6 896.3 1117.2 934C1116.8 935.9 1119.7 936.7 1120.1 934.8C1128.4 897.4 1142.8 861.6 1162.7 828.8C1163.1 828.1 1162.9 827.2 1162.2 826.7C1100.5 790.6 1031.9 768.8 968.7 735.5C966.9 734.6 965.3 737.2 967.1 738.1Z" fill="#161616"/>
<path d="M1136.3 815.9C1202.6 837.1 1272.6 845.7 1342.1 841.2C1344 841.1 1344 838.1 1342.1 838.2C1272.9 842.8 1203.2 834.2 1137.1 813C1135.2 812.4 1134.5 815.3 1136.3 815.9Z" fill="#161616"/>
<path d="M1145 861.8C1161.9 866.7 1178.8 871.6 1195.8 876.5C1199.2 877.5 1202.8 878.3 1206.2 879.6C1211.6 881.6 1212.9 885.8 1214.5 890.8C1217.2 899 1219.8 907.3 1222.4 915.5C1233.2 949.1 1244 982.7 1254.7 1016.3C1255.3 1018.1 1258.2 1017.3 1257.6 1015.5C1246 979.3 1234.4 943.2 1222.8 907C1220.4 899.4 1218.6 890.9 1215.1 883.7C1212.2 877.7 1206.2 876.4 1200.3 874.7C1182.1 869.4 1163.9 864.1 1145.8 858.9C1143.9 858.4 1143.1 861.3 1145 861.8Z" fill="#161616"/>
<path d="M1124.5 909.8C1134.5 910.4 1144.4 912.2 1154 915.5C1158.5 917.1 1162.9 918.8 1166.1 922.6C1169.3 926.3 1171.1 931 1173.3 935.2C1181.3 950.8 1190.6 965.6 1201.1 979.7C1211.3 993.3 1222.5 1006.4 1234.8 1018.1C1238.9 1022 1244.6 1026.9 1250.7 1024.8C1255.4 1023.2 1258 1018.4 1255.9 1013.8C1255.1 1012.1 1252.5 1013.6 1253.3 1015.3C1255.9 1020.8 1248.4 1022.8 1245.2 1021.8C1243 1021.1 1241 1019.6 1239.3 1018.1C1236.3 1015.6 1233.6 1012.7 1230.9 1009.9C1225.7 1004.6 1220.7 999 1215.9 993.3C1205.8 981.3 1196.6 968.7 1188.3 955.3C1184.2 948.7 1180.4 942 1176.8 935.1C1173.7 929.2 1171.2 922.4 1166 918.1C1161.1 914 1154.1 912.1 1148 910.5C1140.3 908.4 1132.5 907.3 1124.6 906.8C1122.6 906.7 1122.6 909.7 1124.5 909.8Z" fill="#161616"/>
<path d="M1212.7 909.8C1209.8 912.5 1205.4 916.7 1200.3 921.9C1189.3 933.1 1183 940.7 1170.7 955.5C1158.3 970.5 1156.2 974 1156.3 979C1156.6 986.2 1161.5 991.1 1167.8 997.7C1178.6 1009.2 1187.4 1022.6 1198.6 1033.8C1214.2 1049.5 1229.7 1065.2 1247.5 1083.2C1244.6 1067.8 1240.9 1051.4 1236.1 1034.1C1230.2 1012.9 1223.6 993.6 1216.8 976.2C1221 969.2 1225.2 964.2 1228.4 960.9C1231.3 957.9 1234 955.5 1247.5 944.8C1252.7 940.7 1257 937.4 1260.2 934.9C1264.1 926.2 1262.4 921 1261.6 919C1256.9 908.2 1237 902.6 1212.7 909.8Z" fill="black"/>
<path d="M1176.3 901.8C1180.2 894.8 1185.8 885.2 1193 874.1C1204.6 856.4 1217.8 839.2 1240.2 814.4C1257.3 795.5 1276.5 774.3 1305.9 748.3C1365.4 695.9 1388.1 693.6 1396.4 693.2C1402.3 692.9 1420.7 692.3 1438.9 703.4C1444.9 707 1460.2 716.3 1464.8 733.7C1467 742 1466.3 750.6 1461.8 764.1C1451.6 794.3 1433.6 814.5 1428.5 820.2C1386.5 867.4 1498.9 747.6 1361.5 900.8C1335.2 930.1 1312.8 955 1295.6 974C1291 967.6 1283.8 958.5 1273.9 948.5C1261.6 936.1 1245.6 920.1 1220.3 910.2C1211.1 906.7 1196.1 902.2 1176.3 901.8Z" fill="white"/>
<path opacity="0.14" d="M1441.4 705.3C1440.8 713.5 1439.4 725.8 1435.1 740.2C1429.6 759 1420.3 777.6 1402.8 800.3C1379.1 831 1330.9 881 1263.3 938.3C1268.2 942.3 1273.9 947.6 1279.5 954.5C1286.1 962.6 1290.7 970.3 1293.8 976.7C1300.4 969.2 1312.5 955.5 1327.6 938.5C1362.1 899.8 1393.7 858.6 1428.4 820.2C1428.9 819.7 1447.9 798.7 1460.8 766.8C1465.1 756.1 1467.1 748.4 1465.8 739.5C1463.1 720.5 1447 709 1441.4 705.3Z" fill="#AAAAAA"/>
<path d="M1177.2 900C1201 863.5 1228 829 1257.8 797.2C1272.6 781.5 1288 766.4 1304.1 752C1320.2 737.6 1336.8 722.9 1355 711.2C1373.7 699.1 1396.4 690.6 1418.8 695.9C1429.9 698.5 1439.1 704.9 1447.6 712.4C1456.2 719.9 1463.5 728.6 1464.4 740.4C1466.1 762.3 1451.1 783.6 1439.8 801.1C1427.4 820.1 1413.6 838.2 1399.1 855.6C1365.6 895.8 1329.6 934.1 1294.6 972.9C1293.3 974.3 1295.4 976.5 1296.7 975C1330.1 937.9 1364.3 901.3 1396.6 863.2C1411.6 845.4 1426 827.1 1439 807.8C1450.8 790.2 1465 770.1 1467.3 748.4C1469.6 727 1454.4 711.6 1437.7 700.6C1419.6 688.8 1397 689 1377.2 696.3C1356.4 704 1338.8 718.5 1321.9 732.5C1304.4 747.1 1287.7 762.4 1271.6 778.5C1235.3 814.9 1202.8 855.2 1174.7 898.2C1173.6 900.1 1176.2 901.6 1177.2 900Z" fill="#161616"/>
<path d="M1176.3 903.3C1225.1 904 1271.3 933.5 1292.6 977.4C1293.4 979.1 1296 977.6 1295.2 975.9C1273.5 931.1 1226.1 901 1176.4 900.3C1174.4 900.3 1174.4 903.3 1176.3 903.3Z" fill="#161616"/>
<path d="M1211.7 908.8C1200.4 919.4 1189.8 930.6 1179.7 942.3C1175.1 947.7 1170.6 953.2 1166.3 958.9C1162.2 964.2 1156.2 970.3 1155 977.1C1154.1 982.3 1157.1 986.8 1160.1 990.7C1165 997.1 1170.2 1003.3 1175.4 1009.5C1185.6 1021.7 1196.2 1033.7 1207 1045.4C1219.3 1058.7 1232 1071.7 1245.1 1084.3C1246.5 1085.6 1248.6 1083.5 1247.2 1082.2C1220.4 1056.4 1195.1 1029 1171.5 1000.2C1165.7 993.1 1154.2 983.5 1159.4 973.6C1163.7 965.5 1170.7 957.9 1176.5 950.9C1188 936.8 1200.5 923.6 1213.7 911.1C1215.2 909.6 1213.1 907.4 1211.7 908.8Z" fill="#161616"/>
<path d="M1259.4 933.7C1247.4 942.8 1235.7 952.4 1224.5 962.4C1220.7 965.8 1215 969.4 1214.9 975.1C1214.9 977.9 1216.3 980.9 1217.2 983.5C1218.4 987.1 1219.7 990.7 1220.9 994.3C1231 1023.6 1240.7 1053.1 1246 1083.7C1246.3 1085.6 1249.2 1084.8 1248.9 1082.9C1244.1 1055.4 1235.8 1028.8 1226.8 1002.5C1224.6 995.9 1222.3 989.3 1220 982.7C1218.6 978.7 1216.8 975 1219.5 971C1221.3 968.3 1224.8 966 1227.2 963.9C1238 954.3 1249.3 945.1 1260.8 936.3C1262.4 935.2 1260.9 932.5 1259.4 933.7Z" fill="#161616"/>
<path d="M1179 433.7C1175 435.8 1169.2 439.3 1163.3 444.7C1150.1 456.8 1145.1 470.7 1140.9 482.2C1119.5 540.3 1122.1 528.3 1117.9 542.9C1108.4 576.1 1107.6 594.3 1094.7 599C1090.1 600.7 1085.3 600.2 1079.1 599.6C1065.4 598.2 1055.7 592.4 1051.2 589.6C1033.2 578.4 1024.3 562.3 1021.3 556.3C1013 539.6 1017.6 534.7 1007.2 515.2C999.3 500.5 992.9 496.2 990 494.5C978.9 488.1 968 489.5 963.3 490.2C959 490.8 953.5 491.6 951.9 495.4C950.4 498.9 952.9 503 953.4 503.9C958.6 512.4 971.5 511.9 972.9 511.8C971.9 511.6 955 508.9 947.3 518.7C943.5 523.4 942.4 530.6 942 532.9C941.9 533.7 941.3 537.5 941.6 542.7C941.7 543.8 941.9 547.3 943.9 554.6C946.2 563.2 947.4 567.5 950.2 570.6C951.8 572.4 955.6 576.6 960.6 575.9C964.5 575.4 967 572.2 967.7 571.2C972.4 572.7 976.7 574.2 980.3 575.5C987.7 578.1 989.6 579 991.4 580.7C995.3 584.3 995.9 589.1 996.6 592.4C998.1 599.3 1002.2 605.5 1010.3 618C1015 625.2 1022.5 636.7 1036.6 646.2C1040.3 648.7 1052.3 656.4 1069.9 659.4C1090.3 662.9 1106.3 658.1 1113.9 655.7C1116.4 654.9 1128.7 650.9 1142.5 641.4C1142.5 641.4 1156 632.1 1166.3 619.5C1180.4 602.2 1181 587.6 1192 539.9C1203.9 488.3 1210.1 476.1 1202 458.7C1196.1 446.2 1186.1 438.3 1179 433.7Z" fill="white"/>
<path opacity="0.29" d="M949.2 564.7C953.2 565.9 961.3 567.7 971 565.6C985.1 562.5 993.4 553.2 995.9 550.1C996.9 556.2 998.7 565.1 1002.6 575.4C1007.8 589.5 1017.4 615.3 1042.5 630.6C1048.3 634.2 1066.9 645.5 1089.8 641.9C1113.8 638.1 1128.2 620 1145 598.6C1161.2 578.1 1169.1 559.8 1178.3 538.7C1186.2 520.4 1196.5 496.7 1200.4 471.2C1200.8 468.5 1201.1 466.1 1201.6 466.1C1203.7 466.1 1211.6 515.4 1198.3 567.3C1194.7 581.3 1191.6 592.8 1183 605.9C1169.5 626.3 1151.8 636.7 1139.8 643.5C1125.9 651.4 1112.9 658.8 1093.8 660.2C1065.9 662.2 1045.2 649.9 1038.6 645.8C1020.1 634.4 1010.3 619.6 1004 609.9C995.9 597.4 991.3 585.7 988.7 577.3C979.7 572.9 972.8 572.7 968.2 573.4C962.6 574.2 958.6 576.5 954.8 574.4C951 572.6 949.7 568.1 949.2 564.7Z" fill="#AAAAAA"/>
<path d="M1188.2 431.9C1173.5 429.6 1162.8 441.7 1155.4 452.8C1145.9 467.2 1138.5 482.9 1132.1 498.9C1125.5 515.5 1119.9 532.4 1114.2 549.3C1111.4 557.5 1108.6 565.6 1105.5 573.7C1102.4 582 1099.6 594.2 1091.8 599.3C1090.2 600.3 1091.7 602.9 1093.3 601.9C1099.1 598.2 1101.5 591.9 1104 585.7C1107.3 577.7 1110.3 569.6 1113.1 561.5C1118.7 545.7 1123.8 529.8 1129.5 514.1C1135.3 498.1 1141.8 482.4 1150.1 467.5C1157.4 454.3 1169.3 431.9 1187.5 434.8C1189.3 435 1190.1 432.2 1188.2 431.9Z" fill="#161616"/>
<path d="M975.3 511C970 510.3 964.8 508.8 960 506.4C957.9 505.4 955.5 504.2 954 502.4C951 499.1 953.2 495.4 956.8 493.8C964.3 490.3 973.3 490.2 981.2 492.5C988.8 494.7 995.8 499.2 1000.6 505.6C1006.6 513.7 1008.1 524.1 1010.7 533.6C1016.6 555.9 1030.1 577.8 1049.8 590.4C1062.6 598.5 1077.5 601.9 1092.5 602C1094.4 602 1094.4 599 1092.5 599C1075.3 598.8 1058.5 594.1 1044.9 583.2C1032.5 573.2 1023.4 559.3 1017.5 544.6C1012.1 531.2 1011.7 515.3 1002.8 503.5C993.6 491.3 976.9 485.4 962 488.8C956.1 490.2 946.1 494.1 950 501.9C954 509.9 967.5 512.8 975.3 513.8C977.2 514.2 977.2 511.2 975.3 511Z" fill="#161616"/>
<path d="M972.9 510.4C962.8 511.5 933.9 515.6 940.1 532.3C946.5 549.6 969.2 544.1 981.6 538.8C983.4 538 981.8 535.5 980.1 536.2C969.2 540.9 950.6 546.2 943.5 532.5C936.1 518.3 964.9 514.4 973 513.5C974.8 513.2 974.9 510.2 972.9 510.4Z" fill="#161616"/>
<path d="M955.2 530.2C962.7 527.8 978.9 524.3 979 537.1C979 539 982 539 982 537.1C982 531.9 978.7 527.7 973.9 525.8C967.6 523.2 960.6 525.3 954.4 527.3C952.6 527.9 953.4 530.8 955.2 530.2Z" fill="#161616"/>
<path d="M940.6 532.6C936.5 543.2 944.4 553.9 955.1 555.7C965.2 557.3 978 551.8 979.6 540.7C979.9 538.8 977 538 976.7 539.9C973.9 560.6 935.3 554.7 943.5 533.4C944.2 531.6 941.3 530.9 940.6 532.6Z" fill="#161616"/>
<path d="M943.7 548.8C940 557.7 945.7 567.7 955.3 569C966.1 570.4 974.1 561.2 973.7 550.9C973.6 549 970.6 549 970.7 550.9C971 559 965.4 566.5 956.7 566.2C948.2 565.8 943.4 557.2 946.6 549.7C947.3 547.9 944.4 547.1 943.7 548.8Z" fill="#161616"/>
<path d="M947.7 564.7C946.8 571.9 953.6 578.4 960.8 577.6C968.2 576.8 972.8 569.3 972.7 562.3C972.7 560.4 969.7 560.4 969.7 562.3C969.8 567.4 966.8 573 961.5 574.4C955.6 575.9 950 570.6 950.7 564.7C950.9 562.8 947.9 562.8 947.7 564.7Z" fill="#161616"/>
<path d="M967.5 574.9C973.3 575.9 980 576.3 985.7 578.1C991.4 580 993 587.8 995.3 592.8C999.5 602 1004 610.9 1009.5 619.4C1020.3 635.9 1034.6 649.6 1053.3 656.7C1093.2 671.8 1140.8 654.2 1166.8 621.6C1174.4 612.1 1179.2 601.1 1183 589.7C1187.4 576.5 1191.3 563.1 1195.1 549.7C1195.6 547.8 1192.7 547 1192.2 548.9C1188.9 560.3 1185.6 571.7 1182 583C1178.6 593.9 1174.7 604.7 1168.4 614.3C1156.5 632.3 1136.8 646 1116.7 653.3C1096.6 660.6 1074.2 661.4 1054.1 653.8C1034.4 646.3 1019.9 631 1009.2 613.2C1003.6 603.9 999 594 994.7 584.1C993.2 580.6 991.8 577.2 988 575.6C982.1 573.3 974.6 573.1 968.3 572C966.4 571.7 965.6 574.6 967.5 574.9Z" fill="#161616"/>
<path d="M1244.9 393.8C1215.3 402.2 1195.3 421.7 1189.2 427.8C1175.7 441.2 1167 455.4 1161.3 467C1145.4 499.7 1145.9 529.8 1146.4 545.4C1147 567.1 1150.9 577.6 1156.4 603.1C1161.5 626.6 1167.4 660.5 1170.3 703.1C1181.9 713.2 1203.4 728.7 1234 735.1C1246.5 737.7 1285.2 745.7 1322.6 722.7C1340.4 711.7 1351.4 697.7 1357.4 688.7C1364 617.7 1369.5 558 1375.3 496.9C1377.6 473 1379.6 451.4 1367.3 430.9C1344.8 393.4 1287.2 381.8 1244.9 393.8Z" fill="#EC615B"/>
<path d="M1348.8 430.7C1344.8 431.9 1340.8 435.8 1335.7 454.3C1329.2 478 1328.7 497.3 1328.6 501.9C1328.2 531.5 1329.1 554.5 1329.7 566.4C1331.9 613 1334 625.1 1337.9 637.7C1340 644.7 1345.5 657.2 1349.5 666.5C1354.7 678.6 1359.2 688.5 1362.5 695.3C1358.6 699.9 1355 703.1 1352.4 705.1C1344 711.7 1338.5 712.6 1332.1 720.1C1330.3 722.2 1326 727.2 1327.5 729.9C1328.9 732.3 1334.4 731.6 1336 731.4C1342.5 730.6 1344.7 727.3 1351.4 725C1354 724.1 1357.9 723.1 1363.2 723.1C1361.2 728.7 1358.7 734.8 1355.5 741.2C1350.8 750.6 1345.6 755.6 1336.1 770.7C1330.7 779.4 1328.9 783.1 1330.3 784.9C1332.4 787.5 1340.3 784.3 1340.8 784C1347.8 781.1 1351.5 775.8 1354 772.4C1358.2 766.8 1364.5 759.3 1374 750.9C1370.4 760.2 1367 767.5 1364.6 772.2C1361.3 778.8 1357.1 786.6 1352 798.1C1346.8 809.8 1346.1 813.1 1347.4 814.1C1349 815.4 1353.3 812.9 1356.8 810.4C1357.7 812.2 1359.4 815 1362.1 815.6C1365.7 816.3 1369.2 812.7 1372 809.7C1383.1 797.8 1388.6 791.8 1395.3 783.8C1398.3 780.2 1402.7 775.1 1408.5 769.3C1408.9 773.9 1409 778.9 1408.9 784.2C1408.7 794.3 1405.7 799.8 1407.7 801C1409.6 802.2 1414.4 798.7 1417.3 794.7C1420.7 790 1421 784.9 1421.1 779.7C1421.4 765.3 1420 756.8 1419.4 744.3C1419 735.1 1419.2 728.1 1419.2 726.5C1419.7 708.6 1422.1 706 1420.9 694.5C1419.6 682.1 1415.9 675.7 1414.5 673.6C1411.7 669.2 1408.6 666.1 1406.3 664.1C1406.7 662 1407.1 659 1406.4 655.4C1405.3 649.6 1402 646.5 1398.1 640.7C1396 637.6 1393.2 633 1390.5 626.8C1391.3 622.3 1392.2 615.5 1392.8 607.2C1394.1 589.7 1392.8 576.6 1391.9 566.9C1389.4 540.9 1386.2 514.9 1383.9 488.8C1382 467.2 1381.6 456.3 1373 444.9C1372.1 444 1359.5 427.6 1348.8 430.7Z" fill="white"/>
<path opacity="0.22" d="M1369.3 440.9C1371.6 459.1 1373.6 477.8 1375.3 496.9C1379.2 541.5 1380.9 584.1 1381 624.1C1385 628.2 1390 634.2 1394.4 642.2C1397 647 1400.6 653.4 1402.4 662.5C1402.8 664.6 1402.9 665.5 1403.3 669C1404.8 680.7 1406.6 688.9 1407.3 692.8C1409.5 704.1 1411.7 725.9 1411.9 747.7C1412 761.5 1411.3 779.9 1408.1 801.5C1411.6 799.7 1416.6 796.5 1419.5 790.8C1422.5 784.9 1421.8 779.4 1421 771C1421 771 1419.5 755 1419.2 739.9C1418.8 723.7 1421.1 721.9 1420.8 707.3C1420.4 691.9 1419.8 685.4 1417.1 678.8C1414.5 672.6 1411 668 1408.4 665.1C1408.1 660.8 1407.1 655.1 1404.6 648.7C1400.9 639.4 1395.6 633 1392 629.3C1392.4 623.2 1392.9 614.2 1393.2 603.2C1393.7 581.1 1394.3 544.6 1385.7 500.2C1382.7 485.3 1377.8 464.8 1369.3 440.9Z" fill="#AAAAAA"/>
<path d="M1351.8 429.3C1369.1 433.6 1375.5 451.5 1378.7 467.2C1382.2 484.6 1384.7 502.3 1386.7 520C1390.7 555.4 1392.2 591 1391.1 626.5C1391 628.4 1394 628.4 1394.1 626.5C1395.2 587.7 1393.4 548.8 1388.5 510.3C1386.2 492.3 1384.3 473.5 1379.1 456.1C1375.1 442.8 1366.9 429.9 1352.6 426.3C1350.7 425.9 1349.9 428.8 1351.8 429.3Z" fill="#161616"/>
<path d="M1380.6 625.6C1397 630.6 1403.4 647.5 1406.4 662.9C1406.8 664.8 1409.7 664 1409.3 662.1C1406.1 645.6 1398.9 628 1381.4 622.7C1379.6 622.1 1378.8 625 1380.6 625.6Z" fill="#161616"/>
<path d="M1392.6 661.7C1404.7 662.1 1413.3 672.1 1417.1 682.8C1421.6 695.5 1419.2 709.5 1418.1 722.6C1417 735.5 1418.4 748 1419.5 760.8C1420 767.2 1420.4 773.6 1419.7 780C1419.2 785.2 1416.5 802.3 1408.2 799.8C1408.6 800.3 1408.9 800.8 1409.3 801.2C1410.6 790.6 1410.8 780 1410.1 769.4C1410 767.5 1407 767.5 1407.1 769.4C1407.9 780 1407.6 790.6 1406.3 801.2C1406.2 801.9 1406.8 802.5 1407.4 802.6C1420.2 806.5 1422.8 782.5 1423 774.8C1423.5 757.9 1419.7 741.4 1420.9 724.4C1422.1 709.1 1425.1 692.8 1418.5 678.2C1413.7 667.6 1404.7 658.9 1392.6 658.5C1390.7 658.7 1390.7 661.7 1392.6 661.7Z" fill="#161616"/>
<path d="M1391 658.9C1381.4 666.4 1374.6 676.4 1367.4 686.1C1363.6 691.2 1359.7 696.3 1355.2 700.7C1349.9 705.9 1343.7 710 1337.7 714.2C1333.5 717.2 1318.9 727 1328.1 733C1332.5 735.9 1339.3 731.9 1343.5 730.4C1350.6 727.8 1357.8 725.3 1364.9 722.7C1366.7 722.1 1365.9 719.2 1364.1 719.8C1358.5 721.8 1352.8 723.9 1347.2 725.9C1344.5 726.9 1341.9 727.8 1339.2 728.8C1337.8 729.3 1336.4 729.9 1334.9 730.3C1333.8 730.7 1332.7 730.9 1331.6 731C1330.6 729.9 1329.6 728.8 1328.6 727.7C1327.4 723.2 1339.3 716.8 1342.2 714.8C1346.4 711.9 1350.6 708.9 1354.4 705.6C1369.4 692.5 1377.4 673.3 1393.2 661.1C1394.7 659.9 1392.5 657.7 1391 658.9Z" fill="#161616"/>
<path d="M1361.7 722.8C1358.6 734.5 1352 744.6 1345.1 754.5C1341.7 759.4 1338.2 764.4 1335.1 769.5C1332.8 773.3 1328.6 778.8 1328.5 783.4C1328.3 792.8 1342.6 785 1345.6 782.5C1356.5 773.5 1366.1 762.5 1375.5 752C1376.8 750.6 1374.7 748.4 1373.4 749.9C1365.8 758.4 1357.9 766.7 1349.7 774.6C1345.8 778.4 1341.6 783.2 1336.1 784.5C1333.4 785.2 1331.5 784.3 1332 781.7C1332.2 780.5 1333.3 778.8 1333.8 777.7C1334.9 775.6 1336 773.6 1337.2 771.6C1346.7 755.7 1359.6 741.7 1364.5 723.5C1365.1 721.7 1362.2 720.9 1361.7 722.8Z" fill="#161616"/>
<path d="M1372.7 750.4C1366.5 764 1360.3 777.7 1354.1 791.3C1351.5 797 1348.2 802.8 1346.3 808.7C1345.4 811.4 1344.9 815.1 1347.7 816.9C1351.1 819.1 1354.4 815.9 1356.5 813.4C1361.1 808.1 1365.5 802.6 1369.8 797.1C1378.1 786.4 1386 775.3 1393.4 763.9C1394.5 762.3 1391.9 760.8 1390.8 762.4C1385.1 771.1 1379.2 779.6 1373 788C1369.6 792.5 1366.1 797 1362.6 801.4C1360.9 803.5 1359.1 805.7 1357.4 807.8C1356.6 808.7 1355.8 809.7 1355 810.6C1353.4 812.4 1353.4 813.1 1350.7 812.8C1348.1 812.4 1348.4 812.3 1349.1 810.1C1349.5 808.7 1350.2 807.5 1350.8 806.2C1352 803.5 1353.2 800.9 1354.4 798.2C1356.7 793.2 1359 788.1 1361.3 783.1C1366 772.7 1370.7 762.3 1375.4 752C1376.1 750.1 1373.5 748.6 1372.7 750.4Z" fill="#161616"/>
<path d="M1356.2 815.8C1366 821.9 1375.5 808.9 1381.2 802.7C1390.5 792.8 1399.1 782.1 1406.9 771C1408 769.4 1405.4 767.9 1404.3 769.5C1398 778.5 1391.2 787.1 1383.9 795.3C1380.5 799.1 1377 802.8 1373.4 806.4C1369.4 810.4 1363.8 817 1357.6 813.2C1356 812.2 1354.5 814.8 1356.2 815.8Z" fill="#161616"/>
<path d="M1350.9 427C1339 436.4 1334.3 451.2 1331.5 465.6C1327.8 484.9 1326.5 504.6 1326.4 524.2C1326.4 544.3 1327.8 564.3 1329.7 584.3C1331.5 603.1 1332.5 622.8 1337 641.2C1341.8 660.8 1355.9 676.3 1360.9 695.8C1361.4 697.7 1364.3 696.9 1363.8 695C1359.7 678.9 1349.3 665.8 1343.2 650.6C1336.3 633.3 1335.8 613.2 1333.8 594.8C1329.7 556.4 1327 517.5 1332.3 479.1C1334.7 461.3 1338 440.9 1352.9 429.1C1354.5 427.9 1352.4 425.8 1350.9 427Z" fill="#161616"/>
<path d="M1199.5 209.3C1177.6 227.7 1171 251.2 1167.2 264.7C1156.9 301.3 1165.3 331.4 1172.7 357.9C1181.5 389.3 1186.4 407 1203.2 415.1C1228.4 427.3 1259.1 407.6 1263.4 404.7C1266.5 406.7 1270.9 408.8 1276.1 408.6C1279.2 408.5 1292.4 407.2 1312.1 367.1C1324.7 341.4 1332.4 325.8 1334.2 301.6C1335.2 288.8 1337.9 253.1 1314.8 221.3C1308.4 212.5 1297 196.7 1276 189.9C1238.4 177.6 1204 205.6 1199.5 209.3Z" fill="white"/>
<path opacity="0.17" d="M1265.3 212.9C1270.8 224.6 1277.6 242.6 1280.3 265.4C1281 271.4 1283.5 295.6 1276.6 326.1C1271.4 348.9 1262.8 366.9 1255.3 379.6L1269.1 382.3C1269.4 385.4 1271.2 403.5 1281.4 407.3C1293 411.6 1307.8 394.4 1315.6 385.3C1322.5 377.3 1338.2 358.6 1342.6 329.1C1348.7 288.2 1328.5 257.8 1318.6 242.9C1310.3 230.5 1296.4 209.6 1277.4 209.9C1272.3 210 1268.1 211.5 1265.3 212.9Z" fill="#AAAAAA"/>
<path d="M1253.3 199C1254.9 208.2 1258.3 221 1265.6 234.9C1275.1 252.9 1287.1 264.8 1295.2 271.6C1300.3 267.8 1306.7 266.8 1311.8 269.3C1319.6 273.1 1319.9 283 1320 285.3C1320 286.5 1320.1 292.7 1316.1 298.4C1308.5 309.3 1293.7 308.3 1292.8 308.3C1286.8 317.8 1276.7 336.4 1275.1 361.7C1274.2 376.5 1272.8 399 1286.9 415.3C1308.1 439.8 1356.6 441.4 1377.7 418.7C1400.9 393.6 1383 347.3 1375.5 327.9C1364.1 298.5 1353.9 299.5 1348.6 274.1C1342 242.4 1355.3 228.4 1343 206.9C1331.5 186.8 1309.9 181.5 1308.3 181.1C1278.3 174.3 1254.9 197.4 1253.3 199Z" fill="#5B21B6"/>
<path d="M1281.3 194.6C1266.3 196.3 1245.7 200.4 1223 210.3C1205.9 217.8 1192.3 226.6 1182.1 234.3C1174.6 256.9 1172.8 276.4 1172.5 289.8C1172.2 303.9 1171.9 319 1178.4 337.6C1181.6 346.9 1188.9 366.9 1208.4 381.8C1213.8 385.9 1218.7 388.6 1222.2 390.3C1228.5 389.1 1235 387.6 1241.7 385.9C1245.3 385 1248.9 384 1252.3 383C1255.1 385.4 1267.1 395.8 1265.8 408.5C1264.3 423.1 1246.4 430.6 1234.4 435.5C1225.2 439.3 1188.8 454.5 1164.5 436.4C1150.6 426.1 1147.8 410.2 1143.5 385.9C1135.2 339.5 1142.6 337.6 1145.7 286.2C1148.6 239.1 1147.2 230.7 1155.8 216.7C1170.2 193.1 1195.1 184.5 1208.5 179.7C1241.6 167.9 1283.2 168.5 1287.3 180.5C1288.3 184 1286.9 188.4 1281.3 194.6Z" fill="#5B21B6"/>
<path d="M1180.7 233.8C1172.4 265.3 1166.4 299.3 1175 331.5C1181.8 356.7 1197.5 380.1 1221.4 391.6C1223.1 392.4 1224.7 389.9 1222.9 389C1199.2 377.5 1183.8 354.3 1177.5 329.2C1169.6 297.9 1175.5 265.1 1183.5 234.5C1184.1 232.7 1181.2 232 1180.7 233.8Z" fill="#161616"/>
<path d="M1223.1 391.2C1244.2 389.8 1263.6 379.3 1276.4 362.5C1277.6 361 1275 359.5 1273.8 361C1261.7 377 1243.1 386.9 1223.1 388.2C1221.1 388.3 1221.1 391.3 1223.1 391.2Z" fill="#161616"/>
<path d="M1251 383.9C1255.1 392.6 1259.6 401.1 1264.5 409.4C1265.5 411.1 1268.1 409.6 1267.1 407.9C1262.2 399.6 1257.7 391.1 1253.6 382.4C1252.7 380.6 1250.2 382.2 1251 383.9Z" fill="#161616"/>
<path d="M1208.8 260.5C1209.6 285.6 1209.9 310.6 1209.7 335.7C1209.7 337.3 1211.7 337.6 1212.5 336.5C1217.1 330.4 1221.6 324.1 1225.9 317.8C1227 316.2 1224.4 314.7 1223.3 316.3C1219 322.6 1214.5 328.9 1209.9 335C1210.8 335.3 1211.8 335.5 1212.7 335.8C1212.9 310.7 1212.6 285.7 1211.8 260.6C1211.7 258.6 1208.7 258.5 1208.8 260.5Z" fill="#161616"/>
<path d="M1215 355.6C1229.7 356.4 1243.7 348 1250 334.6C1250.8 332.9 1248.2 331.3 1247.4 333.1C1241.6 345.6 1228.8 353.3 1215 352.6C1213 352.5 1213 355.5 1215 355.6Z" fill="#161616"/>
<path d="M1246.6 311.9C1248.5 311.9 1248.5 308.9 1246.6 308.9C1244.6 308.9 1244.6 311.9 1246.6 311.9Z" fill="#161616"/>
<path d="M1258.3 308.9C1260.2 308.9 1260.2 305.9 1258.3 305.9C1256.4 305.9 1256.4 308.9 1258.3 308.9Z" fill="#161616"/>
<path d="M1255.4 318.5C1257.3 318.5 1257.3 315.5 1255.4 315.5C1253.4 315.5 1253.4 318.5 1255.4 318.5Z" fill="#161616"/>
<path d="M1187.8 322.9C1189.7 322.9 1189.7 319.9 1187.8 319.9C1185.9 319.9 1185.9 322.9 1187.8 322.9Z" fill="#161616"/>
<path d="M1195.9 318.5C1197.8 318.5 1197.8 315.5 1195.9 315.5C1194 315.5 1194 318.5 1195.9 318.5Z" fill="#161616"/>
<path d="M1194.4 328.8C1196.3 328.8 1196.3 325.8 1194.4 325.8C1192.5 325.8 1192.5 328.8 1194.4 328.8Z" fill="#161616"/>
<path d="M1186.9 250.2C1190.5 244.3 1198.1 243.4 1203 248.3C1204.4 249.7 1206.5 247.5 1205.1 246.2C1198.8 239.9 1188.9 241.2 1184.3 248.7C1183.3 250.3 1185.9 251.8 1186.9 250.2Z" fill="#161616"/>
<path d="M1234.4 241.7C1241.1 234.9 1251.6 235.7 1256.8 243.7C1257.9 245.3 1260.5 243.8 1259.4 242.2C1253 232.6 1240.3 231.3 1232.2 239.6C1230.9 240.9 1233 243.1 1234.4 241.7Z" fill="#161616"/>
<path d="M1291.5 278.4C1295.1 272.2 1301.8 267.9 1309.1 270C1316.4 272.1 1318.8 279.3 1318.3 286.2C1317.5 299.2 1306.2 309.1 1293 306.9C1291.1 306.6 1290.3 309.5 1292.2 309.8C1309.2 312.6 1322.9 298.4 1321.2 281.6C1320.4 274 1315.6 267.9 1307.9 266.7C1299.9 265.4 1292.8 270.2 1288.9 276.9C1288 278.5 1290.6 280 1291.5 278.4Z" fill="#161616"/>
<path d="M1191.3 303.5C1193.23 303.5 1194.8 298.799 1194.8 293C1194.8 287.201 1193.23 282.5 1191.3 282.5C1189.37 282.5 1187.8 287.201 1187.8 293C1187.8 298.799 1189.37 303.5 1191.3 303.5Z" fill="#161616"/>
<path d="M1246.6 298.8C1248.53 298.8 1250.1 294.099 1250.1 288.3C1250.1 282.501 1248.53 277.8 1246.6 277.8C1244.67 277.8 1243.1 282.501 1243.1 288.3C1243.1 294.099 1244.67 298.8 1246.6 298.8Z" fill="#161616"/>
<defs>
<clipPath id="clip0_502_15">
<rect width="69.7508" height="76.3747" fill="white" transform="translate(800 364.471) rotate(-24.994)"/>
</clipPath>
</defs>
</svg>
<svg enable-background="new 0 0 1600 1200" viewBox="0 0 1600 1200" xmlns="http://www.w3.org/2000/svg"><g fill="#e8e8e8"><path d="m92.8 795.9h253.5 252.5 142.7c1.9 0 1.9-3 0-3-84.5 0-169 0-253.5 0-84.2 0-168.3 0-252.5 0-47.6 0-95.1 0-142.7 0-1.9 0-1.9 3 0 3z"/><path d="m232 876.7c4.8 4.8 9.6 9.6 14.3 14.3 1.4 1.4 3.5-.8 2.1-2.1-4.8-4.8-9.6-9.6-14.3-14.3-1.4-1.4-3.5.8-2.1 2.1z"/><path d="m706.4 874h281.2 282.2 158.6c1.9 0 1.9-3 0-3-93.7 0-187.5 0-281.2 0-94.1 0-188.1 0-282.2 0-52.9 0-105.7 0-158.6 0-1.9 0-1.9 3 0 3z"/><path d="m849.9 808.6h254 255 143c1.9 0 1.9-3 0-3-84.7 0-169.3 0-254 0-85 0-170 0-255 0-47.7 0-95.3 0-143 0-2 0-2 3 0 3z"/><path d="m139 1028.6h358.9 101.7c1.9 0 1.9-3 0-3-119.6 0-239.3 0-358.9 0-33.9 0-67.8 0-101.7 0-1.9 0-1.9 3 0 3z"/><path d="m109.8 790.2c-8.9-8.9-15.2-19.6-18.7-31.7-.5.6-1 1.3-1.4 1.9 2.6-.2 5.3-.4 7.9-.6 1.5-.1 2-1.9.8-2.8-4.1-2.8-6.7-7-7.7-11.8-.5-2.6-.5-5.3 0-7.9.5-2.1 2.1-4 2.5-5.9.6-3.3-3.2-8.4-4.5-11.5-2.5-5.8-4.7-11.6-6.8-17.6-7.9-22.7-12.9-46.3-14.9-70.2-.6.5-1.3 1-1.9 1.4 3 1.1 5.3 2.9 7.3 5.5.9 1.3 3.3.6 2.7-1.2-4.3-14.9-5.5-30.2-3.6-45.6-.9.4-1.7.7-2.6 1.1 7.8 7.2 12.4 16.6 16.1 26.3 4.1 11 7.7 22.3 11.4 33.5 7.7 23.5 15.1 47.1 22.1 70.7.5 1.5 3.2 1.3 2.9-.4 1.4-3.4 2.5-4.2 3.2-2.2.4.8.8 1.6 1.2 2.4.8 1.6 1.6 3.2 2.4 4.8 1.4 3 2.8 6 4.1 9 2.7 6.1 6.4 11.3 9.4 17.3 6.3 12.3 9.4 26 9.3 39.8 0 1.9 3 1.9 3 0 0-13.2-2.7-26.3-8.3-38.3-2.9-6.2-7.2-11.6-9.8-17.8-3-7.2-6.4-14.2-10.1-21-.2-.5-.8-.7-1.3-.7-3.9 0-6.7 2.9-6.2 6.8 1-.1 2-.3 2.9-.4-7.4-25-15.2-49.8-23.3-74.5-6.4-19.4-11.4-43-27-57.4-1-1-2.4-.2-2.6 1.1-2 15.6-.7 31.3 3.7 46.4.9-.4 1.8-.8 2.7-1.2-2.4-3.3-5.2-5.4-9.1-6.9-.9-.3-2 .5-1.9 1.4 2.2 26.3 7.9 52.3 17.2 77.1 2.2 5.8 4.6 11.6 7.2 17.3 1.4 3.1 1.8 3.8.6 6.8-.7 1.8-1.2 3.7-1.4 5.6-1 8.2 2.7 16.2 9.5 20.9.3-.9.5-1.9.8-2.8-2.6.2-5.3.4-7.9.6-1 .1-1.7.9-1.4 1.9 3.6 12.6 10.2 23.8 19.5 33 1.2 1.2 3.4-.9 2-2.2z"/><path d="m135.8 977.6c1.9 0 1.9-3 0-3s-1.9 3 0 3z"/><path d="m168.4 972.7c-2.3 7.7-16.2 5.3-21.9 4.3-7-1.2-13.8-3.4-20.3-6-6.6-2.6-13.3-5.8-18.2-11-5.1-5.4-9.9-15.3-3.7-21.8 9.4-9.9 29.4-2.1 39.4 3.2 9.5 4.9 31.6 19.3 23.7 32.3-1 1.7 1.6 3.2 2.6 1.5 7-11.6-5.6-23.1-14-29.6-10.9-8.3-25.4-14.8-39.3-14.9-12.4-.1-21.6 9.2-17 21.7 4.9 13.3 19.3 19.4 31.7 23.6 8.7 3 18.3 5.3 27.6 4.8 5.2-.3 10.7-1.9 12.4-7.4.4-1.8-2.5-2.6-3-.7z"/><path d="m99.7 951.4c-.2 13.5 13.5 22.6 24.5 27.7 12.3 5.7 26.8 6.9 38.6-.7 1.6-1 .1-3.6-1.5-2.6-10.9 7-24.2 6-35.5.7-9.9-4.6-23.2-12.8-23-25.1-.1-1.9-3.1-1.9-3.1 0z"/><path d="m124.1 942c-10.7 18.3 28.1 36.9 31 15.9.3-1.9-2.6-2.7-2.9-.8-2.2 16.5-33.9.7-25.5-13.6.9-1.6-1.6-3.1-2.6-1.5z"/><path d="m129.2 964.6c2.1-4.1 4.2-8.2 6.3-12.3.9-1.7-1.7-3.2-2.6-1.5-2.1 4.1-4.2 8.2-6.3 12.3-.9 1.7 1.7 3.2 2.6 1.5z"/><path d="m137.8 966.5c1.6-3.9 3.8-7.7 6.4-11 1.2-1.5-.9-3.6-2.1-2.1-3 3.8-5.3 7.9-7.2 12.4-.7 1.7 2.2 2.5 2.9.7z"/><path d="m242.3 968.1c-1.8-10.4 4.8-20.1 12.5-26.3 3.8-3.1 9.8-7.2 14.9-6.9 7.7.6 9.6 9.6 8.4 15.8-1.7 8.6-7.7 16.1-15.4 20.3-3.8 2.1-8.5 3.7-12.8 3.6-6.8-.2-6.7-6.9-6-11.9.3-1.9-2.6-2.7-2.9-.8-.6 4.5-1.2 10.5 2.8 13.8 3.9 3.3 10.4 1.8 14.9.3 11.5-3.9 21.2-14.4 22.6-26.6.7-5.7-.8-11.9-5.8-15.4-5.6-3.9-12-1.2-17.4 1.9-11.3 6.7-21.1 19.3-18.7 33 .3 1.9 3.2 1.1 2.9-.8z"/><path d="m269.2 943.9c-3.1-1.8-6.2-.8-9 1.1-3.4 2.3-7.1 5.9-9.2 9.5-1.7 2.9-1.5 6.2.9 8.7 2.9 3.1 7.3 3 11 1.7 1.8-.6 1-3.5-.8-2.9-2.8.9-5.9 1.3-8-1-2.9-3.1.1-6.1 2.2-8.4 2.5-2.6 7.3-8.5 11.4-6.2 1.7 1.1 3.2-1.5 1.5-2.5z"/><path d="m250.3 952.1c2.3.7 4.5 1.9 6.3 3.4 1.5 1.2 3.6-.9 2.1-2.1-2.3-1.9-4.8-3.3-7.7-4.2-1.8-.6-2.6 2.3-.7 2.9z"/><path d="m255 947.2c3.5 1 6.6 2.8 9.3 5.3 1.4 1.3 3.5-.8 2.1-2.1-3.1-2.8-6.6-4.9-10.6-6.1-1.9-.5-2.7 2.4-.8 2.9z"/><path d="m245 975.6c17.6 21.3 53.3-17.7 33.9-34.7-1.4-1.3-3.6.8-2.1 2.1 16.4 14.3-14.5 48.8-29.6 30.4-1.3-1.4-3.4.7-2.2 2.2z"/><path d="m1414 948.4c-2.6-9.5 4.2-17.1 12.3-21 4.4-2.1 10.4-3.8 15-1.1 4.9 2.9 6 9.1 4.9 14.2-1.7 8-8 17.1-16.5 18.6-11.2 1.9-14.9-8.5-15.3-17.5-.1-1.9-3.1-1.9-3 0 .4 10.6 5 21.9 17.6 20.6 11.4-1.2 20.3-14 20.6-24.8.4-12.5-10.8-17.8-21.6-13.9-10.6 3.8-20.2 13.7-16.8 25.7.5 1.9 3.3 1.1 2.8-.8z"/><path d="m1435.8 929.3c-1.8 1.9-3.6 3.8-5.4 5.7-1.3 1.4.8 3.5 2.1 2.1 1.8-1.9 3.6-3.8 5.4-5.7 1.4-1.4-.7-3.5-2.1-2.1z"/><path d="m1436.3 936.8c-4.4-3-9.2-.4-12 3.4-.4.5-.2 1.4.2 1.8.7.7 5 2.3 3.9 3.7-.2.3-2.1.5-2.5.6-1.6.2-2.9.1-4.2-.9-1.6-1.1-3.1 1.5-1.5 2.6 2.7 2 8.2 1.9 10.9-.3 1.1-.9 1.4-2.4.9-3.7-1-2.5-3.6-2.5-5.3-4.1.1.6.2 1.2.2 1.8 1.9-2.5 4.9-4.3 7.9-2.3 1.6 1 3.1-1.6 1.5-2.6z"/><path d="m1423.5 947.7c-1.2 1.1-2.3 2.4-3.1 3.8-1 1.7 1.6 3.2 2.6 1.5.7-1.2 1.6-2.3 2.6-3.2 1.4-1.2-.7-3.4-2.1-2.1z"/><path d="m1479 913.3c-6.3-1.9-11.3-7.6-14.5-13.1-4.8-8.2 1.5-17 10.7-16.4 7.8.5 13.4 7.2 15.8 14.1 1.2 3.6 2.5 8.4.4 11.8-2.9 4.7-8.9 4.2-13.3 2.6-1.8-.7-2.6 2.2-.8 2.9 9.4 3.4 19.2-1.1 18.1-12.1-1-10-7.9-20.3-18.2-22.1-8.5-1.5-18 4.5-17.6 13.8.4 8.9 10.5 18.9 18.7 21.4 1.8.5 2.6-2.4.7-2.9z"/><path d="m1468.6 889.4c1.5 1.2 3 2.3 4.5 3.5.6.5 1.7.1 2.1-.5.5-.8.1-1.6-.5-2.1-1.5-1.2-3-2.3-4.5-3.5-.6-.5-1.7-.1-2.1.5-.5.8-.2 1.6.5 2.1z"/><path d="m1481.2 890.5c-.9-2.3-3.3-2.9-5.4-1.5-2 1.4-3.5 4.6-3.1 7.1.4 2.3 2.1 3.6 4.3 2.5 1.5-.8 2.8-2.5 4.7-2.5 1.1 0 2.2.5 1.6 2-.5 1.2-2.3 1.6-3.5 1.8-1.9.5-1.1 3.4.8 2.9 2.3-.6 4.7-1.6 5.6-4 .7-1.9.1-3.9-1.6-5-1.6-1-3.7-.9-5.4-.2-.6.2-3.3 2.4-3.6 2.3-.4-.2.8-2.9.9-3 .2-.3 1.7-2.3 1.9-1.7.6 1.9 3.5 1.1 2.8-.7z"/><path d="m1481.5 902.1c1.1 1.6 2.4 3 4 4.2.6.5 1.5.6 2.1 0 .5-.5.6-1.6 0-2.1-1.3-1-2.5-2.2-3.5-3.6-.5-.7-1.3-1-2.1-.5-.6.4-1 1.4-.5 2z"/><path d="m895 1068.6h336.4 94.8c1.9 0 1.9-3 0-3-112.1 0-224.3 0-336.4 0-31.6 0-63.2 0-94.8 0-2 0-2 3 0 3z"/><path d="m821.1 778.2c-6.8-13.6-6.9-29.6-.3-43.3-.8.1-1.6.2-2.4.3 2.7 2.2 5.4 4.4 8 6.5.9.7 2.7.4 2.6-1.1-.9-12.8-1.5-30 8.9-39.5 1.6-1.4 4.6-2.3 5.5-4.2.7-1.4.5-4.3.7-5.8.4-2.9.8-5.7 1.2-8.6 1.3-8.7 2.9-17.3 4.7-25.9 7.7-35.8 20.2-70.4 37-102.9-.9-.1-1.8-.2-2.7-.4 4.8 28.5.4 57.2-4.1 85.5-.2 1.5 2 2.8 2.7 1.2 1.6-3.6 4.2-5.9 8.1-6.9-.6-.5-1.3-1-1.9-1.4 2.5 42.7-3.4 85.5-17.3 126-.4 1.1.8 2.1 1.8 1.8 3.5-1 7.1-1.9 10.6-2.9-.6-.3-1.2-.7-1.8-1 3.3 8.6 2.4 17.6-2.7 25.3-1.1 1.6 1.5 3.1 2.6 1.5 5.4-8.3 6.5-18.4 3-27.6-.3-.8-1-1.3-1.8-1-3.5 1-7.1 1.9-10.6 2.9l1.8 1.8c13.9-40.7 19.8-83.8 17.4-126.8-.1-1-.9-1.7-1.9-1.4-4.5 1.2-7.9 4-9.9 8.3.9.4 1.8.8 2.7 1.2 4.6-28.8 9-58 4.1-87.1-.2-1.3-2.2-1.5-2.7-.4-17.3 33.5-30.1 69.3-37.8 106.2-2 9.5-3.6 19.1-4.9 28.7-.5 3.4-.1 7.1-2.6 9.4-2.1 1.8-4.2 3.2-5.9 5.5-8.2 10.6-8 26-7.1 38.7.9-.4 1.7-.7 2.6-1.1-2.7-2.2-5.4-4.4-8-6.5-.7-.6-1.9-.6-2.4.3-7.1 14.8-7 31.7.3 46.3.8 1.6 3.4.1 2.5-1.6z"/></g><circle cx="168" cy="317.3" fill="#ec615b" r="14.4"/><circle cx="1269.4" cy="100.1" fill="#ec615b" r="10.3"/><circle cx="1456.3" cy="345.1" fill="#ec615b" r="8.2"/><circle cx="664.5" cy="548.7" fill="#ec615b" r="5.9"/><circle cx="202.4" cy="364.9" fill="#5222d0" r="10.7"/><circle cx="481.1" cy="107.8" fill="#5222d0" r="7.7"/><circle cx="1452.1" cy="576.9" fill="#5222d0" r="15.2"/><circle cx="1088.1" cy="215.8" fill="#5222d0" r="14.5"/><path d="m972.9 65.9c2.7-2.6 6.5-3.9 10.2-3.1 4.3.9 5.9 4 8.8 6.8 2.7 2.7 6.2 3.8 9.9 2.8 4.2-1.1 7.7-4.2 11.3-6.5 5.6-3.7 9.9-5.2 15.2-.1 7.5 7.1 14.8 4.4 23.2.1 4.9-2.5 10.6-6.1 16.4-5 5.5 1.1 10 6.4 15.9 5.8 2.4-.3 4.1-1.6 5.9-3.2 3.2-3.1 5.5-4.7 9.8-2.2 4.2 2.4 7.6 5.9 12.8 5.1 1.9-.3 1.1-3.2-.8-2.9-5.4.8-9.2-5.2-14.2-6.4-4.8-1.1-6.8 2.1-10.1 4.8-6.3 5-12.6-2.9-19-3.9-4.8-.8-9.4 1.1-13.6 3.1-4.8 2.3-9.7 5.9-15.2 6.4-6.8.6-8.8-6-14.5-7.8-8.9-2.9-15.6 7.4-23.3 9.8-7.2 2.2-9.7-6.8-15.7-8.9-5.3-1.9-11-.5-15 3.3-1.5 1.2.6 3.3 2 2z" fill="#5222d0"/><path d="m1078.5 88.9c2-2.8 5.2-6.8 8.8-7.4 4.9-.8 5.8 3.9 8.6 6.3 2.6 2.2 5.6 2.5 8.7 1.3 4.5-1.8 7.7-6 12.4-7.4 5.6-1.7 10.5 2.8 15.4 4.7 3.8 1.5 7.5 1.6 11-.6 2.6-1.6 4.7-4 7.9-4.4 2.5-.3 5.1.8 7.3 1.9 7 3.5 14 10.5 22.5 7.7 1.8-.6 1-3.5-.8-2.9-9.7 3.2-17.4-8.4-26.6-9.6-5.2-.7-7.7 2.4-11.8 4.7-6.2 3.5-11.4-1.6-17.1-3.8-4.1-1.6-7.8-1.3-11.7.7-4.4 2.3-10.1 9.3-15.2 5.4-3.7-2.8-4.7-7.5-10.2-7.1-5.1.5-9.1 5.1-11.9 8.9-1 1.6 1.6 3.1 2.7 1.6z" fill="#5222d0"/><path d="m141.3 507.6c5.2-5 12.8-6.7 19.7-4.5 4.1 1.4 7.7 7 12.2 6.4 2.2-.3 3.7-2 5.2-3.4 3.1-2.8 5.9-5.1 10.3-5.3 6.7-.3 11.5 4.9 17.6 6.9 4.4 1.5 8.3.4 11.5-2.8 2-2.1 3.6-5 6.8-5.6 2.7-.5 5.2.9 7.4 2.2 6.3 3.9 12.8 11.4 20.8 7.9 1.8-.8.2-3.4-1.5-2.6-8.4 3.7-16.2-9.6-24.4-10.5-4.6-.5-7.4 2.3-10.3 5.5-6.7 7.4-13.2.4-20.2-2.5-4.4-1.9-9.3-2-13.8 0-2.3 1-4 2.5-5.8 4.3-2 1.9-3.8 3.5-6.9 1.5-1-.6-1.9-1.7-2.9-2.4-8.6-5.7-20.4-4.3-27.7 2.8-1.5 1.3.6 3.4 2 2.1z" fill="#5222d0"/><path d="m416.8 431.9c1.8-13.9 23.6-.6 31.1-1.1 4.2-.2 6.6-2.3 9.8-4.8 4.4-3.4 8.4-1.8 12.8.6 4.6 2.5 10.1 6.7 15.7 5 1.3-.4 2.3-1.2 3.4-2.1 3.1-2.4 5.4-1.5 8.9-.5 5.7 1.8 11.4 3.6 17.1 5.4 1.8.6 2.6-2.3.8-2.9-6.6-2.1-13.1-4.4-19.8-6.2-1.8-.5-3.7-1-5.6-.4-2.2.8-3.5 3-5.7 3.7-7 2.4-14.6-7.1-21.7-7.7-3.9-.3-6.4 1.5-9.3 3.8-7.1 5.7-14.2 1.5-21.7-1-7.5-2.4-17.9-1.4-19.1 8 .1 2.1 3.1 2.1 3.3.2z" fill="#5222d0"/><path d="m464.5 414.9c4.1-5.7 8.8-9.9 16.3-7.4 4.7 1.6 8.8 4.5 14 4 4.5-.4 6-3.7 9.4-6 3.4-2.2 6.8-.3 10.4.9 3.5 1.1 6.9 2.1 10.4 3.2 1.9.6 2.6-2.3.8-2.9-4.1-1.2-8.2-2.5-12.3-3.7-2.7-.8-5.8-2.1-8.7-1.6-1.9.3-3 1.4-4.3 2.6-1.1 1.1-1.9 2.9-3.3 3.7-2.4 1.4-5.3.9-7.7.2-5.4-1.6-10.3-5.4-16.2-4-5 1.2-8.5 5.6-11.3 9.5-1.2 1.5 1.4 3 2.5 1.5z" fill="#5222d0"/><path d="m708.1 183.5c-10.1 7-14.3 16.2-17.6 23.2-6 12.9-6.7 24.5-6.7 30 0 7.1-.2 25 12.6 41.2 3.5 4.5 12.5 15.5 28.6 19.4 17.4 4.2 31.4-2.8 35.7-5 16.8-8.7 23.6-23.6 26.1-29.2 1.2-2.8 5.9-14 5.2-29.3-.3-6.5-1.2-22.1-12.6-36.5-3-3.8-16.9-20.5-40-21.9-4.3-.3-18.3-.9-31.3 8.1z" fill="#fff"/><path d="m822.2 333.4c-13 4.2-20 14.9-21.7 17.5-6.7 10.5-6.8 20.8-6.8 27.1-.2 21.5 10.9 36.6 13.7 40.2 5.4 7 15.5 20 33.4 22.4 2.3.3 21.3 2.6 35.5-11 13.8-13.2 12.9-31.6 12.5-39.5-.3-4.9-1.8-23.4-16.6-38.9-2.4-2.5-25.3-25.8-50-17.8z" fill="#fff"/><path d="m593.4 345.4c11.7-20.2 27.9-37.3 47.5-49.9 1-.6 1-2.5-.4-2.7-6.4-1.1-12.2 0-18.2 2.5.4.9.8 1.8 1.2 2.7 5.3-2.7 10.8-4.4 16.7-5.1-.5-.6-1-1.3-1.4-1.9-2.2 6-4.5 12-6.7 18-.7 1.8 2.2 2.6 2.9.8 2.2-6 4.5-12 6.7-18 .3-.8-.5-2-1.4-1.9-6.4.8-12.4 2.5-18.2 5.5-1.5.8-.4 3.4 1.2 2.7 5.4-2.2 10.8-3.5 16.6-2.5-.1-.9-.2-1.8-.4-2.7-20.1 12.9-36.7 30.3-48.6 51-1 1.7 1.6 3.2 2.5 1.5z" fill="#161616"/><ellipse cx="737.8" cy="236.7" fill="none" rx="54.2" ry="61.3" stroke="#161616" stroke-miterlimit="10" stroke-width="2"/><ellipse cx="732.2" cy="236.7" fill="none" rx="48.4" ry="61.3" stroke="#161616" stroke-miterlimit="10" stroke-width="2"/><path d="m745.4 211c-20.5-4.2-39.8 17.6-37.5 37.5 1.2 10.5 8.5 18.2 18.9 19.9 9 1.6 20 .5 26.4-6.8 1.3-1.4-.8-3.6-2.1-2.1-5.7 6.5-15.4 7.3-23.5 6-9.7-1.6-16.4-9.1-16.8-19-.8-17.2 15.8-36.4 33.8-32.7 1.9.5 2.7-2.4.8-2.8z" fill="#161616"/><path d="m696.3 238.4c12.7 0 25.4 0 38.1.1 1.9 0 1.9-3 0-3-12.7 0-25.4 0-38.1-.1-1.9 0-1.9 3 0 3z" fill="#161616"/><path d="m697.7 251.3c11.1.4 22.1.8 33.2 1.2 1.9.1 1.9-2.9 0-3-11.1-.4-22.1-.8-33.2-1.2-1.9 0-1.9 3 0 3z" fill="#161616"/><ellipse cx="841.3" cy="386.5" fill="none" rx="45.6" ry="56.6" stroke="#161616" stroke-miterlimit="10" stroke-width="2" transform="matrix(.9085 -.4179 .4179 .9085 -84.5531 386.9451)"/><ellipse cx="845.5" cy="385.7" fill="none" rx="41.5" ry="55.6" stroke="#161616" stroke-miterlimit="10" stroke-width="2" transform="matrix(.9587 -.2844 .2844 .9587 -74.7916 256.4273)"/><path d="m830.5 352.2c2.5 5.1 5 10.2 7.5 15.2.9 1.7 3.4.2 2.6-1.5-2.5-5.1-5-10.2-7.5-15.2-.9-1.8-3.5-.2-2.6 1.5z" fill="#161616"/><path d="m851.5 363.8c-6.6-.1-13.8 2.5-17.6 8.2-2.8 4.2-3.3 10.8 2.3 12.9 7.8 2.9 14-7 21.7-1.8 4.9 3.3 5.4 10.1 1.7 14.5-4.4 5.3-12 5-17.1.9-1.5-1.2-3.6.9-2.1 2.1 5.3 4.3 12.9 5.7 18.8 1.6 5.1-3.6 7.6-10.6 4.9-16.4-2.9-6.2-9.8-8.7-16-6.4-2 .7-3.9 2-6 2.6-2 .6-2.8.5-4.8-.4-2.6-1.2-2.7-3-1.9-5.7 1.9-6.3 10.3-9 16.2-8.9 1.8-.1 1.8-3.1-.1-3.2z" fill="#161616"/><path d="m855.5 402.3c2.1 4.3 4.2 8.5 6.3 12.8.9 1.7 3.4.2 2.6-1.5-2.1-4.3-4.2-8.5-6.3-12.8-.9-1.7-3.5-.2-2.6 1.5z" fill="#161616"/><path d="m963.2 471.8c1.2-7.5-1.5-14-4.8-20.6-3.1-6.3-6.5-12.5-10.9-18.1-3-3.8-8.4-10.5-13.6-11.2-7.1-.9-5 8.6-6.4 12.3 1 .3 1.9.5 2.9.8 1.3-4.8 1.8-9.5 1.6-14.4-.4.5-.7 1-1.1 1.4 5.9-1.2 11.5-1 17.3.7 1.9.5 2.7-2.4.8-2.9-6.3-1.8-12.5-2-18.9-.7-.6.1-1.1.8-1.1 1.4.2 4.7-.3 9.1-1.5 13.6-.5 1.9 2.2 2.6 2.9.8.7-1.9.2-4 .8-5.9.5-1.6 3.3-3.5 4.9-2.9 1.2.4 2.5 1.9 3.4 2.7 3.9 3.4 7 7.5 9.8 11.9 5.3 8.4 12.7 19.8 11.1 30.2-.4 2 2.5 2.8 2.8.9z" fill="#161616"/><path d="m414.8 399.9c5.3 4 12.8 10.1 20.7 18.4 5.8 6.1 15.4 17.1 31.2 45.2 13.8 24.5 18.7 37.9 34.8 60.1 4.7 6.5 11.9 15.9 24 19.2 1.2.3 16 4.1 22.4-3.2 2.1-2.4 2.8-6.3 4.1-14.1 1.3-7.9 1.5-13.7 1.5-13.7.7-23.4.5-46.7 1.9-64.5.9-11.8 4.2-24.8 10.6-50.8.7-3 4.9-18.9 16.5-28.6 5.6-4.7 8.1-3.8 8.7-3.6 3.5 1.5 3.1 8.9 3 10.1-.3 4.4-1.8 5.7-5.1 13.6-4.9 11.4-4.4 14.9-4.2 16.1.7 4.3 3.3 7.4 5.2 9.2 15.9.4 28.8 2.5 38 4.5 19.3 4.1 25.7 8.4 29.1 11.3 7 5.7 10.8 12.4 12.9 16.8-7.3-.6-14.7-1.3-22-1.9-.4 2.8-1 6.6-2.2 11.2-1.4 5.7-2.2 8.7-4.2 12.4-1.4 2.6-3.5 6.4-7.7 9.6-5.1 3.8-10.4 4.5-14.1 5.1-3 .4-5.5.5-7.3.4-6.6 4-13.1 7.9-19.7 11.9.8 13.7.9 25.2.9 33.9-.1 27.4-2.2 35.8-4.5 42.2-2.2 6.1-4.9 13.5-11.6 20.7-1.7 1.9-12.2 12.9-28.4 15.6-17 2.9-30.9-5-40.2-10.5-40.3-23.7-63.5-73.8-70.5-90" fill="#fff"/><path d="m445 437c24.5 38.3 37 67.5 43.9 87.9 2.4 7.1 7.2 22 20.6 35 5.5 5.4 19.8 19.3 39.1 18.5 18.9-.7 36.4-15.3 45-36.3.3 6.2.2 16.6-4.2 28.4-2.2 6-6 16.3-15.9 24.9-1.1.9-16.2 13.5-36 12.2-21-1.4-35-17.4-44.1-28.2-38.4-45.6-46.3-116.4-48.4-142.4z" fill="#aaa" opacity=".17"/><path d="m392.7 389.9c32.5 9.1 53.4 38.1 68.7 66.5 8.6 15.9 16.1 32.4 25.3 47.9 7.7 13 16.9 27.4 29.9 35.8 11.9 7.7 29.3 8.4 38.3-4.2 1.1-1.6-1.5-3.1-2.6-1.5-10.7 15-31 7.4-41.7-3-11.8-11.4-20.4-26.4-28.1-40.8-14.7-27.4-26.9-56.9-49.2-79.3-11.1-11.2-24.4-20-39.7-24.2-2-.6-2.8 2.3-.9 2.8z" fill="#161616"/><path d="m495.8 582.5c12 21.1 37.6 31.7 60.9 24 25.5-8.4 36.3-32.4 38.3-57.5 1.4-17.4.4-35.1.3-52.5 0-1.9-3-1.9-3 0 .2 16.7 1 33.5-.1 50.1-1 15.8-4.6 32.4-15.9 44.3-22.6 23.7-61.8 18.3-77.9-9.9-1-1.6-3.6-.1-2.6 1.5z" fill="#161616"/><path d="m553.1 536.2c4.3-33.3 1-67 5.2-100.3 1.9-15 5.3-30 11.4-43.9 2.8-6.4 6.2-12.4 10.2-18.1 1.3-1.9 2.7-3.7 4.2-5.4.4-.5 1-1.5 1.6-1.8.2-.2.4-.4.5-.6l6.3 2.4c2.8 3.6-1.4 12.2-2.9 15.4-4.3 9.1-11.2 23.2-.1 30.5 1.6 1.1 3.1-1.5 1.5-2.6-7.3-4.8-4.3-15.1-1.2-21.6 3.1-6.4 7.3-13.3 6-20.7-.7-4.2-4.6-9.8-9.5-7.5-2.4 1.1-4.3 4.1-5.9 6.2-2.2 2.8-4.3 5.8-6.2 8.8-17.6 28-20.5 62.2-21.2 94.4-.5 21.6-.2 43.3-3 64.7-.2 2 2.8 2 3.1.1z" fill="#161616"/><path d="m589.7 413.5c22.8 2.3 49 4.3 68.5 17.7 2.3 1.6 4.5 3.4 6.3 5.5 1.4 1.7 4.5 5.6 4.1 8-.4 2.3-2.5 2.2-4 2-1.6-.2-4.2-2-5.7-2.8-2.3-1.2-4.6-2.4-7-3.5-10.4-4.4-21.5-6.2-32.8-5.4-1.9.1-1.9 3.1 0 3 8.1-.6 16.3.1 24.1 2.4 7.1 2.1 13.1 6 19.8 8.8 3 1.2 7.8 2.4 8.7-2 .9-4.3-2.5-9.7-5.2-12.7-8.1-9.4-21.7-14.1-33.3-17.2-14.2-3.9-29-5.4-43.6-6.8-1.8-.1-1.8 2.9.1 3z" fill="#161616"/><path d="m619.4 435.6c-7.3 1-16.2 5.1-18.7 12.7-2.4 7.4 3.8 10.5 10.1 10.3 10-.3 20.7-2.1 30-5.8 2-.8 14.2-7.5 8.2-10.3-1.7-.8-3.3 1.8-1.5 2.6-.2-.1-4.8 3.6-5.7 4.1-2.6 1.3-5.4 2.1-8.2 2.8-5.6 1.5-11.3 2.6-17.1 3.2-2.3.2-4.7.5-7.1.5s-5.6-1.8-6.3-4.3c-.3-1.1 1-3.5 1.6-4.5 3.2-5.1 9.8-7.6 15.5-8.4 1.9-.3 1.1-3.2-.8-2.9z" fill="#161616"/><path d="m602.7 454.7c-1.6 4.4.1 9 3.6 12 4.9 4.1 12.4 4 18.4 3.4 11.6-1.1 24.2-8 23.7-21.3-.1-1.9-3.1-1.9-3 0 .4 10.2-8.6 16.2-17.7 17.9-7 1.2-26.7 1.4-22.1-11.1.7-1.9-2.2-2.7-2.9-.9z" fill="#161616"/><path d="m604.8 465.6c-4.1 11.6 8.1 19.1 18.3 17.7 11.6-1.6 20.6-11.4 22.4-22.8.3-1.9-2.6-2.7-2.9-.8-1.3 8.3-6.5 15.6-14.3 19-8.6 3.8-25.1.4-20.6-12.3.6-1.8-2.3-2.6-2.9-.8z" fill="#161616"/><path d="m594.4 495.1c4.7-7.4 16.2-5.3 20.6-13.4.9-1.7-1.7-3.2-2.6-1.5-4.2 7.6-15.8 5.8-20.6 13.4-1 1.6 1.6 3.1 2.6 1.5z" fill="#161616"/><path d="m547 854.6c-6.2 7.9-12.4 16.5-18.7 25.7-8.6 12.7-16.1 25.1-22.6 36.7 1.3 4.4 3.7 10.9 8.6 17.3 7 9.2 15.1 12.8 25 18.1 1.8 1 13.8 8.4 37.9 23.3 9.1 5.6 22.1 14 37.3 25.3-3.3-7.9-7.3-16.2-12-24.8-14.2-25.8-30.8-45.6-45.6-60.2 7.8-9.6 15.7-19.2 23.5-28.8-11.3-10.8-22.4-21.7-33.4-32.6z"/><path d="m360.9 678.5c9.6-9.5 26.2-23.2 50.3-31.2 54-17.9 101.5 7.6 110.9 12.8 23.4-13 41.9-24 53.9-31.1 42.7-25.6 59.3-37.8 91.7-50.8 24.7-9.9 39-12.4 53.1-12.1 10.7.2 28.3.7 46 12.2 5.2 3.3 23.7 15.6 30.3 38.9 4 14 1.9 25.6-.8 39-5.5 27.6-16.7 47.2-21.9 56.2-22.9 39.4-34.4 59.1-54.9 86.1-21.4 28.1-51.5 64.7-91.5 105-4.4.5-11.3.8-19.4-.9-5-1-20.4-4.8-49.2-34.4-7.6-7.8-17.7-19-28.5-33.9 9-11.4 18.1-22.8 27.1-34.2-8.6 3.2-20.9 7.1-36.1 9.4 0 0-30.3 4.4-57.3-1.3-38.2-8.1-82.1-57.7-103.7-129.7z" fill="#fff"/><path d="m477 810.1c14.3-7 28.9-14.9 43.7-23.5 70.3-41.2 124.4-89.8 165.3-134.9-8 19.3-17.2 39.4-27.7 59.9-31.6 61.8-67.4 112.9-101.4 154.1-5.8-3.7-15.9-11.6-21.6-25.2-1.5-3.5-2.4-6.9-3-10 8-9.5 16.1-19.1 24.1-28.6-12.4 5.8-33.2 13.3-59 11.6-7.5-.6-14.4-1.9-20.4-3.4z" fill="#7a7a7a" opacity=".15"/><path d="m519.1 664c21.2-12.4 42.5-24.8 63.7-37.3 20.3-11.9 40.4-24.2 61.1-35.3 35.6-19.1 78-33.7 116.8-14.7 16 7.8 29.2 21 34.3 38.4 6.5 22.2-.3 45.8-8.5 66.5-15.8 39.8-38.6 76.5-64.2 110.6-29.2 38.9-62.3 74.6-95.4 110.1-1.3 1.4.8 3.5 2.1 2.1 60.4-65 122.5-132 157.4-214.9 8.6-20.5 16.4-43 13.5-65.5-2.3-17.4-11.6-32.3-25.6-42.7-32.5-23.9-74.5-18.7-109.4-3.6-24.9 10.8-48.1 25.6-71.5 39.3-25.2 14.8-50.5 29.5-75.7 44.3-1.8 1.1-.3 3.7 1.4 2.7z" fill="#161616"/><path d="m683.5 654.2c-51.5 57.1-101.9 115.2-151.1 174.2-1.2 1.5.9 3.6 2.1 2.1 49.2-59 99.6-117.1 151.1-174.2 1.3-1.4-.8-3.5-2.1-2.1z" fill="#161616"/><path d="m532.5 829.5c-2.3 10.3 6.3 18.3 12.5 25.3 7.8 8.9 15.8 17.7 24.7 25.7 15.7 14.2 37.1 29.4 59.5 24.4 1.9-.4 1.1-3.3-.8-2.9-21.1 4.7-41.7-10.3-56.5-23.6-7.1-6.4-13.7-13.3-20.1-20.4-6.3-7.1-18.7-17.1-16.4-27.6.4-2-2.4-2.8-2.9-.9z" fill="#161616"/><path d="m577.3 886.3c-6.8 8.3-13.6 16.7-20.5 25-1.2 1.5.9 3.6 2.1 2.1 6.8-8.3 13.6-16.7 20.5-25 1.2-1.4-.9-3.6-2.1-2.1z" fill="#161616"/><path d="m544.8 854.4c-6 9.2-12 18.3-18 27.5-1.1 1.6 1.5 3.1 2.6 1.5 6-9.2 12-18.3 18-27.5 1-1.6-1.6-3.1-2.6-1.5z" fill="#161616"/><path d="m527 879.6c-5.5 8.2-10.9 16.3-16.4 24.5-4 5.9-8.7 11.3-4.5 18.3 7.2 12 19.1 21.8 30.3 29.9 24.8 17.9 53.4 30 76.9 49.8 1.1.9 3 .1 2.5-1.5-10.5-35.4-40.2-59.6-58.7-90.5-1-1.7-3.6-.1-2.6 1.5 18.3 30.6 48 54.7 58.4 89.8.8-.5 1.7-1 2.5-1.5-21-17.7-46.1-29.4-69-44.4-11.5-7.6-22.6-16.1-31.6-26.6-2.5-3-6.5-6.8-7.5-10.7-1.2-4.7 4.5-10.8 6.8-14.3 5.1-7.6 10.2-15.2 15.3-22.9 1.2-1.5-1.3-3-2.4-1.4z" fill="#161616"/><path d="m488.8 815.6c22-2.8 45.3-4.6 66.3-12 1.8-.6 1-3.5-.8-2.9-20.7 7.3-43.9 9.1-65.5 11.8-1.9.3-1.9 3.3 0 3.1z" fill="#161616"/><path d="m279.7 377.8c8.5.9 21.2 2.2 36.7 3.3 53.7 4 67.2 1 85.6 8.9 19.9 8.6 30.3 23.3 44.5 43.3 26.2 37.1 30.8 66.8 55.6 156.7 7.9 28.6 14.8 52.5 20 70-19-5-86.4-20.4-148.9 16.7-18.4 10.9-32.2 23.9-42.2 35.6-17.2-111.5-34.2-223-51.3-334.5z" fill="#ec615b"/><path d="m283.4 378.3c-5.2 1.3-12.6 4.2-18.4 10.7-9.6 10.9-8.8 25.6-8.5 32.7 1 26.2-2.9 52.7 1.3 78.6 2.9 17.8 2.9 53.7 2.8 125.5-.1 59.6-2.9 70.6-2.7 139.7.1 26.3.6 47.9 1 61.9-2.2-.4-5.8-1-10.2-2.4-7.5-2.4-10.4-4.7-18.6-6.7-6.2-1.6-8.7-1.3-10.8-.5-3.3 1.2-5.4 3.6-6.6 5.1-3-.8-7.8-1.6-13.3-.3-4.3 1-8.1 3.5-15.4 8.4-6.6 4.4-10.9 7.9-12.8 9.3-10.1 8.2-11.9 11.6-12.9 14-1.1 3.1-1.4 5.8-1.3 7.8 8.6-2.2 18.1-4.7 22.3-5.8 12-3.1 17.2-4.5 23.9-2.7 2.5.7 7.1 2 10.3 6.3 2.4 3.4 2.9 6.9 3 8.8-6.6 3.3-12.2 5.2-16.5 6.4-5.5 1.5-9.3 2.1-10.1 4.6-.9 3 3 6.5 3.7 7.2 1.3 1.1 4.2 3.2 11 3.7 1.8.1 8.1.4 18.5-3.2 9.1-3.1 9.6-5.2 15.5-5.7 5.4-.4 5.9 1.2 11.9.8 5.7-.4 9.9-2.3 14.5-4.3 5.9-2.7 9.8-5.5 14.4-8.8 9.2-6.6 13.7-9.9 16.5-15.6 2.8-5.8 2.4-11.3 2.2-13.8-2-37.9 7.5-75.6 9.6-113.6 1.2-21.1 1.8-31.7 2.1-39.9.9-20.3 2.3-55.8 2.6-101.3.3-42.4-.4-68.8-1.1-87.6-1.4-35.6-3-49.8-7-65.5-5.5-23.3-14.2-41.6-20.9-53.8z" fill="#fff"/><path d="m284.2 379.1c-1.4 15.2-3.4 39-4.2 68-2.3 77.7 5.4 111.8 10.9 229 3.3 69.4 2.5 97.5-6.7 132.5-8.4 32-20.4 57-29.6 73.6 4.4-1.3 10.5-3.5 17.3-7.3 7.7-4.2 18.7-10.2 24.3-20.9 4.2-7.9 3.6-14.7 3.4-25.2-.3-16.8 2.3-33.5 2.7-50.2.6-27.2 3.6-32.8 7.3-69.6 3.8-37.9 4.1-66.3 4.5-99.6.2-14.5-.5-39.4-1.8-89.1-1.2-48.3-1.9-58-4.3-71.5-5.6-30.5-15.9-54.3-23.8-69.7z" fill="#898989" opacity=".14"/><path d="m283.8 376.9c-11.2-2.9-19.8 9.2-23.5 18.2-5.1 12.3-5.4 26.3-5.8 39.4-1 33.8 2.5 67.4 3.9 101.1 2.9 67.9-.5 135.8-1.6 203.7-.6 38.2-.4 76.4 2 114.6.1 1.9 3.1 1.9 3 0-4.1-64.5-1.8-129.2-.3-193.7.7-31.6 1.3-63.3.7-94.9-.6-32.2-3.3-64.3-4.5-96.4-.7-17.1-.9-34.4.7-51.5.7-7.6 2-15.4 5.2-22.4 3.2-7.1 10.4-17.5 19.4-15.1 1.9.4 2.7-2.5.8-3z" fill="#161616"/><path d="m282.9 379.8c15.3 23.8 21.9 51.5 24.8 79.4 3.1 28.9 3.1 58.3 3.4 87.3.7 64.1-1.1 128.3-5.4 192.2-2.4 36.3-5.6 72.5-9.6 108.6-.2 1.9 2.8 1.9 3 0 7.2-65 11.8-130.4 13.9-195.8 1-32.4 1.4-64.8 1.2-97.2-.2-30-.2-60.3-3-90.2-2.7-30.1-9.2-60.2-25.8-85.9-.9-1.5-3.5 0-2.5 1.6z" fill="#161616"/><path d="m236.6 856.5c-6 4.5-12.4 8.4-19.2 11.4-6.7 3-13.6 4.5-20.7 6.6-10.8 3.1-6.2 14.8 2.7 16.9 5.7 1.4 12.1 1.1 17.9-.2 7.3-1.7 13.3-7.4 20.9-7.8 10.3-.6 23.4 4.3 30.2-6.4 1-1.6-1.6-3.1-2.6-1.5-6 9.5-19.5 4.2-28.5 4.9-4.5.3-8 2.3-11.9 4.4-5.6 3-11.5 4.5-17.8 4.5-2.7 0-5.6-.1-8.2-.9-4.3-1.3-9.9-7.2-3.1-10.6 2.2-1.1 5.2-1.3 7.6-1.9 2.5-.7 5-1.5 7.4-2.3 9.6-3.4 18.6-8.3 26.8-14.5 1.5-1.1 0-3.7-1.5-2.6z" fill="#161616"/><path d="m218.2 868.9c.2-10-9.1-16.4-18.3-17.2-6.9-.5-13.7 1.4-20.3 3.1-7.6 2-15.2 3.9-22.7 5.9.6.5 1.3 1 1.9 1.4-1.3-10 8.7-14.4 16.6-16.8 7.2-2.2 14.4-3.8 21.8-4.9 1.9-.3 1.1-3.2-.8-2.9-12.8 1.9-43.2 5.6-40.7 24.6.1 1 .9 1.7 1.9 1.4 10.5-2.7 21.1-6 31.8-8.1 9.9-1.9 26-.2 25.8 13.3 0 2.1 3 2.1 3 .2z" fill="#161616"/><path d="m169.6 845.4c7.7-11.4 21.1-17.4 34.7-15.9 1.9.2 1.9-2.8 0-3-14.7-1.6-29 5.2-37.3 17.4-1.1 1.6 1.5 3.1 2.6 1.5z" fill="#161616"/><path d="m188.9 830.3c9.7-10.7 24.7-6.1 36.4-2.1 1.8.6 2.6-2.3.8-2.9-12.8-4.4-28.9-8.7-39.4 2.9-1.2 1.5.9 3.6 2.2 2.1z" fill="#161616"/><path d="m215.4 822.6c3-6.4 14.6-3 19.6-1.6 6.8 1.9 13 5 18.7 8.9 1.6 1.1 3.1-1.5 1.5-2.6-7.8-5.4-16.7-9.2-26.1-10.7-5.6-.9-13.5-1.8-16.4 4.4-.7 1.9 1.9 3.4 2.7 1.6z" fill="#161616"/><path d="m295.7 845.6c1 8.9-5.2 15.2-12.1 19.8-6.2 4.1-12.8 7.8-19.2 11.7-1.6 1-.1 3.6 1.5 2.6 12.2-7.4 34.8-16.4 32.7-34.1-.1-1.9-3.1-2-2.9 0z" fill="#161616"/><path d="m512.6 1032.9c.6 2 1.6 2.1 8.6 10.1 6.5 7.5 8.1 10.2 16.9 21.4 3.7 4.7 9 11.4 15.8 19.4 3 .7 7.4 1.5 12.7 1.6 12.1 0 21.2-4.1 24.2-5.4 4.7-2 2.5-.5 53.4-11.9 18-4 45.1-10.2 83.1-19.3 1.1-1.9 2.2-3.8 3.3-5.6-5.2-.9-13-2.1-22.5-3-19.4-1.9-26.4-.7-45.5-1.4-20.4-.8-35.1-3.2-46.6-5-19.9-3.2-30-5-37.9-10.5-13.3-9.4-18.5-24-20.7-32.3-39.2 23-46.7 35.1-44.8 41.9z"/><path d="m323.6 660.9c-10.7 4.8-16.3 13.1-18.5 16.4-5.8 8.8-7.6 18-8.2 28.7-1.8 29.2 5.8 53.2 7.3 58 10.5 32.2 24.4 55.3 34.4 71.6 35.8 58.5 58.6 90.5 58.6 90.5 20.8 29.2 49.3 67.7 85.4 112 5.3.1 13.1-.3 22.1-2.6 19.7-5 32.3-16.1 44.7-27.3 8.5-7.7 20.1-19.6 30.9-36.5-7-13.6-16.2-31.1-27.4-51.2-5.9-10.6-23.6-42.2-49.5-83.4-14.7-23.4-28.1-43.1-54.8-82.5-7.8-11.5-23.2-34.1-46.8-60.4-15.6-17.5-30-31.3-50.5-35.3-5.3-1.2-16.1-3.2-27.7 2z" fill="#fff"/><path d="m323.6 660.9c-.5 7.4-.9 20.5 1.4 36.3 5.3 36.7 21.2 62.6 29.9 76.4 22.1 35.1 82.8 129.3 168.7 254.1-4.5 2.6-10.8 5.6-18.6 7.7-8.9 2.4-16.8 2.8-22.4 2.6-7.4-9.2-18-22.7-30.7-39.2-41.2-53.7-68.7-93.7-80.6-111.2-31-45.9-43.5-68.1-53.4-88.9 0 0-14.3-29.9-20.7-72.7-1.1-7.1-1.9-14.7-.1-24 4.2-20.8 18.4-34.5 26.5-41.1z" fill="#a5a5a5" opacity=".06" stroke="#a5a5a5" stroke-miterlimit="10"/><path d="m484.9 1036.2c-37.1-43.1-71.7-88.3-103.4-135.6-15.7-23.4-30.8-47.3-45.1-71.6-14.4-24.5-27.1-49.4-34-77.2-6.5-26.3-11.2-59.1 9.3-80.7 20.9-22 52.7-11.3 72.4 6.4 9.6 8.6 17.8 18.7 25.9 28.7 9 11.1 17.7 22.3 26.2 33.8 16.8 22.6 32.8 45.8 48.1 69.5 34.4 53.1 65.5 108.1 96.6 163.1 1 1.7 3.5.2 2.6-1.5-29.3-51.8-58.6-103.6-90.7-153.8-15.8-24.8-32.3-49.2-49.7-72.9-8.4-11.5-17-22.8-25.9-33.9-8.7-10.9-17.4-22-27.4-31.7-17.2-16.7-43.2-30.3-67.1-19.4-23 10.5-30.3 37.8-28.7 61 1.9 28.7 11.5 57.3 24.5 82.8 13.4 26.1 29.2 51.1 45.1 75.7 35.9 55.8 75.8 109 119.1 159.2 1.4 1.7 3.5-.5 2.2-1.9z" fill="#161616"/><path d="m482.6 1039.6c44.4 1.7 74.7-35.3 99.1-67.2 1.2-1.5-1.4-3-2.6-1.5-23.8 31-53.3 67.4-96.5 65.7-1.9-.1-1.9 2.9 0 3z" fill="#161616"/><path d="m512.8 1034.9c6.4 8.2 12.9 16.3 19.3 24.5 6.2 7.9 12 16.4 18.8 23.8 5.2 5.7 11 4.8 17.9 3.3 10.4-2.3 20.8-4.6 31.1-6.9 40.9-9.1 81.7-18.2 122.6-27.4 1.9-.4 1.1-3.3-.8-2.9-38.3 8.5-76.5 17.1-114.8 25.6-9.7 2.2-19.5 4.3-29.2 6.5-4.4 1-8.9 2.2-13.3 3-6.1 1.1-9.7-1.1-13.4-5.6-12.3-15.2-24.2-30.6-36.2-45.9-1.1-1.7-3.2.5-2 2z" fill="#161616"/><path d="m559.6 997.6c4.2 29.8 37.8 37.3 62.8 38.3 36.2 1.4 72 3.4 107.8 8.7-.3-.6-.7-1.2-1-1.8-.9 4.1-4.1 6.6-8.3 6.4-1.9-.1-1.9 2.9 0 3 5.5.3 10.1-3.2 11.2-8.6.2-.7-.2-1.7-1-1.8-32.4-4.8-65-7.6-97.8-8.5-26.1-.7-66.1-3.2-70.7-36.4-.4-2-3.3-1.2-3 .7z" fill="#161616"/><path d="m311.9 267.7c-.2-.6-2.3-8.4-9.4-10.8-7-2.3-13.6 2.5-16.7 6.7-4.9 6.6-2.8 14.6-2 17.9 1.7 6.7 5.8 10.9 9.4 14.6 2.3 2.4 4.1 4.2 7.1 5.4 5.1 2 10 .8 12.2.1.4 2.9.9 7.6 1.3 13.4.5 7.1 1.3 20.7-1 60.3-.2 3.7-.5 9.1-1 15.7.9 1.8 2.3 4.2 4.9 6.2 4.5 3.5 9.6 3.6 13 3.8 6.3.3 14.8.9 26.3 2.6 1.6-1.8 3.2-3.9 4.7-6.5 5.6-9.8 5.3-19.7 4.8-24.6 5.3 1.8 12 3.5 20 4.2 4.8.4 9.2.4 13 .2 4.4-2.6 10.5-6.7 16.6-13.1 6.3-6.5 9.7-12.4 13.4-18.9 2.7-4.8 9-16.3 13.8-32.6 1.9-6.4 4.8-17.6 6.1-32 .3-3.8 1.6-19-1.1-39-2-15.1-3.1-22.7-8.3-31.9-1.3-2.3-6.8-11.7-17.6-19.6-17.3-12.7-38.2-14.2-50.5-12.1-30.9 5.1-58.3 41.9-59 90z" fill="#fff"/><path d="m343.2 211.7c-2 4.8-4.5 12-6.3 20.8-1.9 9.1-4.7 28.7 4.6 65 4.8 18.6 13.9 46 32.2 76.6-3.6-1.2-7.1-2.4-10.7-3.6 2.2 4.2 4.3 9.3 2.5 11.1-3.1 3.1-16.6-5.1-24.2-11.3-7.5-6-19.7-18.3-27-42.2-.6-8.9-1.2-17.7-1.9-26.6-2.6.8-6.4 1.6-10.7.6-14.9-3.4-18.8-24.6-19-25.8-.8-4.5-2.4-14 3.1-21 5.9-7.6 13.3-3.5 20.5-10.1 10.9-10 2.4-27.2 11.6-34.5 3.5-2.8 10.3-4.8 25.3 1z" fill="#aaa" opacity=".06"/><path d="m313.7 314.9c-10.1-4.5-23.7-12.6-32.5-27.2-11-18.2-1.3-24.7-13.2-54.5-7.8-19.6-13.7-34.5-24.1-48.2-.2-.2-4.2-5.6-3.4-6.3 1.7-1.6 23 20.5 26.4 17.8 2-1.6-4.4-10.1-7.5-20.6-3.5-11.8-3.4-27.9 7.5-49.9 1.5 4.1 4.6 10.9 10.9 17.2 10.1 10 21.9 12.5 26.4 13.2-2.6-4.9-9.4-19.4-6.3-37.8 4.5-26.6 25.9-39.9 29.2-41.9 8.2 10.7 16.4 21.4 24.7 32.1-.6-1.5-4.6-12.7 1.7-23.5 4.5-7.6 11.5-10.6 13.8-11.5 5.2 17.1 12.5 28.5 17.8 35.5 14.5 19.1 25.8 20.3 44.7 43 7.9 9.4 15.3 18.2 20.1 31 9.2 24.4 3.4 48.6-1.9 63.2-.8-9.5-2.9-22.2-8.2-36.4-6.1-16.4-14.3-28.6-20.6-36.7-7.7 7.5-15.4 15.1-23.1 22.6-9.7-5.2-19.4-10.4-29.2-15.6-7.9 10.4-15.7 20.8-23.6 31.2-8.2 1.9-16.4 3.7-24.7 5.6-.8 10-1.7 20-2.5 30 .9 14.7-.7 19.2-2.8 19.8-3.6 1-7.4-11.2-15-10.6-8.2.7-11.8 9.6-12.6 11.7-2 5.5-.7 10.3 0 13.2.7 2.6 4.2 14.7 15.5 18.9 4.6 1.7 8.7 1.5 11.1 1.2.5 4.6 1 9 1.4 13.5z" fill="#5222d0"/><path d="m312.6 304c1.6 10 5.9 19.1 10.8 27.8 4.9 8.8 9.8 17.8 16.6 25.2 13.7 14.8 35.4 21.1 55 21.9 1.9.1 1.9-2.9 0-3-19.4-.8-40.9-7.1-54-22.2-6.1-7-10.6-15.3-15-23.4-4.8-8.6-9-17.4-10.5-27.1-.3-1.9-3.2-1.1-2.9.8z" fill="#161616"/><path d="m437.4 209.7c10.9 29.2 12.9 61.3 6.1 91.8-6.3 27.8-20.5 61.8-47.7 75-1.7.8-.2 3.4 1.5 2.6 27.4-13.3 42.1-47.1 48.7-75.1 7.4-31.4 5.6-64.7-5.7-95-.6-1.9-3.5-1.2-2.9.7z" fill="#161616"/><path d="m311.3 303c1.5 17.7 2 35.5 1.2 53.2-.4 8.5-1.1 17.1-2 25.6-.6 5.1-1.5 11.2 2.8 14.9 4.8 4.1 13.5 5.1 19.5 6.2 6.9 1.3 14.6 2.7 21.6 2.1 5.3-.4 6.5-4.2 8-8.8 2.5-7.8 3.9-15.8 4.5-23.9.1-1.9-2.9-1.9-3 0-.5 7-1.6 13.8-3.6 20.5-1.1 3.7-1.9 8.5-6.6 9.3-3 .5-6.7-.2-9.7-.5-6.5-.6-13-1.8-19.3-3.5-3-.8-7.7-1.6-9.9-3.9-2.4-2.6-2-6.5-1.7-9.7 2.7-27.2 3.5-54.2 1.1-81.5 0-1.9-3-1.9-2.9 0z" fill="#161616"/><path d="m313 299.2c-12.5 9.1-27.1-11.3-28.6-22.1-1-7 1.9-14.6 8.6-17.8 7.5-3.6 16.1.6 17.6 8.8.3 1.9 3.2 1.1 2.9-.8-1.4-8-8.8-13.3-16.9-12.1-8.4 1.2-14.3 8.5-15.2 16.7-1.7 14.3 17.2 41.7 33.3 30 1.3-1.2-.2-3.8-1.7-2.7z" fill="#161616"/><path d="m352.1 231.1c2.5-7.1 9-15.8 17.5-14.1 7.9 1.5 11.6 9.3 12.8 16.5.3 1.9 3.2 1.1 2.9-.8-1.5-8.8-6.9-18.1-16.8-18.9-9.5-.7-16.5 8.4-19.4 16.5-.5 1.8 2.4 2.6 3 .8z" fill="#161616"/><path d="m418.2 230.6c1.6-4.6 5.1-8.8 10.1-9.9 5.7-1.2 11.3 2.5 12.5 8.1.4 1.9 3.3 1.1 2.9-.8-1.4-6.6-7.7-11.1-14.5-10.5-6.8.7-11.8 6.1-13.9 12.3-.6 1.9 2.3 2.7 2.9.8z" fill="#161616"/><path d="m405.4 241.7c.1 14-.4 28.1-1.3 42.1-.5 6.8-1 13.7-1.8 20.5-.7 6.6-.9 13.7-4.7 19.4.9.1 1.8.2 2.7.4-2.6-6.5-4.5-13-5.9-19.8-.4-1.9-3.3-1.1-2.9.8 1.4 6.8 3.4 13.4 5.9 19.8.5 1.2 2 1.5 2.7.4 3-4.6 3.8-9.8 4.4-15.1.9-7.4 1.6-14.9 2.1-22.4 1.1-15.3 1.6-30.6 1.6-46 .2-2-2.8-2-2.8-.1z" fill="#161616"/><path d="m357.2 317.4c3.5 6.6 6.1 13.7 12.8 17.7 5.6 3.3 12.3 4 18.5 2.2 1.8-.5 1.1-3.4-.8-2.9-5.9 1.7-12.2.9-17.3-2.6-5.4-3.8-7.6-10.2-10.6-15.8-.9-1.8-3.5-.3-2.6 1.4z" fill="#161616"/><ellipse cx="372.3" cy="273.6" fill="#161616" rx="5" ry="12.6"/><ellipse cx="429.3" cy="273.6" fill="#161616" rx="5" ry="12.6"/><path d="m1170.3 703.1c-27.7-2.9-50.8-5.1-67.2-6.7-120.7-11.3-90.7-4.9-118.6-9.1-15-2.3-34.4-5.8-59.4-1.2-23.6 4.3-33.8 12.4-38 16.2-10.8 9.8-15.2 21.2-18.4 29.4-5.9 15.2-6.3 28.1-6.5 37.1-.2 9.7-.4 16.7 2.7 25.2 3.8 10.3 10.2 17 15.7 22.2 22.1 20.9 45.4 33.2 46 33.6 63.9 33.9 45.9 26.6 69.8 37.7 29 13.6 69.6 30.9 121 47.7 1.8-6.8 4.5-16 8-26.9 3.8-11.6 8.2-25.3 15.7-42.1 4.6-10.2 11.1-23.4 20.2-38.3-15.5-6.5-29.4-12.8-28.9-14.1.7-1.8 28.6 8 66.1 16.6 50.1 11.5 75.2 17.2 100.7 10.4 8.9-2.4 57-16.4 66.9-55.5 8.3-32.6-15.2-61.9-18-65.4-32.2-38.9-103.2-45.4-177.8-16.8z" fill="#fff"/><path d="m967.8 736.8c17.7 6.6 45.6 16.2 80.5 25.2 49 12.6 81.8 16.2 173.9 28.4 26.5 3.5 68.6 9.2 121.3 16.6-.5 10.9-1 21.8-1.5 32.7-21 1.4-44.2 1.7-69 .3-55.5-3.2-103.1-14.1-140.6-26.1 9.6 4.7 19.3 9.4 28.9 14.1-3.7 6-7.4 12.5-11.1 19.6-5.4 10.5-9.6 20.4-13.1 29.6-56.4-46.9-112.8-93.6-169.3-140.4z" fill="#aaa" opacity=".23"/><path d="m1124.5 908.3c3.6.2 9 .6 15.4 1.9 9.1 1.8 18 3.5 25 9 6 4.7 7.2 9.5 12 19.4 4.8 10 10 17.6 20.2 32.9 10 14.9 6 6.4 33.7 40.5 4.2 5.1 10.3 12.7 17 11.8 2.9-.4 5.9-2.3 7.3-5.1 2.3-4.7-1-10.6-2-12.3-9.5-17.7-10.5-38.9-18.4-57.4-6.5-15.3-15-37.6-23.1-67.8-7.7-3.3-14.1-5.5-18.5-6.9-14.5-4.7-22.3-5.4-37.2-10.8-4.9-1.8-8.8-3.5-11.3-4.5-6.7 16.3-13.4 32.8-20.1 49.3z"/><path d="m863 784.7c.6-24.7 2.1-51 16.8-71.9 13.9-19.7 36.6-25.8 59.5-26.3 25.1-.5 50.5 2.6 75.5 4.4 26.4 2 52.9 4 79.3 6.2 30.4 2.5 60.7 5.2 91.1 8 1.9.2 1.9-2.8 0-3-56.7-5.3-113.5-10-170.4-14.2-26-1.9-52.6-5.4-78.7-4.3-21.4.9-42.5 6.9-56.3 24.2-17.3 21.6-19.1 50.3-19.8 76.8 0 2 3 2 3 .1z" fill="#161616"/><path d="m860.6 787.3c12.2 34.4 47.2 53.4 77 70.6 36.1 20.8 73.4 39.5 112.1 54.8 11 4.3 22 8.4 33.2 12.2 5.7 1.9 11.5 3.8 17.3 5.5 2.6.8 5.2 1.6 7.8 2.3 1.5.4 2.9.8 4.4 1.2.6.2 1.2.3 1.7.5 1.3.6 2.7.7 4 0v2.1c.1-.1.2-.2.3-.4 1.2-1.5-.9-3.6-2.1-2.1-.1.1-.2.2-.3.4-.5.6-.6 1.5 0 2.1 3.3 3 5.8-2 1.8-4.1-4-2.2-9.8-2.9-14.3-4.2-5.5-1.6-11-3.4-16.4-5.2-21.7-7.2-43-15.5-63.9-24.8-20.5-9.1-40.6-19.1-60.3-29.7-18.7-10.1-37.5-20.6-55.3-32.4-18.7-12.5-36.4-28-44.1-49.7-.7-1.7-3.6-.9-2.9.9z" fill="#161616"/><path d="m967.1 738.1c63.1 33.3 131.8 55.1 193.5 91.2-.2-.7-.4-1.4-.5-2.1-20 33-34.5 69.1-42.9 106.8-.4 1.9 2.5 2.7 2.9.8 8.3-37.4 22.7-73.2 42.6-106 .4-.7.2-1.6-.5-2.1-61.7-36.1-130.3-57.9-193.5-91.2-1.8-.9-3.4 1.7-1.6 2.6z" fill="#161616"/><path d="m1136.3 815.9c66.3 21.2 136.3 29.8 205.8 25.3 1.9-.1 1.9-3.1 0-3-69.2 4.6-138.9-4-205-25.2-1.9-.6-2.6 2.3-.8 2.9z" fill="#161616"/><path d="m1145 861.8c16.9 4.9 33.8 9.8 50.8 14.7 3.4 1 7 1.8 10.4 3.1 5.4 2 6.7 6.2 8.3 11.2 2.7 8.2 5.3 16.5 7.9 24.7 10.8 33.6 21.6 67.2 32.3 100.8.6 1.8 3.5 1 2.9-.8-11.6-36.2-23.2-72.3-34.8-108.5-2.4-7.6-4.2-16.1-7.7-23.3-2.9-6-8.9-7.3-14.8-9-18.2-5.3-36.4-10.6-54.5-15.8-1.9-.5-2.7 2.4-.8 2.9z" fill="#161616"/><path d="m1124.5 909.8c10 .6 19.9 2.4 29.5 5.7 4.5 1.6 8.9 3.3 12.1 7.1 3.2 3.7 5 8.4 7.2 12.6 8 15.6 17.3 30.4 27.8 44.5 10.2 13.6 21.4 26.7 33.7 38.4 4.1 3.9 9.8 8.8 15.9 6.7 4.7-1.6 7.3-6.4 5.2-11-.8-1.7-3.4-.2-2.6 1.5 2.6 5.5-4.9 7.5-8.1 6.5-2.2-.7-4.2-2.2-5.9-3.7-3-2.5-5.7-5.4-8.4-8.2-5.2-5.3-10.2-10.9-15-16.6-10.1-12-19.3-24.6-27.6-38-4.1-6.6-7.9-13.3-11.5-20.2-3.1-5.9-5.6-12.7-10.8-17-4.9-4.1-11.9-6-18-7.6-7.7-2.1-15.5-3.2-23.4-3.7-2-.1-2 2.9-.1 3z" fill="#161616"/><path d="m1212.7 909.8c-2.9 2.7-7.3 6.9-12.4 12.1-11 11.2-17.3 18.8-29.6 33.6-12.4 15-14.5 18.5-14.4 23.5.3 7.2 5.2 12.1 11.5 18.7 10.8 11.5 19.6 24.9 30.8 36.1 15.6 15.7 31.1 31.4 48.9 49.4-2.9-15.4-6.6-31.8-11.4-49.1-5.9-21.2-12.5-40.5-19.3-57.9 4.2-7 8.4-12 11.6-15.3 2.9-3 5.6-5.4 19.1-16.1 5.2-4.1 9.5-7.4 12.7-9.9 3.9-8.7 2.2-13.9 1.4-15.9-4.7-10.8-24.6-16.4-48.9-9.2z"/><path d="m1176.3 901.8c3.9-7 9.5-16.6 16.7-27.7 11.6-17.7 24.8-34.9 47.2-59.7 17.1-18.9 36.3-40.1 65.7-66.1 59.5-52.4 82.2-54.7 90.5-55.1 5.9-.3 24.3-.9 42.5 10.2 6 3.6 21.3 12.9 25.9 30.3 2.2 8.3 1.5 16.9-3 30.4-10.2 30.2-28.2 50.4-33.3 56.1-42 47.2 70.4-72.6-67 80.6-26.3 29.3-48.7 54.2-65.9 73.2-4.6-6.4-11.8-15.5-21.7-25.5-12.3-12.4-28.3-28.4-53.6-38.3-9.2-3.5-24.2-8-44-8.4z" fill="#fff"/><path d="m1441.4 705.3c-.6 8.2-2 20.5-6.3 34.9-5.5 18.8-14.8 37.4-32.3 60.1-23.7 30.7-71.9 80.7-139.5 138 4.9 4 10.6 9.3 16.2 16.2 6.6 8.1 11.2 15.8 14.3 22.2 6.6-7.5 18.7-21.2 33.8-38.2 34.5-38.7 66.1-79.9 100.8-118.3.5-.5 19.5-21.5 32.4-53.4 4.3-10.7 6.3-18.4 5-27.3-2.7-19-18.8-30.5-24.4-34.2z" fill="#aaa" opacity=".14"/><path d="m1177.2 900c23.8-36.5 50.8-71 80.6-102.8 14.8-15.7 30.2-30.8 46.3-45.2s32.7-29.1 50.9-40.8c18.7-12.1 41.4-20.6 63.8-15.3 11.1 2.6 20.3 9 28.8 16.5 8.6 7.5 15.9 16.2 16.8 28 1.7 21.9-13.3 43.2-24.6 60.7-12.4 19-26.2 37.1-40.7 54.5-33.5 40.2-69.5 78.5-104.5 117.3-1.3 1.4.8 3.6 2.1 2.1 33.4-37.1 67.6-73.7 99.9-111.8 15-17.8 29.4-36.1 42.4-55.4 11.8-17.6 26-37.7 28.3-59.4 2.3-21.4-12.9-36.8-29.6-47.8-18.1-11.8-40.7-11.6-60.5-4.3-20.8 7.7-38.4 22.2-55.3 36.2-17.5 14.6-34.2 29.9-50.3 46-36.3 36.4-68.8 76.7-96.9 119.7-1.1 1.9 1.5 3.4 2.5 1.8z" fill="#161616"/><path d="m1176.3 903.3c48.8.7 95 30.2 116.3 74.1.8 1.7 3.4.2 2.6-1.5-21.7-44.8-69.1-74.9-118.8-75.6-2 0-2 3-.1 3z" fill="#161616"/><path d="m1211.7 908.8c-11.3 10.6-21.9 21.8-32 33.5-4.6 5.4-9.1 10.9-13.4 16.6-4.1 5.3-10.1 11.4-11.3 18.2-.9 5.2 2.1 9.7 5.1 13.6 4.9 6.4 10.1 12.6 15.3 18.8 10.2 12.2 20.8 24.2 31.6 35.9 12.3 13.3 25 26.3 38.1 38.9 1.4 1.3 3.5-.8 2.1-2.1-26.8-25.8-52.1-53.2-75.7-82-5.8-7.1-17.3-16.7-12.1-26.6 4.3-8.1 11.3-15.7 17.1-22.7 11.5-14.1 24-27.3 37.2-39.8 1.5-1.5-.6-3.7-2-2.3z" fill="#161616"/><path d="m1259.4 933.7c-12 9.1-23.7 18.7-34.9 28.7-3.8 3.4-9.5 7-9.6 12.7 0 2.8 1.4 5.8 2.3 8.4 1.2 3.6 2.5 7.2 3.7 10.8 10.1 29.3 19.8 58.8 25.1 89.4.3 1.9 3.2 1.1 2.9-.8-4.8-27.5-13.1-54.1-22.1-80.4-2.2-6.6-4.5-13.2-6.8-19.8-1.4-4-3.2-7.7-.5-11.7 1.8-2.7 5.3-5 7.7-7.1 10.8-9.6 22.1-18.8 33.6-27.6 1.6-1.1.1-3.8-1.4-2.6z" fill="#161616"/><path d="m1179 433.7c-4 2.1-9.8 5.6-15.7 11-13.2 12.1-18.2 26-22.4 37.5-21.4 58.1-18.8 46.1-23 60.7-9.5 33.2-10.3 51.4-23.2 56.1-4.6 1.7-9.4 1.2-15.6.6-13.7-1.4-23.4-7.2-27.9-10-18-11.2-26.9-27.3-29.9-33.3-8.3-16.7-3.7-21.6-14.1-41.1-7.9-14.7-14.3-19-17.2-20.7-11.1-6.4-22-5-26.7-4.3-4.3.6-9.8 1.4-11.4 5.2-1.5 3.5 1 7.6 1.5 8.5 5.2 8.5 18.1 8 19.5 7.9-1-.2-17.9-2.9-25.6 6.9-3.8 4.7-4.9 11.9-5.3 14.2-.1.8-.7 4.6-.4 9.8.1 1.1.3 4.6 2.3 11.9 2.3 8.6 3.5 12.9 6.3 16 1.6 1.8 5.4 6 10.4 5.3 3.9-.5 6.4-3.7 7.1-4.7 4.7 1.5 9 3 12.6 4.3 7.4 2.6 9.3 3.5 11.1 5.2 3.9 3.6 4.5 8.4 5.2 11.7 1.5 6.9 5.6 13.1 13.7 25.6 4.7 7.2 12.2 18.7 26.3 28.2 3.7 2.5 15.7 10.2 33.3 13.2 20.4 3.5 36.4-1.3 44-3.7 2.5-.8 14.8-4.8 28.6-14.3 0 0 13.5-9.3 23.8-21.9 14.1-17.3 14.7-31.9 25.7-79.6 11.9-51.6 18.1-63.8 10-81.2-5.9-12.5-15.9-20.4-23-25z" fill="#fff"/><path d="m949.2 564.7c4 1.2 12.1 3 21.8.9 14.1-3.1 22.4-12.4 24.9-15.5 1 6.1 2.8 15 6.7 25.3 5.2 14.1 14.8 39.9 39.9 55.2 5.8 3.6 24.4 14.9 47.3 11.3 24-3.8 38.4-21.9 55.2-43.3 16.2-20.5 24.1-38.8 33.3-59.9 7.9-18.3 18.2-42 22.1-67.5.4-2.7.7-5.1 1.2-5.1 2.1 0 10 49.3-3.3 101.2-3.6 14-6.7 25.5-15.3 38.6-13.5 20.4-31.2 30.8-43.2 37.6-13.9 7.9-26.9 15.3-46 16.7-27.9 2-48.6-10.3-55.2-14.4-18.5-11.4-28.3-26.2-34.6-35.9-8.1-12.5-12.7-24.2-15.3-32.6-9-4.4-15.9-4.6-20.5-3.9-5.6.8-9.6 3.1-13.4 1-3.8-1.8-5.1-6.3-5.6-9.7z" fill="#aaa" opacity=".29"/><path d="m1188.2 431.9c-14.7-2.3-25.4 9.8-32.8 20.9-9.5 14.4-16.9 30.1-23.3 46.1-6.6 16.6-12.2 33.5-17.9 50.4-2.8 8.2-5.6 16.3-8.7 24.4-3.1 8.3-5.9 20.5-13.7 25.6-1.6 1-.1 3.6 1.5 2.6 5.8-3.7 8.2-10 10.7-16.2 3.3-8 6.3-16.1 9.1-24.2 5.6-15.8 10.7-31.7 16.4-47.4 5.8-16 12.3-31.7 20.6-46.6 7.3-13.2 19.2-35.6 37.4-32.7 1.8.2 2.6-2.6.7-2.9z" fill="#161616"/><path d="m975.3 511c-5.3-.7-10.5-2.2-15.3-4.6-2.1-1-4.5-2.2-6-4-3-3.3-.8-7 2.8-8.6 7.5-3.5 16.5-3.6 24.4-1.3 7.6 2.2 14.6 6.7 19.4 13.1 6 8.1 7.5 18.5 10.1 28 5.9 22.3 19.4 44.2 39.1 56.8 12.8 8.1 27.7 11.5 42.7 11.6 1.9 0 1.9-3 0-3-17.2-.2-34-4.9-47.6-15.8-12.4-10-21.5-23.9-27.4-38.6-5.4-13.4-5.8-29.3-14.7-41.1-9.2-12.2-25.9-18.1-40.8-14.7-5.9 1.4-15.9 5.3-12 13.1 4 8 17.5 10.9 25.3 11.9 1.9.4 1.9-2.6 0-2.8z" fill="#161616"/><path d="m972.9 510.4c-10.1 1.1-39 5.2-32.8 21.9 6.4 17.3 29.1 11.8 41.5 6.5 1.8-.8.2-3.3-1.5-2.6-10.9 4.7-29.5 10-36.6-3.7-7.4-14.2 21.4-18.1 29.5-19 1.8-.3 1.9-3.3-.1-3.1z" fill="#161616"/><path d="m955.2 530.2c7.5-2.4 23.7-5.9 23.8 6.9 0 1.9 3 1.9 3 0 0-5.2-3.3-9.4-8.1-11.3-6.3-2.6-13.3-.5-19.5 1.5-1.8.6-1 3.5.8 2.9z" fill="#161616"/><path d="m940.6 532.6c-4.1 10.6 3.8 21.3 14.5 23.1 10.1 1.6 22.9-3.9 24.5-15 .3-1.9-2.6-2.7-2.9-.8-2.8 20.7-41.4 14.8-33.2-6.5.7-1.8-2.2-2.5-2.9-.8z" fill="#161616"/><path d="m943.7 548.8c-3.7 8.9 2 18.9 11.6 20.2 10.8 1.4 18.8-7.8 18.4-18.1-.1-1.9-3.1-1.9-3 0 .3 8.1-5.3 15.6-14 15.3-8.5-.4-13.3-9-10.1-16.5.7-1.8-2.2-2.6-2.9-.9z" fill="#161616"/><path d="m947.7 564.7c-.9 7.2 5.9 13.7 13.1 12.9 7.4-.8 12-8.3 11.9-15.3 0-1.9-3-1.9-3 0 .1 5.1-2.9 10.7-8.2 12.1-5.9 1.5-11.5-3.8-10.8-9.7.2-1.9-2.8-1.9-3 0z" fill="#161616"/><path d="m967.5 574.9c5.8 1 12.5 1.4 18.2 3.2 5.7 1.9 7.3 9.7 9.6 14.7 4.2 9.2 8.7 18.1 14.2 26.6 10.8 16.5 25.1 30.2 43.8 37.3 39.9 15.1 87.5-2.5 113.5-35.1 7.6-9.5 12.4-20.5 16.2-31.9 4.4-13.2 8.3-26.6 12.1-40 .5-1.9-2.4-2.7-2.9-.8-3.3 11.4-6.6 22.8-10.2 34.1-3.4 10.9-7.3 21.7-13.6 31.3-11.9 18-31.6 31.7-51.7 39s-42.5 8.1-62.6.5c-19.7-7.5-34.2-22.8-44.9-40.6-5.6-9.3-10.2-19.2-14.5-29.1-1.5-3.5-2.9-6.9-6.7-8.5-5.9-2.3-13.4-2.5-19.7-3.6-1.9-.3-2.7 2.6-.8 2.9z" fill="#161616"/><path d="m1244.9 393.8c-29.6 8.4-49.6 27.9-55.7 34-13.5 13.4-22.2 27.6-27.9 39.2-15.9 32.7-15.4 62.8-14.9 78.4.6 21.7 4.5 32.2 10 57.7 5.1 23.5 11 57.4 13.9 100 11.6 10.1 33.1 25.6 63.7 32 12.5 2.6 51.2 10.6 88.6-12.4 17.8-11 28.8-25 34.8-34 6.6-71 12.1-130.7 17.9-191.8 2.3-23.9 4.3-45.5-8-66-22.5-37.5-80.1-49.1-122.4-37.1z" fill="#ec615b"/><path d="m1348.8 430.7c-4 1.2-8 5.1-13.1 23.6-6.5 23.7-7 43-7.1 47.6-.4 29.6.5 52.6 1.1 64.5 2.2 46.6 4.3 58.7 8.2 71.3 2.1 7 7.6 19.5 11.6 28.8 5.2 12.1 9.7 22 13 28.8-3.9 4.6-7.5 7.8-10.1 9.8-8.4 6.6-13.9 7.5-20.3 15-1.8 2.1-6.1 7.1-4.6 9.8 1.4 2.4 6.9 1.7 8.5 1.5 6.5-.8 8.7-4.1 15.4-6.4 2.6-.9 6.5-1.9 11.8-1.9-2 5.6-4.5 11.7-7.7 18.1-4.7 9.4-9.9 14.4-19.4 29.5-5.4 8.7-7.2 12.4-5.8 14.2 2.1 2.6 10-.6 10.5-.9 7-2.9 10.7-8.2 13.2-11.6 4.2-5.6 10.5-13.1 20-21.5-3.6 9.3-7 16.6-9.4 21.3-3.3 6.6-7.5 14.4-12.6 25.9-5.2 11.7-5.9 15-4.6 16 1.6 1.3 5.9-1.2 9.4-3.7.9 1.8 2.6 4.6 5.3 5.2 3.6.7 7.1-2.9 9.9-5.9 11.1-11.9 16.6-17.9 23.3-25.9 3-3.6 7.4-8.7 13.2-14.5.4 4.6.5 9.6.4 14.9-.2 10.1-3.2 15.6-1.2 16.8 1.9 1.2 6.7-2.3 9.6-6.3 3.4-4.7 3.7-9.8 3.8-15 .3-14.4-1.1-22.9-1.7-35.4-.4-9.2-.2-16.2-.2-17.8.5-17.9 2.9-20.5 1.7-32-1.3-12.4-5-18.8-6.4-20.9-2.8-4.4-5.9-7.5-8.2-9.5.4-2.1.8-5.1.1-8.7-1.1-5.8-4.4-8.9-8.3-14.7-2.1-3.1-4.9-7.7-7.6-13.9.8-4.5 1.7-11.3 2.3-19.6 1.3-17.5 0-30.6-.9-40.3-2.5-26-5.7-52-8-78.1-1.9-21.6-2.3-32.5-10.9-43.9-.9-.9-13.5-17.3-24.2-14.2z" fill="#fff"/><path d="m1369.3 440.9c2.3 18.2 4.3 36.9 6 56 3.9 44.6 5.6 87.2 5.7 127.2 4 4.1 9 10.1 13.4 18.1 2.6 4.8 6.2 11.2 8 20.3.4 2.1.5 3 .9 6.5 1.5 11.7 3.3 19.9 4 23.8 2.2 11.3 4.4 33.1 4.6 54.9.1 13.8-.6 32.2-3.8 53.8 3.5-1.8 8.5-5 11.4-10.7 3-5.9 2.3-11.4 1.5-19.8 0 0-1.5-16-1.8-31.1-.4-16.2 1.9-18 1.6-32.6-.4-15.4-1-21.9-3.7-28.5-2.6-6.2-6.1-10.8-8.7-13.7-.3-4.3-1.3-10-3.8-16.4-3.7-9.3-9-15.7-12.6-19.4.4-6.1.9-15.1 1.2-26.1.5-22.1 1.1-58.6-7.5-103-3-14.9-7.9-35.4-16.4-59.3z" fill="#aaa" opacity=".22"/><path d="m1351.8 429.3c17.3 4.3 23.7 22.2 26.9 37.9 3.5 17.4 6 35.1 8 52.8 4 35.4 5.5 71 4.4 106.5-.1 1.9 2.9 1.9 3 0 1.1-38.8-.7-77.7-5.6-116.2-2.3-18-4.2-36.8-9.4-54.2-4-13.3-12.2-26.2-26.5-29.8-1.9-.4-2.7 2.5-.8 3z" fill="#161616"/><path d="m1380.6 625.6c16.4 5 22.8 21.9 25.8 37.3.4 1.9 3.3 1.1 2.9-.8-3.2-16.5-10.4-34.1-27.9-39.4-1.8-.6-2.6 2.3-.8 2.9z" fill="#161616"/><path d="m1392.6 661.7c12.1.4 20.7 10.4 24.5 21.1 4.5 12.7 2.1 26.7 1 39.8-1.1 12.9.3 25.4 1.4 38.2.5 6.4.9 12.8.2 19.2-.5 5.2-3.2 22.3-11.5 19.8.4.5.7 1 1.1 1.4 1.3-10.6 1.5-21.2.8-31.8-.1-1.9-3.1-1.9-3 0 .8 10.6.5 21.2-.8 31.8-.1.7.5 1.3 1.1 1.4 12.8 3.9 15.4-20.1 15.6-27.8.5-16.9-3.3-33.4-2.1-50.4 1.2-15.3 4.2-31.6-2.4-46.2-4.8-10.6-13.8-19.3-25.9-19.7-1.9.2-1.9 3.2 0 3.2z" fill="#161616"/><path d="m1391 658.9c-9.6 7.5-16.4 17.5-23.6 27.2-3.8 5.1-7.7 10.2-12.2 14.6-5.3 5.2-11.5 9.3-17.5 13.5-4.2 3-18.8 12.8-9.6 18.8 4.4 2.9 11.2-1.1 15.4-2.6 7.1-2.6 14.3-5.1 21.4-7.7 1.8-.6 1-3.5-.8-2.9-5.6 2-11.3 4.1-16.9 6.1-2.7 1-5.3 1.9-8 2.9-1.4.5-2.8 1.1-4.3 1.5-1.1.4-2.2.6-3.3.7-1-1.1-2-2.2-3-3.3-1.2-4.5 10.7-10.9 13.6-12.9 4.2-2.9 8.4-5.9 12.2-9.2 15-13.1 23-32.3 38.8-44.5 1.5-1.2-.7-3.4-2.2-2.2z" fill="#161616"/><path d="m1361.7 722.8c-3.1 11.7-9.7 21.8-16.6 31.7-3.4 4.9-6.9 9.9-10 15-2.3 3.8-6.5 9.3-6.6 13.9-.2 9.4 14.1 1.6 17.1-.9 10.9-9 20.5-20 29.9-30.5 1.3-1.4-.8-3.6-2.1-2.1-7.6 8.5-15.5 16.8-23.7 24.7-3.9 3.8-8.1 8.6-13.6 9.9-2.7.7-4.6-.2-4.1-2.8.2-1.2 1.3-2.9 1.8-4 1.1-2.1 2.2-4.1 3.4-6.1 9.5-15.9 22.4-29.9 27.3-48.1.6-1.8-2.3-2.6-2.8-.7z" fill="#161616"/><path d="m1372.7 750.4c-6.2 13.6-12.4 27.3-18.6 40.9-2.6 5.7-5.9 11.5-7.8 17.4-.9 2.7-1.4 6.4 1.4 8.2 3.4 2.2 6.7-1 8.8-3.5 4.6-5.3 9-10.8 13.3-16.3 8.3-10.7 16.2-21.8 23.6-33.2 1.1-1.6-1.5-3.1-2.6-1.5-5.7 8.7-11.6 17.2-17.8 25.6-3.4 4.5-6.9 9-10.4 13.4-1.7 2.1-3.5 4.3-5.2 6.4-.8.9-1.6 1.9-2.4 2.8-1.6 1.8-1.6 2.5-4.3 2.2-2.6-.4-2.3-.5-1.6-2.7.4-1.4 1.1-2.6 1.7-3.9 1.2-2.7 2.4-5.3 3.6-8 2.3-5 4.6-10.1 6.9-15.1 4.7-10.4 9.4-20.8 14.1-31.1.7-1.9-1.9-3.4-2.7-1.6z" fill="#161616"/><path d="m1356.2 815.8c9.8 6.1 19.3-6.9 25-13.1 9.3-9.9 17.9-20.6 25.7-31.7 1.1-1.6-1.5-3.1-2.6-1.5-6.3 9-13.1 17.6-20.4 25.8-3.4 3.8-6.9 7.5-10.5 11.1-4 4-9.6 10.6-15.8 6.8-1.6-1-3.1 1.6-1.4 2.6z" fill="#161616"/><path d="m1350.9 427c-11.9 9.4-16.6 24.2-19.4 38.6-3.7 19.3-5 39-5.1 58.6 0 20.1 1.4 40.1 3.3 60.1 1.8 18.8 2.8 38.5 7.3 56.9 4.8 19.6 18.9 35.1 23.9 54.6.5 1.9 3.4 1.1 2.9-.8-4.1-16.1-14.5-29.2-20.6-44.4-6.9-17.3-7.4-37.4-9.4-55.8-4.1-38.4-6.8-77.3-1.5-115.7 2.4-17.8 5.7-38.2 20.6-50 1.6-1.2-.5-3.3-2-2.1z" fill="#161616"/><path d="m1199.5 209.3c-21.9 18.4-28.5 41.9-32.3 55.4-10.3 36.6-1.9 66.7 5.5 93.2 8.8 31.4 13.7 49.1 30.5 57.2 25.2 12.2 55.9-7.5 60.2-10.4 3.1 2 7.5 4.1 12.7 3.9 3.1-.1 16.3-1.4 36-41.5 12.6-25.7 20.3-41.3 22.1-65.5 1-12.8 3.7-48.5-19.4-80.3-6.4-8.8-17.8-24.6-38.8-31.4-37.6-12.3-72 15.7-76.5 19.4z" fill="#fff"/><path d="m1265.3 212.9c5.5 11.7 12.3 29.7 15 52.5.7 6 3.2 30.2-3.7 60.7-5.2 22.8-13.8 40.8-21.3 53.5l13.8 2.7c.3 3.1 2.1 21.2 12.3 25 11.6 4.3 26.4-12.9 34.2-22 6.9-8 22.6-26.7 27-56.2 6.1-40.9-14.1-71.3-24-86.2-8.3-12.4-22.2-33.3-41.2-33-5.1.1-9.3 1.6-12.1 3z" fill="#aaa" opacity=".17"/><path d="m1253.3 199c1.6 9.2 5 22 12.3 35.9 9.5 18 21.5 29.9 29.6 36.7 5.1-3.8 11.5-4.8 16.6-2.3 7.8 3.8 8.1 13.7 8.2 16 0 1.2.1 7.4-3.9 13.1-7.6 10.9-22.4 9.9-23.3 9.9-6 9.5-16.1 28.1-17.7 53.4-.9 14.8-2.3 37.3 11.8 53.6 21.2 24.5 69.7 26.1 90.8 3.4 23.2-25.1 5.3-71.4-2.2-90.8-11.4-29.4-21.6-28.4-26.9-53.8-6.6-31.7 6.7-45.7-5.6-67.2-11.5-20.1-33.1-25.4-34.7-25.8-30-6.8-53.4 16.3-55 17.9z" fill="#5222d0"/><path d="m1281.3 194.6c-15 1.7-35.6 5.8-58.3 15.7-17.1 7.5-30.7 16.3-40.9 24-7.5 22.6-9.3 42.1-9.6 55.5-.3 14.1-.6 29.2 5.9 47.8 3.2 9.3 10.5 29.3 30 44.2 5.4 4.1 10.3 6.8 13.8 8.5 6.3-1.2 12.8-2.7 19.5-4.4 3.6-.9 7.2-1.9 10.6-2.9 2.8 2.4 14.8 12.8 13.5 25.5-1.5 14.6-19.4 22.1-31.4 27-9.2 3.8-45.6 19-69.9.9-13.9-10.3-16.7-26.2-21-50.5-8.3-46.4-.9-48.3 2.2-99.7 2.9-47.1 1.5-55.5 10.1-69.5 14.4-23.6 39.3-32.2 52.7-37 33.1-11.8 74.7-11.2 78.8.8 1 3.5-.4 7.9-6 14.1z" fill="#5222d0"/><path d="m1180.7 233.8c-8.3 31.5-14.3 65.5-5.7 97.7 6.8 25.2 22.5 48.6 46.4 60.1 1.7.8 3.3-1.7 1.5-2.6-23.7-11.5-39.1-34.7-45.4-59.8-7.9-31.3-2-64.1 6-94.7.6-1.8-2.3-2.5-2.8-.7z" fill="#161616"/><path d="m1223.1 391.2c21.1-1.4 40.5-11.9 53.3-28.7 1.2-1.5-1.4-3-2.6-1.5-12.1 16-30.7 25.9-50.7 27.2-2 .1-2 3.1 0 3z" fill="#161616"/><path d="m1251 383.9c4.1 8.7 8.6 17.2 13.5 25.5 1 1.7 3.6.2 2.6-1.5-4.9-8.3-9.4-16.8-13.5-25.5-.9-1.8-3.4-.2-2.6 1.5z" fill="#161616"/><path d="m1208.8 260.5c.8 25.1 1.1 50.1.9 75.2 0 1.6 2 1.9 2.8.8 4.6-6.1 9.1-12.4 13.4-18.7 1.1-1.6-1.5-3.1-2.6-1.5-4.3 6.3-8.8 12.6-13.4 18.7.9.3 1.9.5 2.8.8.2-25.1-.1-50.1-.9-75.2-.1-2-3.1-2.1-3-.1z" fill="#161616"/><path d="m1215 355.6c14.7.8 28.7-7.6 35-21 .8-1.7-1.8-3.3-2.6-1.5-5.8 12.5-18.6 20.2-32.4 19.5-2-.1-2 2.9 0 3z" fill="#161616"/><path d="m1246.6 311.9c1.9 0 1.9-3 0-3-2 0-2 3 0 3z" fill="#161616"/><path d="m1258.3 308.9c1.9 0 1.9-3 0-3s-1.9 3 0 3z" fill="#161616"/><path d="m1255.4 318.5c1.9 0 1.9-3 0-3-2 0-2 3 0 3z" fill="#161616"/><path d="m1187.8 322.9c1.9 0 1.9-3 0-3s-1.9 3 0 3z" fill="#161616"/><path d="m1195.9 318.5c1.9 0 1.9-3 0-3s-1.9 3 0 3z" fill="#161616"/><path d="m1194.4 328.8c1.9 0 1.9-3 0-3s-1.9 3 0 3z" fill="#161616"/><path d="m1186.9 250.2c3.6-5.9 11.2-6.8 16.1-1.9 1.4 1.4 3.5-.8 2.1-2.1-6.3-6.3-16.2-5-20.8 2.5-1 1.6 1.6 3.1 2.6 1.5z" fill="#161616"/><path d="m1234.4 241.7c6.7-6.8 17.2-6 22.4 2 1.1 1.6 3.7.1 2.6-1.5-6.4-9.6-19.1-10.9-27.2-2.6-1.3 1.3.8 3.5 2.2 2.1z" fill="#161616"/><path d="m1291.5 278.4c3.6-6.2 10.3-10.5 17.6-8.4s9.7 9.3 9.2 16.2c-.8 13-12.1 22.9-25.3 20.7-1.9-.3-2.7 2.6-.8 2.9 17 2.8 30.7-11.4 29-28.2-.8-7.6-5.6-13.7-13.3-14.9-8-1.3-15.1 3.5-19 10.2-.9 1.6 1.7 3.1 2.6 1.5z" fill="#161616"/><ellipse cx="1191.3" cy="293" fill="#161616" rx="3.5" ry="10.5"/><ellipse cx="1246.6" cy="288.3" fill="#161616" rx="3.5" ry="10.5"/></svg>
\ No newline at end of file
static/img/og-home.jpeg

145 KiB

...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
], ],
"ressources": [ "ressources": [
{ {
"title": "Mises en avant" "title": "Top"
}, },
{ {
"title": "Vidéo" "title": "Vidéo"
...@@ -17,9 +17,6 @@ ...@@ -17,9 +17,6 @@
{ {
"title": "Tutoriel" "title": "Tutoriel"
}, },
{
"title": "Site web"
},
{ {
"title": "Asso" "title": "Asso"
}, },
...@@ -34,6 +31,12 @@ ...@@ -34,6 +31,12 @@
}, },
{ {
"title": "Groupe local" "title": "Groupe local"
},
{
"title": "Petites annonces"
},
{
"title": "Monitoring"
} }
] ]
} }
{ {
"site_url": "https://monnaie-libre.fr/", "site_url": "https://monnaie-libre.fr",
"site_logo": "/img/logo-monnaie-libre.svg",
"site_title": "monnaie-libre.fr", "site_title": "monnaie-libre.fr",
"forum_url": "https://forum.monnaie-libre.fr/", "site_logo": "/img/logo-monnaie-libre.svg",
"site_description": "Tout savoir sur la monnaie libre ! Une monnaie au service de l'homme, le mettant au centre de l'économie." "site_description": "Tout savoir sur la monnaie libre ! Une monnaie au service de l'humain, le mettant au centre de l'économie.",
} "forum_url": "https://forum.monnaie-libre.fr",
\ No newline at end of file "map_url": "https://carte.monnaie-libre.fr/?zoom=5",
"twitter_user": "monnaie_libre",
"social_networks_hashtags": "MonnaieLibre,Ğ1",
"facebook_group": "https://www.facebook.com/groups/monnaielibre/",
"mastodon_user": "@MonnaieLibre@mamot.fr",
"mastodon_link": "https://mamot.fr/@MonnaieLibre"
}
...@@ -13,8 +13,15 @@ ...@@ -13,8 +13,15 @@
"url": "/lexique" "url": "/lexique"
}, },
{ {
"title": "Forum", "title": "Forum"
"url": "https://forum.monnaie-libre.fr" },
{
"title": "Agenda",
"url": "/#agenda"
},
{
"title": "Carte",
"url": "/#map"
} }
], ],
"menu_footer": [ "menu_footer": [
...@@ -23,8 +30,8 @@ ...@@ -23,8 +30,8 @@
"title": "Sections", "title": "Sections",
"menus": [ "menus": [
{ {
"title": "Blog", "title": "Ressources",
"url": "/blog" "url": "/ressources"
}, },
{ {
"title": "FAQ", "title": "FAQ",
...@@ -33,26 +40,16 @@ ...@@ -33,26 +40,16 @@
{ {
"title": "Lexique", "title": "Lexique",
"url": "/lexique" "url": "/lexique"
}
]
},
{
"type": "column",
"title": "Ressources",
"menus": [
{
"title": "Sites web",
"url": "/ressources?cat=website"
}, },
{ {
"title": "Vidéos", "title": "Agenda",
"url": "/ressources?cat=video" "url": "/#agenda"
},
{
"title": "Applications",
"url": "/ressources?cat=app"
} }
] ]
},
{
"type": "ressources",
"title": "Ressources"
} }
] ]
} }
\ No newline at end of file
static/uploads/adresse-cle.png

116 KiB

static/uploads/aibnjune544x500.jpeg

54.9 KiB

static/uploads/blacksmith.jpg

53 KiB

static/uploads/blacksmith2medaille.png

150 KiB