Make beautiful #7

Open
ayakael wants to merge 13 commits from make-beautiful into main
32 changed files with 1397 additions and 340 deletions

View file

@ -12,7 +12,7 @@ jobs:
run: | run: |
apk add git nodejs jq coreutils curl tree gawk grep apk add git nodejs jq coreutils curl tree gawk grep
- name: Public repo pull - name: Public repo pull
uses: https://github.com/actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
token: ${{ secrets.PAGES_TOKEN }} token: ${{ secrets.PAGES_TOKEN }}

View file

@ -14,11 +14,11 @@ jobs:
run: | run: |
apk add git nodejs openssh-client-common openssh-client-default apk add git nodejs openssh-client-common openssh-client-default
- name: Start ssh-agent - name: Start ssh-agent
uses: https://github.com/webfactory/ssh-agent@v0.9.0 uses: actions/ssh-agent@v0.9.0
with: with:
ssh-private-key: ${{ secrets.PAGES_PRIVKEY }} ssh-private-key: ${{ secrets.PAGES_PRIVKEY }}
- name: Repo pull - name: Repo pull
uses: https://github.com/actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Website upload - name: Website upload

View file

@ -13,12 +13,12 @@ jobs:
apk add git ikiwiki po4a perl-yaml-tiny tree nodejs jq coreutils curl apk add git ikiwiki po4a perl-yaml-tiny tree nodejs jq coreutils curl
echo "GITHUB_PR_NAME=$(curl -Ls ${{ github.server_url }}/api/v1/repos/${{ github.repository }}/pulls/${{ github.ref_name }} | jq .title | tr ' ' '-' | tr -d ':' | tr -d '"' | tr '[:upper:]' '[:lower:]' | tr '/' '-')" >> $GITHUB_ENV echo "GITHUB_PR_NAME=$(curl -Ls ${{ github.server_url }}/api/v1/repos/${{ github.repository }}/pulls/${{ github.ref_name }} | jq .title | tr ' ' '-' | tr -d ':' | tr -d '"' | tr '[:upper:]' '[:lower:]' | tr '/' '-')" >> $GITHUB_ENV
- name: Repo pull - name: Repo pull
uses: https://github.com/actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 1 fetch-depth: 1
token: ${{ secrets.PAGES_TOKEN }} token: ${{ secrets.PAGES_TOKEN }}
- name: Public repo pull - name: Public repo pull
uses: https://github.com/actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
ref: public ref: public

View file

@ -51,13 +51,12 @@ body {
background-color: #f5f5f5; background-color: #f5f5f5;
} }
/* Custom page CSS /* Custom page CSS
-------------------------------------------------- */ -------------------------------------------------- */
/* Not required for template or sticky footer method. */ /* Not required for template or sticky footer method. */
body > .container { body > .container {
padding: 60px 15px 15px; padding:;
} }
.container .text-muted { .container .text-muted {
margin: 20px 0; margin: 20px 0;
@ -91,33 +90,6 @@ code {
font-size: 80%; font-size: 80%;
} }
/* comments fixup */
.comment {
border: none;
padding: 1em;
margin: 1em;
background: #f3f3f3;
}
.mastodon-comment {
display: flex;
}
/* mastodon posts have a span to hide the scheme and post id, use it */
.mastodon-comment-content span.invisible {
display: none;
}
.mastodon-comment .avatar img {
margin-right: 1rem;
}
.mastodon-comment span.disabled {
display: none;
}
.mastodon-comment .author {
display: flex;
justify-content: space-between;
}
.mastodon-comment .author time {
font-size: small;
}
.actions ul { .actions ul {
margin: inherit; margin: inherit;
padding: inherit; padding: inherit;
@ -128,7 +100,7 @@ code {
/* limit main content to ~90 chars per line */ /* limit main content to ~90 chars per line */
/* update: practical typography recommends 2-3 alphabets */ /* update: practical typography recommends 2-3 alphabets */
#content { #content {
max-width: 35em; /* this is 2.5 alphabets with Charter */ max-width: 100%;
} }
/* limit header as well otherwise logo is out of whack without sidebar */ /* limit header as well otherwise logo is out of whack without sidebar */
@ -248,8 +220,6 @@ div.footnotes { font-size: small; }
/* scale down images so they are centered like the rest of the text */ /* scale down images so they are centered like the rest of the text */
#content img { max-width: 100%; } #content img { max-width: 100%; }
/* except in the mastodon avatar, it squeezes them weirdly and messes with borders */
#content .mastodon-comment .avatar img { max-width: inherit; }
/* format HTML5 captions like ikiwiki's table-based captions /* format HTML5 captions like ikiwiki's table-based captions
* *
@ -291,19 +261,6 @@ figure.align-right figcaption {
word-wrap: break-word; word-wrap: break-word;
} }
/* make table scale out to avoid ugly word-wrapping
* bootstrap should deal with this, but ikiwiki doesn't assign the
* right style and anyways our width is smaller than necessary
*
* pages with tables that should be checked when this is changed:
*
* https://anarc.at/blog/2017-10-26-comparison-cryptographic-keycards/
* https://anarc.at/blog/2018-01-28-large-disk-price-review/
* https://anarc.at/services/backup/
* https://anarc.at/services/
* https://anarc.at/services/dns/registrars/
* https://anarc.at/services/welcome/
*/
table, table.table { width: 100%; } table, table.table { width: 100%; }
table { font-size: inherit; } /* why the heck does chrome override font-size for tables?! */ table { font-size: inherit; } /* why the heck does chrome override font-size for tables?! */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,3 +1,120 @@
/* ikiwiki local style sheet */ /* ikiwiki local style sheet */
/* Add local styling here, instead of modifying style.css. */ .home {
display: flex;
flex-basis: 50%;
justify-content: space-between;
height: 100%;
height: 100vh;
}
div.home-logo {
flex-basis: 50%;
width: 50%;
margin: auto;
padding: 25vh 0 0 0;
text-align: center;
}
.login {
margin: 0px;
color: #EBEBEB;
background-color: black;
margin: 12vh auto 10vh auto;
width: 28%;
border-radius: 25px;
padding: 12px;
}
.login a {
color:white;
}
.login:hover {
width: 40%;
cursor:pointer;
transition: 0.3s;
}
.home-title {
flex-basis: 50%;
background-image: url(images/chris-ried-79NfyK85Ahc-unsplash.jpg);
background-position: center;
height: 500;
text-align: center;
padding-top: 400px
color: white;
}
.join {
margin: 0px;
color: #EBEBEB;
background-color: black;
margin: 12vh auto 10vh auto;
width: 28%;
border-radius: 25px;
padding: 12px;
}
.join:hover {
width: 40%;
cursor:pointer;
transition: 0.3s;
}
.coop {
display: flex;
flex-basis: 50%;
justify-content: space-between;
background-color:;
height: 100vh;
}
.coop-title {
flex-basis: 50%;
background-color: black;
height: 100vh;
padding: 0 0 0 0 ;
}
.coop-title h5{
color: white;
padding: 27vh 7vw 0;
}
.coop-title h1{
color: white;
text-align: left;
padding: 1vw 7vw;
}
.services {
display: flex;
background-color:;
height: 80vh;
}
.services-title {
flex-basis: 50%;
text-align: center;
virtical-align: middle;
}
.services-title h5{
text-align: left;
padding: 0 0 0 30px ;
}
.services-content {
flex-basis: 50%;
background-color: black;
color: white;
text-align: center;
padding: 20vh 0 0 0;
}

View file

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ilot.io\n" "Project-Id-Version: ilot.io\n"
"POT-Creation-Date: 2024-09-08 12:45-0400\n" "POT-Creation-Date: 2024-09-08 17:48-0400\n"
"PO-Revision-Date: 2024-09-08 12:46-0400\n" "PO-Revision-Date: 2024-09-08 12:46-0400\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: dev@ayakael.net\n" "Language-Team: dev@ayakael.net\n"
@ -17,6 +17,12 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.4.3\n" "X-Generator: Poedit 3.4.3\n"
#. type: Content of: <p><div><div>
msgid ""
"<button class=\"scroll up\" > <i class=\"fa-solid fa-circle-chevron-up\" "
"style=\"font-size: 4em;\"></i> </button>"
msgstr ""
#. type: Content of: <p><div><div><div><h5> #. type: Content of: <p><div><div><div><h5>
msgid "Support" msgid "Support"
msgstr "Soutient" msgstr "Soutient"

View file

@ -1,5 +1,10 @@
<p class="text-muted"> <p class="text-muted">
<div class="container"> <div class="container">
<div class="row text-centered">
<button class="scroll up" >
<i class="fa-solid fa-circle-chevron-up" style="font-size: 4em;"></i>
</button>
</div>
<div class="row"> <div class="row">
<div class="col-sm-3"> <div class="col-sm-3">
<h5>Support</h5> <h5>Support</h5>

View file

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2024-09-08 12:45-0400\n" "POT-Creation-Date: 2024-09-08 17:48-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -16,6 +16,12 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#. type: Content of: <p><div><div>
msgid ""
"<button class=\"scroll up\" > <i class=\"fa-solid fa-circle-chevron-up\" "
"style=\"font-size: 4em;\"></i> </button>"
msgstr ""
#. type: Content of: <p><div><div><div><h5> #. type: Content of: <p><div><div><div><h5>
msgid "Support" msgid "Support"
msgstr "" msgstr ""

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,003 KiB

BIN
content/images/database.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

BIN
content/images/forum.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
content/images/forum_w.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

View file

@ -0,0 +1,525 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1920 1920" style="enable-background:new 0 0 1920 1920;" xml:space="preserve">
<style type="text/css">
.st0{stroke:#000000;stroke-width:22.2737;stroke-miterlimit:10;}
</style>
<g id="Layer_1">
<g>
<path d="M942.76,1735.78c-30.09,0-60.34-1.76-90.17-5.26c-28.77-3.31-57.89-8.39-86.46-15.09
c-35.78-8.35-71.23-19.33-105.32-32.63l-0.48-0.19l-26.05-10.63c-11.59-5.04-21.69-9.67-30.88-14.16
c-11.59-5.62-22.2-11.06-32.34-16.57c-33.37-18.16-65.43-38.73-95.31-61.17c-0.72-0.51-1.3-0.95-1.69-1.25l-1.85-1.38
c-0.85-0.65-1.87-1.42-3-2.34c-4.79-3.62-9.58-7.37-14.62-11.45c-10.2-8.16-20.32-16.73-30.07-25.46
c-12.42-11.03-24.65-22.65-36.35-34.54c-19.2-19.52-37.5-40.2-54.44-61.48c-0.58-0.71-1.3-1.6-2.09-2.67
c-0.17-0.22-0.34-0.44-0.51-0.67c-3.14-3.97-6.31-8.1-9.68-12.61c-8.48-11.26-16.79-22.95-24.71-34.76
c-1.95-2.92-3.42-5.16-4.77-7.26c-1.91-2.86-3.69-5.67-5.42-8.39c-16.02-25.16-30.77-51.69-43.8-78.81
c-0.56-1.02-1.06-2.06-1.52-3.12c-4.92-10.19-9.75-20.9-14.38-31.86l-0.07-0.16c-0.12-0.29-0.25-0.58-0.38-0.88
c-0.36-0.82-0.71-1.65-1.05-2.49c-6.8-16.16-13.13-32.83-18.82-49.53l-0.14-0.4c-0.19-0.54-0.49-1.4-0.81-2.47
c-6.82-20.09-12.83-40.56-17.85-60.86c-4.65-18.68-8.58-37.43-11.69-55.71c-17.5-101.45-14.63-203.98,8.53-304.74v-0.05l0.89-3.82
c19.74-83.82,52.92-163.29,98.61-236.2C355,431.51,454.57,338.18,572.09,274.69l0.14-0.1l1.4-0.75
c22.02-11.85,45.02-22.8,68.34-32.54c22.81-9.58,46.29-18.14,69.76-25.45l0.23-0.09l1.3-0.4
c183.57-56.86,381.11-43.46,556.21,37.72c176.25,81.71,314.71,225.45,389.87,404.75c21.37,50.99,37.32,104.23,47.42,158.23
c1.85,9.92,3.53,20.03,5.02,30.07c4.19,28.65,6.77,57.67,7.7,86.5l0.11,0.11l0.25,13.69c0.23,15.07,0,30.32-0.69,45.34
c-0.6,14.53-1.66,29.43-3.17,44.3c-1.89,18.29-4.36,36.23-7.33,53.42c-0.73,4.4-1.52,8.64-2.29,12.74
c-3.93,20.81-8.91,42.14-14.8,63.47c-1.54,5.58-3.27,11.51-5.43,18.58c-0.23,0.84-0.49,1.68-0.78,2.54
c-7.42,24.19-16.2,48.41-26.1,72.02c-8.1,19.39-17.3,39.02-27.31,58.29l-0.06,0.11c-1.38,2.66-2.75,5.33-4.18,7.99
c-4.95,9.27-10.34,18.85-16,28.47c-6.08,10.29-12.61,20.76-19.43,31.17c-0.45,0.72-0.91,1.42-1.4,2.11
c-1.56,2.39-3.14,4.72-4.55,6.8l-9.94,14.64h-0.18c-14.69,20.8-30.62,41.08-47.53,60.5c-0.47,0.58-0.95,1.15-1.46,1.71
c-0.9,1.08-1.72,2-2.42,2.78c-30.53,34.53-64.24,66.42-100.38,94.96l-11.08,8.65l-11.32,8.38
c-34.76,25.38-71.81,47.99-110.29,67.3c-16.12,8.11-32.6,15.69-48.96,22.53c-90.59,37.97-185.87,58.29-283.14,60.4
C954.01,1735.71,948.39,1735.78,942.76,1735.78z M685.31,1620.63c31.08,12.11,63.39,22.11,96.04,29.73
c26.1,6.12,52.65,10.75,78.95,13.78c32.42,3.8,65.32,5.36,97.86,4.64c88.87-1.92,175.94-20.51,258.8-55.23
c14.96-6.25,30.01-13.17,44.77-20.6c37.44-18.78,73.38-40.97,106.88-65.98l2.26-1.71c37.66-28.43,72.62-60.81,103.93-96.23
l0.13-0.14c0.4-0.45,0.89-0.99,1.05-1.19l1.16-1.45l0.6-0.63c19.26-22.07,37.14-45.37,53.15-69.24l6.54-9.75
c5.88-9.03,11.51-18.07,16.74-26.92c5.17-8.77,10.09-17.53,14.61-26c1.29-2.41,2.52-4.8,3.76-7.19l0.09-0.17
c9.19-17.68,17.59-35.62,25-53.35c9.15-21.81,17.24-44.15,24.05-66.43l0.37-1.19c2.07-6.76,3.7-12.31,5.12-17.47
c5.41-19.59,9.97-39.12,13.55-58.06c0.7-3.73,1.43-7.65,2.05-11.38l0.05-0.27c2.73-15.74,4.99-32.22,6.73-48.97
c1.37-13.48,2.34-27.07,2.88-40.29l0.01-0.18c0.5-10.82,0.74-21.77,0.71-32.67l-0.12-8.75c-0.43-30.44-2.89-61.22-7.31-91.5
c-1.36-9.17-2.91-18.46-4.6-27.55c-9.23-49.34-23.82-98.02-43.36-144.66c-68.7-163.88-195.25-295.27-356.34-369.96
c-159.65-74.02-339.68-86.39-507.05-34.9l-0.21,0.09l-1.3,0.4c-21.84,6.76-43.71,14.71-65.01,23.66
c-20.89,8.73-41.42,18.48-61.11,29.01l-0.12,0.08l-1.41,0.76c-107.94,58.02-199.39,143.56-264.46,247.4
c-41.4,66.07-71.57,138.03-89.68,213.91l-0.5,2.16c-21.9,93.19-24.8,188.06-8.6,281.98c2.84,16.71,6.43,33.81,10.68,50.89
c4.66,18.8,10.23,37.75,16.57,56.35l1.79,5.3c4.91,14.18,10.32,28.3,16.09,42.01l0.23,0.55c0.14,0.35,0.29,0.7,0.44,1.04
c0.25,0.57,0.49,1.13,0.73,1.7c4.09,9.67,8.34,19.11,12.65,28.08l0.08,0.12l1.25,2.61c12.02,25.14,25.66,49.73,40.54,73.09
c1.66,2.62,3.19,5.03,4.67,7.24l0.4,0.6c1.19,1.85,2.5,3.86,4.27,6.5c7.19,10.72,14.79,21.42,22.54,31.71l0.07,0.1
c2.87,3.84,5.56,7.35,8.19,10.69l0.62,0.62l1.52,2.16c0.15,0.19,0.31,0.38,0.46,0.57l0.22,0.27
c15.51,19.5,32.29,38.46,49.88,56.35c10.67,10.83,21.82,21.44,33.15,31.5l0.11,0.1c8.87,7.95,18.08,15.74,27.36,23.17l0.18,0.14
c4.64,3.76,9.02,7.19,13.38,10.48l1.39,1.1c0.2,0.16,0.79,0.62,1.23,0.95l0.52,0.39c0.52,0.38,0.96,0.71,1.29,0.96l0.26,0.17
l0.75,0.57c27.42,20.62,56.88,39.55,87.56,56.24c9.21,5.01,18.92,9.98,29.67,15.19c8.4,4.11,17.26,8.17,27.92,12.81
L685.31,1620.63z"/>
</g>
<g>
<rect x="1147.4" y="1646.57" transform="matrix(0.9223 -0.3865 0.3865 0.9223 -558.156 622.8359)" width="245.01" height="105.95"/>
</g>
<g>
<rect x="1577.05" y="597.12" transform="matrix(-0.3865 -0.9223 0.9223 -0.3865 1756.8052 2468.8486)" width="245.01" height="105.95"/>
</g>
<g>
<polygon points="1797.5,1170.47 1786.72,1196.84 1786.68,1196.89 1780.3,1212.48 1770.64,1236.09 1752.24,1281.04
1751.84,1282.02 1727.74,1340.91 1704.66,1397.26 1606.61,1357.12 1610.31,1348.17 1610.53,1347.59 1614.32,1338.37
1625.01,1312.18 1631.69,1295.87 1651.34,1248.03 1675.35,1189.36 1675.8,1188.24 1699.5,1130.38 "/>
</g>
<g>
<rect x="1141.32" y="164.95" transform="matrix(-0.9254 -0.3789 0.3789 -0.9254 2350.8474 898.4474)" width="245.01" height="105.95"/>
</g>
<g>
<rect x="489.25" y="1646.57" transform="matrix(-0.9223 -0.3865 0.3865 -0.9223 519.1505 3503.4575)" width="245.01" height="105.95"/>
</g>
<g>
<rect x="59.59" y="597.12" transform="matrix(0.3865 -0.9223 0.9223 0.3865 -487.8635 566.804)" width="245.01" height="105.95"/>
</g>
<g>
<polygon points="84.16,1170.47 94.94,1196.84 94.98,1196.89 101.35,1212.48 111.02,1236.09 129.42,1281.04 129.82,1282.02
153.92,1340.91 177,1397.26 275.04,1357.12 271.35,1348.17 271.12,1347.59 267.34,1338.37 256.65,1312.18 249.96,1295.87
230.32,1248.03 206.31,1189.36 205.86,1188.24 182.16,1130.38 "/>
</g>
<g>
<rect x="495.33" y="164.95" transform="matrix(0.9254 -0.3789 0.3789 0.9254 -36.5046 250.3387)" width="245.01" height="105.95"/>
</g>
<g>
<g>
<g>
<path d="M211.62,1109.71c-5.22,0-10.18-3.08-12.33-8.2c-2.85-6.81,0.35-14.64,7.16-17.49c0.07-0.03,7-2.93,18.03-7.67
c20.35-8.69,59.83-25.82,95.78-42.93c58.85-28.02,68.21-37.08,69.49-38.61c3.34-4.01,7.02-9.43,11.29-15.71
c17.42-25.62,43.75-64.34,97.87-80.27c39.48-11.59,62.64-17.29,81.26-21.86c10.5-2.58,19.57-4.81,28.87-7.48
c11.26-3.22,44.39-35.21,64.18-54.32c27.74-26.78,39.33-37.47,48.11-40.61c5.07-4.72,16.85-25.71,24.74-39.77
c23.55-41.97,36.64-63.87,53.7-63.87c4.1-0.13,16.77-7.9,25.15-13.04c20.07-12.31,42.82-26.26,64.54-23.52
c22.21,2.77,56.85,23.34,84.68,39.88c12.04,7.15,23.42,13.91,28.62,16c12.43,4.95,25.55,24.76,54.73,72.19
c12.88,20.95,32.35,52.59,38.94,57.12c2.81,1.68,8.48,5.46,24.93,18.45c34.25,27.03,98.51,81.28,106.59,90.6
c11.58,13.21,82.63,54.27,139.73,87.26c10.59,6.12,21.21,12.26,31.65,18.32c6.38,3.71,8.55,11.89,4.84,18.27
c-3.71,6.38-11.88,8.55-18.27,4.84c-10.41-6.05-21.02-12.18-31.59-18.29c-82.11-47.45-132.95-77.38-146.5-92.84
c-5.48-6.29-64.07-56.46-103-87.19c-14.18-11.21-19.86-15.17-22.13-16.52c-11.06-6.63-24.73-28.3-47.94-66.03
c-13.02-21.17-34.76-56.51-42.31-61.54c-7.16-2.96-18.12-9.47-31.92-17.67c-22.96-13.64-57.66-34.25-74.35-36.33
c-12.44-1.57-31.74,10.27-47.25,19.78c-14.54,8.92-26.21,16.08-37.06,16.9c-7.32,5.5-23.59,34.48-32.46,50.3
c-19.96,35.56-28.17,48.72-39.06,51.88c-5.66,2.91-24.63,21.23-38.54,34.65c-34.87,33.66-58.95,56.08-75.39,60.79
c-9.78,2.8-19.08,5.09-29.85,7.74c-18.36,4.51-41.2,10.13-80.1,21.55c-44.94,13.23-67.12,45.84-83.31,69.65
c-4.47,6.57-8.68,12.77-12.86,17.8c-5.33,6.38-19.05,17.31-78.53,45.63c-36.38,17.32-76.23,34.61-96.75,43.37
c-11.13,4.77-18.14,7.71-18.21,7.74C215.09,1109.38,213.34,1109.71,211.62,1109.71z M730.56,799.63 M723.13,774
c-0.03,0.01-0.07,0.02-0.1,0.03C723.07,774.02,723.1,774.01,723.13,774z M992.8,715.04c0.01,0,0.03,0.01,0.04,0.02
C992.83,715.05,992.82,715.04,992.8,715.04z M992.26,714.77L992.26,714.77C992.26,714.77,992.26,714.77,992.26,714.77z
M799.79,697.65c-0.01,0-0.01,0-0.02,0C799.78,697.65,799.79,697.65,799.79,697.65z"/>
</g>
</g>
<g>
<g>
<path d="M1650.49,1082.98c-1.88,0-3.78-0.4-5.59-1.23c-4.06-1.88-100.15-46.62-159.83-106.3c-35.92-35.92-63.65-48.45-83.9-57.6
c-12.38-5.6-23.08-10.43-31.38-18.73c-10.04-10.04-24.32-19.26-38.12-28.18c-9.76-6.3-18.98-12.26-26.79-18.51
c-9.74-7.79-31.61-11.74-65-11.74c-8.48,0-19.35-3.13-31.93-6.75c-12.9-3.71-27.53-7.92-37.75-7.92
c-11.18,0-34.97,19-47.53,31.83c-5.16,5.28-13.62,5.37-18.9,0.21c-5.28-5.16-5.37-13.62-0.21-18.9
c6.51-6.66,40.34-39.87,66.64-39.87c14,0,30.55,4.76,45.15,8.96c9.29,2.67,19.83,5.71,24.54,5.71c27.8,0,62.2,2,81.7,17.6
c6.76,5.41,15.43,11.01,24.6,16.93c14.98,9.67,30.46,19.68,42.52,31.73c4.85,4.85,12.67,8.38,23.49,13.27
c20.88,9.43,52.43,23.69,91.79,63.06c56.34,56.35,151.19,100.5,152.14,100.94c6.7,3.09,9.62,11.04,6.53,17.74
C1660.37,1080.1,1655.54,1082.98,1650.49,1082.98z"/>
</g>
</g>
<g>
<g>
<path d="M1529.8,1010.02c-7.17,0-13.01-5.64-13.35-12.72c-1.58-8.92-23.18-57.43-42.5-97.74c-4.21-7.98-28.23-30.08-72.62-61.67
c-35.59-25.32-72.34-48.13-85.48-53.06c-18.66-7-36.24-37.23-63.39-85.99c-9.57-17.18-19.46-34.94-28.36-48.68
c-11.97-18.45-17.67-22.65-19.56-23.6c-15.43-7.72-40.92-38.13-81.24-87.11c-17.27-20.98-35.13-42.68-50.21-59.41
c-21.01-23.31-28.29-27.56-29.99-28.3c-10.39-1.24-22.51,4.96-34.24,10.96c-11.31,5.78-22,11.25-33.06,11.25
c-9.21,0-18.07-2.2-25.19-3.96c-3.47-0.86-8.48-2.1-10.94-2.23c-5.46,4.41-20.15,13.24-61.15,37.37
c-29.57,17.4-74.2,43.67-80.31,49.25c-4.24,4.72-19.43,32.91-30.54,53.51c-28,51.94-37.28,67.81-44.86,72.86
c-2.92,1.95-11.9,9.63-20.59,17.06c-34.53,29.54-52.23,43.6-63.36,46.89c-3.94,2.38-17.44,15.23-44.97,49.73
c-19.75,24.74-38.22,50.03-43.08,58.13c-11.23,18.71-43.41,61.67-44.78,63.49c-4.43,5.9-12.8,7.1-18.71,2.67
c-5.9-4.43-7.1-12.81-2.67-18.71c0.33-0.43,32.72-43.67,43.24-61.21c6.43-10.72,27.67-39.36,47.35-63.84
c41.83-52.06,51.17-54.67,56.13-55.91c8.07-2.71,39.88-29.91,53.48-41.54c11.47-9.81,18.38-15.68,22.51-18.56
c5.7-6.06,24.37-40.7,36.78-63.73c19.97-37.05,29.33-53.9,35.16-59.72c6.25-6.25,30.37-20.86,85.66-53.4
c23.65-13.92,53.03-31.2,57.65-34.9c9.62-9.3,22.79-6.03,34.43-3.15c6.29,1.56,12.8,3.18,18.75,3.18
c4.62,0,13.27-4.42,20.89-8.32c14.16-7.24,31.79-16.25,50.68-13.55c17.14,2.45,41.33,30.02,96.57,97.12
c25.92,31.49,61.42,74.63,72.56,80.19c16.81,8.41,33.63,37.03,59.32,83.18c10.04,18.03,20.42,36.68,29.8,50.93
c13.04,19.81,18.63,22.67,19.62,23.04c18.09,6.78,60.16,33.95,91.59,56.31c31.9,22.7,71.84,53.51,80.99,71.41
c0.05,0.1,0.1,0.2,0.15,0.3c0.11,0.23,11.16,23.31,22.07,47.49c23.12,51.27,23.12,57.33,23.12,61.34
C1543.17,1004.03,1537.19,1010.02,1529.8,1010.02z M1516.44,996.65c0,0.01,0,0.02,0,0.03
C1516.44,996.67,1516.44,996.66,1516.44,996.65z M631.47,719c-0.01,0-0.02,0-0.02,0.01C631.46,719,631.47,719,631.47,719z
M707.14,659.15C707.14,659.15,707.14,659.15,707.14,659.15C707.14,659.15,707.14,659.15,707.14,659.15z M1042.86,451.63
C1042.86,451.63,1042.86,451.63,1042.86,451.63C1042.86,451.63,1042.86,451.63,1042.86,451.63z M922.45,447.33
c-0.04,0.04-0.08,0.08-0.11,0.11C922.38,447.41,922.41,447.37,922.45,447.33z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M290.49,1132.54h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21
v22.27c-31.09,0-55.56,17.22-83.88,37.15c-28.21,19.85-60.17,42.35-105.23,52.25L290.49,1132.54z"/>
</g>
</g>
<g>
<g>
<path d="M791.46,1128.84l-6.65-21.26c28.16-8.81,47.66-23.92,68.29-39.91c29.85-23.14,60.72-47.06,116.37-47.06
c43.56,0,75.29,20.9,108.89,43.03c15.66,10.32,31.86,20.99,49.87,29.86l-9.84,19.98c-19.26-9.49-36.05-20.54-52.28-31.24
c-32.06-21.12-59.75-39.36-96.64-39.36c-48.02,0-73.37,19.65-102.72,42.39C845.46,1101.78,823.45,1118.84,791.46,1128.84z"/>
</g>
</g>
<g>
<g>
<path d="M619.56,1112.31c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L619.56,1112.31z"/>
</g>
</g>
<g>
<g>
<path d="M1269.05,1132.29l-4.78-21.76c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21v22.27
c-31.09,0-55.56,17.22-83.88,37.15C1346.08,1099.89,1314.11,1122.39,1269.05,1132.29z"/>
</g>
</g>
<g>
<g>
<path d="M1596.94,1112.31c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L1596.94,1112.31z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M946.67,1189.49c-70.56,0-115.01-29.29-154.23-55.14c-3.48-2.29-6.93-4.57-10.37-6.8
c-26.38-17.15-52.83-32.54-86.26-32.54c-24.78,0-45.84,5.34-66.29,16.82c-12.86,7.25-24.3,16.13-36.42,25.53
c-31.51,24.44-67.22,52.13-135.12,52.13c-70.03,0-125.35-29.1-171.79-56.95h-0.02l-2.73-1.62c-2.79-1.69-5.54-3.37-8.24-5.02
c-27.17-16.58-50.63-30.89-68.08-30.89v-22.27c23.71,0,48.41,15.07,79.68,34.16c2.02,1.23,4.07,2.48,6.15,3.75l2.09,1.23
c46.45,28.01,97.29,55.35,162.95,55.35c60.28,0,90-23.05,121.47-47.46c12.22-9.47,24.85-19.27,39.15-27.34
c23.93-13.43,48.46-19.68,77.21-19.68c17.95,0,35.34,3.61,53.16,11.04c16.22,6.76,31.33,16.06,45.24,25.1
c3.48,2.26,6.97,4.56,10.49,6.88c38.4,25.3,78.1,51.46,141.97,51.46c65.44,0,103.94-27.1,141.16-53.31
c10.15-7.15,19.74-13.9,29.7-19.94l11.56,19.04c-9.31,5.65-18.6,12.19-28.44,19.12
C1062.46,1159.02,1019.16,1189.49,946.67,1189.49z"/>
</g>
</g>
<g>
<g>
<path d="M1260.88,1130.93c-2.72-1.65-5.41-3.29-8.05-4.9c-27.28-16.64-50.84-31.02-68.34-31.02c-18.05,0-34.62,5.38-55.41,18
l-11.56-19.04c16.29-9.88,38.62-21.23,66.96-21.23c23.76,0,48.55,15.13,79.94,34.28c2.62,1.6,5.29,3.23,8,4.87L1260.88,1130.93z
"/>
</g>
</g>
<g>
<g>
<path d="M1435.38,1189.49c-71.41,0-127.49-30.21-174.45-58.53l11.5-19.07c46.43,28,97.25,55.33,162.95,55.33
c60.27,0,89.99-23.05,121.45-47.45c12.22-9.47,24.85-19.27,39.15-27.34c23.89-13.44,48.41-19.7,77.19-19.7
c0.93,0,1.99,0,3.13,0.06l-1.18,22.24c-0.55-0.03-1.23-0.03-1.95-0.03c-24.8,0-45.85,5.35-66.26,16.83
c-12.87,7.26-24.32,16.14-36.43,25.53C1538.98,1161.8,1503.27,1189.49,1435.38,1189.49z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M433.07,1256.48l-4.57-21.8c41.61-8.72,70.76-29.24,98.95-49.08c30.1-21.18,58.54-41.19,96.67-41.19v22.27
c-31.08,0-55.54,17.21-83.85,37.13C511.63,1223.97,479.17,1246.81,433.07,1256.48z"/>
</g>
</g>
<g>
<g>
<path d="M1410.53,1256.48l-4.57-21.8c41.58-8.72,70.71-29.23,98.88-49.07c30.09-21.19,58.52-41.2,96.65-41.2v22.27
c-31.08,0-55.53,17.21-83.83,37.14C1489.04,1223.97,1456.61,1246.81,1410.53,1256.48z"/>
</g>
</g>
<g>
<g>
<path d="M763.39,1236.35c-26.97-11.89-50.57-26.25-71.39-38.93c-27.09-16.49-50.49-30.74-67.87-30.74v-22.27
c23.63,0,48.27,15,79.46,33.98c20.23,12.32,43.16,26.27,68.79,37.57L763.39,1236.35z"/>
</g>
</g>
<g>
<g>
<path d="M933.21,1253.16l-6.45-21.32c28.89-8.73,48.69-24.09,69.65-40.35c29.85-23.15,60.71-47.09,116.39-47.09
c43.59,0,75.35,20.92,108.97,43.07c15.76,10.38,32.06,21.12,50.2,30.02l-9.81,20c-19.4-9.52-36.3-20.65-52.64-31.41
c-32.09-21.14-59.81-39.39-96.72-39.39c-48.05,0-73.4,19.66-102.74,42.41C988.42,1225.88,966.05,1243.24,933.21,1253.16z"/>
</g>
</g>
<g>
<g>
<path d="M1670.01,1197.76c-7.18-4.37-14.6-8.88-21.61-12.92c-16.28-9.43-33.22-18.16-46.91-18.16v-22.27
c18.95,0,39.1,10.16,58.06,21.15c7.21,4.16,14.75,8.74,22.03,13.17L1670.01,1197.76z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M433.04,1257.28h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21
v22.27c-31.1,0-55.56,17.22-83.88,37.15c-28.2,19.85-60.17,42.35-105.23,52.25L433.04,1257.28z"/>
</g>
</g>
<g>
<g>
<path d="M934.01,1253.58l-6.65-21.26c28.16-8.81,47.66-23.92,68.29-39.91c29.85-23.14,60.72-47.06,116.37-47.06
c43.56,0,75.29,20.9,108.89,43.03c15.67,10.32,31.86,20.99,49.88,29.86l-9.84,19.98c-19.26-9.49-36.05-20.54-52.28-31.24
c-32.06-21.12-59.75-39.36-96.63-39.36c-48.02,0-73.37,19.65-102.72,42.39C988.01,1226.51,966,1243.57,934.01,1253.58z"/>
</g>
</g>
<g>
<g>
<path d="M762.11,1237.04c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L762.11,1237.04z"/>
</g>
</g>
<g>
<g>
<path d="M1411.6,1257.02l-4.78-21.76c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21v22.27
c-31.09,0-55.56,17.22-83.88,37.15C1488.63,1224.62,1456.66,1247.12,1411.6,1257.02z"/>
</g>
</g>
<g>
<g>
<path d="M1739.49,1237.04c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L1739.49,1237.04z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M272.96,1251.87l-12.83-18.21c8.65-6.09,15.82-10.85,22.58-14.97l0.59-0.35c0.27-0.16,0.54-0.33,0.8-0.48
c23.55-14.11,43.77-20.4,65.57-20.4v22.27c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31c-0.25,0.15-0.51,0.31-0.76,0.45
C287.87,1241.64,281.13,1246.11,272.96,1251.87z"/>
</g>
</g>
<g>
<g>
<path d="M1089.22,1314.23c-70.56,0-115.01-29.29-154.23-55.14c-3.48-2.29-6.93-4.57-10.37-6.8
c-26.39-17.15-52.83-32.54-86.26-32.54c-24.78,0-45.84,5.34-66.29,16.82c-12.86,7.25-24.3,16.13-36.42,25.53
c-31.51,24.44-67.21,52.13-135.12,52.13c-70.03,0-125.35-29.09-171.79-56.95h-0.02l-2.73-1.62c-2.79-1.69-5.54-3.37-8.24-5.02
c-27.17-16.58-50.63-30.9-68.08-30.9v-22.27c23.71,0,48.41,15.07,79.69,34.16c2.03,1.24,4.08,2.49,6.15,3.75l2.08,1.22
c46.45,28.01,97.29,55.35,162.95,55.35c60.28,0,90-23.05,121.47-47.46c12.22-9.47,24.85-19.27,39.15-27.34
c23.93-13.43,48.46-19.68,77.21-19.68c17.95,0,35.34,3.61,53.16,11.04c16.22,6.76,31.33,16.06,45.24,25.1
c3.47,2.26,6.97,4.56,10.49,6.88c38.4,25.3,78.1,51.46,141.97,51.46c65.44,0,103.94-27.1,141.16-53.31
c10.15-7.15,19.74-13.9,29.7-19.94l11.56,19.04c-9.31,5.65-18.6,12.19-28.44,19.12
C1205.01,1283.75,1161.71,1314.23,1089.22,1314.23z"/>
</g>
</g>
<g>
<g>
<path d="M1403.25,1255.54l-0.79-0.45c-2.36-1.44-4.69-2.86-6.98-4.26c-27.32-16.68-50.91-31.09-68.44-31.09
c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31c-0.33,0.2-0.67,0.4-1,0.59l-10.82-19.47l0.2-0.12c0.27-0.16,0.54-0.33,0.8-0.48
c23.55-14.11,43.78-20.4,65.57-20.4c23.79,0,48.62,15.16,80.05,34.36c2.23,1.36,4.49,2.74,6.78,4.13l0.02,0.01
c0.39,0.22,1.05,0.58,1.81,1.12l-12.93,18.14C1402.92,1255.34,1403.08,1255.45,1403.25,1255.54z"/>
</g>
</g>
<g>
<g>
<path d="M1577.93,1314.22c-71.42,0-127.49-30.21-174.45-58.53l11.5-19.07c46.42,28,97.25,55.33,162.95,55.33
c8.37,0,15.9-0.42,23.01-1.3l0.16-0.02c9.7-1.05,18.66-2.82,27.41-5.44c29.58-8.68,49.67-24.25,70.93-40.74
c12.2-9.46,24.81-19.23,39.08-27.29l10.95,19.4c-12.86,7.26-24.29,16.12-36.38,25.5c-21.97,17.03-44.69,34.64-78.26,44.49
c-9.99,2.98-20.23,5.02-31.26,6.21C1595.57,1313.75,1587.18,1314.22,1577.93,1314.22z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M575.62,1381.21l-4.57-21.8c41.61-8.72,70.76-29.24,98.95-49.08c30.1-21.18,58.54-41.19,96.67-41.19v22.27
c-31.08,0-55.54,17.21-83.85,37.13C654.18,1348.7,621.72,1371.54,575.62,1381.21z"/>
</g>
</g>
<g>
<g>
<path d="M427.35,1362.22c-19.43-9.53-36.34-20.66-52.69-31.43c-31.01-20.42-57.8-38.05-92.75-39.3c-3.08-0.1-6.5-0.1-9.58,0.04
l-0.99-22.25c2.15-0.1,4.39-0.14,6.64-0.14c1.68,0,3.27,0.05,4.67,0.09c41.24,1.47,71.84,21.62,104.25,42.95
c15.78,10.39,32.09,21.13,50.25,30.03L427.35,1362.22z"/>
</g>
</g>
<g>
<g>
<path d="M905.94,1361.08c-26.97-11.89-50.57-26.25-71.39-38.92c-27.09-16.49-50.49-30.74-67.88-30.74v-22.27
c23.63,0,48.27,15,79.46,33.99c20.23,12.31,43.16,26.27,68.79,37.57L905.94,1361.08z"/>
</g>
</g>
<g>
<g>
<path d="M1552.03,1381.45h-1.19l-0.02-11.24l-2.32-10.78c4.33-0.93,8.41-1.94,12.47-3.09c14.9-4.2,29.35-10.25,44.16-18.48
c15.23-8.47,28.94-18.13,42.2-27.47c30.11-21.21,58.55-41.24,96.72-41.24v22.27c-31.11,0-55.57,17.23-83.89,37.18
c-13.73,9.67-27.94,19.68-44.2,28.73c-16.34,9.08-32.35,15.77-48.94,20.45c-4.52,1.27-9.04,2.39-13.82,3.42L1552.03,1381.45z"/>
</g>
</g>
<g>
<g>
<path d="M1075.76,1377.9l-6.45-21.32c28.89-8.73,48.69-24.09,69.65-40.35c29.85-23.15,60.71-47.09,116.39-47.09
c43.59,0,75.35,20.92,108.97,43.06c15.76,10.38,32.06,21.12,50.2,30.02l-9.81,20c-19.4-9.52-36.3-20.65-52.64-31.41
c-32.09-21.14-59.8-39.39-96.72-39.39c-48.05,0-73.4,19.66-102.74,42.41C1130.98,1350.61,1108.6,1367.97,1075.76,1377.9z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1744.04,1280.28"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M426.11,1362.95c-19.26-9.49-36.05-20.54-52.28-31.24c-32.06-21.12-59.76-39.36-96.64-39.36v-22.27
c43.56,0,75.29,20.9,108.89,43.03c15.66,10.32,31.86,20.99,49.87,29.86L426.11,1362.95z"/>
</g>
</g>
<g>
<g>
<path d="M575.59,1382.01h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21
v22.27c-31.1,0-55.56,17.22-83.88,37.15c-28.2,19.85-60.17,42.35-105.23,52.25L575.59,1382.01z"/>
</g>
</g>
<g>
<g>
<path d="M1076.56,1378.31l-6.65-21.26c28.16-8.81,47.66-23.92,68.29-39.91c29.85-23.14,60.72-47.06,116.37-47.06
c43.56,0,75.29,20.9,108.89,43.03c15.67,10.32,31.86,20.99,49.88,29.86l-9.84,19.98c-19.26-9.49-36.05-20.54-52.28-31.24
c-32.06-21.12-59.75-39.36-96.63-39.36c-48.02,0-73.37,19.65-102.72,42.39C1130.56,1351.24,1108.55,1368.3,1076.56,1378.31z"/>
</g>
</g>
<g>
<g>
<path d="M904.66,1361.77c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L904.66,1361.77z"/>
</g>
</g>
<g>
<g>
<path d="M1554.22,1381.75l-4.88-21.73c3.99-0.9,7.56-1.81,10.92-2.8l0.14-0.04c14.77-4.13,29.32-10.26,44.48-18.73
c14.99-8.39,28.52-17.91,41.6-27.12c30.15-21.21,58.63-41.25,96.8-41.25v22.27c-31.12,0-55.62,17.24-83.99,37.2
c-13.55,9.53-27.55,19.39-43.55,28.34c-16.7,9.33-32.81,16.11-49.28,20.72C1562.66,1379.73,1558.65,1380.76,1554.22,1381.75z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1743.29,1281.22"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M353.08,1416.11l-9.86-19.97c19.46-9.61,36.25-21.43,52.48-32.86c10.11-7.12,19.65-13.84,29.57-19.86l0.58-0.34
c0.27-0.16,0.53-0.32,0.8-0.48c23.55-14.11,43.78-20.4,65.57-20.4v22.27c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31
c-0.25,0.16-0.51,0.31-0.76,0.46c-9.23,5.62-18.43,12.1-28.18,18.96C391.6,1393.42,374.09,1405.74,353.08,1416.11z"/>
</g>
</g>
<g>
<g>
<path d="M1231.77,1438.96c-70.56,0-115.01-29.29-154.23-55.14c-3.48-2.29-6.93-4.57-10.37-6.8
c-26.38-17.15-52.83-32.54-86.26-32.54c-24.78,0-45.84,5.34-66.29,16.82c-12.86,7.25-24.3,16.13-36.42,25.53
c-31.51,24.44-67.22,52.13-135.12,52.13c-70.03,0-125.35-29.09-171.79-56.95h-0.02l-2.73-1.62c-2.79-1.69-5.54-3.37-8.24-5.02
c-27.17-16.58-50.63-30.9-68.09-30.9v-22.27c23.71,0,48.41,15.07,79.69,34.16c2.02,1.23,4.07,2.48,6.15,3.75l2.08,1.23
c46.44,28.01,97.28,55.35,162.95,55.35c60.28,0,90-23.05,121.47-47.46c12.22-9.47,24.85-19.27,39.15-27.34
c23.93-13.43,48.46-19.68,77.21-19.68c17.95,0,35.34,3.61,53.16,11.04c16.22,6.76,31.33,16.06,45.24,25.1
c3.47,2.26,6.97,4.56,10.49,6.88c38.4,25.3,78.1,51.46,141.97,51.46c65.44,0,103.94-27.1,141.17-53.31
c10.15-7.15,19.74-13.9,29.7-19.94l11.56,19.04c-9.31,5.65-18.6,12.19-28.44,19.12
C1347.56,1408.48,1304.27,1438.96,1231.77,1438.96z"/>
</g>
</g>
<g>
<g>
<path d="M1545.99,1380.4c-2.72-1.65-5.4-3.28-8.03-4.89c-27.29-16.65-50.85-31.02-68.35-31.02c-18.05,0-34.62,5.38-55.41,18
l-11.56-19.04c16.29-9.88,38.61-21.23,66.96-21.23c23.76,0,48.56,15.13,79.96,34.28c2.62,1.6,5.28,3.22,7.99,4.86
L1545.99,1380.4z"/>
</g>
</g>
<g>
<g>
<path d="M1558.68,1386.12h-3.07l-4.65-2.74c-1.67-0.99-3.32-1.97-4.98-2.98l11.57-19.03c1.59,0.96,3.17,1.91,4.78,2.86l2,1.19
l-5.68,9.53L1558.68,1386.12z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M718.18,1505.94l-4.57-21.8c41.61-8.72,70.76-29.24,98.95-49.08c30.1-21.18,58.54-41.19,96.67-41.19v22.27
c-31.08,0-55.54,17.21-83.85,37.13C796.74,1473.44,764.28,1496.28,718.18,1505.94z"/>
</g>
</g>
<g>
<g>
<path d="M569.91,1486.96c-19.44-9.53-36.35-20.67-52.71-31.45c-32.06-21.12-59.76-39.36-96.65-39.36
c-21.74,0-40.15,3.98-57.94,12.53l-9.65-20.08c20.63-9.91,42.74-14.73,67.59-14.73c43.57,0,75.3,20.9,108.9,43.03
c15.78,10.39,32.1,21.14,50.27,30.05L569.91,1486.96z"/>
</g>
</g>
<g>
<g>
<path d="M1048.49,1485.81c-26.97-11.89-50.57-26.25-71.39-38.93c-27.09-16.49-50.49-30.74-67.87-30.74v-22.27
c23.63,0,48.27,15,79.46,33.98c20.23,12.32,43.16,26.27,68.79,37.57L1048.49,1485.81z"/>
</g>
</g>
<g>
<g>
<path d="M1218.31,1502.63l-6.45-21.32c28.89-8.73,48.69-24.09,69.65-40.35c29.85-23.15,60.71-47.09,116.39-47.09
c43.46,0,75.15,20.81,108.7,42.83l2.41,1.58l-12.22,18.62l-2.41-1.58c-32.02-21.02-59.68-39.18-96.48-39.18
c-48.05,0-73.4,19.66-102.74,42.41C1273.53,1475.35,1251.15,1492.7,1218.31,1502.63z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M568.66,1487.68c-19.26-9.49-36.05-20.54-52.28-31.24c-32.06-21.12-59.76-39.36-96.64-39.36v-22.27
c43.56,0,75.29,20.9,108.89,43.03c15.66,10.32,31.86,20.99,49.87,29.86L568.66,1487.68z"/>
</g>
</g>
<g>
<g>
<path d="M718.14,1506.74h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21
v22.27c-31.1,0-55.56,17.22-83.88,37.15c-28.2,19.85-60.17,42.35-105.23,52.25L718.14,1506.74z"/>
</g>
</g>
<g>
<g>
<path d="M1219.13,1503.04l-6.65-21.26c28.14-8.81,47.63-23.91,68.27-39.91c29.86-23.14,60.73-47.07,116.37-47.07
c43.61,0,75.38,20.94,109.01,43.1l2.07,1.36l-12.25,18.6l-2.07-1.37c-32.1-21.16-59.83-39.43-96.75-39.43
c-48.02,0-73.37,19.65-102.72,42.4C1273.1,1475.98,1251.1,1493.04,1219.13,1503.04z"/>
</g>
</g>
<g>
<g>
<path d="M1047.21,1486.5c-26.76-11.83-50.2-26.1-70.88-38.68c-27.1-16.49-50.51-30.74-67.9-30.74v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L1047.21,1486.5z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M479.72,1547.96l-8.32-20.66c25.78-10.38,46.66-25.07,66.84-39.28c10.11-7.12,19.67-13.84,29.58-19.87l0.57-0.34
c0.27-0.16,0.54-0.33,0.8-0.48c23.55-14.11,43.78-20.4,65.57-20.4v22.27c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31
c-0.26,0.16-0.51,0.31-0.77,0.46c-9.23,5.62-18.44,12.1-28.19,18.96C530.83,1520.47,507.89,1536.62,479.72,1547.96z"/>
</g>
</g>
<g>
<g>
<path d="M1374.3,1563.69c-70.57,0-115.04-29.32-154.27-55.18c-3.41-2.25-6.8-4.48-10.17-6.68c-0.13-0.08-0.26-0.16-0.39-0.24
l-0.45-0.28c-26.07-16.92-52.24-32.11-85.57-32.11c-24.22,0-44.82,5.09-64.81,16.01c-0.52,0.32-0.98,0.57-1.31,0.75l-0.2,0.11
c-12.81,7.22-24.25,16.1-36.37,25.49c-31.52,24.43-67.24,52.13-135.15,52.13c-70.55,0-126.14-29.49-172.76-57.51h-0.05
l-2.71-1.62c-2.46-1.49-4.88-2.97-7.27-4.43c-27.15-16.59-50.61-30.92-68.07-30.92v-22.27c23.73,0,48.42,15.09,79.68,34.19
c1.82,1.11,3.66,2.23,5.51,3.37h0l2.7,1.6c46.43,28,97.25,55.33,162.95,55.33c60.28,0,90.02-23.05,121.5-47.46
c12.22-9.47,24.85-19.26,39.14-27.33l1.36-0.77c23.5-12.91,47.6-18.93,75.84-18.93c39.33,0,69.77,17.58,97.57,35.62
c0.13,0.08,0.26,0.16,0.39,0.25l0.45,0.28c3.46,2.25,6.92,4.53,10.42,6.84c38.41,25.32,78.12,51.5,142.01,51.5
c5.1,0,10.31-0.18,15.92-0.55l0.74-0.02v11.09h11.18l-10.49,10.49l0.04,0.67C1385.59,1563.49,1379.9,1563.69,1374.3,1563.69z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M813.94,1635.37c-70.51,0-114.95-29.27-154.15-55.1c-32.08-21.13-59.79-39.38-96.69-39.38
c-25.64,0-46.49,5.43-67.63,17.62l-11.13-19.29c24.37-14.05,49.4-20.6,78.75-20.6c43.58,0,75.33,20.92,108.95,43.06
c38.38,25.28,78.07,51.43,141.9,51.43c65.45,0,103.94-27.09,141.16-53.28c30.1-21.19,58.54-41.2,96.68-41.2v22.27
c-31.09,0-55.55,17.21-83.86,37.14C929.73,1604.9,886.44,1635.37,813.94,1635.37z"/>
</g>
</g>
<g>
<g>
<path d="M1302.67,1635.37c-9.1,0-18.24-0.5-27.16-1.49c-64.98-6.99-115.35-37.63-155.82-62.25
c-27.11-16.49-50.53-30.74-67.91-30.74v-22.27c23.63,0,48.28,15,79.49,33.98c38.58,23.47,86.6,52.68,146.67,59.14
c8.26,0.92,16.33,1.36,24.74,1.36c3.1,0,6.39-0.07,10.03-0.21c18.5-0.86,34.93-4.03,50.15-9.69l7.76,20.88
c-17.41,6.47-36.04,10.09-56.95,11.06C1309.64,1635.29,1306.07,1635.37,1302.67,1635.37z"/>
</g>
</g>
</g>
</g>
<g id="rules">
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 KiB

View file

@ -0,0 +1,534 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1920 1920" style="enable-background:new 0 0 1920 1920;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#FFFFFF;stroke:#000000;stroke-width:22.2737;stroke-miterlimit:10;}
</style>
<g id="Layer_1">
<g>
<path class="st0" d="M940.76,1736.11c-30.09,0-60.34-1.76-90.17-5.26c-28.77-3.31-57.89-8.39-86.46-15.09
c-35.78-8.35-71.23-19.33-105.32-32.63l-0.48-0.19l-26.05-10.63c-11.59-5.04-21.69-9.67-30.88-14.16
c-11.59-5.62-22.2-11.06-32.34-16.57c-33.37-18.16-65.43-38.73-95.31-61.17c-0.72-0.51-1.3-0.95-1.69-1.25l-1.85-1.38
c-0.85-0.65-1.87-1.42-3-2.34c-4.79-3.62-9.58-7.37-14.62-11.45c-10.2-8.16-20.32-16.73-30.07-25.46
c-12.42-11.03-24.65-22.65-36.35-34.54c-19.2-19.52-37.5-40.2-54.44-61.48c-0.58-0.71-1.3-1.6-2.09-2.67
c-0.17-0.22-0.34-0.44-0.51-0.67c-3.14-3.97-6.31-8.1-9.68-12.61c-8.48-11.26-16.79-22.95-24.71-34.76
c-1.95-2.92-3.42-5.16-4.77-7.26c-1.91-2.86-3.69-5.67-5.42-8.39c-16.02-25.16-30.77-51.69-43.8-78.81
c-0.56-1.02-1.06-2.06-1.52-3.12c-4.92-10.19-9.75-20.9-14.38-31.86l-0.07-0.16c-0.12-0.29-0.25-0.58-0.38-0.88
c-0.36-0.82-0.71-1.65-1.05-2.49c-6.8-16.16-13.13-32.83-18.82-49.53l-0.14-0.4c-0.19-0.54-0.49-1.4-0.81-2.47
c-6.82-20.09-12.83-40.56-17.85-60.86c-4.65-18.68-8.58-37.43-11.69-55.71c-17.5-101.45-14.63-203.98,8.53-304.74v-0.05l0.89-3.82
c19.74-83.82,52.92-163.29,98.61-236.2C353,431.85,452.57,338.51,570.08,275.03l0.14-0.1l1.4-0.75
c22.02-11.85,45.02-22.8,68.34-32.54c22.81-9.58,46.29-18.14,69.76-25.45l0.23-0.09l1.3-0.4
c183.57-56.86,381.11-43.46,556.21,37.72c176.25,81.71,314.71,225.45,389.87,404.75c21.37,50.99,37.32,104.23,47.42,158.23
c1.85,9.92,3.53,20.03,5.02,30.07c4.19,28.65,6.77,57.67,7.7,86.5l0.11,0.11l0.25,13.69c0.23,15.07,0,30.32-0.69,45.34
c-0.6,14.53-1.66,29.43-3.17,44.3c-1.89,18.29-4.36,36.23-7.33,53.42c-0.73,4.4-1.52,8.64-2.29,12.74
c-3.93,20.81-8.91,42.14-14.8,63.47c-1.54,5.58-3.27,11.51-5.43,18.58c-0.23,0.84-0.49,1.68-0.78,2.54
c-7.42,24.19-16.2,48.41-26.1,72.02c-8.1,19.39-17.3,39.02-27.31,58.29l-0.06,0.11c-1.38,2.66-2.75,5.33-4.18,7.99
c-4.95,9.27-10.34,18.85-16,28.47c-6.08,10.29-12.61,20.76-19.43,31.17c-0.45,0.72-0.91,1.42-1.4,2.11
c-1.56,2.39-3.14,4.72-4.55,6.8l-9.94,14.64h-0.18c-14.69,20.8-30.62,41.08-47.53,60.5c-0.47,0.58-0.95,1.15-1.46,1.71
c-0.9,1.08-1.72,2-2.42,2.78c-30.53,34.53-64.24,66.42-100.38,94.96l-11.08,8.65l-11.32,8.38
c-34.76,25.38-71.81,47.99-110.29,67.3c-16.12,8.11-32.6,15.69-48.96,22.53c-90.59,37.97-185.87,58.29-283.14,60.4
C952,1736.05,946.38,1736.11,940.76,1736.11z M683.31,1620.96c31.08,12.11,63.39,22.11,96.04,29.73
c26.1,6.12,52.65,10.75,78.95,13.78c32.42,3.8,65.32,5.36,97.86,4.64c88.87-1.92,175.94-20.51,258.8-55.23
c14.96-6.25,30.01-13.17,44.77-20.6c37.44-18.78,73.38-40.97,106.88-65.98l2.26-1.71c37.66-28.43,72.62-60.81,103.93-96.23
l0.13-0.14c0.4-0.45,0.89-0.99,1.05-1.19l1.16-1.45l0.6-0.63c19.26-22.07,37.14-45.37,53.15-69.24l6.54-9.75
c5.88-9.03,11.51-18.07,16.74-26.92c5.17-8.77,10.09-17.53,14.61-26c1.29-2.41,2.52-4.8,3.76-7.19l0.09-0.17
c9.19-17.68,17.59-35.62,25-53.35c9.15-21.81,17.24-44.15,24.05-66.43l0.37-1.19c2.07-6.76,3.7-12.31,5.12-17.47
c5.41-19.59,9.97-39.12,13.55-58.06c0.7-3.73,1.43-7.65,2.05-11.38l0.05-0.27c2.73-15.74,4.99-32.22,6.73-48.97
c1.37-13.48,2.34-27.07,2.88-40.29l0.01-0.18c0.5-10.82,0.74-21.77,0.71-32.67l-0.12-8.75c-0.43-30.44-2.89-61.22-7.31-91.5
c-1.36-9.17-2.91-18.46-4.6-27.55c-9.23-49.34-23.82-98.02-43.36-144.66c-68.7-163.88-195.25-295.27-356.34-369.96
c-159.65-74.02-339.68-86.39-507.05-34.9l-0.21,0.09l-1.3,0.4c-21.84,6.76-43.71,14.71-65.01,23.66
c-20.89,8.73-41.42,18.48-61.11,29.01l-0.12,0.08l-1.41,0.76c-107.94,58.02-199.39,143.56-264.46,247.4
c-41.4,66.07-71.57,138.03-89.68,213.91l-0.5,2.16c-21.9,93.19-24.8,188.06-8.6,281.98c2.84,16.71,6.43,33.81,10.68,50.89
c4.66,18.8,10.23,37.75,16.57,56.35l1.79,5.3c4.91,14.18,10.32,28.3,16.09,42.01l0.23,0.55c0.14,0.35,0.29,0.7,0.44,1.04
c0.25,0.57,0.49,1.13,0.73,1.7c4.09,9.67,8.34,19.11,12.65,28.08l0.08,0.12l1.25,2.61c12.02,25.14,25.66,49.73,40.54,73.09
c1.66,2.62,3.19,5.03,4.67,7.24l0.4,0.6c1.19,1.85,2.5,3.86,4.27,6.5c7.19,10.72,14.79,21.42,22.54,31.71l0.07,0.1
c2.87,3.84,5.56,7.35,8.19,10.69l0.62,0.62l1.52,2.16c0.15,0.19,0.31,0.38,0.46,0.57l0.22,0.27
c15.51,19.5,32.29,38.46,49.88,56.35c10.67,10.83,21.82,21.44,33.15,31.5l0.11,0.1c8.87,7.95,18.08,15.74,27.36,23.17l0.18,0.14
c4.64,3.76,9.02,7.19,13.38,10.48l1.39,1.1c0.2,0.16,0.79,0.62,1.23,0.95l0.52,0.39c0.52,0.38,0.96,0.71,1.29,0.96l0.26,0.17
l0.75,0.57c27.42,20.62,56.88,39.55,87.56,56.24c9.21,5.01,18.92,9.98,29.67,15.19c8.4,4.11,17.26,8.17,27.92,12.81
L683.31,1620.96z"/>
</g>
<g>
<rect x="1145.39" y="1646.9" transform="matrix(0.9223 -0.3865 0.3865 0.9223 -558.4398 622.0869)" class="st0" width="245.01" height="105.95"/>
</g>
<g>
<rect x="1575.05" y="597.45" transform="matrix(-0.3865 -0.9223 0.9223 -0.3865 1753.7202 2467.4592)" class="st0" width="245.01" height="105.95"/>
</g>
<g>
<polygon class="st0" points="1795.5,1170.8 1784.71,1197.17 1784.67,1197.22 1778.3,1212.81 1768.63,1236.42 1750.24,1281.37
1749.83,1282.35 1725.73,1341.24 1702.66,1397.59 1604.61,1357.46 1608.31,1348.5 1608.53,1347.92 1612.32,1338.7
1623.01,1312.51 1629.69,1296.2 1649.34,1248.36 1673.35,1189.69 1673.79,1188.58 1697.49,1130.71 "/>
</g>
<g>
<rect x="1139.31" y="165.28" transform="matrix(-0.9254 -0.3789 0.3789 -0.9254 2346.8621 898.3259)" class="st0" width="245.01" height="105.95"/>
</g>
<g>
<rect x="487.24" y="1646.9" transform="matrix(-0.9223 -0.3865 0.3865 -0.9223 515.1688 3503.3196)" class="st0" width="245.01" height="105.95"/>
</g>
<g>
<rect x="57.59" y="597.45" transform="matrix(0.3865 -0.9223 0.9223 0.3865 -489.399 565.1584)" class="st0" width="245.01" height="105.95"/>
</g>
<g>
<polygon class="st0" points="82.15,1170.8 92.93,1197.17 92.98,1197.22 99.35,1212.81 109.02,1236.42 127.41,1281.37
127.81,1282.35 151.91,1341.24 174.99,1397.59 273.04,1357.46 269.34,1348.5 269.12,1347.92 265.33,1338.7 254.64,1312.51
247.96,1296.2 228.31,1248.36 204.3,1189.69 203.86,1188.58 180.16,1130.71 "/>
</g>
<g>
<rect x="493.33" y="165.28" transform="matrix(0.9254 -0.3789 0.3789 0.9254 -36.7796 249.6038)" class="st0" width="245.01" height="105.95"/>
</g>
<g>
<g>
<g>
<path class="st0" d="M209.62,1110.04c-5.22,0-10.18-3.08-12.33-8.2c-2.85-6.81,0.35-14.64,7.16-17.49
c0.07-0.03,7-2.93,18.03-7.67c20.35-8.69,59.83-25.82,95.78-42.93c58.85-28.02,68.21-37.08,69.49-38.61
c3.34-4.01,7.02-9.43,11.29-15.71c17.42-25.62,43.75-64.34,97.87-80.27c39.48-11.59,62.64-17.29,81.26-21.86
c10.5-2.58,19.57-4.81,28.87-7.48c11.26-3.22,44.39-35.21,64.18-54.32c27.74-26.78,39.33-37.47,48.11-40.61
c5.07-4.72,16.85-25.71,24.74-39.77c23.55-41.97,36.64-63.87,53.7-63.87c4.1-0.13,16.77-7.9,25.15-13.04
c20.07-12.31,42.82-26.26,64.54-23.52c22.21,2.77,56.85,23.34,84.68,39.88c12.04,7.15,23.42,13.91,28.62,16
c12.43,4.95,25.55,24.76,54.73,72.19c12.88,20.95,32.35,52.59,38.94,57.12c2.81,1.68,8.48,5.46,24.93,18.45
c34.25,27.03,98.51,81.28,106.59,90.6c11.58,13.21,82.63,54.27,139.73,87.26c10.59,6.12,21.21,12.26,31.65,18.32
c6.38,3.71,8.55,11.89,4.84,18.27c-3.71,6.38-11.88,8.55-18.27,4.84c-10.41-6.05-21.02-12.18-31.59-18.29
c-82.11-47.45-132.95-77.38-146.5-92.84c-5.48-6.29-64.07-56.46-103-87.19c-14.18-11.21-19.86-15.17-22.13-16.52
c-11.06-6.63-24.73-28.3-47.94-66.03c-13.02-21.17-34.76-56.51-42.31-61.54c-7.16-2.96-18.12-9.47-31.92-17.67
c-22.96-13.64-57.66-34.25-74.35-36.33c-12.44-1.57-31.74,10.27-47.25,19.78c-14.54,8.92-26.21,16.08-37.06,16.9
c-7.32,5.5-23.59,34.48-32.46,50.3c-19.96,35.56-28.17,48.72-39.06,51.88c-5.66,2.91-24.63,21.23-38.54,34.65
c-34.87,33.66-58.95,56.08-75.39,60.79c-9.78,2.8-19.08,5.09-29.85,7.74c-18.36,4.51-41.2,10.13-80.1,21.55
c-44.94,13.23-67.12,45.84-83.31,69.65c-4.47,6.57-8.68,12.77-12.86,17.8c-5.33,6.38-19.05,17.31-78.53,45.63
c-36.38,17.32-76.23,34.61-96.75,43.37c-11.13,4.77-18.14,7.71-18.21,7.74C213.09,1109.71,211.34,1110.04,209.62,1110.04z
M728.55,799.96 M721.13,774.34c-0.03,0.01-0.07,0.02-0.1,0.03C721.06,774.35,721.1,774.34,721.13,774.34z M990.8,715.37
c0.01,0,0.03,0.01,0.04,0.02C990.83,715.38,990.81,715.37,990.8,715.37z M990.25,715.1L990.25,715.1
C990.25,715.1,990.25,715.1,990.25,715.1z M797.79,697.98c-0.01,0-0.01,0-0.02,0C797.78,697.98,797.78,697.98,797.79,697.98z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1648.48,1083.31c-1.88,0-3.78-0.4-5.59-1.23c-4.06-1.88-100.15-46.62-159.83-106.3
c-35.92-35.92-63.65-48.45-83.9-57.6c-12.38-5.6-23.08-10.43-31.38-18.73c-10.04-10.04-24.32-19.26-38.12-28.18
c-9.76-6.3-18.98-12.26-26.79-18.51c-9.74-7.79-31.61-11.74-65-11.74c-8.48,0-19.35-3.13-31.93-6.75
c-12.9-3.71-27.53-7.92-37.75-7.92c-11.18,0-34.97,19-47.53,31.83c-5.16,5.28-13.62,5.37-18.9,0.21
c-5.28-5.16-5.37-13.62-0.21-18.9c6.51-6.66,40.34-39.87,66.64-39.87c14,0,30.55,4.76,45.15,8.96
c9.29,2.67,19.83,5.71,24.54,5.71c27.8,0,62.2,2,81.7,17.6c6.76,5.41,15.43,11.01,24.6,16.93
c14.98,9.67,30.46,19.68,42.52,31.73c4.85,4.85,12.67,8.38,23.49,13.27c20.88,9.43,52.43,23.69,91.79,63.06
c56.34,56.35,151.19,100.5,152.14,100.94c6.7,3.09,9.62,11.04,6.53,17.74C1658.37,1080.44,1653.53,1083.31,1648.48,1083.31z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1527.8,1010.35c-7.17,0-13.01-5.64-13.35-12.72c-1.58-8.92-23.18-57.43-42.5-97.74
c-4.21-7.98-28.23-30.08-72.62-61.67c-35.59-25.32-72.34-48.13-85.48-53.06c-18.66-7-36.24-37.23-63.39-85.99
c-9.57-17.18-19.46-34.94-28.36-48.68c-11.97-18.45-17.67-22.65-19.56-23.6c-15.43-7.72-40.92-38.13-81.24-87.11
c-17.27-20.98-35.13-42.68-50.21-59.41c-21.01-23.31-28.29-27.56-29.99-28.3c-10.39-1.24-22.51,4.96-34.24,10.96
c-11.31,5.78-22,11.25-33.06,11.25c-9.21,0-18.07-2.2-25.19-3.96c-3.47-0.86-8.48-2.1-10.94-2.23
c-5.46,4.41-20.15,13.24-61.15,37.37c-29.57,17.4-74.2,43.67-80.31,49.25c-4.24,4.72-19.43,32.91-30.54,53.51
c-28,51.94-37.28,67.81-44.86,72.86c-2.92,1.95-11.9,9.63-20.59,17.06c-34.53,29.54-52.23,43.6-63.36,46.89
c-3.94,2.38-17.44,15.23-44.97,49.73c-19.75,24.74-38.22,50.03-43.08,58.13c-11.23,18.71-43.41,61.67-44.78,63.49
c-4.43,5.9-12.8,7.1-18.71,2.67c-5.9-4.43-7.1-12.81-2.67-18.71c0.33-0.43,32.72-43.67,43.24-61.21
c6.43-10.72,27.67-39.36,47.35-63.84c41.83-52.06,51.17-54.67,56.13-55.91c8.07-2.71,39.88-29.91,53.48-41.54
c11.47-9.81,18.38-15.68,22.51-18.56c5.7-6.06,24.37-40.7,36.78-63.73c19.97-37.05,29.33-53.9,35.16-59.72
c6.25-6.25,30.37-20.86,85.66-53.4c23.65-13.92,53.03-31.2,57.65-34.9c9.62-9.3,22.79-6.03,34.43-3.15
c6.29,1.56,12.8,3.18,18.75,3.18c4.62,0,13.27-4.42,20.89-8.32c14.16-7.24,31.79-16.25,50.68-13.55
c17.14,2.45,41.33,30.02,96.57,97.13c25.92,31.49,61.42,74.63,72.56,80.19c16.81,8.41,33.63,37.03,59.32,83.18
c10.04,18.03,20.42,36.68,29.8,50.93c13.04,19.81,18.63,22.67,19.62,23.04c18.09,6.78,60.16,33.95,91.59,56.31
c31.9,22.7,71.84,53.51,80.99,71.41c0.05,0.1,0.1,0.2,0.15,0.3c0.11,0.23,11.16,23.31,22.07,47.49
c23.12,51.27,23.12,57.33,23.12,61.34C1541.16,1004.36,1535.18,1010.35,1527.8,1010.35z M1514.44,996.98c0,0.01,0,0.02,0,0.03
C1514.44,997,1514.44,996.99,1514.44,996.98z M629.47,719.33c-0.01,0-0.02,0-0.02,0.01
C629.45,719.33,629.46,719.33,629.47,719.33z M705.14,659.48C705.13,659.48,705.13,659.48,705.14,659.48
C705.13,659.48,705.13,659.48,705.14,659.48z M1040.86,451.96C1040.86,451.96,1040.86,451.96,1040.86,451.96
C1040.86,451.96,1040.86,451.96,1040.86,451.96z M920.45,447.66c-0.04,0.04-0.08,0.08-0.11,0.11
C920.37,447.74,920.41,447.7,920.45,447.66z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M288.48,1132.88h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71
c30.11-21.19,58.55-41.21,96.7-41.21v22.27c-31.09,0-55.56,17.22-83.88,37.15c-28.21,19.85-60.17,42.35-105.23,52.25
L288.48,1132.88z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M789.45,1129.18l-6.65-21.26c28.16-8.81,47.66-23.92,68.29-39.91c29.85-23.14,60.72-47.06,116.37-47.06
c43.56,0,75.29,20.9,108.89,43.03c15.66,10.32,31.86,20.99,49.87,29.86l-9.84,19.98c-19.26-9.49-36.05-20.54-52.28-31.24
c-32.06-21.12-59.75-39.36-96.64-39.36c-48.02,0-73.37,19.65-102.72,42.39C843.46,1102.11,821.44,1119.17,789.45,1129.18z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M617.56,1112.64c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L617.56,1112.64z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1267.05,1132.62l-4.78-21.76c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21
v22.27c-31.09,0-55.56,17.22-83.88,37.15C1344.07,1100.22,1312.1,1122.72,1267.05,1132.62z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1594.94,1112.64c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L1594.94,1112.64z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M944.66,1189.83c-70.56,0-115.01-29.29-154.23-55.14c-3.48-2.29-6.93-4.57-10.37-6.8
c-26.38-17.15-52.83-32.54-86.26-32.54c-24.78,0-45.84,5.34-66.29,16.82c-12.86,7.25-24.3,16.13-36.42,25.53
c-31.51,24.44-67.22,52.13-135.12,52.13c-70.03,0-125.35-29.1-171.79-56.95h-0.02l-2.73-1.62c-2.79-1.69-5.54-3.37-8.24-5.02
c-27.17-16.58-50.63-30.89-68.08-30.89v-22.27c23.71,0,48.41,15.07,79.68,34.16c2.02,1.23,4.07,2.48,6.15,3.75l2.09,1.23
c46.45,28.01,97.29,55.35,162.95,55.35c60.28,0,90-23.05,121.47-47.46c12.22-9.47,24.85-19.27,39.15-27.34
c23.93-13.43,48.46-19.68,77.21-19.68c17.95,0,35.34,3.61,53.16,11.04c16.22,6.76,31.33,16.06,45.24,25.1
c3.48,2.26,6.97,4.56,10.49,6.88c38.4,25.3,78.1,51.46,141.97,51.46c65.44,0,103.94-27.1,141.16-53.31
c10.15-7.15,19.74-13.9,29.7-19.94l11.56,19.04c-9.31,5.65-18.6,12.19-28.44,19.12
C1060.45,1159.35,1017.16,1189.83,944.66,1189.83z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1258.88,1131.26c-2.72-1.65-5.41-3.29-8.05-4.9c-27.28-16.64-50.84-31.02-68.34-31.02
c-18.05,0-34.62,5.38-55.41,18l-11.56-19.04c16.29-9.88,38.62-21.23,66.96-21.23c23.76,0,48.55,15.13,79.94,34.28
c2.62,1.6,5.29,3.23,8,4.87L1258.88,1131.26z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1433.37,1189.82c-71.41,0-127.49-30.21-174.45-58.53l11.5-19.07c46.43,28,97.25,55.33,162.95,55.33
c60.27,0,89.99-23.05,121.45-47.45c12.22-9.47,24.85-19.27,39.15-27.34c23.89-13.44,48.41-19.7,77.19-19.7
c0.93,0,1.99,0,3.13,0.06l-1.18,22.24c-0.55-0.03-1.23-0.03-1.95-0.03c-24.8,0-45.85,5.35-66.26,16.83
c-12.87,7.26-24.32,16.14-36.43,25.53C1536.97,1162.13,1501.27,1189.82,1433.37,1189.82z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M431.07,1256.81l-4.57-21.8c41.61-8.72,70.76-29.24,98.95-49.08c30.1-21.18,58.54-41.19,96.67-41.19v22.27
c-31.08,0-55.54,17.21-83.85,37.13C509.63,1224.3,477.17,1247.14,431.07,1256.81z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1408.53,1256.81l-4.57-21.8c41.58-8.72,70.71-29.23,98.88-49.07c30.09-21.19,58.52-41.2,96.65-41.2v22.27
c-31.08,0-55.53,17.21-83.83,37.14C1487.04,1224.3,1454.6,1247.14,1408.53,1256.81z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M761.38,1236.68c-26.97-11.89-50.57-26.25-71.39-38.93c-27.09-16.49-50.49-30.74-67.87-30.74v-22.27
c23.63,0,48.27,15,79.46,33.98c20.23,12.32,43.16,26.27,68.79,37.57L761.38,1236.68z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M931.2,1253.5l-6.45-21.32c28.89-8.73,48.69-24.09,69.65-40.35c29.85-23.15,60.71-47.09,116.39-47.09
c43.59,0,75.35,20.92,108.97,43.07c15.76,10.38,32.06,21.12,50.2,30.02l-9.81,20c-19.4-9.52-36.3-20.65-52.64-31.41
c-32.09-21.14-59.81-39.39-96.72-39.39c-48.05,0-73.4,19.66-102.74,42.41C986.42,1226.21,964.04,1243.57,931.2,1253.5z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1668.01,1198.09c-7.18-4.37-14.6-8.88-21.61-12.92c-16.28-9.43-33.22-18.16-46.91-18.16v-22.27
c18.95,0,39.1,10.16,58.06,21.15c7.21,4.16,14.75,8.74,22.03,13.17L1668.01,1198.09z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M431.03,1257.61h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71
c30.11-21.19,58.55-41.21,96.7-41.21v22.27c-31.1,0-55.56,17.22-83.88,37.15c-28.2,19.85-60.17,42.35-105.23,52.25
L431.03,1257.61z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M932.01,1253.91l-6.65-21.26c28.16-8.81,47.66-23.92,68.29-39.91c29.85-23.14,60.72-47.06,116.37-47.06
c43.56,0,75.29,20.9,108.89,43.03c15.67,10.32,31.86,20.99,49.88,29.86l-9.84,19.98c-19.26-9.49-36.05-20.54-52.28-31.24
c-32.06-21.12-59.75-39.36-96.63-39.36c-48.02,0-73.37,19.65-102.72,42.39C986.01,1226.84,963.99,1243.9,932.01,1253.91z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M760.11,1237.37c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L760.11,1237.37z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1409.6,1257.35l-4.78-21.76c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21v22.27
c-31.09,0-55.56,17.22-83.88,37.15C1486.62,1224.95,1454.66,1247.45,1409.6,1257.35z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1737.49,1237.37c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L1737.49,1237.37z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M270.95,1252.21L258.12,1234c8.65-6.09,15.82-10.85,22.58-14.97l0.59-0.35c0.27-0.16,0.54-0.33,0.8-0.48
c23.55-14.11,43.77-20.4,65.57-20.4v22.27c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31c-0.25,0.15-0.51,0.31-0.76,0.45
C285.87,1241.97,279.12,1246.45,270.95,1252.21z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1087.21,1314.56c-70.56,0-115.01-29.29-154.23-55.14c-3.48-2.29-6.93-4.57-10.37-6.8
c-26.39-17.15-52.83-32.54-86.26-32.54c-24.78,0-45.84,5.34-66.29,16.82c-12.86,7.25-24.3,16.13-36.42,25.53
c-31.51,24.44-67.21,52.13-135.12,52.13c-70.03,0-125.35-29.09-171.79-56.95h-0.02l-2.73-1.62c-2.79-1.69-5.54-3.37-8.24-5.02
c-27.17-16.58-50.63-30.9-68.08-30.9v-22.27c23.71,0,48.41,15.07,79.69,34.16c2.03,1.24,4.08,2.49,6.15,3.75l2.08,1.22
c46.45,28.01,97.29,55.35,162.95,55.35c60.28,0,90-23.05,121.47-47.46c12.22-9.47,24.85-19.27,39.15-27.34
c23.93-13.43,48.46-19.68,77.21-19.68c17.95,0,35.34,3.61,53.16,11.04c16.22,6.76,31.33,16.06,45.24,25.1
c3.47,2.26,6.97,4.56,10.49,6.88c38.4,25.3,78.1,51.46,141.97,51.46c65.44,0,103.94-27.1,141.16-53.31
c10.15-7.15,19.74-13.9,29.7-19.94l11.56,19.04c-9.31,5.65-18.6,12.19-28.44,19.12
C1203,1284.08,1159.71,1314.56,1087.21,1314.56z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1401.24,1255.87l-0.79-0.45c-2.36-1.44-4.69-2.86-6.98-4.26c-27.32-16.68-50.91-31.09-68.44-31.09
c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31c-0.33,0.2-0.67,0.4-1,0.59l-10.82-19.47l0.2-0.12c0.27-0.16,0.54-0.33,0.8-0.48
c23.55-14.11,43.78-20.4,65.57-20.4c23.79,0,48.62,15.16,80.05,34.36c2.23,1.36,4.49,2.74,6.78,4.13l0.02,0.01
c0.39,0.22,1.05,0.58,1.81,1.12l-12.93,18.14C1400.92,1255.67,1401.08,1255.78,1401.24,1255.87z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1575.92,1314.56c-71.42,0-127.49-30.21-174.45-58.53l11.5-19.07c46.42,28,97.25,55.33,162.95,55.33
c8.37,0,15.9-0.42,23.01-1.3l0.16-0.02c9.7-1.05,18.66-2.82,27.41-5.44c29.58-8.68,49.67-24.25,70.93-40.74
c12.2-9.46,24.81-19.23,39.08-27.29l10.95,19.4c-12.86,7.26-24.29,16.12-36.38,25.5c-21.97,17.03-44.69,34.64-78.26,44.49
c-9.99,2.98-20.23,5.02-31.26,6.21C1593.57,1314.08,1585.18,1314.56,1575.92,1314.56z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M573.62,1381.54l-4.57-21.8c41.61-8.72,70.76-29.24,98.95-49.08c30.1-21.18,58.54-41.19,96.67-41.19v22.27
c-31.08,0-55.54,17.21-83.85,37.13C652.18,1349.03,619.72,1371.88,573.62,1381.54z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M425.35,1362.55c-19.43-9.53-36.34-20.66-52.69-31.43c-31.01-20.42-57.8-38.05-92.75-39.3
c-3.08-0.1-6.5-0.1-9.58,0.04l-0.99-22.25c2.15-0.1,4.39-0.14,6.64-0.14c1.68,0,3.27,0.05,4.67,0.09
c41.24,1.47,71.84,21.62,104.25,42.95c15.78,10.39,32.09,21.13,50.25,30.03L425.35,1362.55z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M903.93,1361.41c-26.97-11.89-50.57-26.25-71.39-38.92c-27.09-16.49-50.49-30.74-67.88-30.74v-22.27
c23.63,0,48.27,15,79.46,33.99c20.23,12.31,43.16,26.27,68.79,37.57L903.93,1361.41z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1550.02,1381.78h-1.19l-0.02-11.24l-2.32-10.78c4.33-0.93,8.41-1.94,12.47-3.09
c14.9-4.2,29.35-10.25,44.16-18.48c15.23-8.47,28.94-18.13,42.2-27.47c30.11-21.21,58.55-41.24,96.72-41.24v22.27
c-31.11,0-55.57,17.23-83.89,37.18c-13.73,9.67-27.94,19.68-44.2,28.73c-16.34,9.08-32.35,15.77-48.94,20.45
c-4.52,1.27-9.04,2.39-13.82,3.42L1550.02,1381.78z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1073.75,1378.23l-6.45-21.32c28.89-8.73,48.69-24.09,69.65-40.35c29.85-23.15,60.71-47.09,116.39-47.09
c43.59,0,75.35,20.92,108.97,43.06c15.76,10.38,32.06,21.12,50.2,30.02l-9.81,20c-19.4-9.52-36.3-20.65-52.64-31.41
c-32.09-21.14-59.8-39.39-96.72-39.39c-48.05,0-73.4,19.66-102.74,42.41C1128.97,1350.95,1106.59,1368.3,1073.75,1378.23z"/>
</g>
</g>
<g>
<g>
<path class="st1" d="M1742.04,1280.61"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M424.11,1363.28c-19.26-9.49-36.05-20.54-52.28-31.24c-32.06-21.12-59.76-39.36-96.64-39.36v-22.27
c43.56,0,75.29,20.9,108.89,43.03c15.66,10.32,31.86,20.99,49.87,29.86L424.11,1363.28z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M573.59,1382.34h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71
c30.11-21.19,58.55-41.21,96.7-41.21v22.27c-31.1,0-55.56,17.22-83.88,37.15c-28.2,19.85-60.17,42.35-105.23,52.25
L573.59,1382.34z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1074.56,1378.64l-6.65-21.26c28.16-8.81,47.66-23.92,68.29-39.91c29.85-23.14,60.72-47.06,116.37-47.06
c43.56,0,75.29,20.9,108.89,43.03c15.67,10.32,31.86,20.99,49.88,29.86l-9.84,19.98c-19.26-9.49-36.05-20.54-52.28-31.24
c-32.06-21.12-59.75-39.36-96.63-39.36c-48.02,0-73.37,19.65-102.72,42.39C1128.56,1351.57,1106.55,1368.64,1074.56,1378.64z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M902.66,1362.1c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L902.66,1362.1z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1552.21,1382.09l-4.88-21.73c3.99-0.9,7.56-1.81,10.92-2.8l0.14-0.04c14.77-4.13,29.32-10.26,44.48-18.73
c14.99-8.39,28.52-17.91,41.6-27.12c30.15-21.21,58.63-41.25,96.8-41.25v22.27c-31.12,0-55.62,17.24-83.99,37.2
c-13.55,9.53-27.55,19.39-43.55,28.34c-16.7,9.33-32.81,16.11-49.28,20.72C1560.66,1380.06,1556.65,1381.09,1552.21,1382.09z"/>
</g>
</g>
<g>
<g>
<path class="st1" d="M1741.28,1281.55"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M351.08,1416.44l-9.86-19.97c19.46-9.61,36.25-21.43,52.48-32.86c10.11-7.12,19.65-13.84,29.57-19.86
l0.58-0.34c0.27-0.16,0.53-0.32,0.8-0.48c23.55-14.11,43.78-20.4,65.57-20.4v22.27c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31
c-0.25,0.16-0.51,0.31-0.76,0.46c-9.23,5.62-18.43,12.1-28.18,18.96C389.59,1393.75,372.09,1406.07,351.08,1416.44z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1229.76,1439.29c-70.56,0-115.01-29.29-154.23-55.14c-3.48-2.29-6.93-4.57-10.37-6.8
c-26.38-17.15-52.83-32.54-86.26-32.54c-24.78,0-45.84,5.34-66.29,16.82c-12.86,7.25-24.3,16.13-36.42,25.53
c-31.51,24.44-67.22,52.13-135.12,52.13c-70.03,0-125.35-29.09-171.79-56.95h-0.02l-2.73-1.62c-2.79-1.69-5.54-3.37-8.24-5.02
c-27.17-16.58-50.63-30.9-68.09-30.9v-22.27c23.71,0,48.41,15.07,79.69,34.16c2.02,1.23,4.07,2.48,6.15,3.75l2.08,1.23
c46.44,28.01,97.28,55.35,162.95,55.35c60.28,0,90-23.05,121.47-47.46c12.22-9.47,24.85-19.27,39.15-27.34
c23.93-13.43,48.46-19.68,77.21-19.68c17.95,0,35.34,3.61,53.16,11.04c16.22,6.76,31.33,16.06,45.24,25.1
c3.47,2.26,6.97,4.56,10.49,6.88c38.4,25.3,78.1,51.46,141.97,51.46c65.44,0,103.94-27.1,141.17-53.31
c10.15-7.15,19.74-13.9,29.7-19.94l11.56,19.04c-9.31,5.65-18.6,12.19-28.44,19.12
C1345.55,1408.81,1302.26,1439.29,1229.76,1439.29z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1543.98,1380.73c-2.72-1.65-5.4-3.28-8.03-4.89c-27.29-16.65-50.85-31.02-68.35-31.02
c-18.05,0-34.62,5.38-55.41,18l-11.56-19.04c16.29-9.88,38.61-21.23,66.96-21.23c23.76,0,48.56,15.13,79.96,34.28
c2.62,1.6,5.28,3.22,7.99,4.86L1543.98,1380.73z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1556.68,1386.46h-3.07l-4.65-2.74c-1.67-0.99-3.32-1.97-4.98-2.98l11.57-19.03
c1.59,0.96,3.17,1.91,4.78,2.86l2,1.19l-5.68,9.53L1556.68,1386.46z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M716.17,1506.27l-4.57-21.8c41.61-8.72,70.76-29.24,98.95-49.08c30.1-21.18,58.54-41.19,96.67-41.19v22.27
c-31.08,0-55.54,17.21-83.85,37.13C794.73,1473.77,762.27,1496.61,716.17,1506.27z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M567.9,1487.29c-19.44-9.53-36.35-20.67-52.71-31.45c-32.06-21.12-59.76-39.36-96.65-39.36
c-21.74,0-40.15,3.98-57.94,12.53l-9.65-20.08c20.63-9.91,42.74-14.73,67.59-14.73c43.57,0,75.3,20.9,108.9,43.03
c15.78,10.39,32.1,21.14,50.27,30.05L567.9,1487.29z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1046.48,1486.14c-26.97-11.89-50.57-26.25-71.39-38.93c-27.09-16.49-50.49-30.74-67.87-30.74v-22.27
c23.63,0,48.27,15,79.46,33.98c20.23,12.32,43.16,26.27,68.79,37.57L1046.48,1486.14z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1216.31,1502.96l-6.45-21.32c28.89-8.73,48.69-24.09,69.65-40.35c29.85-23.15,60.71-47.09,116.39-47.09
c43.46,0,75.15,20.81,108.7,42.83l2.41,1.58l-12.22,18.62l-2.41-1.58c-32.02-21.02-59.68-39.18-96.48-39.18
c-48.05,0-73.4,19.66-102.74,42.41C1271.52,1475.68,1249.14,1493.03,1216.31,1502.96z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M566.66,1488.01c-19.26-9.49-36.05-20.54-52.28-31.24c-32.06-21.12-59.76-39.36-96.64-39.36v-22.27
c43.56,0,75.29,20.9,108.89,43.03c15.66,10.32,31.86,20.99,49.87,29.86L566.66,1488.01z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M716.14,1507.07h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71
c30.11-21.19,58.55-41.21,96.7-41.21v22.27c-31.1,0-55.56,17.22-83.88,37.15c-28.2,19.85-60.17,42.35-105.23,52.25
L716.14,1507.07z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1217.12,1503.37l-6.65-21.26c28.14-8.81,47.63-23.91,68.27-39.91c29.86-23.14,60.73-47.07,116.37-47.07
c43.61,0,75.38,20.94,109.01,43.1l2.07,1.36l-12.25,18.6l-2.07-1.37c-32.1-21.16-59.83-39.43-96.75-39.43
c-48.02,0-73.37,19.65-102.72,42.4C1271.1,1476.31,1249.09,1493.37,1217.12,1503.37z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1045.21,1486.84c-26.76-11.83-50.2-26.1-70.88-38.68c-27.1-16.49-50.51-30.74-67.9-30.74v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L1045.21,1486.84z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M477.71,1548.29l-8.32-20.66c25.78-10.38,46.66-25.07,66.84-39.28c10.11-7.12,19.67-13.84,29.58-19.87
l0.57-0.34c0.27-0.16,0.54-0.33,0.8-0.48c23.55-14.11,43.78-20.4,65.57-20.4v22.27c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31
c-0.26,0.16-0.51,0.31-0.77,0.46c-9.23,5.62-18.44,12.1-28.19,18.96C528.82,1520.8,505.89,1536.95,477.71,1548.29z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1372.3,1564.02c-70.57,0-115.04-29.32-154.27-55.18c-3.41-2.25-6.8-4.48-10.17-6.68
c-0.13-0.08-0.26-0.16-0.39-0.24l-0.45-0.28c-26.07-16.92-52.24-32.11-85.57-32.11c-24.22,0-44.82,5.09-64.81,16.01
c-0.52,0.32-0.98,0.57-1.31,0.75l-0.2,0.11c-12.81,7.22-24.25,16.1-36.37,25.49c-31.52,24.43-67.24,52.13-135.15,52.13
c-70.55,0-126.14-29.49-172.76-57.51h-0.05l-2.71-1.62c-2.46-1.49-4.88-2.97-7.27-4.43c-27.15-16.59-50.61-30.92-68.07-30.92
v-22.27c23.73,0,48.42,15.09,79.68,34.19c1.82,1.11,3.66,2.23,5.51,3.37h0l2.7,1.6c46.43,28,97.25,55.33,162.95,55.33
c60.28,0,90.02-23.05,121.5-47.46c12.22-9.47,24.85-19.26,39.14-27.33l1.36-0.77c23.5-12.91,47.6-18.93,75.84-18.93
c39.33,0,69.77,17.58,97.57,35.62c0.13,0.08,0.26,0.16,0.39,0.25l0.45,0.28c3.46,2.25,6.92,4.53,10.42,6.84
c38.41,25.32,78.12,51.5,142.01,51.5c5.1,0,10.31-0.18,15.92-0.55l0.74-0.02v11.09h11.18l-10.49,10.49l0.04,0.67
C1383.59,1563.82,1377.89,1564.02,1372.3,1564.02z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M811.93,1635.7c-70.51,0-114.95-29.27-154.15-55.1c-32.08-21.13-59.79-39.38-96.69-39.38
c-25.64,0-46.49,5.43-67.63,17.62l-11.13-19.29c24.37-14.05,49.4-20.6,78.75-20.6c43.58,0,75.33,20.92,108.95,43.06
c38.38,25.28,78.07,51.43,141.9,51.43c65.45,0,103.94-27.09,141.16-53.28c30.1-21.19,58.54-41.2,96.68-41.2v22.27
c-31.09,0-55.55,17.21-83.86,37.14C927.72,1605.23,884.44,1635.7,811.93,1635.7z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1300.66,1635.7c-9.1,0-18.24-0.5-27.16-1.49c-64.98-6.99-115.35-37.63-155.82-62.25
c-27.11-16.49-50.53-30.74-67.91-30.74v-22.27c23.63,0,48.28,15,79.49,33.98c38.58,23.47,86.6,52.68,146.67,59.14
c8.26,0.92,16.33,1.36,24.74,1.36c3.1,0,6.39-0.07,10.03-0.21c18.5-0.86,34.93-4.03,50.15-9.69l7.76,20.88
c-17.41,6.47-36.04,10.09-56.95,11.06C1307.63,1635.62,1304.06,1635.7,1300.66,1635.7z"/>
</g>
</g>
</g>
</g>
<g id="rules">
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

View file

@ -5,7 +5,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ilot.io\n" "Project-Id-Version: ilot.io\n"
"POT-Creation-Date: 2024-09-08 12:28-0400\n" "POT-Creation-Date: 2024-09-08 18:45-0400\n"
"PO-Revision-Date: 2024-09-08 12:33-0400\n" "PO-Revision-Date: 2024-09-08 12:33-0400\n"
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n" "Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
"Language-Team: dev@ayakael.net\n" "Language-Team: dev@ayakael.net\n"
@ -16,45 +16,39 @@ msgstr ""
"X-Generator: Poedit 3.4.3\n" "X-Generator: Poedit 3.4.3\n"
#. type: Plain text #. type: Plain text
#, no-wrap #, fuzzy, no-wrap
#| msgid "[[!meta title=\"Home\"]]\n"
msgid "[[!meta title=\"Home\"]]\n" msgid "[[!meta title=\"Home\"]]\n"
msgstr "[[!meta title=\"Accueil\"]]\n" msgstr "[[!meta title=\"Accueil\"]]\n"
#. type: Plain text #. type: Plain text
#, no-wrap #, fuzzy, no-wrap
#| msgid "[[ilot|https://ilot.io]] is a cooperative corner of the internet. We operate a Nextcloud instance, a free and open-source collaboration platform analoguous to Google Drive. We aim to eventually incorporate as a cooperative to create a digital infrastructure that is by and for its users as an alternative to the siloed and privatized internet of today. Members fund our operations and decide how to set our community policies, steward our data, and manage our shared technologies. Members also provide the labor to run ilot at all levels."
msgid "" msgid ""
"<header class=\"text-center\">\n" "<div class=\"row home text-centered\">\n"
" <img src=\"images/ilot_black_256x256.png\" />\n" " <div class=\"col-sm-6 home-logo\">\n"
" <h1>WELCOME</h1>\n" " \t<img src=\"images/ilot.black.png\" alt=\"ilot logo\" width=\"400\" height=\"400\"> \n"
" <hr>\n" " \t <div class=\"login\">\n"
"</header>\n" " \t\t<a href=\"https://ilot.io/apps/files\"><h4>Your files</h4> </a>\n"
msgstr "" "\t\t</div> \n"
"<header class=\"text-center\">\n" " </div>\n"
" <img src=\"images/ilot_black_256x256.png\" />\n" " <div class=\"col-sm-6 home-title\">\n"
" <h1>BIENVENUE</h1>\n" " \t<h2><i><b>Welcome to</b></i></h2> \n"
" <hr>\n" " <h1>ILOT</h1> \n"
"</header>\n" " <h5><i>a platform cooperative</i></h5> \n"
" <div class=\"join\">\n"
#. type: Plain text " \t\t<a href=\"https://ilot.io/apps/files\"><h4>Join</h4> </a>\n"
msgid "" " </div> \n"
"[[ilot|https://ilot.io]] is a cooperative corner of the internet. We operate " " </div>\n"
"a Nextcloud instance, a free and open-source collaboration platform " "</div>\n"
"analoguous to Google Drive. We aim to eventually incorporate as a " "<div class=\"row coop\">\n"
"cooperative to create a digital infrastructure that is by and for its users " " <div class=\"col-sm-6 coop-title\">\n"
"as an alternative to the siloed and privatized internet of today. Members " " <h5><i>the</i></h5> \n"
"fund our operations and decide how to set our community policies, steward " " <h1>COOP</h1> \n"
"our data, and manage our shared technologies. Members also provide the labor " " </div>\n"
"to run ilot at all levels." " <div class=\"col-sm-6 coop-content\">\n"
msgstr "" "Ilot is a cooperative corner of the internet. We operate a Nextcloud instance, a free and open-source collaboration platform analoguous to Google Drive. We aim to eventually incorporate as a cooperative to create a digital infrastructure that is by and for its users as an alternative to the siloed and privatized internet of today. Members fund our operations and decide how to set our community policies, steward our data, and manage our shared technologies. Members also provide the labor to run ilot at all levels.\n"
"[[ilot|https://ilot.io]] est une isle coopérative de l'internet. Nous " msgstr "[[ilot|https://ilot.io]] est une isle coopérative de l'internet. Nous administrons une instance de Nextcloud, une plateformes libre de travail et de stockage de donnée analogue à Google Drive. Notre objectif est de nous constituer en coopérative afin de créer une infrastructure numérique par et pour ses utilisateur-ice-s, en alternative à l'internet cloisonné et privatisé d'aujourd'hui. Les membres financent nos opérations et décident de la manière de définir nos politiques communautaires, de gérer nos données et nos technologies partagées. Les membres fournissent également la main-d'œuvre nécessaire au fonctionnement de l'ilot à tous les niveaux."
"administrons une instance de Nextcloud, une plateformes libre de travail et "
"de stockage de donnée analogue à Google Drive. Notre objectif est de nous "
"constituer en coopérative afin de créer une infrastructure numérique par et "
"pour ses utilisateur-ice-s, en alternative à l'internet cloisonné et "
"privatisé d'aujourd'hui. Les membres financent nos opérations et décident de "
"la manière de définir nos politiques communautaires, de gérer nos données et "
"nos technologies partagées. Les membres fournissent également la main-"
"d'œuvre nécessaire au fonctionnement de l'ilot à tous les niveaux."
#. type: Plain text #. type: Plain text
msgid "" msgid ""
@ -70,30 +64,54 @@ msgstr ""
"notre [[formulaire d'inscription|join]]." "notre [[formulaire d'inscription|join]]."
#. type: Plain text #. type: Plain text
#, no-wrap
msgid "" msgid ""
"ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and " "ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals.\n"
"immigration studies sudent association of UQAM, wanted to create its own " " </div>\n"
"digital infrastructure. Since then, we have worked toward the goal of making " "</div>\n"
"the project useful to other organisations and individuals." "<div class=\"row services\">\n"
" <div class=\"col-sm-6 services-title\">\n"
" <h5><i>the</i></h5> \n"
" <h1>SERVICES</h1> \n"
" </div>\n"
" <div class=\"col-sm-6 services-content\">\n"
"The Cloud is an instance of [[Nextcloud|https://nextcloud.com/]], a productivity collaboration platform analogous to Google Drive. An instance is an autonomous version of a web service. In Nextclouds case, even though there exists an official service maintained by the developpers, we are totally indendant from them. The only thing that ties us to the official instance is that we use the same underlying technology, hosted on our own infrastructure.\n"
" </div>\n"
"</div>\n"
msgstr "" msgstr ""
"ilot a vu le jour en 2021 lorsque l'AESA-CIRI, l'association des étudiants "
"en sociologie, anthropologie et études de l'immigration de l'UQAM, a voulu "
"créer sa propre infrastructure numérique. Depuis, nous travaillons dans le "
"but de rendre le projet utile à d'autres organisations et individus."
#. type: Title ## #, fuzzy, no-wrap
#~| msgid "ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals."
#~ msgid ""
#~ "ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals.\n"
#~ " </div>\n"
#~ "</div>\n"
#~ msgstr "ilot a vu le jour en 2021 lorsque l'AESA-CIRI, l'association des étudiants en sociologie, anthropologie et études de l'immigration de l'UQAM, a voulu créer sa propre infrastructure numérique. Depuis, nous travaillons dans le but de rendre le projet utile à d'autres organisations et individus."
#, no-wrap #, no-wrap
msgid "Learn more" #~ msgid ""
msgstr "En savoir plus" #~ "<header class=\"text-center\">\n"
#~ " <img src=\"images/ilot_black_256x256.png\" />\n"
#~ " <h1>WELCOME</h1>\n"
#~ " <hr>\n"
#~ "</header>\n"
#~ msgstr ""
#~ "<header class=\"text-center\">\n"
#~ " <img src=\"images/ilot_black_256x256.png\" />\n"
#~ " <h1>BIENVENUE</h1>\n"
#~ " <hr>\n"
#~ "</header>\n"
#. type: Plain text
msgid "To learn more please visit some of the pages:"
msgstr "Pour en savoir plus, veuillez consulter ces pages :"
#. type: Plain text
#, no-wrap #, no-wrap
msgid "[[Platforms]] - The online spaces we use and manage \n" #~ msgid "Learn more"
msgstr "[[Plateformes|platforms]] - Les espaces en ligne que nous utilisons et gérons \n" #~ msgstr "En savoir plus"
#~ msgid "To learn more please visit some of the pages:"
#~ msgstr "Pour en savoir plus, veuillez consulter ces pages :"
#, no-wrap
#~ msgid "[[Platforms]] - The online spaces we use and manage \n"
#~ msgstr "[[Plateformes|platforms]] - Les espaces en ligne que nous utilisons et gérons \n"
#, no-wrap #, no-wrap
#~ msgid "[[Archives|https://notif.ilot.io/archive]] - Archives of our communications with our members \n" #~ msgid "[[Archives|https://notif.ilot.io/archive]] - Archives of our communications with our members \n"

View file

@ -1,19 +1,40 @@
[[!meta title="Home"]] [[!meta title="Home"]]
<header class="text-center"> <div class="row home text-centered">
<img src="images/ilot_black_256x256.png" /> <div class="col-sm-6 home-logo">
<h1>WELCOME</h1> <img src="images/ilot.black.png" alt="ilot logo" width="400" height="400">
<hr> <div class="login">
</header> <a href="https://ilot.io/apps/files"><h4>Your files</h4> </a>
</div>
[[ilot|https://ilot.io]] is a cooperative corner of the internet. We operate a Nextcloud instance, a free and open-source collaboration platform analoguous to Google Drive. We aim to eventually incorporate as a cooperative to create a digital infrastructure that is by and for its users as an alternative to the siloed and privatized internet of today. Members fund our operations and decide how to set our community policies, steward our data, and manage our shared technologies. Members also provide the labor to run ilot at all levels. </div>
<div class="col-sm-6 home-title">
<h2><i><b>Welcome to</b></i></h2>
<h1>ILOT</h1>
<h5><i>a platform cooperative</i></h5>
<div class="join">
<a href="https://ilot.io/apps/files"><h4>Join</h4> </a>
</div>
</div>
</div>
<div class="row coop">
<div class="col-sm-6 coop-title">
<h5><i>the</i></h5>
<h1>COOP</h1>
</div>
<div class="col-sm-6 coop-content">
Ilot is a cooperative corner of the internet. We operate a Nextcloud instance, a free and open-source collaboration platform analoguous to Google Drive. We aim to eventually incorporate as a cooperative to create a digital infrastructure that is by and for its users as an alternative to the siloed and privatized internet of today. Members fund our operations and decide how to set our community policies, steward our data, and manage our shared technologies. Members also provide the labor to run ilot at all levels.
The project is currently in beta, as there is still a lot of work left to do. While the technical infrastructure is setup and stable, the governance and community guidelines are still a work in progress. If you are interested in joining ilot, visit our [[registration form|join]]. The project is currently in beta, as there is still a lot of work left to do. While the technical infrastructure is setup and stable, the governance and community guidelines are still a work in progress. If you are interested in joining ilot, visit our [[registration form|join]].
ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals. ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals.
</div>
## Learn more </div>
<div class="row services">
To learn more please visit some of the pages: <div class="col-sm-6 services-title">
<h5><i>the</i></h5>
[[Platforms]] - The online spaces we use and manage <h1>SERVICES</h1>
</div>
<div class="col-sm-6 services-content">
The Cloud is an instance of [[Nextcloud|https://nextcloud.com/]], a productivity collaboration platform analogous to Google Drive. An instance is an autonomous version of a web service. In Nextclouds case, even though there exists an official service maintained by the developpers, we are totally indendant from them. The only thing that ties us to the official instance is that we use the same underlying technology, hosted on our own infrastructure.
</div>
</div>

View file

@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2024-09-08 12:30-0400\n" "POT-Creation-Date: 2024-09-08 18:47-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -24,24 +24,36 @@ msgstr ""
#. type: Plain text #. type: Plain text
#, markdown-text, no-wrap #, markdown-text, no-wrap
msgid "" msgid ""
"<header class=\"text-center\">\n" "<div class=\"row home text-centered\">\n"
" <img src=\"images/ilot_black_256x256.png\" />\n" " <div class=\"col-sm-6 home-logo\">\n"
" <h1>WELCOME</h1>\n" " \t<img src=\"images/ilot.black.png\" alt=\"ilot logo\" width=\"400\" "
" <hr>\n" "height=\"400\"> \n"
"</header>\n" " \t <div class=\"login\">\n"
msgstr "" " \t\t<a href=\"https://ilot.io/apps/files\"><h4>Your files</h4> </a>\n"
"\t\t</div> \n"
#. type: Plain text " </div>\n"
#, markdown-text " <div class=\"col-sm-6 home-title\">\n"
msgid "" " \t<h2><i><b>Welcome to</b></i></h2> \n"
"[[ilot|https://ilot.io]] is a cooperative corner of the internet. We operate " " <h1>ILOT</h1> \n"
"a Nextcloud instance, a free and open-source collaboration platform " " <h5><i>a platform cooperative</i></h5> \n"
"analoguous to Google Drive. We aim to eventually incorporate as a " " <div class=\"join\">\n"
"cooperative to create a digital infrastructure that is by and for its users " " \t\t<a href=\"https://ilot.io/apps/files\"><h4>Join</h4> </a>\n"
"as an alternative to the siloed and privatized internet of today. Members " " </div> \n"
"fund our operations and decide how to set our community policies, steward " " </div>\n"
"our data, and manage our shared technologies. Members also provide the labor " "</div>\n"
"to run ilot at all levels." "<div class=\"row coop\">\n"
" <div class=\"col-sm-6 coop-title\">\n"
" <h5><i>the</i></h5> \n"
" <h1>COOP</h1> \n"
" </div>\n"
" <div class=\"col-sm-6 coop-content\">\n"
"Ilot is a cooperative corner of the internet. We operate a Nextcloud "
"instance, a free and open-source collaboration platform analoguous to Google "
"Drive. We aim to eventually incorporate as a cooperative to create a digital "
"infrastructure that is by and for its users as an alternative to the siloed "
"and privatized internet of today. Members fund our operations and decide how "
"to set our community policies, steward our data, and manage our shared "
"technologies. Members also provide the labor to run ilot at all levels.\n"
msgstr "" msgstr ""
#. type: Plain text #. type: Plain text
@ -54,25 +66,27 @@ msgid ""
msgstr "" msgstr ""
#. type: Plain text #. type: Plain text
#, markdown-text #, markdown-text, no-wrap
msgid "" msgid ""
"ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and " "ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and "
"immigration studies sudent association of UQAM, wanted to create its own " "immigration studies sudent association of UQAM, wanted to create its own "
"digital infrastructure. Since then, we have worked toward the goal of making " "digital infrastructure. Since then, we have worked toward the goal of making "
"the project useful to other organisations and individuals." "the project useful to other organisations and individuals.\n"
msgstr "" " </div>\n"
"</div>\n"
#. type: Title ## "<div class=\"row services\">\n"
#, markdown-text, no-wrap " <div class=\"col-sm-6 services-title\">\n"
msgid "Learn more" " <h5><i>the</i></h5> \n"
msgstr "" " <h1>SERVICES</h1> \n"
" </div>\n"
#. type: Plain text " <div class=\"col-sm-6 services-content\">\n"
#, markdown-text "The Cloud is an instance of [[Nextcloud|https://nextcloud.com/]], a "
msgid "To learn more please visit some of the pages:" "productivity collaboration platform analogous to Google Drive. An instance "
msgstr "" "is an autonomous version of a web service. In Nextclouds case, even though "
"there exists an official service maintained by the developpers, we are "
#. type: Plain text "totally indendant from them. The only thing that ties us to the official "
#, markdown-text, no-wrap "instance is that we use the same underlying technology, hosted on our own "
msgid "[[Platforms]] - The online spaces we use and manage \n" "infrastructure.\n"
" </div>\n"
"</div>\n"
msgstr "" msgstr ""

View file

@ -6,11 +6,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<TMPL_IF NAME="META"><TMPL_VAR META></TMPL_IF> <TMPL_IF NAME="META"><TMPL_VAR META></TMPL_IF>
<TMPL_IF DYNAMIC>
<TMPL_IF FORCEBASEURL><base href="<TMPL_VAR FORCEBASEURL>" /><TMPL_ELSE>
<TMPL_IF BASEURL><base href="<TMPL_VAR BASEURL>" /></TMPL_IF>
</TMPL_IF>
</TMPL_IF>
<title><TMPL_VAR TITLE> - <TMPL_VAR WIKINAME></title> <title><TMPL_VAR TITLE> - <TMPL_VAR WIKINAME></title>
@ -30,17 +25,11 @@
<!-- Bootstrap core CSS --> <!-- Bootstrap core CSS -->
<!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 --> <!-- those checksums can be verified with: shasum -b -a 384 $file | xxd -r -p | base64 -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" /> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<!-- Custom styles for this template --> <!-- Custom styles for this template -->
<link href="<TMPL_VAR BASEURL>bootstrap.local.css" rel="stylesheet" /> <link href="<TMPL_VAR BASEURL>bootstrap.local.css" rel="stylesheet" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Custom styles for derivatives --> <!-- Custom styles for derivatives -->
<TMPL_IF LOCAL_CSS> <TMPL_IF LOCAL_CSS>
<link rel="stylesheet" href="<TMPL_VAR BASEURL><TMPL_VAR LOCAL_CSS>" type="text/css" /> <link rel="stylesheet" href="<TMPL_VAR BASEURL><TMPL_VAR LOCAL_CSS>" type="text/css" />
@ -48,80 +37,44 @@
<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" /> <link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" />
</TMPL_IF> </TMPL_IF>
<TMPL_UNLESS DYNAMIC>
<TMPL_IF EDITURL>
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="<TMPL_VAR EDITURL>" />
</TMPL_IF>
<TMPL_IF FEEDLINKS><TMPL_VAR FEEDLINKS></TMPL_IF>
<TMPL_IF RELVCS><TMPL_VAR RELVCS></TMPL_IF>
<TMPL_IF META><TMPL_VAR META></TMPL_IF>
<TMPL_LOOP TRAILLOOP>
<TMPL_IF PREVPAGE>
<link rel="prev" href="<TMPL_VAR PREVURL>" title="<TMPL_VAR PREVTITLE>" />
</TMPL_IF>
<link rel="up" href="<TMPL_VAR TRAILURL>" title="<TMPL_VAR TRAILTITLE>" />
<TMPL_IF NEXTPAGE>
<link rel="next" href="<TMPL_VAR NEXTURL>" title="<TMPL_VAR NEXTTITLE>" />
</TMPL_IF>
</TMPL_LOOP>
</TMPL_UNLESS>
</head> </head>
<body> <body>
<nav class="navbar navbar-default navbar-fixed-top"> <nav class="navbar fixed-top navbar-secondary bg-transparent">
<div class="container"> <div class="container-fluid">
<div class="navbar-header"> <div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation</span> <span class="navbar-toggler-icon"></span>
<span class="icon-bar"></span> </button>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="<TMPL_VAR BASEURL>">
<img alt="<TMPL_VAR WIKINAME>" src="<TMPL_VAR BASEURL>favicon.png" width="48" height="48" />
</a>
</div> </div>
<div id="navbar" class="collapse navbar-collapse"> <div id="navbar" class="collapse navbar-collapse">
<TMPL_IF OTHERLANGUAGES>
<div class="dropdown navbar-left">
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
"dropdown" aria-haspopup="true" aria-expanded="true">
<TMPL_VAR LANG_NAME>
<img src="<TMPL_VAR BASEURL>wikiicons/languages.png">
</button>
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
<TMPL_LOOP OTHERLANGUAGES>
<li>
<a href="<TMPL_VAR URL>"><TMPL_VAR LANGUAGE></a>
</li>
</TMPL_LOOP>
<TMPL_IF HAVE_ACTIONS>
<li class="improve-translations">
<a href="<TMPL_VAR BASEURL>contribute/how/translate/" rel="nofollow">Improve translations</a>
</li>
</TMPL_IF>
</ul>
</div>
</TMPL_IF>
<TMPL_IF SIDEBAR> <TMPL_IF SIDEBAR>
<TMPL_VAR SIDEBAR> <TMPL_VAR SIDEBAR>
</TMPL_IF> </TMPL_IF>
<ul class="nav navbar-nav">
<TMPL_LOOP BOOTMENU>
<TMPL_IF FIRSTNAV>
<li <TMPL_IF ACTIVE>class="active"</TMPL_IF>><a href="<TMPL_VAR URL>"><TMPL_VAR PAGE></a></li>
</TMPL_IF>
</TMPL_LOOP>
</ul>
</div> </div>
</div> <TMPL_IF OTHERLANGUAGES>
<div class="dropdown">
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-bs-toggle="dropdown" aria-expanded="false">
<img src="<TMPL_VAR BASEURL>wikiicons/languages.png">
</button>
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
<TMPL_LOOP OTHERLANGUAGES>
<li>
<a href="<TMPL_VAR URL>"><TMPL_VAR LANGUAGE></a>
</li>
</TMPL_LOOP>
<TMPL_IF HAVE_ACTIONS>
<li class="improve-translations">
<a href="<TMPL_VAR BASEURL>contribute/how/translate/" rel="nofollow">Improve translations</a>
</li>
</TMPL_IF>
</ul>
</div>
</TMPL_IF>
</div>
</nav> </nav>
<div class="container" id="content"> <div class="container" id="content">
@ -129,122 +82,40 @@
<TMPL_VAR CONTENT> <TMPL_VAR CONTENT>
<TMPL_IF ENCLOSURE> <TMPL_IF ENCLOSURE>
<TMPL_IF HTML5><section id="enclosure"><TMPL_ELSE><div id="enclosure"></TMPL_IF> <section id="enclosure">
<a href="<TMPL_VAR ENCLOSURE>">Download</a> <a href="<TMPL_VAR ENCLOSURE>">Download</a>
<TMPL_IF HTML5></section><TMPL_ELSE></div></TMPL_IF> </section>
</TMPL_IF> </TMPL_IF>
<TMPL_IF TRAILS> <TMPL_IF TRAILS>
<TMPL_VAR TRAILS> <TMPL_VAR TRAILS>
</TMPL_IF> </TMPL_IF>
<TMPL_UNLESS DYNAMIC>
<!-- legacy Ikiwiki comments.pm section -->
<TMPL_IF COMMENTS>
<TMPL_IF HTML5><section id="comments"><TMPL_ELSE><div id="comments"></TMPL_IF>
<TMPL_VAR COMMENTS>
<TMPL_IF ADDCOMMENTURL>
<div class="addcomment">
<a href="<TMPL_VAR ADDCOMMENTURL>">Add a comment</a>
</div>
<TMPL_ELSE>
<TMPL_UNLESS mastodon_host>
<div class="addcomment">Comments on this page are closed.</div>
</TMPL_UNLESS>
</TMPL_IF>
<TMPL_IF HTML5></section><TMPL_ELSE></div></TMPL_IF>
</TMPL_IF>
<!-- Mastodon comments -->
<TMPL_IF mastodon_host>
<div class="mastodon-comments comments">
<p>You can use your Mastodon account to reply to this <a class="link" href="https://<TMPL_VAR mastodon_host>/@<TMPL_VAR mastodon_username>/<TMPL_VAR mastodon_post>">post</a>.</p>
<p id="mastodon-comments-list"><button id="load-comment">Load comments</button></p>
<noscript><p>You need JavaScript to view the comments.</p></noscript>
<script src="<TMPL_VAR BASEURL>assets/js/purify.min.js"></script>
<script type="text/javascript">
function escapeHtml(unsafe) {
return unsafe
.replace(/&/g, "&amp;")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")
.replace(/"/g, "&quot;")
.replace(/'/g, "&#039;");
}
document.getElementById("load-comment").addEventListener("click", function() {
document.getElementById("load-comment").innerHTML = "Loading...";
fetch('https://<TMPL_VAR mastodon_host>/api/v1/statuses/<TMPL_VAR mastodon_post>/context')
.then(function(response) {
return response.json();
})
.then(function(data) {
if(data['descendants'] &&
Array.isArray(data['descendants']) &&
data['descendants'].length > 0) {
document.getElementById('mastodon-comments-list').innerHTML = "";
data['descendants'].forEach(function(reply) {
reply.account.display_name = escapeHtml(reply.account.display_name);
reply.account.emojis.forEach(emoji => {
reply.account.display_name = reply.account.display_name.replace(`:${emoji.shortcode}:`,
`<img src="${escapeHtml(emoji.static_url)}" alt="Emoji ${emoji.shortcode}" height="20" width="20" />`);
});
mastodonComment =
`<div class="mastodon-comment comment">
<div class="avatar">
<img src="${escapeHtml(reply.account.avatar_static)}" height=60 width=60 alt="">
</div>
<div class="content">
<div class="author">
<a href="${reply.account.url}" rel="nofollow">
<span>${reply.account.display_name}</span>
<span class="disabled">${escapeHtml(reply.account.acct)}</span>
</a>
<a class="post" href="${reply.uri}" rel="nofollow">
<time datetime="${reply.created_at}" pubdate="pubdate">
${reply.created_at.replace(/(T\d+:\d+):\d+(\.\d+)?(.*)/, "$1$3")}
</time>
</a>
</div>
<div class="mastodon-comment-content">${reply.content}</div>
</div>
</div>`;
document.getElementById('mastodon-comments-list').appendChild(DOMPurify.sanitize(mastodonComment, {'RETURN_DOM_FRAGMENT': true}));
});
} else {
document.getElementById('mastodon-comments-list').innerHTML = "<p>Not comments found</p>";
}
});
});
</script>
</div>
</TMPL_IF>
</TMPL_UNLESS>
</div> <!-- /container --> </div> <!-- /container -->
<TMPL_IF HTML5><footer<TMPL_ELSE><div</TMPL_IF> class="footer" role="contentinfo"> <footer class="footer" role="contentinfo">
<div class="container"> <div class="container">
<TMPL_IF FOOTER> <TMPL_IF FOOTER>
<TMPL_VAR FOOTER> <TMPL_VAR FOOTER>
</TMPL_IF> </TMPL_IF>
</div> </div>
<TMPL_IF HTML5></footer><TMPL_ELSE></div></TMPL_IF> </footer>
<!-- Bootstrap core JavaScript <!-- Bootstrap core JavaScript
================================================== --> ================================================== -->
<!-- Placed at the end of the document so the pages load faster --> <!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script> <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<!-- TODO: Find other ways to setup analytics
<!-- TODO: Find other ways to setup analytics
<script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script> <script data-goatcounter="https://analytics.anarc.at/count" async src="//analytics.anarc.at/count.js"></script>
<noscript> <noscript>
<img src="https://analytics.anarc.at/count?p=<TMPL_VAR PAGE>&t=<TMPL_VAR TITLE ESCAPE=URL>" alt="tracking pixel to count visitors when Javascript is disabled" /> <img src="https://analytics.anarc.at/count?p=<TMPL_VAR PAGE>&t=<TMPL_VAR TITLE ESCAPE=URL>" alt="tracking pixel to count visitors when Javascript is disabled" />
</noscript> </noscript>
--> -->
</body> </body>
</html> </html>

View file

@ -1,4 +1,4 @@
<form method="get" action="<TMPL_VAR SEARCHACTION>" class="navbar-form navbar-left" role="search"> <form method="get" action="<TMPL_VAR SEARCHACTION>" class="navbar-form navbar-left" role="search">
<input type="text" class="form-control" name="P" value="" size="16" <input type="text" class="form-control" name="P" value="" size="16"
<TMPL_IF HTML5>placeholder="search"</TMPL_IF> /> placeholder="search" />
</form> </form>