Merge pull request #74 from Carve/71-issues-with-qbittorrent-v500
Fix issues with qbittorrent v500
@ -2,55 +2,55 @@
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta charset="UTF-8">
|
||||
<title>Add Peers</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/Core.css?v=${CACHEID}" />
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css">
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script>
|
||||
'use strict';
|
||||
"use strict";
|
||||
|
||||
new Keyboard({
|
||||
defaultEventType: 'keydown',
|
||||
defaultEventType: "keydown",
|
||||
events: {
|
||||
'Escape': function(event) {
|
||||
window.parent.closeWindows();
|
||||
"Escape": function(event) {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
event.preventDefault();
|
||||
},
|
||||
'Esc': function(event) {
|
||||
window.parent.closeWindows();
|
||||
"Esc": function(event) {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
event.preventDefault();
|
||||
}
|
||||
}
|
||||
}).activate();
|
||||
|
||||
window.addEvent('domready', function() {
|
||||
const hash = new URI().getData('hash');
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
const hash = new URI().getData("hash");
|
||||
if (!hash)
|
||||
return false;
|
||||
return;
|
||||
|
||||
$('peers').focus();
|
||||
$("peers").focus();
|
||||
|
||||
$('addPeersOk').addEvent('click', function(e) {
|
||||
new Event(e).stop();
|
||||
$("addPeersOk").addEventListener("click", (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
const peers = $('peers').get('value').trim().split(/[\r\n]+/);
|
||||
const peers = $("peers").value.trim().split(/[\r\n]+/);
|
||||
if (peers.length === 0)
|
||||
return;
|
||||
|
||||
new Request({
|
||||
url: 'api/v2/torrents/addPeers',
|
||||
method: 'post',
|
||||
url: "api/v2/torrents/addPeers",
|
||||
method: "post",
|
||||
data: {
|
||||
hashes: hash,
|
||||
peers: peers.join('|')
|
||||
peers: peers.join("|")
|
||||
},
|
||||
onFailure: function() {
|
||||
alert("Unable to add peers. Please ensure you are adhering to the IP:port format.");
|
||||
},
|
||||
onSuccess: function() {
|
||||
window.parent.closeWindows();
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
});
|
||||
@ -60,11 +60,11 @@
|
||||
|
||||
<body>
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<p>List of peers to add (one IP per line):</p>
|
||||
<label for="peers">List of peers to add (one IP per line):</label>
|
||||
<textarea id="peers" rows="10" style="width: 100%;" placeholder="Format: IPv4:port / [IPv6]:port"></textarea>
|
||||
<div style="margin-top: 10px; text-align: center;">
|
||||
<button class="button" onclick="parent.closeWindows();">Cancel</button>
|
||||
<button class="button" id="addPeersOk">Ok</button>
|
||||
<button type="button" onclick="parent.qBittorrent.Client.closeWindows();">Cancel</button>
|
||||
<button type="button" id="addPeersOk">Ok</button>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@ -2,43 +2,44 @@
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta charset="UTF-8">
|
||||
<title>Add trackers</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/Core.css?v=${CACHEID}" />
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css">
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script>
|
||||
'use strict';
|
||||
"use strict";
|
||||
|
||||
window.addEvent('domready', function() {
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
new Keyboard({
|
||||
defaultEventType: 'keydown',
|
||||
defaultEventType: "keydown",
|
||||
events: {
|
||||
'Escape': function(event) {
|
||||
window.parent.closeWindows();
|
||||
"Escape": function(event) {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
event.preventDefault();
|
||||
},
|
||||
'Esc': function(event) {
|
||||
window.parent.closeWindows();
|
||||
"Esc": function(event) {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
event.preventDefault();
|
||||
}
|
||||
}
|
||||
}).activate();
|
||||
|
||||
$('trackersUrls').focus();
|
||||
$('addTrackersButton').addEvent('click', function(e) {
|
||||
new Event(e).stop();
|
||||
const hash = new URI().getData('hash');
|
||||
$("trackersUrls").focus();
|
||||
$("addTrackersButton").addEventListener("click", (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
const hash = new URI().getData("hash");
|
||||
new Request({
|
||||
url: 'api/v2/torrents/addTrackers',
|
||||
method: 'post',
|
||||
url: "api/v2/torrents/addTrackers",
|
||||
method: "post",
|
||||
data: {
|
||||
hash: hash,
|
||||
urls: $('trackersUrls').value
|
||||
urls: $("trackersUrls").value
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.closeWindows();
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
});
|
||||
@ -48,11 +49,11 @@
|
||||
|
||||
<body>
|
||||
<div style="text-align: center;">
|
||||
<br />
|
||||
<h2 class="vcenter">List of trackers to add (one per line):</h2>
|
||||
<br>
|
||||
<label for="trackersUrls">List of trackers to add (one per line):</label>
|
||||
<textarea name="list" id="trackersUrls" rows="10" cols="1"></textarea>
|
||||
<br />
|
||||
<input class="button" type="button" value="Add" id="addTrackersButton" />
|
||||
<br>
|
||||
<input type="button" value="Add" id="addTrackersButton">
|
||||
</div>
|
||||
</body>
|
||||
|
||||
|
58
private/addwebseeds.html
Normal file
@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Add web seeds</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css">
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script>
|
||||
"use strict";
|
||||
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
new Keyboard({
|
||||
defaultEventType: "keydown",
|
||||
events: {
|
||||
"Escape": function(event) {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
event.preventDefault();
|
||||
},
|
||||
"Esc": function(event) {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
event.preventDefault();
|
||||
}
|
||||
}
|
||||
}).activate();
|
||||
|
||||
$("urls").focus();
|
||||
$("addWebSeedsButton").addEvent("click", (e) => {
|
||||
e.stopPropagation();
|
||||
const hash = new URI().getData("hash");
|
||||
new Request({
|
||||
url: "api/v2/torrents/addWebSeeds",
|
||||
method: "post",
|
||||
data: {
|
||||
hash: hash,
|
||||
urls: $("urls").value.split("\n").map(w => encodeURIComponent(w.trim())).filter(w => (w.length > 0)).join("|")
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div style="text-align: center;">
|
||||
<br>
|
||||
<label for="urls">List of web seeds to add (one per line):</label>
|
||||
<textarea name="list" id="urls" rows="10" cols="1"></textarea>
|
||||
<br>
|
||||
<input type="button" value="Add" id="addWebSeedsButton">
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,55 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Remove torrent(s)</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/Core.css?v=${CACHEID}" />
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script>
|
||||
'use strict';
|
||||
|
||||
window.addEvent('domready', function() {
|
||||
const isDeletingFiles = (new URI().getData('deleteFiles') === "true");
|
||||
$('deleteFromDiskCB').checked = isDeletingFiles;
|
||||
|
||||
const hashes = new URI().getData('hashes').split('|');
|
||||
$('cancelBtn').focus();
|
||||
$('cancelBtn').addEvent('click', function(e) {
|
||||
new Event(e).stop();
|
||||
window.parent.closeWindows();
|
||||
});
|
||||
$('confirmBtn').addEvent('click', function(e) {
|
||||
parent.torrentsTable.deselectAll();
|
||||
new Event(e).stop();
|
||||
const cmd = 'api/v2/torrents/delete';
|
||||
const deleteFiles = $('deleteFromDiskCB').get('checked');
|
||||
new Request({
|
||||
url: cmd,
|
||||
method: 'post',
|
||||
data: {
|
||||
'hashes': hashes.join('|'),
|
||||
'deleteFiles': deleteFiles
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<br />
|
||||
|
||||
<p> Are you sure you want to remove the selected torrents from the transfer list?</p>
|
||||
<input type="checkbox" id="deleteFromDiskCB" /> <label for="deleteFromDiskCB"><i>Also permanently delete the files</i></label><br /><br />
|
||||
<div style="text-align: right;">
|
||||
<input class="button" type="button" id="cancelBtn" value="Cancel" /> <input class="button" type="button" id="confirmBtn" value="Remove" />
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -2,30 +2,31 @@
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta charset="UTF-8">
|
||||
<title>Deletion confirmation</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/Core.css?v=${CACHEID}" />
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css">
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script>
|
||||
'use strict';
|
||||
"use strict";
|
||||
|
||||
window.addEvent('domready', () => {
|
||||
const paths = new URI().getData('paths').split('|');
|
||||
$('cancelBtn').focus();
|
||||
$('cancelBtn').addEvent('click', (e) => {
|
||||
new Event(e).stop();
|
||||
window.parent.closeWindows();
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
const paths = new URI().getData("paths").split("|");
|
||||
$("cancelBtn").focus();
|
||||
$("cancelBtn").addEventListener("click", (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
});
|
||||
$('confirmBtn').addEvent('click', (e) => {
|
||||
new Event(e).stop();
|
||||
$("confirmBtn").addEventListener("click", (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
let completionCount = 0;
|
||||
paths.forEach((path) => {
|
||||
new Request({
|
||||
url: 'api/v2/rss/removeItem',
|
||||
noCache: true,
|
||||
method: 'post',
|
||||
url: "api/v2/rss/removeItem",
|
||||
method: "post",
|
||||
data: {
|
||||
path: decodeURIComponent(path)
|
||||
},
|
||||
@ -33,7 +34,7 @@
|
||||
++completionCount;
|
||||
if (completionCount === paths.length) {
|
||||
window.parent.qBittorrent.Rss.updateRssFeedList();
|
||||
window.parent.closeWindows();
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}
|
||||
}).send();
|
||||
@ -44,11 +45,11 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div style="padding: 1px 10px 0px 1px;">
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<p>Are you sure you want to delete the selected RSS feeds?</p>
|
||||
<div style="text-align: right;">
|
||||
<input style="padding: 2px 2px;" class="button" type="button" id="cancelBtn" value="No" />
|
||||
<input style="padding: 2px 2px;" class="button" type="button" id="confirmBtn" value="Yes" />
|
||||
<input type="button" id="cancelBtn" value="No">
|
||||
<input type="button" id="confirmBtn" value="Yes">
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@ -2,32 +2,34 @@
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta charset="UTF-8">
|
||||
<title>Clear downloaded episodes</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/Core.css?v=${CACHEID}" />
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css">
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script>
|
||||
'use strict';
|
||||
"use strict";
|
||||
|
||||
window.addEvent('domready', () => {
|
||||
const rules = new URI().getData('rules').split('|');
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
const rules = new URI().getData("rules").split("|");
|
||||
|
||||
$('cancelBtn').focus();
|
||||
$('cancelBtn').addEvent('click', (e) => {
|
||||
new Event(e).stop();
|
||||
window.parent.MochaUI.closeWindow(window.parent.$('clearRulesPage'));
|
||||
$("cancelBtn").focus();
|
||||
$("cancelBtn").addEventListener("click", (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
window.parent.MochaUI.closeWindow(window.parent.$("clearRulesPage"));
|
||||
});
|
||||
$('confirmBtn').addEvent('click', (e) => {
|
||||
new Event(e).stop();
|
||||
$("confirmBtn").addEventListener("click", (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
let completionCount = 0;
|
||||
rules.forEach((rule) => {
|
||||
window.parent.qBittorrent.RssDownloader.modifyRuleState(decodeURIComponent(rule), 'previouslyMatchedEpisodes', [], () => {
|
||||
window.parent.qBittorrent.RssDownloader.modifyRuleState(decodeURIComponent(rule), "previouslyMatchedEpisodes", [], () => {
|
||||
++completionCount;
|
||||
if (completionCount === rules.length) {
|
||||
window.parent.qBittorrent.RssDownloader.updateRulesList();
|
||||
window.parent.MochaUI.closeWindow(window.parent.$('clearRulesPage'));
|
||||
window.parent.MochaUI.closeWindow(window.parent.$("clearRulesPage"));
|
||||
}
|
||||
});
|
||||
});
|
||||
@ -37,11 +39,11 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div style="padding: 1px 10px 0px 1px;">
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<p>Are you sure you want to clear the list of downloaded episodes for the selected rule?</p>
|
||||
<div style="text-align: right;">
|
||||
<input style="padding: 2px 2px;" class="button" type="button" id="cancelBtn" value="No" />
|
||||
<input style="padding: 2px 2px;" class="button" type="button" id="confirmBtn" value="Yes" />
|
||||
<input type="button" id="cancelBtn" value="No">
|
||||
<input type="button" id="confirmBtn" value="Yes">
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@ -2,31 +2,32 @@
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta charset="UTF-8">
|
||||
<title>Rule deletion confirmation</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/Core.css?v=${CACHEID}" />
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css">
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script>
|
||||
'use strict';
|
||||
"use strict";
|
||||
|
||||
window.addEvent('domready', () => {
|
||||
const rules = new URI().getData('rules').split('|');
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
const rules = new URI().getData("rules").split("|");
|
||||
|
||||
$('cancelBtn').focus();
|
||||
$('cancelBtn').addEvent('click', (e) => {
|
||||
new Event(e).stop();
|
||||
window.parent.MochaUI.closeWindow(window.parent.$('removeRulePage'));
|
||||
$("cancelBtn").focus();
|
||||
$("cancelBtn").addEventListener("click", (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
window.parent.MochaUI.closeWindow(window.parent.$("removeRulePage"));
|
||||
});
|
||||
$('confirmBtn').addEvent('click', (e) => {
|
||||
new Event(e).stop();
|
||||
$("confirmBtn").addEventListener("click", (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
let completionCount = 0;
|
||||
rules.forEach((rule) => {
|
||||
new Request({
|
||||
url: 'api/v2/rss/removeRule',
|
||||
noCache: true,
|
||||
method: 'post',
|
||||
url: "api/v2/rss/removeRule",
|
||||
method: "post",
|
||||
data: {
|
||||
ruleName: decodeURIComponent(rule)
|
||||
},
|
||||
@ -34,7 +35,7 @@
|
||||
++completionCount;
|
||||
if (completionCount === rules.length) {
|
||||
window.parent.qBittorrent.RssDownloader.updateRulesList();
|
||||
window.parent.MochaUI.closeWindow(window.parent.$('removeRulePage'));
|
||||
window.parent.MochaUI.closeWindow(window.parent.$("removeRulePage"));
|
||||
}
|
||||
}
|
||||
}).send();
|
||||
@ -48,8 +49,8 @@
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<p>Are you sure you want to remove the selected download rules?</p>
|
||||
<div style="text-align: right;">
|
||||
<input class="button" type="button" id="cancelBtn" value="No" />
|
||||
<input class="button" type="button" id="confirmBtn" value="Yes" />
|
||||
<input type="button" id="cancelBtn" value="No">
|
||||
<input type="button" id="confirmBtn" value="Yes">
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
52
private/confirmtrackerdeletion.html
Normal file
@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Remove tracker</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css">
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script>
|
||||
"use strict";
|
||||
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
const host = new URI().getData("host");
|
||||
const urls = new URI().getData("urls");
|
||||
$("confirmDeleteTrackerText").textContent = "Are you sure you want to remove tracker %1 from all torrents?".replace("%1", `"${host}"`);
|
||||
|
||||
$("cancelBtn").focus();
|
||||
$("cancelBtn").addEvent("click", (e) => {
|
||||
e.stopPropagation();
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
});
|
||||
$("confirmBtn").addEvent("click", (e) => {
|
||||
e.stopPropagation();
|
||||
const cmd = "api/v2/torrents/removeTrackers";
|
||||
new Request({
|
||||
url: cmd,
|
||||
method: "post",
|
||||
data: {
|
||||
hash: "*",
|
||||
urls: urls,
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<p id="confirmDeleteTrackerText"></p>
|
||||
<div style="text-align: right;">
|
||||
<input type="button" id="cancelBtn" value="Cancel">
|
||||
<input type="button" id="confirmBtn" value="Remove">
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -19,92 +19,34 @@ Notes:
|
||||
|
||||
*/
|
||||
|
||||
/* New UI
|
||||
---------------------------------------------------------------- */
|
||||
|
||||
@import url(cjratliff.css);
|
||||
|
||||
|
||||
/* Required By All
|
||||
---------------------------------------------------------------- */
|
||||
:root {
|
||||
color-scheme: dark;
|
||||
--darkmode-primary: #00d9ff;
|
||||
--darkmode-background: #202020;
|
||||
--darkmode-background-alt: #242424;
|
||||
--darkmode-background-alt2: #4e4e4e;
|
||||
--darkmode-text: #c2c2c2;
|
||||
--darkmode-text-alt: #d3d3d3;
|
||||
--darkmode-line-color: #2F3437;
|
||||
--highlight-color--darkred: #b83739;
|
||||
--highlight-color--red: #ce292c;
|
||||
--highlight-color--orange: #d0822b;
|
||||
--highlight-color--yellow: #fcdd04;
|
||||
--highlight-color--green: #64e67c;
|
||||
--highlight-color--brightgreen: #49ca61;
|
||||
--highlight-color--blue: #9FC8EB;
|
||||
--highlight-color--purple: #DEAFEB;
|
||||
--callout-background-color-dark: #DFDFDC;
|
||||
--calloutred-background-color-dark: #E8D4D8;
|
||||
--calloutorange-background-color-dark: #E8DAC8;
|
||||
--calloutyellow-background-color-dark: #E9E2BF;
|
||||
--calloutgreen-background-color-dark: #CDE6D0;
|
||||
--calloutblue-background-color-dark: #D6E2E6;
|
||||
--calloutpurple-background-color-dark: #E4D5E3;
|
||||
--text-shadow: 0.01em 0.01em 0.03em #727E84;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: .875rem;
|
||||
font-family: "Google Sans", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
font-feature-settings: "kern", "liga", "clig", "calt";
|
||||
}
|
||||
|
||||
/* Text Colors */
|
||||
.highlight-darkred {
|
||||
color: var(--highlight-color--darkred) !important;
|
||||
}
|
||||
|
||||
.highlight-red {
|
||||
color: var(--highlight-color--red) !important;
|
||||
}
|
||||
|
||||
.highlight-orange {
|
||||
color: var(--highlight-color--orange) !important;
|
||||
}
|
||||
|
||||
.highlight-yellow {
|
||||
color: var(--highlight-color--yellow) !important;
|
||||
}
|
||||
|
||||
.highlight-green {
|
||||
color: var(--highlight-color--green) !important;
|
||||
}
|
||||
|
||||
.highlight-brightgreen {
|
||||
color: var(--highlight-color--brightgreen) !important;
|
||||
}
|
||||
|
||||
.highlight-blue {
|
||||
color: var(--highlight-color--blue) !important;
|
||||
}
|
||||
|
||||
.highlight-purple {
|
||||
color: var(--highlight-color--purple) !important;
|
||||
}
|
||||
|
||||
/* Clears */
|
||||
|
||||
.clear {
|
||||
clear: both;
|
||||
height: 0;
|
||||
clear: both;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
* html .clear {
|
||||
font-size: 1px;
|
||||
line-height: 1px;
|
||||
overflow: hidden;
|
||||
visibility: hidden;
|
||||
font-size: 1px;
|
||||
line-height: 1px;
|
||||
overflow: hidden;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
/* Miscellaneous
|
||||
---------------------------------------------------------------- */
|
||||
|
||||
#themeControl {
|
||||
margin-top: 2px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
/* Theme Specific Adjustments to Default Plugin Styles
|
||||
@ -113,5 +55,5 @@ body {
|
||||
/* Folder Tree */
|
||||
|
||||
.tree li a {
|
||||
color: #3f3f3f !important;
|
||||
color: #3f3f3f !important;
|
||||
}
|
@ -103,7 +103,7 @@ body {
|
||||
|
||||
#desktopNavbar {
|
||||
background: var(--darkmode-background);
|
||||
color: var(--darkmode-text);
|
||||
color: var(--darkmode-text);
|
||||
border-bottom: 1px solid #3f3f3f;
|
||||
height: 20px;
|
||||
margin: 0 0px;
|
||||
@ -115,9 +115,10 @@ body {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#desktopNavbar > ul > li {
|
||||
#desktopNavbar>ul>li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
@ -133,7 +134,11 @@ body {
|
||||
|
||||
#desktopNavbar ul li a:hover {
|
||||
background-color: var(--darkmode-background);
|
||||
color: var(--darkmode-text);
|
||||
color: var(--darkmode-text);
|
||||
}
|
||||
|
||||
#desktopNavbar a:hover img {
|
||||
filter: var(--color-icon-hover);
|
||||
}
|
||||
|
||||
#desktopNavbar ul li a.arrow-right,
|
||||
@ -145,7 +150,7 @@ body {
|
||||
|
||||
#desktopNavbar li ul {
|
||||
background: var(--darkmode-background) url("../images/bg-dropdown.gif") repeat-y;
|
||||
border: 1px solid var(--darkmode-line-color);
|
||||
border: 1px solid var(--darkmode-line-color);
|
||||
left: -999em;
|
||||
margin-top: -6px;
|
||||
position: absolute;
|
||||
@ -251,7 +256,7 @@ li.divider {
|
||||
|
||||
#desktopFooter {
|
||||
background: var(--darkmode-background);
|
||||
font-family: 'Google Sans', -apple-system, 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
||||
font-family: 'Google Sans', -apple-system, 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
||||
font-size: 11px;
|
||||
height: 24px;
|
||||
padding: 6px 8px 0;
|
||||
@ -272,8 +277,8 @@ li.divider {
|
||||
|
||||
.panel {
|
||||
background: var(--darkmode-background);
|
||||
border-bottom: 1px solid var(--darkmode-line-color);
|
||||
color: var(--darkmode-text);
|
||||
border-bottom: 1px solid var(--darkmode-line-color);
|
||||
color: var(--darkmode-text);
|
||||
overflow: auto;
|
||||
position: relative;
|
||||
}
|
||||
@ -285,7 +290,6 @@ li.divider {
|
||||
.panelAlt {
|
||||
background: var(--darkmode-background);
|
||||
}
|
||||
|
||||
.bottomPanel {
|
||||
border-bottom: 0;
|
||||
}
|
||||
@ -367,7 +371,7 @@ li.divider {
|
||||
|
||||
.columnHandle {
|
||||
background: var(--darkmode-line-color) url("../images/handle-icon.gif") center center no-repeat;
|
||||
border: 1px solid var(--darkmode-line-color);
|
||||
border: 1px solid var(--darkmode-line-color);
|
||||
border-bottom: 0;
|
||||
border-top: 0;
|
||||
float: left;
|
||||
|
@ -22,6 +22,7 @@ Required by:
|
||||
background-position: left -70px;
|
||||
overflow: visible;
|
||||
padding: 0 5px 2px 2px;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.tab-menu {
|
||||
@ -45,17 +46,30 @@ Required by:
|
||||
background-position: left 0;
|
||||
}
|
||||
|
||||
.tab-menu .selected img,
|
||||
.tab-menu li:hover img {
|
||||
filter: var(--color-icon-hover);
|
||||
}
|
||||
|
||||
.tab-menu li a {
|
||||
align-items: center;
|
||||
background: url("../images/tabs.gif") repeat-x;
|
||||
background-position: right -35px;
|
||||
border-radius: 6%;
|
||||
color: var(--darkmode-text);
|
||||
display: block;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-weight: normal;
|
||||
gap: 5px;
|
||||
margin-left: 8px;
|
||||
padding: 6px 15px 5px 9px;
|
||||
text-align: center;
|
||||
border: 1px groove var(--darkmode-line-color);
|
||||
border-radius: 6%;
|
||||
}
|
||||
|
||||
.tab-menu li:hover a {
|
||||
background-color: var(--color-background-hover);
|
||||
color: var(--color-text-white);
|
||||
}
|
||||
|
||||
.tab-menu li.selected a {
|
||||
@ -63,6 +77,5 @@ Required by:
|
||||
background-position: right 0;
|
||||
color: #e0e0e0;
|
||||
font-weight: bold;
|
||||
border: 1px solid var(--darkmode-background-alt2);
|
||||
border-radius: 6%;
|
||||
}
|
||||
}
|
@ -26,10 +26,11 @@ Required by:
|
||||
|
||||
.mochaOverlay {
|
||||
background: var(--darkmode-background);
|
||||
border-radius: 5px;
|
||||
height: auto !important; /* also fixes out of block issue */
|
||||
left: 0;
|
||||
position: absolute; /* This is also set in theme.js in order to make theme transitions smoother */
|
||||
top: 0;
|
||||
height: auto !important; /* fixes issues with modal height */
|
||||
}
|
||||
|
||||
/*
|
||||
@ -45,12 +46,15 @@ Required by:
|
||||
|
||||
.mochaTitlebar {
|
||||
background: url("../images/spacer.gif?from=fafafa&to=e5e5e5");
|
||||
border-radius: 5px;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.mochaTitlebar h3 {
|
||||
color: #888;
|
||||
background-size: 16px !important;
|
||||
/* override mocha titlebar logo inline style */
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
line-height: 15px;
|
||||
@ -64,7 +68,7 @@ Required by:
|
||||
|
||||
.mochaToolbarWrapper {
|
||||
background: var(--darkmode-background);
|
||||
border-top: 1px solid var(--darkmode-line-color);
|
||||
border-top: 1px solid var(--darkmode-line-color);
|
||||
height: 29px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
@ -78,12 +82,14 @@ div.mochaToolbarWrapper.bottom {
|
||||
|
||||
.mochaToolbar {
|
||||
border-top: 1px solid var(--darkmode-line-color);
|
||||
height: auto !important;
|
||||
padding-top: 4px;
|
||||
width: 100%; /* For IE */
|
||||
}
|
||||
|
||||
.mochaContentBorder {
|
||||
border-bottom: 1px solid var(--darkmode-line-color);
|
||||
border-top: 1px solid var(--darkmode-line-color);
|
||||
border-top: 1px solid var(--darkmode-line-color);
|
||||
}
|
||||
|
||||
/* Has a fixed height and scrollbars if required. */
|
||||
@ -385,4 +391,4 @@ div.mochaToolbarWrapper.bottom {
|
||||
.windowFrame iframe {
|
||||
/* fix double scroll bar by reducing frame height. !important required. */
|
||||
height: calc(100% - 5px) !important;
|
||||
}
|
||||
}
|
65
private/css/cjratliff.css
Normal file
@ -0,0 +1,65 @@
|
||||
:root {
|
||||
color-scheme: dark;
|
||||
--darkmode-primary: #00d9ff;
|
||||
--darkmode-background: #202020;
|
||||
--darkmode-background-alt: #242424;
|
||||
--darkmode-background-alt2: #4e4e4e;
|
||||
--darkmode-text: #c2c2c2;
|
||||
--darkmode-text-alt: #d3d3d3;
|
||||
--darkmode-line-color: #2F3437;
|
||||
--highlight-color--darkred: #b83739;
|
||||
--highlight-color--red: #ce292c;
|
||||
--highlight-color--orange: #d0822b;
|
||||
--highlight-color--yellow: #fcdd04;
|
||||
--highlight-color--green: #64e67c;
|
||||
--highlight-color--brightgreen: #49ca61;
|
||||
--highlight-color--blue: #9FC8EB;
|
||||
--highlight-color--purple: #DEAFEB;
|
||||
--callout-background-color-dark: #DFDFDC;
|
||||
--calloutred-background-color-dark: #E8D4D8;
|
||||
--calloutorange-background-color-dark: #E8DAC8;
|
||||
--calloutyellow-background-color-dark: #E9E2BF;
|
||||
--calloutgreen-background-color-dark: #CDE6D0;
|
||||
--calloutblue-background-color-dark: #D6E2E6;
|
||||
--calloutpurple-background-color-dark: #E4D5E3;
|
||||
--text-shadow: 0.01em 0.01em 0.03em #727E84;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: .875rem;
|
||||
font-family: "Google Sans", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
font-feature-settings: "kern", "liga", "clig", "calt";
|
||||
}
|
||||
|
||||
/* Text Colors */
|
||||
.highlight-darkred {
|
||||
color: var(--highlight-color--darkred) !important;
|
||||
}
|
||||
|
||||
.highlight-red {
|
||||
color: var(--highlight-color--red) !important;
|
||||
}
|
||||
|
||||
.highlight-orange {
|
||||
color: var(--highlight-color--orange) !important;
|
||||
}
|
||||
|
||||
.highlight-yellow {
|
||||
color: var(--highlight-color--yellow) !important;
|
||||
}
|
||||
|
||||
.highlight-green {
|
||||
color: var(--highlight-color--green) !important;
|
||||
}
|
||||
|
||||
.highlight-brightgreen {
|
||||
color: var(--highlight-color--brightgreen) !important;
|
||||
}
|
||||
|
||||
.highlight-blue {
|
||||
color: var(--highlight-color--blue) !important;
|
||||
}
|
||||
|
||||
.highlight-purple {
|
||||
color: var(--highlight-color--purple) !important;
|
||||
}
|
@ -4,6 +4,9 @@
|
||||
v 0.4
|
||||
|
||||
**************************************************************/
|
||||
.altRowColors tbody tr:nth-child(odd of :not(.invisible)) {
|
||||
background-color: var(--color-background-default);
|
||||
}
|
||||
|
||||
.dynamicTable tbody tr,
|
||||
.dynamicTable tr.nonAlt,
|
||||
@ -52,10 +55,14 @@ tr.dynamicTableHeader {
|
||||
color: var(--darkmode-text);
|
||||
border-right: 1px solid var(--darkmode-line-color);
|
||||
box-sizing: border-box;
|
||||
padding: 4px;
|
||||
padding: 4px 2px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.dynamicTable tr:is(:hover, .selected) img:not(.flags) {
|
||||
filter: var(--color-icon-hover);
|
||||
}
|
||||
|
||||
.dynamicTable td {
|
||||
padding: 0px 4px;
|
||||
white-space: nowrap;
|
||||
@ -83,9 +90,10 @@ tr.dynamicTableHeader {
|
||||
background-image: url("../images/go-down.svg");
|
||||
}
|
||||
|
||||
.dynamicTable td img.flags {
|
||||
height: 1.25em;
|
||||
vertical-align: middle;
|
||||
.dynamicTable span.flags {
|
||||
background: left center / contain no-repeat;
|
||||
margin-left: 2px;
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
.dynamicTableFixedHeaderDiv {
|
||||
|
@ -1,100 +0,0 @@
|
||||
/* GoogleSans - Regular */
|
||||
@font-face {
|
||||
font-family: "Google Sans";
|
||||
font-display: swap;
|
||||
src: url(../fonts/GoogleSans/GoogleSans-Regular.woff) format("woff"), url(../fonts/GoogleSans/GoogleSans-Regular.ttf) format("truetype");
|
||||
font-weight: 400;
|
||||
font-style: normal
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Google Sans";
|
||||
font-display: swap;
|
||||
src: url(../fonts/GoogleSans/GoogleSans-Italic.woff) format("woff"), url(../fonts/GoogleSans/GoogleSans-Italic.ttf) format("truetype");
|
||||
font-weight: 400;
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
/* GoogleSans - Medium */
|
||||
@font-face {
|
||||
font-family: "Google Sans";
|
||||
font-display: swap;
|
||||
src: url(../fonts/GoogleSans/GoogleSans-Medium.woff) format("woff"), url(../fonts/GoogleSans/GoogleSans-Medium.ttf) format("truetype");
|
||||
font-weight: 600;
|
||||
font-style: normal
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Google Sans";
|
||||
font-display: swap;
|
||||
src: url(../fonts/GoogleSans/GoogleSans-MediumItalic.woff) format("woff"), url(../fonts/GoogleSans/GoogleSans-MediumItalic.ttf) format("truetype");
|
||||
font-weight: 600;
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
/* GoogleSans - Bold */
|
||||
@font-face {
|
||||
font-family: "Google Sans";
|
||||
font-display: swap;
|
||||
src: url(../fonts/GoogleSans/GoogleSans-Bold.woff) format("woff"), url(../fonts/GoogleSans/GoogleSans-Bold.ttf) format("truetype");
|
||||
font-weight: bold;
|
||||
font-style: normal
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Google Sans";
|
||||
font-display: swap;
|
||||
src: url(../fonts/GoogleSans/GoogleSans-BoldItalic.woff) format("woff"), url(../fonts/GoogleSans/GoogleSans-BoldItalic.ttf) format("truetype");
|
||||
font-weight: bold;
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
/* GoogleSans - Black */
|
||||
@font-face {
|
||||
font-family: "Google Sans";
|
||||
font-display: swap;
|
||||
src: url(../fonts/GoogleSans/GoogleSans-Black.woff) format("woff"), url(../fonts/GoogleSans/GoogleSans-Black.ttf) format("truetype");
|
||||
font-weight: 900;
|
||||
font-style: normal
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Google Sans";
|
||||
font-display: swap;
|
||||
src: url(../fonts/GoogleSans/GoogleSans-BlackItalic.woff) format("woff"), url(../fonts/GoogleSans/GoogleSans-BlackItalic.ttf) format("truetype");
|
||||
font-weight: 900;
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
|
||||
/* Google Sans Display */
|
||||
@font-face {
|
||||
font-family: "Google Sans Display";
|
||||
font-display: swap;
|
||||
src: url(../fonts/GoogleSansDisplay/GoogleSansDisplay-Regular.woff) format("woff"), url(../fonts/GoogleSansDisplay/GoogleSansDisplay-Regular.ttf) format("truetype");
|
||||
font-style: normal
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Google Sans Display";
|
||||
font-display: swap;
|
||||
src: url(../fonts/GoogleSansDisplay/GoogleSansDisplay-Italic.woff) format("woff"), url(../fonts/GoogleSansDisplay/GoogleSansDisplay-Italic.ttf) format("truetype");
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
/* GoogleSansDisplay - Bold */
|
||||
@font-face {
|
||||
font-family: "Google Sans Display";
|
||||
font-display: swap;
|
||||
src: url(../fonts/GoogleSansDisplay/GoogleSansDisplay-Bold.woff) format("woff"), url(../fonts/GoogleSansDisplay/GoogleSansDisplay-Bold.ttf) format("truetype");
|
||||
font-weight: bold;
|
||||
font-style: normal
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Google Sans Display";
|
||||
font-display: swap;
|
||||
src: url(../fonts/GoogleSansDisplay/GoogleSansDisplay-BoldItalic.woff) format("woff"), url(../fonts/GoogleSansDisplay/GoogleSansDisplay-BoldItalic.ttf) format("truetype");
|
||||
font-weight: bold;
|
||||
font-style: italic
|
||||
}
|
@ -5,4 +5,4 @@
|
||||
#noscript {
|
||||
color: #f00;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
@ -1,49 +0,0 @@
|
||||
/* Adaptive color palette */
|
||||
|
||||
/* Default rules */
|
||||
* {
|
||||
--color-accent-blue: hsl(210deg 65% 55%);
|
||||
--color-text-blue: hsl(210deg 100% 55%);
|
||||
--color-text-orange: hsl(26deg 100% 45%);
|
||||
--color-text-red: hsl(0deg 100% 65%);
|
||||
--color-text-green: hsl(110deg 94% 27%);
|
||||
--color-text-white: hsl(0deg 0% 100%);
|
||||
--color-text-disabled: hsl(0deg 0% 60%);
|
||||
--color-text-default: hsl(0deg 0% 33%);
|
||||
--color-background-blue: hsl(210deg 65% 55%);
|
||||
--color-background-popup: hsl(0deg 0% 100%);
|
||||
--color-background-default: hsl(0deg 0% 94%);
|
||||
--color-background-hover: hsl(26deg 80% 60%);
|
||||
--color-border-blue: hsl(210deg 42% 48%);
|
||||
--color-border-default: hsl(0deg 0% 85%);
|
||||
}
|
||||
|
||||
:root {
|
||||
color-scheme: light dark;
|
||||
}
|
||||
|
||||
/* Light corrections */
|
||||
@media (prefers-color-scheme: light) {
|
||||
:root {
|
||||
color-scheme: light;
|
||||
}
|
||||
}
|
||||
|
||||
/* Dark corrections */
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
* {
|
||||
--color-accent-blue: hsl(210deg 42% 48%);
|
||||
--color-text-blue: hsl(210deg 88.1% 73.5%);
|
||||
--color-text-orange: hsl(26deg 65% 70%);
|
||||
--color-text-default: hsl(0deg 0% 90%);
|
||||
--color-background-blue: hsl(210deg 42% 48%);
|
||||
--color-background-popup: hsl(0deg 0% 20%);
|
||||
--color-background-default: hsl(0deg 0% 25%);
|
||||
--color-background-hover: hsl(26deg 50% 55%);
|
||||
--color-border-default: hsl(0deg 0% 33%);
|
||||
}
|
||||
}
|
@ -6,6 +6,36 @@ a img,
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* Forms */
|
||||
|
||||
input[type="text"],
|
||||
input[type="number"],
|
||||
input[type="password"],
|
||||
input[type="button"],
|
||||
button,
|
||||
select {
|
||||
border: 1px solid var(--color-border-default);
|
||||
border-radius: 3px;
|
||||
color: var(--color-text-default);
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
accent-color: var(--color-accent-blue);
|
||||
}
|
||||
|
||||
input[type="button"],
|
||||
input[type="submit"],
|
||||
button {
|
||||
cursor: pointer;
|
||||
padding: 4px 16px;
|
||||
}
|
||||
|
||||
button:disabled {
|
||||
cursor: initial;
|
||||
}
|
||||
|
||||
/*table { border-collapse: collapse; border-spacing: 0; }*/
|
||||
|
||||
:focus {
|
||||
@ -149,8 +179,9 @@ h2 {
|
||||
padding: 6px 0;
|
||||
}
|
||||
|
||||
#error_div {
|
||||
color: #f00;
|
||||
#error_div,
|
||||
#rename_error {
|
||||
color: var(--highlight-color--red);
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
@ -161,7 +192,7 @@ h4 {
|
||||
}
|
||||
|
||||
a {
|
||||
color: #e60;
|
||||
color: var(--highlight-color--orange);
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
}
|
||||
@ -190,6 +221,13 @@ dd {
|
||||
padding: 0 0 9px;
|
||||
}
|
||||
|
||||
/* Forms */
|
||||
|
||||
fieldset {
|
||||
border: 1px solid var(--color-border-default);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
/* Code */
|
||||
|
||||
pre {
|
||||
@ -228,14 +266,22 @@ hr {
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
#Filters {
|
||||
overflow-x: hidden !important;
|
||||
/* override for default mocha inline style */
|
||||
}
|
||||
|
||||
#Filters .filterTitle {
|
||||
padding-left: .2rem;
|
||||
}
|
||||
|
||||
#Filters ul {
|
||||
list-style-type: none;
|
||||
margin-left: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#Filters ul li {
|
||||
margin-left: -16px;
|
||||
}
|
||||
|
||||
#Filters .filterTitle img,
|
||||
#Filters ul img {
|
||||
height: 16px;
|
||||
padding: 2px 4px;
|
||||
@ -243,6 +289,10 @@ hr {
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
#Filters ul li button.categoryToggle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.selectedFilter {
|
||||
background-color: var(--darkmode-text-alt);
|
||||
color: var(--darkmode-background);
|
||||
@ -291,6 +341,18 @@ a.propButton img {
|
||||
.contextMenu li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.contextMenu li.disabled {
|
||||
background-color: transparent;
|
||||
cursor: default;
|
||||
filter: grayscale(1);
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.contextMenu li.disabled a {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.contextMenu li a {
|
||||
@ -362,6 +424,15 @@ a.propButton img {
|
||||
top: 3px;
|
||||
}
|
||||
|
||||
#contextCategoryList img {
|
||||
border: 1px solid transparent;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
#contextCategoryList img.highlightedCategoryIcon {
|
||||
background-color: hsl(213deg 94% 86%);
|
||||
}
|
||||
|
||||
/* Sliders */
|
||||
|
||||
.slider {
|
||||
@ -430,10 +501,6 @@ a.propButton img {
|
||||
}
|
||||
|
||||
#mochaToolbar .divider {
|
||||
/* background-image: url("../images/toolbox-divider.gif");
|
||||
background-position: left center;
|
||||
background-repeat: no-repeat;
|
||||
*/
|
||||
border-left: 1px solid var(--darkmode-line-color);
|
||||
padding-left: 14px;
|
||||
padding-top: 15px;
|
||||
@ -456,6 +523,7 @@ a.propButton img {
|
||||
}
|
||||
|
||||
#torrentsFilterInput {
|
||||
background-color: var(--color-background-default);
|
||||
background-image: url("../images/edit-find.svg");
|
||||
background-position: left;
|
||||
background-repeat: no-repeat;
|
||||
@ -464,6 +532,40 @@ a.propButton img {
|
||||
width: 160px;
|
||||
height: 100%;
|
||||
min-height: 20px;
|
||||
|
||||
#torrentsFilterRegexBox {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#torrentsFilterRegexBox+label {
|
||||
background-image: url("../images/regex.svg");
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 1.5em;
|
||||
border: 1px solid var(--color-border-default);
|
||||
border-radius: 4px;
|
||||
display: inline-block;
|
||||
height: 26px;
|
||||
margin-bottom: -9px;
|
||||
width: 26px;
|
||||
}
|
||||
|
||||
#torrentsFilterRegexBox:checked+label {
|
||||
background-color: var(--color-background-default);
|
||||
background-image: url("../images/regex.svg");
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 1.5em;
|
||||
border: 1px solid var(--color-accent-blue);
|
||||
border-radius: 4px;
|
||||
display: inline-block;
|
||||
height: 26px;
|
||||
margin-bottom: -9px;
|
||||
width: 26px;
|
||||
}
|
||||
|
||||
#torrentsFilterSelect {
|
||||
padding: 2px 4px;
|
||||
}
|
||||
|
||||
#torrentFilesFilterToolbar {
|
||||
@ -531,75 +633,99 @@ div.formRow {
|
||||
}
|
||||
|
||||
.filterTitle {
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
font-weight: bold;
|
||||
gap: 4px;
|
||||
overflow: hidden;
|
||||
padding-left: 5px;
|
||||
padding-top: 5px;
|
||||
padding: 4px 0 4px 6px;
|
||||
text-overflow: ellipsis;
|
||||
text-transform: uppercase;
|
||||
user-select: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.filterTitle img {
|
||||
box-sizing: border-box;
|
||||
height: 16px;
|
||||
margin-bottom: -3px;
|
||||
padding: 0 5px;
|
||||
padding: 2px;
|
||||
width: 16px;
|
||||
}
|
||||
.collapsedCategory > ul {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.collapsedCategory .categoryToggle,
|
||||
.filterTitle img.rotate {
|
||||
transform: rotate(270deg);
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
|
||||
ul.filterList * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
ul.filterList {
|
||||
margin: 0 0 0 16px;
|
||||
margin: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
ul.filterList a {
|
||||
color: inherit;
|
||||
display: block;
|
||||
ul.filterList span.link:hover :is(img, button),
|
||||
ul.filterList .selectedFilter > .link :is(img, button) {
|
||||
filter: var(--color-icon-hover);
|
||||
}
|
||||
|
||||
ul.filterList span.link {
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
overflow: hidden;
|
||||
padding: 4px 6px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
ul.filterList span.link:hover {
|
||||
background-color: var(--darkmode-primary);
|
||||
color: var(--color-text-white);
|
||||
}
|
||||
|
||||
span.link :last-child {
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
ul.filterList li:hover {
|
||||
background-color: #eee;
|
||||
span.link :is(img, button) {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
ul.filterList li:hover a {
|
||||
color: var(--darkmode-background);
|
||||
.selectedFilter > span.link {
|
||||
background-color: var(--color-background-blue);
|
||||
color: var(--color-text-white);
|
||||
}
|
||||
|
||||
td.generalLabel {
|
||||
text-align: right;
|
||||
vertical-align: top;
|
||||
white-space: nowrap;
|
||||
width: 1px;
|
||||
.subcategories,
|
||||
.subcategories ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#torrentFilesTableDiv {
|
||||
line-height: 20px;
|
||||
.subcategories .categoryToggle {
|
||||
display: inline-block;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
#torrentTrackersTableDiv,
|
||||
#webseedsTable {
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
.filesTableCollapseIcon {
|
||||
cursor: pointer;
|
||||
height: 15px;
|
||||
margin-bottom: -3px;
|
||||
padding-right: 5px;
|
||||
width: 15px;
|
||||
}
|
||||
|
||||
.filesTableCollapseIcon.rotate {
|
||||
margin-bottom: -1px;
|
||||
transform: rotate(270deg);
|
||||
.categoryToggle {
|
||||
background: url("../images/go-down.svg") center center / 10px no-repeat
|
||||
transparent;
|
||||
border: none;
|
||||
display: none;
|
||||
height: 16px;
|
||||
margin-right: -2px;
|
||||
padding: 2px;
|
||||
transition: transform 0.3s;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
.unselectable {
|
||||
@ -607,7 +733,7 @@ td.generalLabel {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#prop_general {
|
||||
#propGeneral {
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
@ -687,8 +813,27 @@ td.statusBarSeparator {
|
||||
}
|
||||
|
||||
/* Statistics window */
|
||||
.statisticsValue {
|
||||
text-align: right;
|
||||
#statisticspage * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#statisticsContent {
|
||||
& table {
|
||||
background-color: var(--color-background-default);
|
||||
border-radius: 6px;
|
||||
margin-bottom: 6px;
|
||||
padding: 6px 10px;
|
||||
|
||||
& .statisticsValue {
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
& h3 {
|
||||
color: var(--color-text-default);
|
||||
margin-bottom: 1px;
|
||||
padding: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Search tab */
|
||||
@ -726,19 +871,20 @@ td.statusBarSeparator {
|
||||
}
|
||||
|
||||
.red {
|
||||
color: red;
|
||||
color: var(--highlight-color--red);
|
||||
}
|
||||
|
||||
.green {
|
||||
color: green;
|
||||
color: var(--highlight-color--green);
|
||||
}
|
||||
|
||||
.searchPluginsTableRow {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#torrentFilesTableDiv .dynamicTable tr.nonAlt {
|
||||
#torrentFilesTableDiv .dynamicTable tr.nonAlt:hover {
|
||||
background-color: var(--darkmode-background);
|
||||
color: var(--color-text-white);
|
||||
}
|
||||
|
||||
#torrentFilesTableDiv .dynamicTable tr.nonAlt.selected {
|
||||
@ -749,4 +895,74 @@ td.statusBarSeparator {
|
||||
#torrentFilesTableDiv .dynamicTable tr.nonAlt:hover {
|
||||
background-color: #ee6600;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Modals */
|
||||
|
||||
.modalDialog * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.modalDialog .mochaContent.pad {
|
||||
display: flex !important;
|
||||
/* override for default mocha inline style */
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.modalDialog .mochaContent.pad> :last-child {
|
||||
align-self: flex-end;
|
||||
}
|
||||
|
||||
.modalDialog .mochaContent.pad> :first-child {
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
#rememberBtn {
|
||||
background: url("../images/object-locked.svg") center center / 24px no-repeat var(--color-background-popup);
|
||||
height: 38px;
|
||||
padding: 4px 6px;
|
||||
width: 38px;
|
||||
}
|
||||
|
||||
#rememberBtn.disabled {
|
||||
filter: grayscale(100%);
|
||||
}
|
||||
|
||||
#deleteFromDiskCB {
|
||||
margin: 0 2px 0 0;
|
||||
vertical-align: -1px;
|
||||
}
|
||||
|
||||
.dialogMessage {
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
.genericConfirmGrid,
|
||||
.confirmDeletionGrid {
|
||||
align-items: center;
|
||||
display: grid;
|
||||
gap: 3px 4px;
|
||||
grid-template-columns: max-content 1fr;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.confirmGridItem,
|
||||
.deletionGridItem {
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.deletionGridItem:first-child {
|
||||
justify-self: center;
|
||||
}
|
||||
|
||||
.confirmWarning,
|
||||
.confirmDialogWarning {
|
||||
background: url("../images/dialog-warning.svg") center center no-repeat;
|
||||
height: 38px;
|
||||
width: 38px;
|
||||
}
|
||||
|
||||
.confirmWarning {
|
||||
background-image: url("../images/help-about.svg");
|
||||
}
|
@ -1,5 +1,3 @@
|
||||
@import url("palette.css");
|
||||
|
||||
.hidden-search {
|
||||
display: none !important;
|
||||
}
|
||||
@ -21,7 +19,8 @@ li[data-parent].open:not(.hidden-search) {
|
||||
font-size: 11px;
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
z-index: 1000; /*Don't change*/
|
||||
z-index: 1000;
|
||||
/*Don't change*/
|
||||
}
|
||||
|
||||
.vsb-js-search-zone {
|
||||
@ -29,7 +28,8 @@ li[data-parent].open:not(.hidden-search) {
|
||||
padding: 2px;
|
||||
position: absolute;
|
||||
width: 80%;
|
||||
z-index: 1001; /*Don't change*/
|
||||
z-index: 1001;
|
||||
/*Don't change*/
|
||||
}
|
||||
|
||||
.vsb-js-search-zone input {
|
||||
@ -43,7 +43,8 @@ li[data-parent].open:not(.hidden-search) {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
vertical-align: top; /*Don't change*/
|
||||
vertical-align: top;
|
||||
/*Don't change*/
|
||||
}
|
||||
|
||||
.vsb-menu ul {
|
||||
@ -228,4 +229,4 @@ li.short {
|
||||
|
||||
li[data-parent] {
|
||||
padding-left: 50px !important;
|
||||
}
|
||||
}
|
@ -2,196 +2,194 @@
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta charset="UTF-8">
|
||||
<title>Add Torrent Links</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/Core.css?v=${CACHEID}" />
|
||||
<link rel="stylesheet" href="css/Window.css?v=${CACHEID}" type="text/css" />
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css">
|
||||
<link rel="stylesheet" href="css/Window.css?v=${CACHEID}" type="text/css">
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/download.js?v=${CACHEID}"></script>
|
||||
<script src="scripts/misc.js?locale=${LANG}&v=${CACHEID}"></script>
|
||||
<script src="scripts/pathAutofill.js?v=${CACHEID}"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<iframe id="download_frame" name="download_frame" class="invisible" src="about:blank"></iframe>
|
||||
<iframe id="download_frame" name="download_frame" class="invisible" title="" src="about:blank"></iframe>
|
||||
<form action="api/v2/torrents/add" enctype="multipart/form-data" method="post" id="downloadForm" style="text-align: center;" target="download_frame" autocorrect="off" autocapitalize="none">
|
||||
<div style="text-align: center;">
|
||||
<br />
|
||||
<h2 class="vcenter">Download Torrents from their URLs or Magnet links</h2>
|
||||
<textarea id="urls" rows="8" name="urls"></textarea>
|
||||
<p style="font-size: 90%;">Only one link per line</p>
|
||||
<fieldset class="settings" style="border: 0; text-align: left; margin-top: 4px;">
|
||||
<br>
|
||||
<h2><label for="urls">Add torrent links</label></h2>
|
||||
<textarea id="urls" rows="10" name="urls"></textarea>
|
||||
<p><i>One link per line (HTTP links, Magnet links and info-hashes are supported)</i></p>
|
||||
<fieldset class="settings" style="border: 0; text-align: left; margin-top: 6px;">
|
||||
<legend>Torrent options</legend>
|
||||
<table style="margin: auto;">
|
||||
<tr>
|
||||
<td>
|
||||
<label for="autoTMM">Torrent Management Mode:</label>
|
||||
</td>
|
||||
<td>
|
||||
<select id="autoTMM" name="autoTMM" onchange="qBittorrent.Download.changeTMM(this)">
|
||||
<option value="false">Manual</option>
|
||||
<option selected value="true">Automatic</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="savepath">Save files to location:</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" id="savepath" name="savepath" style="width: 16em;" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="cookie">Cookie:</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" id="cookie" name="cookie" style="width: 16em;" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="rename">Rename torrent</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" id="rename" name="rename" style="width: 16em;" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="category">Category:</label>
|
||||
</td>
|
||||
<td>
|
||||
<div class="select-watched-folder-editable">
|
||||
<select id="categorySelect" onchange="qBittorrent.Download.changeCategorySelect(this)">
|
||||
<option selected value="\other"></option>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="autoTMM">Torrent Management Mode:</label>
|
||||
</td>
|
||||
<td>
|
||||
<select id="autoTMM" name="autoTMM" onchange="qBittorrent.Download.changeTMM(this)">
|
||||
<option selected value="false">Manual</option>
|
||||
<option value="true">Automatic</option>
|
||||
</select>
|
||||
<input name="category" type="text" />
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="startTorrent">Start torrent</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="hidden" id="startTorrentHidden" name="paused" />
|
||||
<input type="checkbox" id="startTorrent" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="addToTopOfQueue">Add to top of queue</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="checkbox" id="addToTopOfQueue" name="addToTopOfQueue" value="true" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="stopCondition">Stop condition:</label>
|
||||
</td>
|
||||
<td>
|
||||
<select id="stopCondition" name="stopCondition">
|
||||
<option selected value="None">None</option>
|
||||
<option value="MetadataReceived">Metadata received</option>
|
||||
<option value="FilesChecked">Files checked</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="skip_checking">Skip hash check</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="checkbox" id="skip_checking" name="skip_checking" value="true" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="contentLayout">Content layout:</label>
|
||||
</td>
|
||||
<td>
|
||||
<select id="contentLayout" name="contentLayout">
|
||||
<option selected value="Original">Original</option>
|
||||
<option value="Subfolder">Create subfolder</option>
|
||||
<option value="NoSubfolder">Don't create subfolder</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="sequentialDownload">Download in sequential order</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="checkbox" id="sequentialDownload" name="sequentialDownload" value="true" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="firstLastPiecePrio">Download first and last pieces first</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="checkbox" id="firstLastPiecePrio" name="firstLastPiecePrio" value="true" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="dlLimitText">Limit download rate</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="hidden" id="dlLimitHidden" name="dlLimit" />
|
||||
<input type="text" id="dlLimitText" style="width: 16em;" placeholder="KiB/s" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="upLimitText">Limit upload rate</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="hidden" id="upLimitHidden" name="upLimit" />
|
||||
<input type="text" id="upLimitText" style="width: 16em;" placeholder="KiB/s" />
|
||||
</td>
|
||||
</tr>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="savepath">Save files to location:</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" id="savepath" name="savepath" class="pathDirectory" style="width: 16em;">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="rename">Rename torrent</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" id="rename" name="rename" style="width: 16em;">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label id="categoryLabel" for="categorySelect">Category:</label>
|
||||
</td>
|
||||
<td>
|
||||
<div class="select-watched-folder-editable">
|
||||
<select id="categorySelect" onchange="qBittorrent.Download.changeCategorySelect(this)">
|
||||
<option selected value="\other"></option>
|
||||
</select>
|
||||
<input type="text" name="category" aria-labelledby="categoryLabel">
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="startTorrent">Start torrent</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="hidden" id="startTorrentHidden" name="stopped">
|
||||
<input type="checkbox" id="startTorrent">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="addToTopOfQueue">Add to top of queue</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="checkbox" id="addToTopOfQueue" name="addToTopOfQueue" value="true">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="stopCondition">Stop condition:</label>
|
||||
</td>
|
||||
<td>
|
||||
<select id="stopCondition" name="stopCondition">
|
||||
<option selected value="None">None</option>
|
||||
<option value="MetadataReceived">Metadata received</option>
|
||||
<option value="FilesChecked">Files checked</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="skip_checking">Skip hash check</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="checkbox" id="skip_checking" name="skip_checking" value="true">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="contentLayout">Content layout:</label>
|
||||
</td>
|
||||
<td>
|
||||
<select id="contentLayout" name="contentLayout">
|
||||
<option selected value="Original">Original</option>
|
||||
<option value="Subfolder">Create subfolder</option>
|
||||
<option value="NoSubfolder">Don't create subfolder</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="sequentialDownload">Download in sequential order</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="checkbox" id="sequentialDownload" name="sequentialDownload" value="true">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="firstLastPiecePrio">Download first and last pieces first</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="checkbox" id="firstLastPiecePrio" name="firstLastPiecePrio" value="true">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="dlLimitText">Limit download rate</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="hidden" id="dlLimitHidden" name="dlLimit">
|
||||
<input type="text" id="dlLimitText" style="width: 16em;" placeholder="KiB/s">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="upLimitText">Limit upload rate</label>
|
||||
</td>
|
||||
<td>
|
||||
<input type="hidden" id="upLimitHidden" name="upLimit">
|
||||
<input type="text" id="upLimitText" style="width: 16em;" placeholder="KiB/s">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div id="submitbutton" style="margin-top: 25px; text-align: center;">
|
||||
<button class="download" type="submit" id="submitButton"></button>
|
||||
<div id="submitbutton" style="margin-top: 12px; text-align: center;">
|
||||
<button type="submit" id="submitButton">Download</button>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
</form>
|
||||
<script>
|
||||
'use strict';
|
||||
<div id="download_spinner" class="mochaSpinner"></div>
|
||||
|
||||
const encodedUrls = new URI().getData('urls');
|
||||
<script>
|
||||
"use strict";
|
||||
|
||||
const encodedUrls = new URI().getData("urls");
|
||||
if (encodedUrls) {
|
||||
const urls = encodedUrls.split('|').map(function(url) {
|
||||
const urls = encodedUrls.split("|").map((url) => {
|
||||
return decodeURIComponent(url);
|
||||
});
|
||||
|
||||
if (urls.length)
|
||||
$('urls').set('value', urls.join("\n"));
|
||||
$("urls").value = urls.join("\n");
|
||||
}
|
||||
|
||||
let submitted = false;
|
||||
|
||||
$('downloadForm').addEventListener("submit", function() {
|
||||
$('startTorrentHidden').value = $('startTorrent').checked ? 'false' : 'true';
|
||||
$("downloadForm").addEventListener("submit", () => {
|
||||
$("startTorrentHidden").value = $("startTorrent").checked ? "false" : "true";
|
||||
|
||||
$('dlLimitHidden').value = $('dlLimitText').value.toInt() * 1024;
|
||||
$('upLimitHidden').value = $('upLimitText').value.toInt() * 1024;
|
||||
$("dlLimitHidden").value = $("dlLimitText").value.toInt() * 1024;
|
||||
$("upLimitHidden").value = $("upLimitText").value.toInt() * 1024;
|
||||
|
||||
$('download_spinner').style.display = "block";
|
||||
$("download_spinner").style.display = "block";
|
||||
submitted = true;
|
||||
});
|
||||
|
||||
$('download_frame').addEventListener("load", function() {
|
||||
$("download_frame").addEventListener("load", () => {
|
||||
if (submitted)
|
||||
window.parent.closeWindows();
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
});
|
||||
|
||||
window.qBittorrent.pathAutofill.attachPathAutofill();
|
||||
</script>
|
||||
<div id="download_spinner" class="mochaSpinner"></div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -2,10 +2,9 @@
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta charset="UTF-8">
|
||||
<title>Torrent Download Speed Limiting</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/Core.css?v=${CACHEID}" />
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css">
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/mocha.min.js"></script>
|
||||
@ -15,74 +14,76 @@
|
||||
<body>
|
||||
<div style="width: 100%; text-align: center; margin: 0 auto; overflow: hidden">
|
||||
<div id="dllimitSlider" class="slider">
|
||||
<div id="dllimitUpdate" class="update">Download limit: <input id="dllimitUpdatevalue" size="6" placeholder="∞" style="text-align: center;"> <span id="dlLimitUnit">KiB/s</span></div>
|
||||
<div id="dllimitUpdate" class="update">
|
||||
<label for="dllimitUpdatevalue">Download limit:</label>
|
||||
<input type="text" id="dllimitUpdatevalue" size="6" placeholder="∞" style="text-align: center;">
|
||||
<span id="dlLimitUnit">KiB/s</span>
|
||||
</div>
|
||||
<div class="sliderWrapper">
|
||||
<div id="dllimitSliderknob" class="sliderknob"></div>
|
||||
<div id="dllimitSliderarea" class="sliderarea"></div>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
||||
const hashes = new URI().getData('hashes').split('|');
|
||||
const setDlLimit = function() {
|
||||
const limit = $("dllimitUpdatevalue").value.toInt() * 1024;
|
||||
if (hashes[0] == "global") {
|
||||
new Request({
|
||||
url: 'api/v2/transfer/setDownloadLimit',
|
||||
method: 'post',
|
||||
data: {
|
||||
'limit': limit
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.updateMainData();
|
||||
window.parent.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
else {
|
||||
new Request({
|
||||
url: 'api/v2/torrents/setDownloadLimit',
|
||||
method: 'post',
|
||||
data: {
|
||||
'hashes': hashes.join('|'),
|
||||
'limit': limit
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<input class="button" type="button" id="applyButton" value="Apply" onclick="setDlLimit()" />
|
||||
<input type="button" id="applyButton" value="Apply" onclick="setDlLimit()">
|
||||
</div>
|
||||
|
||||
<script>
|
||||
"use strict";
|
||||
|
||||
const hashes = new URI().getData("hashes").split("|");
|
||||
const setDlLimit = function() {
|
||||
const limit = $("dllimitUpdatevalue").value.toInt() * 1024;
|
||||
if (hashes[0] === "global") {
|
||||
new Request({
|
||||
url: "api/v2/transfer/setDownloadLimit",
|
||||
method: "post",
|
||||
data: {
|
||||
"limit": limit
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.updateMainData();
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
else {
|
||||
new Request({
|
||||
url: "api/v2/torrents/setDownloadLimit",
|
||||
method: "post",
|
||||
data: {
|
||||
"hashes": hashes.join("|"),
|
||||
"limit": limit
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
};
|
||||
|
||||
new Keyboard({
|
||||
defaultEventType: 'keydown',
|
||||
defaultEventType: "keydown",
|
||||
events: {
|
||||
'Enter': function(event) {
|
||||
$('applyButton').click();
|
||||
"Enter": function(event) {
|
||||
$("applyButton").click();
|
||||
event.preventDefault();
|
||||
},
|
||||
'Escape': function(event) {
|
||||
window.parent.closeWindows();
|
||||
"Escape": function(event) {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
event.preventDefault();
|
||||
},
|
||||
'Esc': function(event) {
|
||||
window.parent.closeWindows();
|
||||
"Esc": function(event) {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
event.preventDefault();
|
||||
}
|
||||
}
|
||||
}).activate();
|
||||
|
||||
$('dllimitUpdatevalue').focus();
|
||||
$("dllimitUpdatevalue").focus();
|
||||
|
||||
MochaUI.addDlLimitSlider(hashes);
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
91
private/editfeedurl.html
Normal file
@ -0,0 +1,91 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Please type a RSS feed URL</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css">
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/misc.js?locale=${LANG}&v=${CACHEID}"></script>
|
||||
<script>
|
||||
"use strict";
|
||||
|
||||
new Keyboard({
|
||||
defaultEventType: "keydown",
|
||||
events: {
|
||||
"Enter": (event) => {
|
||||
event.preventDefault();
|
||||
$("submitButton").click();
|
||||
},
|
||||
"Escape": (event) => {
|
||||
event.preventDefault();
|
||||
window.parent.qBittorrent.Client.closeWindow("editFeedURL");
|
||||
},
|
||||
"Esc": (event) => {
|
||||
event.preventDefault();
|
||||
window.parent.qBittorrent.Client.closeWindow("editFeedURL");
|
||||
}
|
||||
}
|
||||
}).activate();
|
||||
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
const currentUrl = new URI().getData("url");
|
||||
|
||||
$("url").value = currentUrl;
|
||||
$("url").focus();
|
||||
$("url").setSelectionRange(0, currentUrl.length);
|
||||
|
||||
$("submitButton").addEventListener("click", (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
// check field
|
||||
const newUrl = $("url").value.trim();
|
||||
if (newUrl === "") {
|
||||
alert("URL cannot be empty");
|
||||
return;
|
||||
}
|
||||
|
||||
if (newUrl === currentUrl) {
|
||||
alert("URL is unchanged");
|
||||
return;
|
||||
}
|
||||
|
||||
$("submitButton").disabled = true;
|
||||
|
||||
new Request({
|
||||
url: "api/v2/rss/setFeedURL",
|
||||
method: "post",
|
||||
data: {
|
||||
path: new URI().getData("path"),
|
||||
url: newUrl
|
||||
},
|
||||
onSuccess: (response) => {
|
||||
window.parent.qBittorrent.Rss.updateRssFeedList();
|
||||
window.parent.qBittorrent.Client.closeWindow("editFeedURL");
|
||||
},
|
||||
onFailure: (response) => {
|
||||
if (response.status === 409)
|
||||
alert(response.responseText);
|
||||
else
|
||||
alert("Unable to update URL");
|
||||
$("submitButton").disabled = false;
|
||||
}
|
||||
}).send();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<label for="url" style="font-weight: bold;">Feed URL:</label>
|
||||
<input type="text" id="url" style="width: 320px;">
|
||||
<div style="text-align: center; padding-top: 10px;">
|
||||
<input type="button" value="Save" id="submitButton">
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -2,54 +2,55 @@
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta charset="UTF-8">
|
||||
<title>Tracker editing</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/Core.css?v=${CACHEID}" />
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css">
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script>
|
||||
'use strict';
|
||||
"use strict";
|
||||
|
||||
window.addEvent('domready', function() {
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
new Keyboard({
|
||||
defaultEventType: 'keydown',
|
||||
defaultEventType: "keydown",
|
||||
events: {
|
||||
'Enter': function(event) {
|
||||
$('editTrackerButton').click();
|
||||
"Enter": function(event) {
|
||||
$("editTrackerButton").click();
|
||||
event.preventDefault();
|
||||
},
|
||||
'Escape': function(event) {
|
||||
window.parent.closeWindows();
|
||||
"Escape": function(event) {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
event.preventDefault();
|
||||
},
|
||||
'Esc': function(event) {
|
||||
window.parent.closeWindows();
|
||||
"Esc": function(event) {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
event.preventDefault();
|
||||
}
|
||||
}
|
||||
}).activate();
|
||||
|
||||
const currentUrl = new URI().getData('url');
|
||||
const currentUrl = new URI().getData("url");
|
||||
if (!currentUrl)
|
||||
return false;
|
||||
return;
|
||||
|
||||
$('trackerUrl').value = currentUrl;
|
||||
$('trackerUrl').focus();
|
||||
$("trackerUrl").value = currentUrl;
|
||||
$("trackerUrl").focus();
|
||||
|
||||
$('editTrackerButton').addEvent('click', function(e) {
|
||||
new Event(e).stop();
|
||||
const hash = new URI().getData('hash');
|
||||
$("editTrackerButton").addEventListener("click", (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
const hash = new URI().getData("hash");
|
||||
new Request({
|
||||
url: 'api/v2/torrents/editTracker',
|
||||
method: 'post',
|
||||
url: "api/v2/torrents/editTracker",
|
||||
method: "post",
|
||||
data: {
|
||||
hash: hash,
|
||||
origUrl: currentUrl,
|
||||
newUrl: $('trackerUrl').value
|
||||
newUrl: $("trackerUrl").value
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.closeWindows();
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
});
|
||||
@ -59,13 +60,13 @@
|
||||
|
||||
<body>
|
||||
<div style="text-align: center;">
|
||||
<br />
|
||||
<h2 class="vcenter">Tracker URL:</h2>
|
||||
<br>
|
||||
<label for="trackerUrl">Tracker URL:</label>
|
||||
<div style="text-align: center; padding-top: 10px;">
|
||||
<input id="trackerUrl" style="width: 90%;" />
|
||||
<input type="text" id="trackerUrl" style="width: 90%;">
|
||||
</div>
|
||||
<br />
|
||||
<input class="button" type="button" value="Edit" id="editTrackerButton" />
|
||||
<br>
|
||||
<input type="button" value="Edit" id="editTrackerButton">
|
||||
</div>
|
||||
</body>
|
||||
|
||||
|
68
private/editwebseed.html
Normal file
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="${LANG}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Edit web seed</title>
|
||||
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css">
|
||||
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
||||
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
||||
<script>
|
||||
"use strict";
|
||||
|
||||
window.addEventListener("DOMContentLoaded", () => {
|
||||
new Keyboard({
|
||||
defaultEventType: "keydown",
|
||||
events: {
|
||||
"Enter": function(event) {
|
||||
$("editWebSeedButton").click();
|
||||
event.preventDefault();
|
||||
},
|
||||
"Escape": function(event) {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
event.preventDefault();
|
||||
},
|
||||
"Esc": function(event) {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
event.preventDefault();
|
||||
}
|
||||
}
|
||||
}).activate();
|
||||
|
||||
const origUrl = new URI().getData("url");
|
||||
$("url").value = decodeURIComponent(origUrl);
|
||||
$("url").focus();
|
||||
|
||||
$("editWebSeedButton").addEvent("click", (e) => {
|
||||
e.stopPropagation();
|
||||
const hash = new URI().getData("hash");
|
||||
new Request({
|
||||
url: "api/v2/torrents/editWebSeed",
|
||||
method: "post",
|
||||
data: {
|
||||
hash: hash,
|
||||
origUrl: origUrl,
|
||||
newUrl: encodeURIComponent($("url").value.trim()),
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div style="text-align: center;">
|
||||
<br>
|
||||
<label for="url">Web seed URL:</label>
|
||||
<div style="text-align: center; padding-top: 10px;">
|
||||
<input type="text" id="url" style="width: 90%;">
|
||||
</div>
|
||||
<br>
|
||||
<input type="button" value="Edit" id="editWebSeedButton">
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#733737" d="M29.6 24.2c0 .6-.2 1.1-.6 1.6l-3.1 3.1c-.4.4-.9.6-1.6.6-.6 0-1.1-.2-1.6-.6L16 22.1l-6.7 6.7c-.4.4-.9.6-1.6.6-.6 0-1.1-.2-1.6-.6L3 25.7c-.4-.4-.6-.9-.6-1.6s.2-1.1.6-1.6l6.7-6.7-6.6-6.6c-.5-.4-.7-1-.7-1.6 0-.6.2-1.1.6-1.6l3.2-3c.4-.4.9-.6 1.6-.6.6 0 1.1.2 1.6.6L16 9.7 22.7 3c.4-.4.9-.6 1.6-.6.6 0 1.1.2 1.6.6L29 6.1c.4.4.6.9.6 1.6 0 .6-.2 1.1-.6 1.6L22.3 16l6.7 6.7c.4.4.6.9.6 1.5z"/>
|
||||
</svg>
|
||||
<path fill="#733737"
|
||||
d="M29.6 24.2c0 .6-.2 1.1-.6 1.6l-3.1 3.1c-.4.4-.9.6-1.6.6-.6 0-1.1-.2-1.6-.6L16 22.1l-6.7 6.7c-.4.4-.9.6-1.6.6-.6 0-1.1-.2-1.6-.6L3 25.7c-.4-.4-.6-.9-.6-1.6s.2-1.1.6-1.6l6.7-6.7-6.6-6.6c-.5-.4-.7-1-.7-1.6 0-.6.2-1.1.6-1.6l3.2-3c.4-.4.9-.6 1.6-.6.6 0 1.1.2 1.6.6L16 9.7 22.7 3c.4-.4.9-.6 1.6-.6.6 0 1.1.2 1.6.6L29 6.1c.4.4.6.9.6 1.6 0 .6-.2 1.1-.6 1.6L22.3 16l6.7 6.7c.4.4.6.9.6 1.5z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 478 B After Width: | Height: | Size: 482 B |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-5 -5 42 42">
|
||||
<path fill="#D1954E" d="M30.2 28.8c0 .4-.1.7-.4.9-.2.3-.6.4-.9.4H26c-.3 0-.6-.1-.9-.4-.2-.2-.4-.5-.4-.9-.2-2.9-.8-5.6-2-8.2-1.2-2.6-2.8-4.9-4.7-6.8-1.9-1.9-4.2-3.5-6.8-4.7-2.5-1-5.3-1.7-8.2-1.8-.3 0-.6-.1-.9-.4-.2-.3-.3-.6-.3-.9V3.1c0-.4.1-.7.4-.9.2-.2.5-.4.9-.4h.1c3.5.2 6.8 1 10.1 2.4 3.2 1.4 6.1 3.4 8.6 5.9 2.5 2.5 4.5 5.4 5.9 8.6 1.4 3.2 2.2 6.6 2.4 10.1zm-10.3 0c0 .4-.1.7-.3 1-.2.3-.6.4-.9.4H16c-.3 0-.6-.1-.9-.3-.2-.2-.4-.5-.4-.8-.3-3.1-1.5-5.7-3.7-7.9s-4.9-3.5-8-3.8c-.3 0-.6-.2-.8-.4-.2-.2-.3-.5-.3-.9v-2.7c0-.4.1-.7.4-.9.2-.2.5-.3.9-.3h.1c2.2.2 4.2.7 6.2 1.6s3.7 2.1 5.2 3.7c1.5 1.5 2.8 3.3 3.7 5.2.8 1.9 1.3 3.9 1.5 6.1zM8.4 23.6c.8.8 1.1 1.7 1.1 2.7 0 1.1-.4 2-1.1 2.7-.8.8-1.7 1.1-2.7 1.1-1.1 0-2-.4-2.7-1.1-.8-.8-1.1-1.7-1.1-2.7 0-1.1.4-2 1.1-2.7.8-.8 1.7-1.1 2.7-1.1 1.1 0 2 .3 2.7 1.1z"/>
|
||||
</svg>
|
||||
<path fill="#D1954E"
|
||||
d="M30.2 28.8c0 .4-.1.7-.4.9-.2.3-.6.4-.9.4H26c-.3 0-.6-.1-.9-.4-.2-.2-.4-.5-.4-.9-.2-2.9-.8-5.6-2-8.2-1.2-2.6-2.8-4.9-4.7-6.8-1.9-1.9-4.2-3.5-6.8-4.7-2.5-1-5.3-1.7-8.2-1.8-.3 0-.6-.1-.9-.4-.2-.3-.3-.6-.3-.9V3.1c0-.4.1-.7.4-.9.2-.2.5-.4.9-.4h.1c3.5.2 6.8 1 10.1 2.4 3.2 1.4 6.1 3.4 8.6 5.9 2.5 2.5 4.5 5.4 5.9 8.6 1.4 3.2 2.2 6.6 2.4 10.1zm-10.3 0c0 .4-.1.7-.3 1-.2.3-.6.4-.9.4H16c-.3 0-.6-.1-.9-.3-.2-.2-.4-.5-.4-.8-.3-3.1-1.5-5.7-3.7-7.9s-4.9-3.5-8-3.8c-.3 0-.6-.2-.8-.4-.2-.2-.3-.5-.3-.9v-2.7c0-.4.1-.7.4-.9.2-.2.5-.3.9-.3h.1c2.2.2 4.2.7 6.2 1.6s3.7 2.1 5.2 3.7c1.5 1.5 2.8 3.3 3.7 5.2.8 1.9 1.3 3.9 1.5 6.1zM8.4 23.6c.8.8 1.1 1.7 1.1 2.7 0 1.1-.4 2-1.1 2.7-.8.8-1.7 1.1-2.7 1.1-1.1 0-2-.4-2.7-1.1-.8-.8-1.1-1.7-1.1-2.7 0-1.1.4-2 1.1-2.7.8-.8 1.7-1.1 2.7-1.1 1.1 0 2 .3 2.7 1.1z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 878 B After Width: | Height: | Size: 882 B |
@ -1 +1,5 @@
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg"><path d="m4.6651888 2c2.3282105 0 4.569624.3012395 6.7242402.9037186 2.154616.6024812 4.171378 1.4551418 6.050235 2.5579882 1.878957 1.1028443 3.589374 2.4252349 5.131453 3.9671762 1.54188 1.541941 2.864262 3.252371 3.96715 5.131291 1.102687 1.87907 1.955343 3.895797 2.557967 6.05048.602527 2.154581.903766 4.39586.903766 6.724288 0 .735228-.260341 1.363038-.781128 1.883976-.520783.520936-1.148738.781082-1.883961.781082-.735275 0-1.363229-.260246-1.884165-.781082-.520682-.520788-.781075-1.148748-.781075-1.883976 0-1.838227-.240018-3.609825-.719958-5.3153-.479935-1.705123-1.154043-3.298273-2.022016-4.778943-.867973-1.480721-1.909392-2.828643-3.124705-4.043814-1.215212-1.21517-2.563024-2.256746-4.043734-3.124725-1.480661-.867982-3.073647-1.5419416-4.7789592-2.0218841-1.7053122-.4799403-3.4769986-.7199116-5.3150597-.7199116-.7352244 0-1.3632288-.2603939-1.8840129-.7811819-.5207842-.520788-.781176-1.1487961-.781176-1.8840263 0-.7352281.2603919-1.3632383.7811761-1.8840263.5207338-.5207358 1.1487381-.7811298 1.8839625-.7811298zm0 10.078773c2.103559 0 4.0794746.403355 5.9277472 1.210066 1.848272.806711 3.461681 1.899343 4.840227 3.2779 1.378596 1.378605 2.471222 2.991926 3.277876 4.840111.806755 1.848487 1.210057 3.824217 1.210057 5.92799 0 .735232-.260341 1.363038-.781075 1.883978-.520785.520788-1.148739.781082-1.884164.781082-.735224 0-1.363178-.260244-1.883962-.781082-.520784-.520788-.781176-1.148746-.781176-1.883978 0-1.368443-.260392-2.655046-.781176-3.860004-.520784-1.204961-1.23048-2.256749-2.129088-3.155313-.898608-.898663-1.9503867-1.608364-3.1553379-2.129152-1.2049513-.520688-2.4915937-.781082-3.8599283-.781082-.7352244 0-1.3632287-.260344-1.8840124-.781132-.5207842-.520836-.7811763-1.148846-.7811763-1.884076s.260392-1.363238.7811763-1.884026c.5207837-.520889 1.148788-.781282 1.8840124-.781282zm4.9014963 13.99995c0 .531051-.097009 1.021154-.2910264 1.470511-.1940156.449455-.4595153.84245-.7964933 1.179479-.3369778.336831-.7352245.602431-1.1947396.796499-.4595147.193965-.9445589.290881-1.4551313.290881-.5309955 0-1.0211454-.09699-1.4704491-.290881-.4493041-.193965-.8424448-.459716-1.1794226-.796499-.3369778-.336979-.6024758-.730124-.7964933-1.179479-.1940175-.449357-.2910265-.93946-.2910265-1.470511 0-.510425.097009-.995572.2910265-1.454941.1940157-.45972.4595155-.857919.7964933-1.194798.3369778-.336981.7301185-.602429 1.1794226-.796498.4493036-.193966.9394536-.291032 1.470449-.291032.5105724 0 .9956166.09708 1.4551313.291032.4595151.194069.8577619.459517 1.1947397.796498.336978.336879.6024758.735228.7964933 1.194798.1940156.459417.2910264.944416.2910264 1.454941z" fill="#1e90ff" stroke-width=".050056"/></svg>
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="m4.6651888 2c2.3282105 0 4.569624.3012395 6.7242402.9037186 2.154616.6024812 4.171378 1.4551418 6.050235 2.5579882 1.878957 1.1028443 3.589374 2.4252349 5.131453 3.9671762 1.54188 1.541941 2.864262 3.252371 3.96715 5.131291 1.102687 1.87907 1.955343 3.895797 2.557967 6.05048.602527 2.154581.903766 4.39586.903766 6.724288 0 .735228-.260341 1.363038-.781128 1.883976-.520783.520936-1.148738.781082-1.883961.781082-.735275 0-1.363229-.260246-1.884165-.781082-.520682-.520788-.781075-1.148748-.781075-1.883976 0-1.838227-.240018-3.609825-.719958-5.3153-.479935-1.705123-1.154043-3.298273-2.022016-4.778943-.867973-1.480721-1.909392-2.828643-3.124705-4.043814-1.215212-1.21517-2.563024-2.256746-4.043734-3.124725-1.480661-.867982-3.073647-1.5419416-4.7789592-2.0218841-1.7053122-.4799403-3.4769986-.7199116-5.3150597-.7199116-.7352244 0-1.3632288-.2603939-1.8840129-.7811819-.5207842-.520788-.781176-1.1487961-.781176-1.8840263 0-.7352281.2603919-1.3632383.7811761-1.8840263.5207338-.5207358 1.1487381-.7811298 1.8839625-.7811298zm0 10.078773c2.103559 0 4.0794746.403355 5.9277472 1.210066 1.848272.806711 3.461681 1.899343 4.840227 3.2779 1.378596 1.378605 2.471222 2.991926 3.277876 4.840111.806755 1.848487 1.210057 3.824217 1.210057 5.92799 0 .735232-.260341 1.363038-.781075 1.883978-.520785.520788-1.148739.781082-1.884164.781082-.735224 0-1.363178-.260244-1.883962-.781082-.520784-.520788-.781176-1.148746-.781176-1.883978 0-1.368443-.260392-2.655046-.781176-3.860004-.520784-1.204961-1.23048-2.256749-2.129088-3.155313-.898608-.898663-1.9503867-1.608364-3.1553379-2.129152-1.2049513-.520688-2.4915937-.781082-3.8599283-.781082-.7352244 0-1.3632287-.260344-1.8840124-.781132-.5207842-.520836-.7811763-1.148846-.7811763-1.884076s.260392-1.363238.7811763-1.884026c.5207837-.520889 1.148788-.781282 1.8840124-.781282zm4.9014963 13.99995c0 .531051-.097009 1.021154-.2910264 1.470511-.1940156.449455-.4595153.84245-.7964933 1.179479-.3369778.336831-.7352245.602431-1.1947396.796499-.4595147.193965-.9445589.290881-1.4551313.290881-.5309955 0-1.0211454-.09699-1.4704491-.290881-.4493041-.193965-.8424448-.459716-1.1794226-.796499-.3369778-.336979-.6024758-.730124-.7964933-1.179479-.1940175-.449357-.2910265-.93946-.2910265-1.470511 0-.510425.097009-.995572.2910265-1.454941.1940157-.45972.4595155-.857919.7964933-1.194798.3369778-.336981.7301185-.602429 1.1794226-.796498.4493036-.193966.9394536-.291032 1.470449-.291032.5105724 0 .9956166.09708 1.4551313.291032.4595151.194069.8577619.459517 1.1947397.796498.336978.336879.6024758.735228.7964933 1.194798.1940156.459417.2910264.944416.2910264 1.454941z"
|
||||
fill="#1e90ff" stroke-width=".050056" />
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#375273" d="M9.1 4.1c2.1-1.2 4.4-1.8 6.9-1.8s4.8.6 6.9 1.8c2.1 1.2 3.8 2.9 5 5 1.2 2.1 1.8 4.4 1.8 6.9s-.6 4.8-1.8 6.9c-1.2 2.1-2.9 3.8-5 5-2.1 1.2-4.4 1.8-6.9 1.8s-4.8-.6-6.9-1.8c-2.1-1.2-3.8-2.9-5-5-1.2-2.1-1.8-4.4-1.8-6.9s.6-4.8 1.8-6.9c1.2-2.1 2.9-3.8 5-5zm11.8 7.5l-.2.2-.2.2s.1 0 .1-.1.1-.1.1-.2.1-.1.1-.1c.1-.1.2-.2.4-.3.2-.1.5-.1.9-.2s.7 0 .9.2c0 0 0-.1.2-.2.1-.1.2-.2.3-.2 0 0 .1-.1.3-.1.1 0 .2-.1.3-.1v-.4c-.1 0-.2 0-.3-.1-.1-.1-.1-.2-.1-.4 0 0 0 .1-.1.1 0-.1 0-.1-.1-.1h-.4c-.1 0-.2-.1-.3-.1-.1-.1-.1-.2-.1-.3 0-.1-.1-.2-.1-.3 0-.1-.1-.1-.2-.2l-.2-.2v-.1s0-.1-.1-.1c0 0 0-.1-.1-.1h-.1s-.1 0-.1.1-.1.1-.1.2-.1.1-.1.1h-.2l-.1.1-.1.1s-.1 0-.2.1h-.2c.2-.1.2-.1 0-.2-.1 0-.2-.1-.3-.1.1 0 .2-.1.1-.2 0-.1-.1-.2-.2-.3h.1l-.2-.2c-.1-.1-.2-.1-.3-.2-.1 0-.2-.1-.2-.1-.1-.1-.3-.1-.6-.2s-.5-.1-.6 0c-.1.1-.1.1-.1.2s0 .1.1.3c0 .1.1.2.1.2 0 .1 0 .1-.1.2s-.1.2-.1.2c0 .1.1.2.3.3.2 0 .3.1.2.3 0 .1-.1.2-.3.3-.2.1-.3.2-.3.2-.1.1-.1.2 0 .3 0 .1.1.2.2.3v.1s0 .1-.1.1l-.1.1s-.1 0-.1.1h-.1c-.1.1-.3 0-.4-.1-.1-.1-.2-.3-.2-.5-.1-.3-.2-.5-.3-.5-.3-.1-.4-.1-.5 0-.1-.2-.3-.3-.7-.5-.3-.1-.6-.1-1-.1.1 0 .1-.1 0-.3-.1-.2-.2-.3-.3-.2 0-.1.1-.2.1-.3v-.2c0-.2.1-.3.2-.4 0 0 .1-.1.1-.2.1-.1.1-.2.2-.2v-.1c.4 0 .7 0 .9-.2.1-.1.1-.2.2-.3.1-.1.1-.2.2-.3.1-.1.2-.1.3-.1.1 0 .1 0 .3.1.1.1.2.1.3.1.2 0 .3-.1.3-.2s0-.3-.1-.4c.1 0 .2-.1.1-.3-.1-.1-.1-.1-.1-.2-.1 0-.3 0-.5.1-.1 0-.1.1 0 .1l-.2.2-.3.3c-.1.1-.2 0-.3-.1 0 0 0-.1-.1-.2s-.1-.2-.2-.2-.2.1-.3.3c0-.1 0-.2-.2-.3-.2-.1-.3-.1-.4-.1 0-.2 0-.4-.3-.5-.1 0-.2-.1-.4-.1s-.3 0-.3.1c-.1.1-.1.2-.1.2 0 .1 0 .1.1.1s.1.1.2.1.1 0 .2.1c.1 0 .1 0 .2.1.1 0 .1.1 0 .2 0 0-.1 0-.2.1-.1 0-.1.1-.2.1s-.1 0-.1.1v.6c-.1-.1-.1-.2-.2-.3 0-.1-.1-.2-.1-.3.1-.1 0-.1-.4-.1h-.9c-.1 0-.2-.1-.2-.1v-.4s0-.1.1 0l-.2-.2-.2-.2c-.5.2-1.1.4-1.7.7h.2c.1 0 .1-.1.2-.1.1-.1.2-.1.2-.1.4-.2.7-.2.8-.1l.1-.1.4.4c-.1 0-.3-.1-.5 0s-.4.1-.4.2c.1.1.1.3.1.3l-.2-.2c-.1-.1-.2-.1-.3-.2-.1.1-.2.1-.3 0h-.4c-1.7 1-3.1 2.3-4.2 4 .1.1.2.1.2.1s.1.1.1.2v.2s.1 0 .2-.1c.2.2.2.3.1.4 0 0 .3.1.8.5.2.2.4.3.4.4 0 .1 0 .2-.2.3l-.2-.2c-.1-.1-.1-.1-.2-.1v.3c0 .2.1.2.2.2-.1 0-.1.1-.2.3v1c0 .1 0 .3.1.6s.2.4.4.3c-.2 0 0 .3.4.8.1.1.1.1.1.2 0 0 .1.1.2.1.2.3.3.3.3.4l.2.2c0 .1.1.2.2.4s.2.3.3.4c0 .1 0 .2.2.4.1.2.2.3.2.4 0 .1.1.2.3.3.1.1.2.2.3.2v.2c0 .1 0 .1.1.2 0 0 .1.1.1 0 0-.2-.1-.6-.4-1.1-.2-.3-.3-.5-.3-.5 0-.1-.1-.2-.1-.3 0-.1-.1-.2-.1-.3h.1s.1 0 .2.1c.1 0 .1 0 .1.1v.4c.1.1.1.2.2.3l.3.3.2.2.3.3c.1.2.1.2 0 .2.1 0 .2.1.4.2.1.1.2.2.3.4-.1.2-.1.3-.1.6 0 .2.1.4.1.4 0 .1.1.2.2.2s.2.1.2.2c.1 0 .2.1.3.1.1.1.2.1.2.1.1 0 .2.1.3.2.2.1.3.2.4.2.1 0 .2.1.3.1h.3c.1 0 .2-.1.2-.1.2 0 .4.1.5.3l.4.4c.4.2.8.3 1 .2v.1c0 .1.1.2.1.3.1.1.1.2.2.3 0 .1.1.1.1.2l.3.3c.2.1.3.2.3.3.1 0 .1-.1.1-.2 0 .1 0 .2.1.4.1.1.2.2.3.2.2 0 .3-.2.3-.6-.4.2-.7.1-.9-.3v-.1c0-.1-.1-.1-.1-.2v-.3s0-.1.1-.1.2 0 .2-.1v-.2c0-.1-.1-.2-.1-.2 0-.1-.1-.2-.2-.4-.1-.1-.2-.2-.2-.3-.1.1-.2.2-.3.1-.1 0-.2-.1-.3-.2v.2h-.3v-.3c0-.2 0-.3.1-.4 0 0 0-.1.1-.2s.1-.2.1-.3c0-.1.1-.2.1-.2 0-.1 0-.1-.1-.2-.1 0-.2-.1-.3 0-.2 0-.4.1-.5.4 0 0 0 .1-.1.2s-.1.2-.1.2-.1.1-.2.1h-.4c-.2 0-.3 0-.4-.1-.2-.1-.3-.3-.4-.5-.1-.3-.2-.5-.2-.7v-.5c0-.2 0-.3.1-.4 0-.1 0-.2-.1-.4l.2-.2c.1-.1.1-.2.2-.2h.3s0-.1.1-.1l-.1-.1-.1-.1h.5c.3-.1.4 0 .5 0 .2.1.3.1.4 0v-.4c.1.3.2.4.5.2 0 0 .1.1.3.1.1 0 .3.1.3.1l.1.1.1.1h.1s.1-.1.2-.1c.1.2.2.3.2.4.1.5.2.7.3.8h.2s.1-.1.1-.2v-1c-.2 0-.3-.1-.3-.2v-.3c.1-.1.1-.2.3-.3 0 0 .1 0 .1-.1.1 0 .2-.1.3-.1.1 0 .2-.1.2-.1.3-.2.3-.4.3-.6.1 0 .1-.1.2-.2l-.1-.1-.1-.1H19c.1-.1.1-.2 0-.3.1 0 .1-.1.1-.2s.1-.2.1-.2c.1.1.2.2.4 0 .1-.1.1-.2 0-.3.1-.1.2-.1.4-.2.2 0 .3-.1.3-.2h.1v-.2c0-.1 0-.2.1-.2 0-.1.1-.1.3-.2.1 0 .2-.1.2-.1l.3-.2v-.1c.2 0 .4 0 .6-.2.1-.1.1-.3-.1-.4 0-.1 0-.1-.1-.2-.1 0-.2-.1-.3-.1h.4c.2-.1.1-.2-.1-.3-.2 0-.5.1-.8.3zM18 27.3c2.5-.4 4.5-1.6 6.3-3.4 0 0-.1-.1-.2-.1s-.2 0-.2-.1c-.2-.1-.4-.1-.4-.1v-.2c0-.1-.1-.1-.1-.2-.1 0-.1-.1-.2-.1-.1-.1-.2-.1-.2-.1l-.1-.1c-.1 0-.1-.1-.1-.1s-.1 0-.1-.1h-.6s-.1 0-.1.1-.1 0-.1.1c-.3-.2-.5-.3-.6-.4-.1 0-.1 0-.2-.1s-.1-.1-.2-.1h-.2c-.1 0-.1.1-.2.1-.1.1-.1.1-.1.3v.2c-.1-.1-.1-.2 0-.3.1-.1.1-.3 0-.3 0-.1-.1-.1-.2-.1s-.2 0-.2.1c-.1 0-.1.1-.2.2s-.1.1-.2.1c0 0-.1 0-.2.1s-.1.1-.2.1c0 0-.1.1-.1.2s-.1.2-.1.2-.1-.1-.2-.1-.2-.1-.2-.1c0 .1 0 .3.1.6 0 .3.1.5.1.7.1.4 0 .7-.2.9-.3.3-.5.5-.5.7 0 .3 0 .4.2.5 0 .1 0 .2-.1.4s-.1.3-.1.4c-.2-.1-.1 0-.1.1z"/>
|
||||
</svg>
|
||||
<path fill="#375273"
|
||||
d="M9.1 4.1c2.1-1.2 4.4-1.8 6.9-1.8s4.8.6 6.9 1.8c2.1 1.2 3.8 2.9 5 5 1.2 2.1 1.8 4.4 1.8 6.9s-.6 4.8-1.8 6.9c-1.2 2.1-2.9 3.8-5 5-2.1 1.2-4.4 1.8-6.9 1.8s-4.8-.6-6.9-1.8c-2.1-1.2-3.8-2.9-5-5-1.2-2.1-1.8-4.4-1.8-6.9s.6-4.8 1.8-6.9c1.2-2.1 2.9-3.8 5-5zm11.8 7.5l-.2.2-.2.2s.1 0 .1-.1.1-.1.1-.2.1-.1.1-.1c.1-.1.2-.2.4-.3.2-.1.5-.1.9-.2s.7 0 .9.2c0 0 0-.1.2-.2.1-.1.2-.2.3-.2 0 0 .1-.1.3-.1.1 0 .2-.1.3-.1v-.4c-.1 0-.2 0-.3-.1-.1-.1-.1-.2-.1-.4 0 0 0 .1-.1.1 0-.1 0-.1-.1-.1h-.4c-.1 0-.2-.1-.3-.1-.1-.1-.1-.2-.1-.3 0-.1-.1-.2-.1-.3 0-.1-.1-.1-.2-.2l-.2-.2v-.1s0-.1-.1-.1c0 0 0-.1-.1-.1h-.1s-.1 0-.1.1-.1.1-.1.2-.1.1-.1.1h-.2l-.1.1-.1.1s-.1 0-.2.1h-.2c.2-.1.2-.1 0-.2-.1 0-.2-.1-.3-.1.1 0 .2-.1.1-.2 0-.1-.1-.2-.2-.3h.1l-.2-.2c-.1-.1-.2-.1-.3-.2-.1 0-.2-.1-.2-.1-.1-.1-.3-.1-.6-.2s-.5-.1-.6 0c-.1.1-.1.1-.1.2s0 .1.1.3c0 .1.1.2.1.2 0 .1 0 .1-.1.2s-.1.2-.1.2c0 .1.1.2.3.3.2 0 .3.1.2.3 0 .1-.1.2-.3.3-.2.1-.3.2-.3.2-.1.1-.1.2 0 .3 0 .1.1.2.2.3v.1s0 .1-.1.1l-.1.1s-.1 0-.1.1h-.1c-.1.1-.3 0-.4-.1-.1-.1-.2-.3-.2-.5-.1-.3-.2-.5-.3-.5-.3-.1-.4-.1-.5 0-.1-.2-.3-.3-.7-.5-.3-.1-.6-.1-1-.1.1 0 .1-.1 0-.3-.1-.2-.2-.3-.3-.2 0-.1.1-.2.1-.3v-.2c0-.2.1-.3.2-.4 0 0 .1-.1.1-.2.1-.1.1-.2.2-.2v-.1c.4 0 .7 0 .9-.2.1-.1.1-.2.2-.3.1-.1.1-.2.2-.3.1-.1.2-.1.3-.1.1 0 .1 0 .3.1.1.1.2.1.3.1.2 0 .3-.1.3-.2s0-.3-.1-.4c.1 0 .2-.1.1-.3-.1-.1-.1-.1-.1-.2-.1 0-.3 0-.5.1-.1 0-.1.1 0 .1l-.2.2-.3.3c-.1.1-.2 0-.3-.1 0 0 0-.1-.1-.2s-.1-.2-.2-.2-.2.1-.3.3c0-.1 0-.2-.2-.3-.2-.1-.3-.1-.4-.1 0-.2 0-.4-.3-.5-.1 0-.2-.1-.4-.1s-.3 0-.3.1c-.1.1-.1.2-.1.2 0 .1 0 .1.1.1s.1.1.2.1.1 0 .2.1c.1 0 .1 0 .2.1.1 0 .1.1 0 .2 0 0-.1 0-.2.1-.1 0-.1.1-.2.1s-.1 0-.1.1v.6c-.1-.1-.1-.2-.2-.3 0-.1-.1-.2-.1-.3.1-.1 0-.1-.4-.1h-.9c-.1 0-.2-.1-.2-.1v-.4s0-.1.1 0l-.2-.2-.2-.2c-.5.2-1.1.4-1.7.7h.2c.1 0 .1-.1.2-.1.1-.1.2-.1.2-.1.4-.2.7-.2.8-.1l.1-.1.4.4c-.1 0-.3-.1-.5 0s-.4.1-.4.2c.1.1.1.3.1.3l-.2-.2c-.1-.1-.2-.1-.3-.2-.1.1-.2.1-.3 0h-.4c-1.7 1-3.1 2.3-4.2 4 .1.1.2.1.2.1s.1.1.1.2v.2s.1 0 .2-.1c.2.2.2.3.1.4 0 0 .3.1.8.5.2.2.4.3.4.4 0 .1 0 .2-.2.3l-.2-.2c-.1-.1-.1-.1-.2-.1v.3c0 .2.1.2.2.2-.1 0-.1.1-.2.3v1c0 .1 0 .3.1.6s.2.4.4.3c-.2 0 0 .3.4.8.1.1.1.1.1.2 0 0 .1.1.2.1.2.3.3.3.3.4l.2.2c0 .1.1.2.2.4s.2.3.3.4c0 .1 0 .2.2.4.1.2.2.3.2.4 0 .1.1.2.3.3.1.1.2.2.3.2v.2c0 .1 0 .1.1.2 0 0 .1.1.1 0 0-.2-.1-.6-.4-1.1-.2-.3-.3-.5-.3-.5 0-.1-.1-.2-.1-.3 0-.1-.1-.2-.1-.3h.1s.1 0 .2.1c.1 0 .1 0 .1.1v.4c.1.1.1.2.2.3l.3.3.2.2.3.3c.1.2.1.2 0 .2.1 0 .2.1.4.2.1.1.2.2.3.4-.1.2-.1.3-.1.6 0 .2.1.4.1.4 0 .1.1.2.2.2s.2.1.2.2c.1 0 .2.1.3.1.1.1.2.1.2.1.1 0 .2.1.3.2.2.1.3.2.4.2.1 0 .2.1.3.1h.3c.1 0 .2-.1.2-.1.2 0 .4.1.5.3l.4.4c.4.2.8.3 1 .2v.1c0 .1.1.2.1.3.1.1.1.2.2.3 0 .1.1.1.1.2l.3.3c.2.1.3.2.3.3.1 0 .1-.1.1-.2 0 .1 0 .2.1.4.1.1.2.2.3.2.2 0 .3-.2.3-.6-.4.2-.7.1-.9-.3v-.1c0-.1-.1-.1-.1-.2v-.3s0-.1.1-.1.2 0 .2-.1v-.2c0-.1-.1-.2-.1-.2 0-.1-.1-.2-.2-.4-.1-.1-.2-.2-.2-.3-.1.1-.2.2-.3.1-.1 0-.2-.1-.3-.2v.2h-.3v-.3c0-.2 0-.3.1-.4 0 0 0-.1.1-.2s.1-.2.1-.3c0-.1.1-.2.1-.2 0-.1 0-.1-.1-.2-.1 0-.2-.1-.3 0-.2 0-.4.1-.5.4 0 0 0 .1-.1.2s-.1.2-.1.2-.1.1-.2.1h-.4c-.2 0-.3 0-.4-.1-.2-.1-.3-.3-.4-.5-.1-.3-.2-.5-.2-.7v-.5c0-.2 0-.3.1-.4 0-.1 0-.2-.1-.4l.2-.2c.1-.1.1-.2.2-.2h.3s0-.1.1-.1l-.1-.1-.1-.1h.5c.3-.1.4 0 .5 0 .2.1.3.1.4 0v-.4c.1.3.2.4.5.2 0 0 .1.1.3.1.1 0 .3.1.3.1l.1.1.1.1h.1s.1-.1.2-.1c.1.2.2.3.2.4.1.5.2.7.3.8h.2s.1-.1.1-.2v-1c-.2 0-.3-.1-.3-.2v-.3c.1-.1.1-.2.3-.3 0 0 .1 0 .1-.1.1 0 .2-.1.3-.1.1 0 .2-.1.2-.1.3-.2.3-.4.3-.6.1 0 .1-.1.2-.2l-.1-.1-.1-.1H19c.1-.1.1-.2 0-.3.1 0 .1-.1.1-.2s.1-.2.1-.2c.1.1.2.2.4 0 .1-.1.1-.2 0-.3.1-.1.2-.1.4-.2.2 0 .3-.1.3-.2h.1v-.2c0-.1 0-.2.1-.2 0-.1.1-.1.3-.2.1 0 .2-.1.2-.1l.3-.2v-.1c.2 0 .4 0 .6-.2.1-.1.1-.3-.1-.4 0-.1 0-.1-.1-.2-.1 0-.2-.1-.3-.1h.4c.2-.1.1-.2-.1-.3-.2 0-.5.1-.8.3zM18 27.3c2.5-.4 4.5-1.6 6.3-3.4 0 0-.1-.1-.2-.1s-.2 0-.2-.1c-.2-.1-.4-.1-.4-.1v-.2c0-.1-.1-.1-.1-.2-.1 0-.1-.1-.2-.1-.1-.1-.2-.1-.2-.1l-.1-.1c-.1 0-.1-.1-.1-.1s-.1 0-.1-.1h-.6s-.1 0-.1.1-.1 0-.1.1c-.3-.2-.5-.3-.6-.4-.1 0-.1 0-.2-.1s-.1-.1-.2-.1h-.2c-.1 0-.1.1-.2.1-.1.1-.1.1-.1.3v.2c-.1-.1-.1-.2 0-.3.1-.1.1-.3 0-.3 0-.1-.1-.1-.2-.1s-.2 0-.2.1c-.1 0-.1.1-.2.2s-.1.1-.2.1c0 0-.1 0-.2.1s-.1.1-.2.1c0 0-.1.1-.1.2s-.1.2-.1.2-.1-.1-.2-.1-.2-.1-.2-.1c0 .1 0 .3.1.6 0 .3.1.5.1.7.1.4 0 .7-.2.9-.3.3-.5.5-.5.7 0 .3 0 .4.2.5 0 .1 0 .2-.1.4s-.1.3-.1.4c-.2-.1-.1 0-.1.1z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -1 +1,5 @@
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg"><path d="m16 2c-7.7227501.0017-13.99825 6.2772505-14 14 .0017 7.72275 6.2772499 13.99825 14 14 7.72275-.0018 13.99825-6.27725 14-14 0-.89075-.09338-1.755094-.25-2.589844-.07088-.37625-.376109-.661531-.755859-.707031-.380625-.0455-.742891.160641-.900391.509766-.277375.6125-.887625 1.037984-1.59375 1.037109-.783125.0017-1.443563-.526578-1.664062-1.251953-.133-.44275-.58736-.704611-1.03711-.599609-.2765.064738-.538953.101562-.798828.101562-1.927625-.0035-3.4965-1.572375-3.5-3.5 0-.259875.03681-.52125.101562-.796875.105876-.44975-.156859-.9060625-.599609-1.0390625-.725375-.219625-1.253703-.8809375-1.251953-1.6640625-.000875-.707.424609-1.3144219 1.037109-1.5917969.349125-.1575.555266-.5225937.509766-.9023437-.0455-.3806253-.330781-.6849844-.707031-.7558594-.83475-.156625-1.699094-.25-2.589844-.25zm-3.5 5.25a1.75 1.75 0 0 1 1.75 1.75 1.75 1.75 0 0 1 -1.75 1.75 1.75 1.75 0 0 1 -1.75-1.75 1.75 1.75 0 0 1 1.75-1.75zm-3.5 7a1.75 1.75 0 0 1 1.75 1.75 1.75 1.75 0 0 1 -1.75 1.75 1.75 1.75 0 0 1 -1.75-1.75 1.75 1.75 0 0 1 1.75-1.75zm7.875 1.75a.875.875 0 0 1 .875.875.875.875 0 0 1 -.875.875.875.875 0 0 1 -.875-.875.875.875 0 0 1 .875-.875zm7 3.5a.875.875 0 0 1 .875.875.875.875 0 0 1 -.875.875.875.875 0 0 1 -.875-.875.875.875 0 0 1 .875-.875zm-12.25 1.75a.875.875 0 0 1 .875.875.875.875 0 0 1 -.875.875.875.875 0 0 1 -.875-.875.875.875 0 0 1 .875-.875zm6.125 0a1.75 1.75 0 0 1 1.75 1.75 1.75 1.75 0 0 1 -1.75 1.75 1.75 1.75 0 0 1 -1.75-1.75 1.75 1.75 0 0 1 1.75-1.75z" fill="#1e90ff" stroke="#4285f4" stroke-width=".055"/></svg>
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="m16 2c-7.7227501.0017-13.99825 6.2772505-14 14 .0017 7.72275 6.2772499 13.99825 14 14 7.72275-.0018 13.99825-6.27725 14-14 0-.89075-.09338-1.755094-.25-2.589844-.07088-.37625-.376109-.661531-.755859-.707031-.380625-.0455-.742891.160641-.900391.509766-.277375.6125-.887625 1.037984-1.59375 1.037109-.783125.0017-1.443563-.526578-1.664062-1.251953-.133-.44275-.58736-.704611-1.03711-.599609-.2765.064738-.538953.101562-.798828.101562-1.927625-.0035-3.4965-1.572375-3.5-3.5 0-.259875.03681-.52125.101562-.796875.105876-.44975-.156859-.9060625-.599609-1.0390625-.725375-.219625-1.253703-.8809375-1.251953-1.6640625-.000875-.707.424609-1.3144219 1.037109-1.5917969.349125-.1575.555266-.5225937.509766-.9023437-.0455-.3806253-.330781-.6849844-.707031-.7558594-.83475-.156625-1.699094-.25-2.589844-.25zm-3.5 5.25a1.75 1.75 0 0 1 1.75 1.75 1.75 1.75 0 0 1 -1.75 1.75 1.75 1.75 0 0 1 -1.75-1.75 1.75 1.75 0 0 1 1.75-1.75zm-3.5 7a1.75 1.75 0 0 1 1.75 1.75 1.75 1.75 0 0 1 -1.75 1.75 1.75 1.75 0 0 1 -1.75-1.75 1.75 1.75 0 0 1 1.75-1.75zm7.875 1.75a.875.875 0 0 1 .875.875.875.875 0 0 1 -.875.875.875.875 0 0 1 -.875-.875.875.875 0 0 1 .875-.875zm7 3.5a.875.875 0 0 1 .875.875.875.875 0 0 1 -.875.875.875.875 0 0 1 -.875-.875.875.875 0 0 1 .875-.875zm-12.25 1.75a.875.875 0 0 1 .875.875.875.875 0 0 1 -.875.875.875.875 0 0 1 -.875-.875.875.875 0 0 1 .875-.875zm6.125 0a1.75 1.75 0 0 1 1.75 1.75 1.75 1.75 0 0 1 -1.75 1.75 1.75 1.75 0 0 1 -1.75-1.75 1.75 1.75 0 0 1 1.75-1.75z"
|
||||
fill="#1e90ff" stroke="#4285f4" stroke-width=".055" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
@ -1 +1,14 @@
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg"><path d="m5.845144 30h-2.1972251c-.9101202 0-1.6479193-.626801-1.6479193-1.4v-8.4c0-.773199.7377991-1.4 1.6479193-1.4h2.1972251c.9101203 0 1.6479184.626802 1.6479184 1.4v8.4c0 .773198-.7377981 1.4-1.6479184 1.4z" fill="#1e90ff" stroke-width="1.01002"/><path d="m20.84977 30h-2.197226c-.91012 0-1.647919-.626801-1.647919-1.4v-14c0-.773199.737799-1.4 1.647919-1.4h2.197226c.91012 0 1.647918.626802 1.647918 1.4v14c0 .773198-.737798 1.4-1.647918 1.4z" fill="#1e90ff" stroke-width="1.01002"/><g fill="#32cd32" transform="matrix(1.0201403 0 0 1 -.040281 -2)"><path d="m27.83182 32h-2.153846c-.892152 0-1.615384-.626802-1.615384-1.4v-20.533333c0-.7731972.723232-1.3999989 1.615384-1.3999989h2.153846c.892152 0 1.615385.6268007 1.615385 1.3999989v20.533333c0 .773199-.723233 1.4-1.615385 1.4z"/><path d="m13.123428 32h-2.153846c-.892152 0-1.6153844-.626802-1.6153844-1.4v-25.2c0-.773198.7232324-1.4 1.6153844-1.4h2.153846c.892152 0 1.615385.626801 1.615385 1.4v25.2c0 .773199-.723233 1.4-1.615385 1.4z"/></g></svg>
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="m5.845144 30h-2.1972251c-.9101202 0-1.6479193-.626801-1.6479193-1.4v-8.4c0-.773199.7377991-1.4 1.6479193-1.4h2.1972251c.9101203 0 1.6479184.626802 1.6479184 1.4v8.4c0 .773198-.7377981 1.4-1.6479184 1.4z"
|
||||
fill="#1e90ff" stroke-width="1.01002" />
|
||||
<path
|
||||
d="m20.84977 30h-2.197226c-.91012 0-1.647919-.626801-1.647919-1.4v-14c0-.773199.737799-1.4 1.647919-1.4h2.197226c.91012 0 1.647918.626802 1.647918 1.4v14c0 .773198-.737798 1.4-1.647918 1.4z"
|
||||
fill="#1e90ff" stroke-width="1.01002" />
|
||||
<g fill="#32cd32" transform="matrix(1.0201403 0 0 1 -.040281 -2)">
|
||||
<path
|
||||
d="m27.83182 32h-2.153846c-.892152 0-1.615384-.626802-1.615384-1.4v-20.533333c0-.7731972.723232-1.3999989 1.615384-1.3999989h2.153846c.892152 0 1.615385.6268007 1.615385 1.3999989v20.533333c0 .773199-.723233 1.4-1.615385 1.4z" />
|
||||
<path
|
||||
d="m13.123428 32h-2.153846c-.892152 0-1.6153844-.626802-1.6153844-1.4v-25.2c0-.773198.7232324-1.4 1.6153844-1.4h2.153846c.892152 0 1.615385.626801 1.615385 1.4v25.2c0 .773199-.723233 1.4-1.615385 1.4z" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.2 KiB |
@ -1 +1,5 @@
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg"><path d="m26.510257 4.5c-.516225 0-.957263.18055-1.31837.5422058l-12.696524 12.7199782-5.6872507-5.711533c-.3613312-.361483-.8023875-.542207-1.3183687-.542207-.516225 0-.9533625.180743-1.3146937.542207l-2.6330626 2.634133c-.3613312.361464-.54198754.79879-.54198754 1.315215 0 .516198.18056254.953984.54198754 1.315218l7.0056189 7.012105 2.6330638 2.630472c.361087.361483.798468.542206 1.314693.542206.515981 0 .957018-.180933 1.31835-.542206l2.633061-2.630472 14.011239-14.02055c.361088-.3614648.541987-.7987897.541987-1.3152163.000244-.516197-.180937-.9574144-.541987-1.3188781l-2.633063-2.6304718c-.361088-.3614833-.798712-.5422058-1.314693-.5422058z" fill="#483d8b" stroke-width="1.895719"/></svg>
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="m26.510257 4.5c-.516225 0-.957263.18055-1.31837.5422058l-12.696524 12.7199782-5.6872507-5.711533c-.3613312-.361483-.8023875-.542207-1.3183687-.542207-.516225 0-.9533625.180743-1.3146937.542207l-2.6330626 2.634133c-.3613312.361464-.54198754.79879-.54198754 1.315215 0 .516198.18056254.953984.54198754 1.315218l7.0056189 7.012105 2.6330638 2.630472c.361087.361483.798468.542206 1.314693.542206.515981 0 .957018-.180933 1.31835-.542206l2.633061-2.630472 14.011239-14.02055c.361088-.3614648.541987-.7987897.541987-1.3152163.000244-.516197-.180937-.9574144-.541987-1.3188781l-2.633063-2.6304718c-.361088-.3614833-.798712-.5422058-1.314693-.5422058z"
|
||||
fill="#483d8b" stroke-width="1.895719" />
|
||||
</svg>
|
Before Width: | Height: | Size: 783 B After Width: | Height: | Size: 806 B |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#427337" d="M30.2 9.4c0 .5-.2.9-.5 1.2L16.4 23.9l-2.5 2.5c-.3.3-.8.5-1.2.5-.5 0-.9-.2-1.2-.5L9 23.9l-6.6-6.6c-.4-.4-.6-.8-.6-1.3s.2-.9.5-1.2l2.5-2.5c.3-.3.8-.5 1.2-.5.5 0 .9.2 1.2.5l5.4 5.4 12-12c.3-.3.8-.5 1.2-.5.5 0 .9.2 1.2.5l2.5 2.5c.5.3.7.7.7 1.2z"/>
|
||||
</svg>
|
||||
<path fill="#427337"
|
||||
d="M30.2 9.4c0 .5-.2.9-.5 1.2L16.4 23.9l-2.5 2.5c-.3.3-.8.5-1.2.5-.5 0-.9-.2-1.2-.5L9 23.9l-6.6-6.6c-.4-.4-.6-.8-.6-1.3s.2-.9.5-1.2l2.5-2.5c.3-.3.8-.5 1.2-.5.5 0 .9.2 1.2.5l5.4 5.4 12-12c.3-.3.8-.5 1.2-.5.5 0 .9.2 1.2.5l2.5 2.5c.5.3.7.7.7 1.2z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 342 B |
@ -1,3 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.4 25.4" width="21.4" height="25.4">
|
||||
<path d="M10.7 9.2c-1 0-1.8.3-2.5 1s-1 1.5-1 2.5.3 1.8 1 2.5 1.5 1 2.5 1 1.8-.3 2.5-1 1-1.5 1-2.5-.3-1.8-1-2.5-1.5-1-2.5-1zm10.7 2v3.1c0 .1 0 .2-.1.3-.1.1-.2.2-.3.2l-2.6.4c-.2.5-.4.9-.5 1.3.3.5.8 1.1 1.5 1.9.1.1.1.2.1.3 0 .1 0 .2-.1.3-.3.3-.7.8-1.4 1.5s-1.1 1-1.3 1c-.1 0-.2 0-.4-.1l-1.9-1.5c-.4.2-.8.4-1.3.5-.1 1.3-.3 2.1-.4 2.6-.1.3-.2.4-.5.4H9.1c-.1 0-.2 0-.3-.1-.1-.1-.2-.2-.2-.3l-.4-2.6c-.5-.1-.9-.3-1.3-.5l-2 1.5c-.1.1-.2.1-.3.1-.1 0-.2-.1-.3-.2C3.1 20.2 2.4 19.5 2 19c-.1-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3.1-.2.4-.5.7-.9.3-.4.6-.8.8-1-.3-.5-.4-.9-.6-1.4l-2.5-.4c-.1 0-.2-.1-.3-.2-.1-.1-.1-.2-.1-.3v-3.1c0-.1 0-.2.1-.3.1-.1.2-.2.3-.2l2.6-.4c.1-.4.3-.9.5-1.3C3.1 8.4 2.6 7.7 2 7c-.1-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3.2-.4.7-.9 1.4-1.5.7-.7 1.1-1 1.3-1 .1 0 .2 0 .4.1L7 5.5c.4-.2.8-.4 1.3-.5.1-1.3.3-2.1.4-2.6.1-.3.2-.4.5-.4h3.1c.1 0 .2 0 .3.1.1.1.1.2.2.3l.4 2.6c.5.1.9.3 1.3.5l2-1.5c.1-.1.2-.1.3-.1.1 0 .2 0 .3.1 1.2 1.1 2 1.9 2.3 2.4.1.1.1.2.1.3 0 .1 0 .2-.1.3-.1.2-.4.5-.7.9-.3.4-.6.8-.8 1 .2.5.4.9.6 1.4l2.6.4c.1 0 .2.1.3.2z" fill="teal"/>
|
||||
</svg>
|
||||
<path
|
||||
d="M10.7 9.2c-1 0-1.8.3-2.5 1s-1 1.5-1 2.5.3 1.8 1 2.5 1.5 1 2.5 1 1.8-.3 2.5-1 1-1.5 1-2.5-.3-1.8-1-2.5-1.5-1-2.5-1zm10.7 2v3.1c0 .1 0 .2-.1.3-.1.1-.2.2-.3.2l-2.6.4c-.2.5-.4.9-.5 1.3.3.5.8 1.1 1.5 1.9.1.1.1.2.1.3 0 .1 0 .2-.1.3-.3.3-.7.8-1.4 1.5s-1.1 1-1.3 1c-.1 0-.2 0-.4-.1l-1.9-1.5c-.4.2-.8.4-1.3.5-.1 1.3-.3 2.1-.4 2.6-.1.3-.2.4-.5.4H9.1c-.1 0-.2 0-.3-.1-.1-.1-.2-.2-.2-.3l-.4-2.6c-.5-.1-.9-.3-1.3-.5l-2 1.5c-.1.1-.2.1-.3.1-.1 0-.2-.1-.3-.2C3.1 20.2 2.4 19.5 2 19c-.1-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3.1-.2.4-.5.7-.9.3-.4.6-.8.8-1-.3-.5-.4-.9-.6-1.4l-2.5-.4c-.1 0-.2-.1-.3-.2-.1-.1-.1-.2-.1-.3v-3.1c0-.1 0-.2.1-.3.1-.1.2-.2.3-.2l2.6-.4c.1-.4.3-.9.5-1.3C3.1 8.4 2.6 7.7 2 7c-.1-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3.2-.4.7-.9 1.4-1.5.7-.7 1.1-1 1.3-1 .1 0 .2 0 .4.1L7 5.5c.4-.2.8-.4 1.3-.5.1-1.3.3-2.1.4-2.6.1-.3.2-.4.5-.4h3.1c.1 0 .2 0 .3.1.1.1.1.2.2.3l.4 2.6c.5.1.9.3 1.3.5l2-1.5c.1-.1.2-.1.3-.1.1 0 .2 0 .3.1 1.2 1.1 2 1.9 2.3 2.4.1.1.1.2.1.3 0 .1 0 .2-.1.3-.1.2-.4.5-.7.9-.3.4-.6.8-.8 1 .2.5.4.9.6 1.4l2.6.4c.1 0 .2.1.3.2z"
|
||||
fill="teal" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
@ -1,3 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
|
||||
<path d="M7.5.9C3.9.9.9 3.9.9 7.5s3 6.6 6.6 6.6 6.6-3 6.6-6.6S11.2.9 7.5.9zm0 9.2l-4-4.3h8l-4 4.3z" fill="#2e78d8"/>
|
||||
</svg>
|
||||
<path d="M7.5.9C3.9.9.9 3.9.9 7.5s3 6.6 6.6 6.6 6.6-3 6.6-6.6S11.2.9 7.5.9zm0 9.2l-4-4.3h8l-4 4.3z" fill="#2e78d8" />
|
||||
</svg>
|
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
@ -1,3 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23.2 27.3">
|
||||
<path d="M22.7 9.2L11.9 20l-2 2c-.2.2-.7.4-1 .4-.4 0-.7-.2-1-.4l-2-2-5.4-5.4c-.3-.3-.5-.7-.5-1.1 0-.4.2-.7.4-1l2-2c.2-.2.7-.4 1-.4.4 0 .7.2 1 .4l4.4 4.4 9.8-9.7c.2-.2.7-.4 1-.4.4 0 .7.2 1 .4l2 2c.4.2.6.6.6 1-.1.4-.2.7-.5 1z" fill="#375273"/>
|
||||
</svg>
|
||||
<path
|
||||
d="M22.7 9.2L11.9 20l-2 2c-.2.2-.7.4-1 .4-.4 0-.7-.2-1-.4l-2-2-5.4-5.4c-.3-.3-.5-.7-.5-1.1 0-.4.2-.7.4-1l2-2c.2-.2.7-.4 1-.4.4 0 .7.2 1 .4l4.4 4.4 9.8-9.7c.2-.2.7-.4 1-.4.4 0 .7.2 1 .4l2 2c.4.2.6.6.6 1-.1.4-.2.7-.5 1z"
|
||||
fill="#375273" />
|
||||
</svg>
|
Before Width: | Height: | Size: 316 B After Width: | Height: | Size: 324 B |
@ -1,6 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5"/>
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z"/>
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0"/>
|
||||
<path fill="#375273" d="M26.7 14.5v3.1c0 .1 0 .2-.1.3-.1.1-.2.2-.3.2l-2.6.4c-.2.5-.4.9-.5 1.3.3.5.8 1.1 1.5 1.9.1.1.1.2.1.3 0 .1 0 .2-.1.3-.3.3-.7.8-1.4 1.5s-1.1 1-1.3 1c-.1 0-.2 0-.4-.1l-1.9-1.5c-.4.2-.8.4-1.3.5-.1 1.3-.3 2.1-.4 2.6-.1.3-.2.4-.5.4h-3.1c-.1 0-.2 0-.3-.1s-.2-.2-.2-.3l-.4-2.6c-.5-.1-.9-.3-1.3-.5l-2 1.5c-.1.1-.2.1-.3.1-.1 0-.2-.1-.3-.2-1.2-1.1-1.9-1.8-2.3-2.3-.1-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3.1-.2.4-.5.7-.9.3-.4.6-.8.8-1-.3-.5-.4-.9-.6-1.4L5.7 18c-.1 0-.2-.1-.3-.2-.1-.1-.1-.2-.1-.3v-3.1c0-.1 0-.2.1-.3.1-.1.2-.2.3-.2l2.6-.4c.1-.4.3-.9.5-1.3-.4-.5-.9-1.2-1.5-1.9-.1-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3.2-.4.7-.9 1.4-1.5.7-.7 1.1-1 1.3-1 .1 0 .2 0 .4.1l1.9 1.5c.4-.2.8-.4 1.3-.5.1-1.3.3-2.1.4-2.6.1-.3.2-.4.5-.4h3.1c.1 0 .2 0 .3.1.1.1.1.2.2.3l.4 2.6c.5.1.9.3 1.3.5l2-1.5c.1-.1.2-.1.3-.1.1 0 .2 0 .3.1 1.2 1.1 2 1.9 2.3 2.4.1.1.1.2.1.3 0 .1 0 .2-.1.3-.1.2-.4.5-.7.9-.3.4-.6.8-.8 1 .2.5.4.9.6 1.4l2.6.4c.1 0 .2.1.3.2v.3zm-8.2 4c.7-.7 1-1.5 1-2.5s-.3-1.8-1-2.5-1.5-1-2.5-1-1.8.3-2.5 1-1 1.5-1 2.5.3 1.8 1 2.5 1.5 1 2.5 1 1.8-.3 2.5-1z"/>
|
||||
</svg>
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5" />
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z" />
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0" />
|
||||
<path fill="#375273"
|
||||
d="M26.7 14.5v3.1c0 .1 0 .2-.1.3-.1.1-.2.2-.3.2l-2.6.4c-.2.5-.4.9-.5 1.3.3.5.8 1.1 1.5 1.9.1.1.1.2.1.3 0 .1 0 .2-.1.3-.3.3-.7.8-1.4 1.5s-1.1 1-1.3 1c-.1 0-.2 0-.4-.1l-1.9-1.5c-.4.2-.8.4-1.3.5-.1 1.3-.3 2.1-.4 2.6-.1.3-.2.4-.5.4h-3.1c-.1 0-.2 0-.3-.1s-.2-.2-.2-.3l-.4-2.6c-.5-.1-.9-.3-1.3-.5l-2 1.5c-.1.1-.2.1-.3.1-.1 0-.2-.1-.3-.2-1.2-1.1-1.9-1.8-2.3-2.3-.1-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3.1-.2.4-.5.7-.9.3-.4.6-.8.8-1-.3-.5-.4-.9-.6-1.4L5.7 18c-.1 0-.2-.1-.3-.2-.1-.1-.1-.2-.1-.3v-3.1c0-.1 0-.2.1-.3.1-.1.2-.2.3-.2l2.6-.4c.1-.4.3-.9.5-1.3-.4-.5-.9-1.2-1.5-1.9-.1-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3.2-.4.7-.9 1.4-1.5.7-.7 1.1-1 1.3-1 .1 0 .2 0 .4.1l1.9 1.5c.4-.2.8-.4 1.3-.5.1-1.3.3-2.1.4-2.6.1-.3.2-.4.5-.4h3.1c.1 0 .2 0 .3.1.1.1.1.2.2.3l.4 2.6c.5.1.9.3 1.3.5l2-1.5c.1-.1.2-.1.3-.1.1 0 .2 0 .3.1 1.2 1.1 2 1.9 2.3 2.4.1.1.1.2.1.3 0 .1 0 .2-.1.3-.1.2-.4.5-.7.9-.3.4-.6.8-.8 1 .2.5.4.9.6 1.4l2.6.4c.1 0 .2.1.3.2v.3zm-8.2 4c.7-.7 1-1.5 1-2.5s-.3-1.8-1-2.5-1.5-1-2.5-1-1.8.3-2.5 1-1 1.5-1 2.5.3 1.8 1 2.5 1.5 1 2.5 1 1.8-.3 2.5-1z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#427337" d="M25.1 17.3l4.2-4.2c.8-.8.8-2 0-2.8-.8-.8-2-.8-2.8 0l-4.2 4.2-4.7-4.7 4.2-4.2c.8-.8.8-2 0-2.8-.8-.8-2-.8-2.8 0L14.8 7l-2.3-2.3-3.8 3.5c-3.4 3.4-4 8.6-1.8 12.6L3 24.7c-1.2 1.2-1.2 3.1 0 4.2.6.6 1.4.9 2.1.9.8 0 1.5-.3 2.1-.9l3.9-3.9c4 2.2 9.2 1.6 12.6-1.8l3.6-3.6-2.2-2.3z"/>
|
||||
</svg>
|
||||
<path fill="#427337"
|
||||
d="M25.1 17.3l4.2-4.2c.8-.8.8-2 0-2.8-.8-.8-2-.8-2.8 0l-4.2 4.2-4.7-4.7 4.2-4.2c.8-.8.8-2 0-2.8-.8-.8-2-.8-2.8 0L14.8 7l-2.3-2.3-3.8 3.5c-3.4 3.4-4 8.6-1.8 12.6L3 24.7c-1.2 1.2-1.2 3.1 0 4.2.6.6 1.4.9 2.1.9.8 0 1.5-.3 2.1-.9l3.9-3.9c4 2.2 9.2 1.6 12.6-1.8l3.6-3.6-2.2-2.3z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 367 B After Width: | Height: | Size: 371 B |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#733737" d="M28.1 10.8c.7 1.6 1 3.3 1 5.1s-.3 3.5-1 5.2c-.7 1.6-1.6 3-2.8 4.2-1.2 1.2-2.6 2.1-4.2 2.8-1.6.7-3.3 1-5.1 1-1.8 0-3.5-.3-5.1-1-1.6-.7-3-1.6-4.2-2.8-1.2-1.2-2.1-2.6-2.8-4.2-.7-1.6-1-3.4-1-5.2s.3-3.5 1-5.1c.7-1.6 1.6-3 2.8-4.2s2.6-2.1 4.2-2.8c1.6-.7 3.3-1 5.1-1 1.8 0 3.5.3 5.1 1 1.6.7 3 1.6 4.2 2.8s2.1 2.6 2.8 4.2zM8.2 21.1l13-13c-1.5-1-3.3-1.6-5.2-1.6-1.7 0-3.3.4-4.7 1.3-1.4.8-2.6 2-3.4 3.4-.8 1.4-1.3 3-1.3 4.7.1 1.9.6 3.7 1.6 5.2zM25.3 16c0-1.8-.5-3.5-1.5-5.1l-13 12.9c1.6 1 3.3 1.5 5.1 1.5 1.3 0 2.5-.2 3.6-.7 1.2-.5 2.1-1.2 3-2s1.5-1.8 2-3c.6-1.1.8-2.3.8-3.6z"/>
|
||||
</svg>
|
||||
<path fill="#733737"
|
||||
d="M28.1 10.8c.7 1.6 1 3.3 1 5.1s-.3 3.5-1 5.2c-.7 1.6-1.6 3-2.8 4.2-1.2 1.2-2.6 2.1-4.2 2.8-1.6.7-3.3 1-5.1 1-1.8 0-3.5-.3-5.1-1-1.6-.7-3-1.6-4.2-2.8-1.2-1.2-2.1-2.6-2.8-4.2-.7-1.6-1-3.4-1-5.2s.3-3.5 1-5.1c.7-1.6 1.6-3 2.8-4.2s2.6-2.1 4.2-2.8c1.6-.7 3.3-1 5.1-1 1.8 0 3.5.3 5.1 1 1.6.7 3 1.6 4.2 2.8s2.1 2.6 2.8 4.2zM8.2 21.1l13-13c-1.5-1-3.3-1.6-5.2-1.6-1.7 0-3.3.4-4.7 1.3-1.4.8-2.6 2-3.4 3.4-.8 1.4-1.3 3-1.3 4.7.1 1.9.6 3.7 1.6 5.2zM25.3 16c0-1.8-.5-3.5-1.5-5.1l-13 12.9c1.6 1 3.3 1.5 5.1 1.5 1.3 0 2.5-.2 3.6-.7 1.2-.5 2.1-1.2 3-2s1.5-1.8 2-3c.6-1.1.8-2.3.8-3.6z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 663 B After Width: | Height: | Size: 667 B |
@ -1,4 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="984 984 32 32">
|
||||
<path fill="none" d="M-43.8-437.5H2700v2625H-43.8z"/>
|
||||
<path fill="#375273" d="M1012.3 993.2c1.3 2.2 1.9 4.6 1.9 7.2 0 2.6-.6 5-1.9 7.2-1.3 2.2-3 3.9-5.2 5.2-2.2 1.3-4.6 1.9-7.2 1.9s-5-.6-7.2-1.9c-2.2-1.3-3.9-3-5.2-5.2-1.3-2.2-1.9-4.6-1.9-7.2 0-2.6.6-5 1.9-7.2s3-3.9 5.2-5.2 4.6-1.9 7.2-1.9 5 .6 7.2 1.9 4 3 5.2 5.2zm-7.5 16.1v-3c0-.2-.1-.3-.2-.4s-.3-.2-.4-.2h-1.8v-9.5c0-.2-.1-.3-.2-.4-.1-.1-.3-.2-.4-.2h-5.9c-.2 0-.3.1-.4.2-.1.1-.2.3-.2.4v3c0 .2.1.3.2.4.1.1.3.2.4.2h1.8v5.9h-1.8c-.2 0-.3.1-.4.2-.1.1-.2.3-.2.4v3c0 .2.1.3.2.4.1.1.3.2.4.2h8.3c.2 0 .3-.1.4-.2s.2-.2.2-.4zm-2.4-16.6v-3c0-.2-.1-.3-.2-.4-.1-.1-.3-.2-.4-.2h-3.6c-.2 0-.3.1-.4.2-.1.1-.2.3-.2.4v3c0 .2.1.3.2.4.1.1.3.2.4.2h3.6c.2 0 .3-.1.4-.2.1-.1.2-.3.2-.4z"/>
|
||||
</svg>
|
||||
<path fill="none" d="M-43.8-437.5H2700v2625H-43.8z" />
|
||||
<path fill="#375273"
|
||||
d="M1012.3 993.2c1.3 2.2 1.9 4.6 1.9 7.2 0 2.6-.6 5-1.9 7.2-1.3 2.2-3 3.9-5.2 5.2-2.2 1.3-4.6 1.9-7.2 1.9s-5-.6-7.2-1.9c-2.2-1.3-3.9-3-5.2-5.2-1.3-2.2-1.9-4.6-1.9-7.2 0-2.6.6-5 1.9-7.2s3-3.9 5.2-5.2 4.6-1.9 7.2-1.9 5 .6 7.2 1.9 4 3 5.2 5.2zm-7.5 16.1v-3c0-.2-.1-.3-.2-.4s-.3-.2-.4-.2h-1.8v-9.5c0-.2-.1-.3-.2-.4-.1-.1-.3-.2-.4-.2h-5.9c-.2 0-.3.1-.4.2-.1.1-.2.3-.2.4v3c0 .2.1.3.2.4.1.1.3.2.4.2h1.8v5.9h-1.8c-.2 0-.3.1-.4.2-.1.1-.2.3-.2.4v3c0 .2.1.3.2.4.1.1.3.2.4.2h8.3c.2 0 .3-.1.4-.2s.2-.2.2-.4zm-2.4-16.6v-3c0-.2-.1-.3-.2-.4-.1-.1-.3-.2-.4-.2h-3.6c-.2 0-.3.1-.4.2-.1.1-.2.3-.2.4v3c0 .2.1.3.2.4.1.1.3.2.4.2h3.6c.2 0 .3-.1.4-.2.1-.1.2-.3.2-.4z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 796 B After Width: | Height: | Size: 801 B |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#D1954E" d="M17.7 4.6l11.5 21.1c.3.6.3 1.3 0 1.9-.2.3-.4.5-.7.7-.3.2-.6.3-.9.3h-23c-.3 0-.7-.1-.9-.3s-.7-.5-.8-.8c-.4-.6-.4-1.3 0-1.9l11.4-21c.2-.3.4-.6.7-.8.3-.2.6-.3 1-.3.3 0 .7.1 1 .3.3.2.5.5.7.8zm.2 13.9l.3-6.9c0-.1 0-.2-.1-.3-.1-.1-.2-.2-.4-.2h-3.3c-.1 0-.2.1-.4.2-.1.1-.1.2-.1.3l.3 6.8c0 .1 0 .2.1.2.1.1.2.1.4.1h2.8c.1 0 .3 0 .4-.1-.1.1 0 0 0-.1zm0 5.6v-2.8c0-.1 0-.3-.1-.4-.1-.1-.2-.1-.3-.1h-2.9c-.1 0-.2 0-.3.1-.1.1-.1.2-.1.4v2.8c0 .1 0 .3.1.4.1.1.2.1.3.1h2.9c.1 0 .2 0 .3-.1.1-.1.1-.2.1-.4z"/>
|
||||
</svg>
|
||||
<path fill="#D1954E"
|
||||
d="M17.7 4.6l11.5 21.1c.3.6.3 1.3 0 1.9-.2.3-.4.5-.7.7-.3.2-.6.3-.9.3h-23c-.3 0-.7-.1-.9-.3s-.7-.5-.8-.8c-.4-.6-.4-1.3 0-1.9l11.4-21c.2-.3.4-.6.7-.8.3-.2.6-.3 1-.3.3 0 .7.1 1 .3.3.2.5.5.7.8zm.2 13.9l.3-6.9c0-.1 0-.2-.1-.3-.1-.1-.2-.2-.4-.2h-3.3c-.1 0-.2.1-.4.2-.1.1-.1.2-.1.3l.3 6.8c0 .1 0 .2.1.2.1.1.2.1.4.1h2.8c.1 0 .3 0 .4-.1-.1.1 0 0 0-.1zm0 5.6v-2.8c0-.1 0-.3-.1-.4-.1-.1-.2-.1-.3-.1h-2.9c-.1 0-.2 0-.3.1-.1.1-.1.2-.1.4v2.8c0 .1 0 .3.1.4.1.1.2.1.3.1h2.9c.1 0 .2 0 .3-.1.1-.1.1-.2.1-.4z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 585 B After Width: | Height: | Size: 589 B |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#733737" d="M25.1 17.3l4.2-4.2c.8-.8.8-2 0-2.8-.8-.8-2-.8-2.8 0l-4.2 4.2-4.7-4.7 4.2-4.2c.8-.8.8-2 0-2.8-.8-.8-2-.8-2.8 0L14.8 7l-2.3-2.3-3.8 3.5c-3.4 3.4-4 8.6-1.8 12.6L3 24.7c-1.2 1.2-1.2 3.1 0 4.2.6.6 1.4.9 2.1.9.8 0 1.5-.3 2.1-.9l3.9-3.9c4 2.2 9.2 1.6 12.6-1.8l3.6-3.6-2.2-2.3z"/>
|
||||
</svg>
|
||||
<path fill="#733737"
|
||||
d="M25.1 17.3l4.2-4.2c.8-.8.8-2 0-2.8-.8-.8-2-.8-2.8 0l-4.2 4.2-4.7-4.7 4.2-4.2c.8-.8.8-2 0-2.8-.8-.8-2-.8-2.8 0L14.8 7l-2.3-2.3-3.8 3.5c-3.4 3.4-4 8.6-1.8 12.6L3 24.7c-1.2 1.2-1.2 3.1 0 4.2.6.6 1.4.9 2.1.9.8 0 1.5-.3 2.1-.9l3.9-3.9c4 2.2 9.2 1.6 12.6-1.8l3.6-3.6-2.2-2.3z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 367 B After Width: | Height: | Size: 371 B |
@ -1,5 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="984 984 32 32">
|
||||
<path fill="#375273" d="M1013.2 994.1c-.2-.4-.4-.8-.6-1l-4.2-4.2c-.3-.3-.6-.5-1-.6-.4-.2-.8-.3-1.2-.3h-12c-.4 0-.7.1-.9.4-.2.3-.4.6-.4.9v6.2c.5-.3 1.1-.4 1.7-.5v-5.3h10.3v5.6c0 .4.1.7.4.9.3.3.6.4.9.4h5.6v13.7h-17.2v-5.5c-.6-.1-1.2-.2-1.7-.5v6.4c0 .4.1.7.4.9.3.2.6.4.9.4h18c.4 0 .7-.1.9-.4.2-.3.4-.6.4-.9v-15.4c0-.4-.1-.8-.3-1.2zm-6.6.8v-5c.3.1.4.2.5.3l4.2 4.2c.1.1.2.3.3.5h-5z"/>
|
||||
<path fill="none" d="M-43.8-437.5H2700v2625H-43.8z"/>
|
||||
<path fill="#375273" d="M986.5 1006.6l3.2-3.2c-.8-1.1-1.2-2.4-1.2-3.8 0-.9.2-1.8.5-2.6s.8-1.5 1.4-2.1 1.3-1.1 2.1-1.4c.8-.3 1.7-.5 2.6-.5s1.8.2 2.6.5 1.5.8 2.1 1.4c.6.6 1.1 1.3 1.4 2.1.3.8.5 1.7.5 2.6s-.2 1.8-.5 2.6-.8 1.5-1.4 2.1c-.6.6-1.3 1.1-2.1 1.4-.8.3-1.7.5-2.6.5-1.4 0-2.6-.4-3.8-1.2l-3.2 3.2c-.2.2-.5.4-.8.4-.3 0-.6-.1-.8-.4s-.4-.5-.4-.8c0-.3.1-.6.4-.8zm8.6-2.8c1.2 0 2.2-.4 3-1.2.8-.8 1.2-1.8 1.2-3s-.4-2.2-1.2-3c-.8-.8-1.8-1.2-3-1.2s-2.2.4-3 1.2-1.2 1.8-1.2 3 .4 2.2 1.2 3 1.9 1.2 3 1.2z"/>
|
||||
</svg>
|
||||
<path fill="#375273"
|
||||
d="M1013.2 994.1c-.2-.4-.4-.8-.6-1l-4.2-4.2c-.3-.3-.6-.5-1-.6-.4-.2-.8-.3-1.2-.3h-12c-.4 0-.7.1-.9.4-.2.3-.4.6-.4.9v6.2c.5-.3 1.1-.4 1.7-.5v-5.3h10.3v5.6c0 .4.1.7.4.9.3.3.6.4.9.4h5.6v13.7h-17.2v-5.5c-.6-.1-1.2-.2-1.7-.5v6.4c0 .4.1.7.4.9.3.2.6.4.9.4h18c.4 0 .7-.1.9-.4.2-.3.4-.6.4-.9v-15.4c0-.4-.1-.8-.3-1.2zm-6.6.8v-5c.3.1.4.2.5.3l4.2 4.2c.1.1.2.3.3.5h-5z" />
|
||||
<path fill="none" d="M-43.8-437.5H2700v2625H-43.8z" />
|
||||
<path fill="#375273"
|
||||
d="M986.5 1006.6l3.2-3.2c-.8-1.1-1.2-2.4-1.2-3.8 0-.9.2-1.8.5-2.6s.8-1.5 1.4-2.1 1.3-1.1 2.1-1.4c.8-.3 1.7-.5 2.6-.5s1.8.2 2.6.5 1.5.8 2.1 1.4c.6.6 1.1 1.3 1.4 2.1.3.8.5 1.7.5 2.6s-.2 1.8-.5 2.6-.8 1.5-1.4 2.1c-.6.6-1.3 1.1-2.1 1.4-.8.3-1.7.5-2.6.5-1.4 0-2.6-.4-3.8-1.2l-3.2 3.2c-.2.2-.5.4-.8.4-.3 0-.6-.1-.8-.4s-.4-.5-.4-.8c0-.3.1-.6.4-.8zm8.6-2.8c1.2 0 2.2-.4 3-1.2.8-.8 1.2-1.8 1.2-3s-.4-2.2-1.2-3c-.8-.8-1.8-1.2-3-1.2s-2.2.4-3 1.2-1.2 1.8-1.2 3 .4 2.2 1.2 3 1.9 1.2 3 1.2z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1013 B After Width: | Height: | Size: 1023 B |
@ -1,5 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="984 984 32 32">
|
||||
<path fill="none" d="M-43.8-437.5H2700v2625H-43.8z"/>
|
||||
<path fill="#375273" d="M986.1 995l2.2-2.2c.2-.2.5-.4.9-.4.3 0 .6.1.8.4l1.6 1.6-3.9 3.9-1.6-1.6c-.2-.2-.3-.5-.3-.8 0-.4.1-.7.3-.9zm13.9 7.8v3.9h-3.9l-7.8-7.8 3.9-3.9 7.8 7.8zm-8.3-5.9l5.1 5.1s.1.1.2.1.2-.1.2-.2 0-.1-.1-.2l-5.1-5.1s-.1-.1-.2-.1-.2.1-.2.2c.1.1.1.2.1.2zm5.9 8.6v-1.2h1.2v-1l-.9-.9-2.2 2.2.9.9h1z"/>
|
||||
<path fill="#375273" d="M1013.2 994.1c-.2-.4-.4-.8-.6-1l-4.2-4.2c-.3-.3-.6-.5-1-.6-.4-.2-.8-.3-1.2-.3h-12c-.4 0-.7.1-.9.4-.2.3-.4.6-.4.9v6.4l1.7 1.7v-7.7h10.3v5.6c0 .4.1.7.4.9.3.3.6.4.9.4h5.6v13.7h-17.2v-5.1l-1.7-1.7v7.2c0 .4.1.7.4.9.3.2.6.4.9.4h18c.4 0 .7-.1.9-.4.2-.3.4-.6.4-.9v-15.4c0-.4-.1-.8-.3-1.2zm-6.6.8v-5c.3.1.4.2.5.3l4.2 4.2c.1.1.2.3.3.5h-5z"/>
|
||||
</svg>
|
||||
<path fill="none" d="M-43.8-437.5H2700v2625H-43.8z" />
|
||||
<path fill="#375273"
|
||||
d="M986.1 995l2.2-2.2c.2-.2.5-.4.9-.4.3 0 .6.1.8.4l1.6 1.6-3.9 3.9-1.6-1.6c-.2-.2-.3-.5-.3-.8 0-.4.1-.7.3-.9zm13.9 7.8v3.9h-3.9l-7.8-7.8 3.9-3.9 7.8 7.8zm-8.3-5.9l5.1 5.1s.1.1.2.1.2-.1.2-.2 0-.1-.1-.2l-5.1-5.1s-.1-.1-.2-.1-.2.1-.2.2c.1.1.1.2.1.2zm5.9 8.6v-1.2h1.2v-1l-.9-.9-2.2 2.2.9.9h1z" />
|
||||
<path fill="#375273"
|
||||
d="M1013.2 994.1c-.2-.4-.4-.8-.6-1l-4.2-4.2c-.3-.3-.6-.5-1-.6-.4-.2-.8-.3-1.2-.3h-12c-.4 0-.7.1-.9.4-.2.3-.4.6-.4.9v6.4l1.7 1.7v-7.7h10.3v5.6c0 .4.1.7.4.9.3.3.6.4.9.4h5.6v13.7h-17.2v-5.1l-1.7-1.7v7.2c0 .4.1.7.4.9.3.2.6.4.9.4h18c.4 0 .7-.1.9-.4.2-.3.4-.6.4-.9v-15.4c0-.4-.1-.8-.3-1.2zm-6.6.8v-5c.3.1.4.2.5.3l4.2 4.2c.1.1.2.3.3.5h-5z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 801 B After Width: | Height: | Size: 811 B |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#D1954E" d="M27.1 16.6v11.1c0 .5-.2 1-.5 1.3-.4.4-.8.5-1.3.5H6.7c-.5 0-1-.2-1.3-.5-.4-.4-.5-.8-.5-1.3V16.6c0-.5.2-1 .5-1.3.4-.4.8-.5 1.3-.5h.6v-3.7c0-2.4.8-4.4 2.5-6.1 1.7-1.7 3.7-2.5 6.1-2.5 2.4 0 4.4.8 6.1 2.5 1.7 1.7 2.5 3.7 2.5 6.1v3.7h.6c.5 0 1 .2 1.3.5.5.4.7.8.7 1.3zm-16-1.8H21v-3.7c0-1.4-.5-2.5-1.4-3.5S17.4 6.1 16 6.1s-2.5.5-3.5 1.4c-1 1-1.4 2.1-1.4 3.5v3.8z"/>
|
||||
</svg>
|
||||
<path fill="#D1954E"
|
||||
d="M27.1 16.6v11.1c0 .5-.2 1-.5 1.3-.4.4-.8.5-1.3.5H6.7c-.5 0-1-.2-1.3-.5-.4-.4-.5-.8-.5-1.3V16.6c0-.5.2-1 .5-1.3.4-.4.8-.5 1.3-.5h.6v-3.7c0-2.4.8-4.4 2.5-6.1 1.7-1.7 3.7-2.5 6.1-2.5 2.4 0 4.4.8 6.1 2.5 1.7 1.7 2.5 3.7 2.5 6.1v3.7h.6c.5 0 1 .2 1.3.5.5.4.7.8.7 1.3zm-16-1.8H21v-3.7c0-1.4-.5-2.5-1.4-3.5S17.4 6.1 16 6.1s-2.5.5-3.5 1.4c-1 1-1.4 2.1-1.4 3.5v3.8z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 453 B After Width: | Height: | Size: 457 B |
@ -1,5 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="984 984 32 32">
|
||||
<path fill="none" d="M-43.8-437.5H2700v2625H-43.8z"/>
|
||||
<path fill="#375273" d="M1012.2 993.1c.2.3.5.6.6 1 .2.4.3.8.3 1.2v15.4c0 .4-.1.7-.4.9-.3.2-.6.4-.9.4h-18c-.4 0-.7-.1-.9-.4-.2-.3-.4-.6-.4-.9v-21.4c0-.4.1-.7.4-.9.3-.2.6-.4.9-.4h12c.4 0 .8.1 1.2.3.4.2.8.4 1 .6l4.2 4.2zm-.8 17.2v-13.7h-5.6c-.4 0-.7-.1-.9-.4-.3-.2-.4-.6-.4-.9v-5.6h-10.3v20.6h17.2zm-5.2-20.5v5h5c-.1-.3-.2-.4-.3-.5l-4.2-4.2c0-.1-.2-.2-.5-.3z"/>
|
||||
<path fill="#375273" d="M1005.7 1001.4c0 .3-.1.6-.3.9l-6.1 6.1c-.2.2-.5.3-.9.3-.3 0-.6-.1-.8-.3l-.7-.7c-.2-.2-.4-.5-.4-.9s.1-.6.4-.9l2.8-2.8H988c-.3 0-.6-.1-.8-.4-.2-.2-.3-.5-.3-.9v-1.2c0-.3.1-.6.3-.9.2-.2.5-.4.8-.4h11.6l-2.8-2.8c-.2-.2-.4-.5-.4-.8 0-.3.1-.6.4-.8l.7-.7c.2-.2.5-.4.8-.4.3 0 .6.1.9.4l6.1 6.1c.3.5.4.8.4 1.1z"/>
|
||||
</svg>
|
||||
<path fill="none" d="M-43.8-437.5H2700v2625H-43.8z" />
|
||||
<path fill="#375273"
|
||||
d="M1012.2 993.1c.2.3.5.6.6 1 .2.4.3.8.3 1.2v15.4c0 .4-.1.7-.4.9-.3.2-.6.4-.9.4h-18c-.4 0-.7-.1-.9-.4-.2-.3-.4-.6-.4-.9v-21.4c0-.4.1-.7.4-.9.3-.2.6-.4.9-.4h12c.4 0 .8.1 1.2.3.4.2.8.4 1 .6l4.2 4.2zm-.8 17.2v-13.7h-5.6c-.4 0-.7-.1-.9-.4-.3-.2-.4-.6-.4-.9v-5.6h-10.3v20.6h17.2zm-5.2-20.5v5h5c-.1-.3-.2-.4-.3-.5l-4.2-4.2c0-.1-.2-.2-.5-.3z" />
|
||||
<path fill="#375273"
|
||||
d="M1005.7 1001.4c0 .3-.1.6-.3.9l-6.1 6.1c-.2.2-.5.3-.9.3-.3 0-.6-.1-.8-.3l-.7-.7c-.2-.2-.4-.5-.4-.9s.1-.6.4-.9l2.8-2.8H988c-.3 0-.6-.1-.8-.4-.2-.2-.3-.5-.3-.9v-1.2c0-.3.1-.6.3-.9.2-.2.5-.4.8-.4h11.6l-2.8-2.8c-.2-.2-.4-.5-.4-.8 0-.3.1-.6.4-.8l.7-.7c.2-.2.5-.4.8-.4.3 0 .6.1.9.4l6.1 6.1c.3.5.4.8.4 1.1z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 817 B After Width: | Height: | Size: 827 B |
@ -1,5 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="984 984 32 32">
|
||||
<path fill="none" d="M-43.8-437.5H2700v2625H-43.8z"/>
|
||||
<path fill="#375273" d="M1010 992.4c.2.3.5.6.6 1 .2.4.3.8.3 1.2v15.4c0 .4-.1.7-.4.9-.3.2-.6.4-.9.4h-18c-.4 0-.7-.1-.9-.4-.2-.3-.4-.6-.4-.9v-21.4c0-.4.1-.7.4-.9.3-.2.6-.4.9-.4h12c.4 0 .8.1 1.2.3.4.2.8.4 1 .6l4.2 4.2zm-.8 17.2v-13.7h-5.6c-.4 0-.7-.1-.9-.4-.3-.2-.4-.6-.4-.9V989H992v20.6h17.2zm-5.2-20.4v5h5c-.1-.3-.2-.4-.3-.5l-4.2-4.2c0-.1-.2-.2-.5-.3z"/>
|
||||
<path fill="#427337" d="M1000 1006.5v1.5c0 .2-.1.4-.2.5-.1.1-.3.2-.5.2H996v3.2c0 .2-.1.4-.2.5-.1.1-.3.2-.5.2h-1.5c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5v-3.2h-3.2c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5v-1.5c0-.2.1-.4.2-.5.1-.1.3-.2.5-.2h3.2v-3.2c0-.2.1-.4.2-.5.1-.1.3-.2.5-.2h1.5c.2 0 .4.1.5.2.1.1.2.3.2.5v3.2h3.2c.2 0 .4.1.5.2.2.1.3.3.3.5z"/>
|
||||
</svg>
|
||||
<path fill="none" d="M-43.8-437.5H2700v2625H-43.8z" />
|
||||
<path fill="#375273"
|
||||
d="M1010 992.4c.2.3.5.6.6 1 .2.4.3.8.3 1.2v15.4c0 .4-.1.7-.4.9-.3.2-.6.4-.9.4h-18c-.4 0-.7-.1-.9-.4-.2-.3-.4-.6-.4-.9v-21.4c0-.4.1-.7.4-.9.3-.2.6-.4.9-.4h12c.4 0 .8.1 1.2.3.4.2.8.4 1 .6l4.2 4.2zm-.8 17.2v-13.7h-5.6c-.4 0-.7-.1-.9-.4-.3-.2-.4-.6-.4-.9V989H992v20.6h17.2zm-5.2-20.4v5h5c-.1-.3-.2-.4-.3-.5l-4.2-4.2c0-.1-.2-.2-.5-.3z" />
|
||||
<path fill="#427337"
|
||||
d="M1000 1006.5v1.5c0 .2-.1.4-.2.5-.1.1-.3.2-.5.2H996v3.2c0 .2-.1.4-.2.5-.1.1-.3.2-.5.2h-1.5c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5v-3.2h-3.2c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5v-1.5c0-.2.1-.4.2-.5.1-.1.3-.2.5-.2h3.2v-3.2c0-.2.1-.4.2-.5.1-.1.3-.2.5-.2h1.5c.2 0 .4.1.5.2.1.1.2.3.2.5v3.2h3.2c.2 0 .4.1.5.2.2.1.3.3.3.5z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 824 B After Width: | Height: | Size: 834 B |
@ -1,5 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="984 984 32 32">
|
||||
<path fill="none" d="M-43.8-437.5H2700v2625H-43.8z"/>
|
||||
<path fill="#375273" d="M999.7 1005.7v2c0 .1 0 .1-.1.2 0 .1-.1.1-.2.1l-1.7.2c-.1.3-.2.6-.3.8.2.3.5.7 1 1.2.1.1.1.1.1.2s0 .1-.1.2c-.2.2-.5.5-.9 1-.4.4-.7.6-.8.6-.1 0-.1 0-.2-.1l-1.2-1c-.3.1-.5.2-.8.3-.1.8-.2 1.4-.3 1.7 0 .2-.1.3-.3.3h-2c-.1 0-.2 0-.2-.1-.1-.1-.1-.1-.1-.2l-.3-1.6c-.3-.1-.6-.2-.8-.3l-1.3 1c-.1.1-.1.1-.2.1s-.2 0-.2-.1c-.8-.7-1.2-1.2-1.5-1.5 0-.1-.1-.1-.1-.2s0-.1.1-.2.2-.3.5-.6c.2-.3.4-.5.5-.6-.2-.3-.3-.6-.4-.9l-1.6-.2c-.1 0-.1 0-.2-.1 0-.1-.1-.1-.1-.2v-2c0-.1 0-.1.1-.2 0-.1.1-.1.2-.1l1.7-.2c.1-.3.2-.5.3-.8-.2-.3-.6-.8-1-1.2-.1-.1-.1-.1-.1-.2s0-.1.1-.2c.2-.2.4-.5.9-1 .4-.4.7-.6.8-.6.1 0 .2 0 .2.1l1.2 1c.3-.1.5-.2.8-.3.1-.8.2-1.4.3-1.7 0-.2.1-.3.3-.3h2c.1 0 .2 0 .2.1.1.1.1.1.1.2l.3 1.6c.3.1.6.2.8.3l1.3-1c.1-.1.1-.1.2-.1s.2 0 .2.1c.8.7 1.3 1.2 1.5 1.5 0 0 .1.1.1.2s0 .1-.1.2-.2.3-.5.6c-.2.3-.4.5-.5.6.2.3.3.6.4.9l1.6.2c.1 0 .1 0 .2.1.1 0 .1.1.1.2zm-5.2 2.6c.4-.4.7-1 .7-1.6 0-.6-.2-1.2-.7-1.6-.4-.4-1-.7-1.6-.7-.6 0-1.2.2-1.6.7-.4.4-.7 1-.7 1.6 0 .6.2 1.2.7 1.6.4.4 1 .7 1.6.7.6-.1 1.1-.3 1.6-.7z"/>
|
||||
<path fill="#375273" d="M1013.7 992.6c-.2-.4-.4-.8-.6-1l-4.2-4.2c-.3-.3-.6-.5-1-.6-.4-.2-.8-.3-1.2-.3h-12c-.4 0-.7.1-.9.4-.2.3-.4.6-.4.9v15.7h1.7v-15.2h10.3v5.6c0 .4.1.7.4.9.3.3.6.4.9.4h5.6v13.7h-15.9v1.7h16.3c.4 0 .7-.1.9-.4.2-.3.4-.6.4-.9v-15.4c0-.5-.1-.9-.3-1.3zm-6.6.8v-5c.3.1.4.2.5.3l4.2 4.2c.1.1.2.3.3.5h-5z"/>
|
||||
</svg>
|
||||
<path fill="none" d="M-43.8-437.5H2700v2625H-43.8z" />
|
||||
<path fill="#375273"
|
||||
d="M999.7 1005.7v2c0 .1 0 .1-.1.2 0 .1-.1.1-.2.1l-1.7.2c-.1.3-.2.6-.3.8.2.3.5.7 1 1.2.1.1.1.1.1.2s0 .1-.1.2c-.2.2-.5.5-.9 1-.4.4-.7.6-.8.6-.1 0-.1 0-.2-.1l-1.2-1c-.3.1-.5.2-.8.3-.1.8-.2 1.4-.3 1.7 0 .2-.1.3-.3.3h-2c-.1 0-.2 0-.2-.1-.1-.1-.1-.1-.1-.2l-.3-1.6c-.3-.1-.6-.2-.8-.3l-1.3 1c-.1.1-.1.1-.2.1s-.2 0-.2-.1c-.8-.7-1.2-1.2-1.5-1.5 0-.1-.1-.1-.1-.2s0-.1.1-.2.2-.3.5-.6c.2-.3.4-.5.5-.6-.2-.3-.3-.6-.4-.9l-1.6-.2c-.1 0-.1 0-.2-.1 0-.1-.1-.1-.1-.2v-2c0-.1 0-.1.1-.2 0-.1.1-.1.2-.1l1.7-.2c.1-.3.2-.5.3-.8-.2-.3-.6-.8-1-1.2-.1-.1-.1-.1-.1-.2s0-.1.1-.2c.2-.2.4-.5.9-1 .4-.4.7-.6.8-.6.1 0 .2 0 .2.1l1.2 1c.3-.1.5-.2.8-.3.1-.8.2-1.4.3-1.7 0-.2.1-.3.3-.3h2c.1 0 .2 0 .2.1.1.1.1.1.1.2l.3 1.6c.3.1.6.2.8.3l1.3-1c.1-.1.1-.1.2-.1s.2 0 .2.1c.8.7 1.3 1.2 1.5 1.5 0 0 .1.1.1.2s0 .1-.1.2-.2.3-.5.6c-.2.3-.4.5-.5.6.2.3.3.6.4.9l1.6.2c.1 0 .1 0 .2.1.1 0 .1.1.1.2zm-5.2 2.6c.4-.4.7-1 .7-1.6 0-.6-.2-1.2-.7-1.6-.4-.4-1-.7-1.6-.7-.6 0-1.2.2-1.6.7-.4.4-.7 1-.7 1.6 0 .6.2 1.2.7 1.6.4.4 1 .7 1.6.7.6-.1 1.1-.3 1.6-.7z" />
|
||||
<path fill="#375273"
|
||||
d="M1013.7 992.6c-.2-.4-.4-.8-.6-1l-4.2-4.2c-.3-.3-.6-.5-1-.6-.4-.2-.8-.3-1.2-.3h-12c-.4 0-.7.1-.9.4-.2.3-.4.6-.4.9v15.7h1.7v-15.2h10.3v5.6c0 .4.1.7.4.9.3.3.6.4.9.4h5.6v13.7h-15.9v1.7h16.3c.4 0 .7-.1.9-.4.2-.3.4-.6.4-.9v-15.4c0-.5-.1-.9-.3-1.3zm-6.6.8v-5c.3.1.4.2.5.3l4.2 4.2c.1.1.2.3.3.5h-5z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#375273" d="M28.3 11.9v14.9c0 .4-.1.8-.4 1.1-.3.3-.7.4-1.1.4H5.2c-.4 0-.8-.1-1.1-.4-.3-.3-.4-.7-.4-1.1V5.2c0-.4.1-.8.4-1.1.3-.3.7-.4 1.1-.4h14.9c.4 0 .9.1 1.4.3.5.2.9.5 1.2.8l4.5 4.5c.3.3.6.7.8 1.2.2.5.3 1 .3 1.4zm-4.1 14.3h2.1V11.9c0-.1-.1-.4-.2-.6-.1-.3-.2-.4-.3-.6l-4.5-4.5c-.1-.1-.3-.2-.6-.3-.3-.1-.5-.2-.6-.2v6.7c0 .4-.1.8-.4 1.1-.3.3-.7.5-1.1.5H9.3c-.4 0-.8-.1-1.1-.4-.3-.3-.4-.7-.4-1.1V5.8h-2v20.5h2v-6.7c0-.4.1-.8.4-1.1.3-.3.7-.5 1.1-.5h13.3c.4 0 .8.1 1.1.4.3.3.4.7.4 1.1v6.7zm-14.4 0h12.3v-6.1H9.8v6.1zM18 11.4V6.3c0-.2 0-.3-.1-.4-.1-.1-.2-.2-.4-.2h-3.1c-.1 0-.3.1-.4.2v5.5c0 .1.1.3.2.4.1.1.2.2.4.2h3.1c.1 0 .3-.1.4-.2-.1-.2-.1-.3-.1-.4z"/>
|
||||
</svg>
|
||||
<path fill="#375273"
|
||||
d="M28.3 11.9v14.9c0 .4-.1.8-.4 1.1-.3.3-.7.4-1.1.4H5.2c-.4 0-.8-.1-1.1-.4-.3-.3-.4-.7-.4-1.1V5.2c0-.4.1-.8.4-1.1.3-.3.7-.4 1.1-.4h14.9c.4 0 .9.1 1.4.3.5.2.9.5 1.2.8l4.5 4.5c.3.3.6.7.8 1.2.2.5.3 1 .3 1.4zm-4.1 14.3h2.1V11.9c0-.1-.1-.4-.2-.6-.1-.3-.2-.4-.3-.6l-4.5-4.5c-.1-.1-.3-.2-.6-.3-.3-.1-.5-.2-.6-.2v6.7c0 .4-.1.8-.4 1.1-.3.3-.7.5-1.1.5H9.3c-.4 0-.8-.1-1.1-.4-.3-.3-.4-.7-.4-1.1V5.8h-2v20.5h2v-6.7c0-.4.1-.8.4-1.1.3-.3.7-.5 1.1-.5h13.3c.4 0 .8.1 1.1.4.3.3.4.7.4 1.1v6.7zm-14.4 0h12.3v-6.1H9.8v6.1zM18 11.4V6.3c0-.2 0-.3-.1-.4-.1-.1-.2-.2-.4-.2h-3.1c-.1 0-.3.1-.4.2v5.5c0 .1.1.3.2.4.1.1.2.2.4.2h3.1c.1 0 .3-.1.4-.2-.1-.2-.1-.3-.1-.4z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 732 B After Width: | Height: | Size: 736 B |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#375273" d="M28.5 21.3v4.8c0 .4-.1.7-.4 1s-.6.4-1 .4H4.9c-.4 0-.7-.1-1-.4s-.4-.6-.4-1v-4.8c0-.4.1-.7.4-1s.6-.4 1-.4h7l2 2c.6.6 1.3.8 2 .8.8 0 1.5-.3 2-.8l2-2h7c.4 0 .7.1 1 .4s.6.6.6 1zm-4.9-8.6c.2.4.1.8-.2 1.1l-6.8 6.8c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3l-6.8-6.8c-.3-.3-.4-.6-.2-1.1.2-.4.5-.6.9-.6H13V5.4c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3h3.9c.3 0 .5.1.7.3s.3.4.3.7v6.8h3.9c.4-.1.7.1.8.5zm-1.1 12.7c.2-.2.3-.4.3-.7 0-.3-.1-.5-.3-.7-.2-.2-.4-.3-.7-.3s-.5.1-.7.3c-.2.2-.3.4-.3.7 0 .3.1.5.3.7.2.2.4.3.7.3s.5-.2.7-.3zm3.8 0c.2-.2.3-.4.3-.7 0-.3-.1-.5-.3-.7s-.4-.3-.7-.3c-.3 0-.5.1-.7.3s-.3.4-.3.7c0 .3.1.5.3.7s.4.3.7.3c.3-.1.5-.2.7-.3z"/>
|
||||
</svg>
|
||||
<path fill="#375273"
|
||||
d="M28.5 21.3v4.8c0 .4-.1.7-.4 1s-.6.4-1 .4H4.9c-.4 0-.7-.1-1-.4s-.4-.6-.4-1v-4.8c0-.4.1-.7.4-1s.6-.4 1-.4h7l2 2c.6.6 1.3.8 2 .8.8 0 1.5-.3 2-.8l2-2h7c.4 0 .7.1 1 .4s.6.6.6 1zm-4.9-8.6c.2.4.1.8-.2 1.1l-6.8 6.8c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3l-6.8-6.8c-.3-.3-.4-.6-.2-1.1.2-.4.5-.6.9-.6H13V5.4c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3h3.9c.3 0 .5.1.7.3s.3.4.3.7v6.8h3.9c.4-.1.7.1.8.5zm-1.1 12.7c.2-.2.3-.4.3-.7 0-.3-.1-.5-.3-.7-.2-.2-.4-.3-.7-.3s-.5.1-.7.3c-.2.2-.3.4-.3.7 0 .3.1.5.3.7.2.2.4.3.7.3s.5-.2.7-.3zm3.8 0c.2-.2.3-.4.3-.7 0-.3-.1-.5-.3-.7s-.4-.3-.7-.3c-.3 0-.5.1-.7.3s-.3.4-.3.7c0 .3.1.5.3.7s.4.3.7.3c.3-.1.5-.2.7-.3z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 711 B After Width: | Height: | Size: 715 B |
@ -1,3 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20.7 25.8">
|
||||
<path d="M20.2 14.4l-9 9c-.3.3-.5.4-.9.4s-.7-.1-.9-.4l-9-9c-.4-.4-.5-.8-.3-1.5.3-.5.7-.8 1.2-.8h5.2V3.3c0-.4.1-.7.4-.9.3-.3.5-.4.9-.4H13c.4 0 .7.1.9.4.2.2.4.5.4.9v9h5.2c.5-.1.9.1 1.1.7.2.5 0 1-.4 1.4z" fill="#427337"/>
|
||||
</svg>
|
||||
<path
|
||||
d="M20.2 14.4l-9 9c-.3.3-.5.4-.9.4s-.7-.1-.9-.4l-9-9c-.4-.4-.5-.8-.3-1.5.3-.5.7-.8 1.2-.8h5.2V3.3c0-.4.1-.7.4-.9.3-.3.5-.4.9-.4H13c.4 0 .7.1.9.4.2.2.4.5.4.9v9h5.2c.5-.1.9.1 1.1.7.2.5 0 1-.4 1.4z"
|
||||
fill="#427337" />
|
||||
</svg>
|
Before Width: | Height: | Size: 293 B After Width: | Height: | Size: 301 B |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#427337" d="M29 16.1c.3.7.2 1.4-.3 1.9L17.2 29.4c-.3.3-.7.5-1.2.5s-.8-.2-1.2-.5L3.3 17.9c-.5-.5-.7-1-.3-1.9.3-.7.8-1 1.5-1h6.6V3.8c0-.5.2-.8.5-1.2.3-.3.7-.5 1.2-.5h6.6c.5 0 .8.2 1.2.5.3.3.5.7.5 1.2v11.5h6.6c.6-.2 1.1.1 1.3.8z"/>
|
||||
</svg>
|
||||
<path fill="#427337"
|
||||
d="M29 16.1c.3.7.2 1.4-.3 1.9L17.2 29.4c-.3.3-.7.5-1.2.5s-.8-.2-1.2-.5L3.3 17.9c-.5-.5-.7-1-.3-1.9.3-.7.8-1 1.5-1h6.6V3.8c0-.5.2-.8.5-1.2.3-.3.7-.5 1.2-.5h6.6c.5 0 .8.2 1.2.5.3.3.5.7.5 1.2v11.5h6.6c.6-.2 1.1.1 1.3.8z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 311 B After Width: | Height: | Size: 315 B |
@ -1,8 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path d="M12.4 17.6c-.4.3-.7.5-1 .7s-.5.5-.9.8c-.4.3-.7.7-.9.9-.2.3-.5.6-.7 1-.3.4-.5.8-.6 1.2-.2.4-.3.8-.4 1.3-.1.5-.2 1-.2 1.4h13.1l-.6-.6c-.1 0-.2-.3-.2-.6 0-.2.1-.3.2-.5 0 0 0-.1.1-.1l1.9-1.9-1.9-1.9c-.3-.2-.3-.5-.3-.7 0-.2.1-.3.2-.5 0 0 0-.1.1-.1l.2-.2c-.1 0-.1-.1-.2-.1-.4-.3-.7-.5-.9-.6s-.5-.3-.9-.6c.4-.3.7-.4.9-.6.2-.1.5-.3.9-.6s.7-.5 1-.7c.2-.2.5-.5.9-.8.4-.3.7-.7.9-.9.2-.3.5-.6.7-1 .3-.4.5-.8.6-1.2s.3-.8.4-1.3c.1-.5.2-1 .2-1.4H7.7c0 .5.1 1 .2 1.4.1.5.3.9.4 1.3s.4.8.6 1.2.5.7.7 1c.2.3.5.6.9.9.4.3.7.6.9.8.2.2.6.5 1 .7.4.3.7.5.9.6.2.1.5.3.9.6-.4.3-.7.4-.9.6s-.5.2-.9.5zM23 25h2c0-.4-.1-.8-.2-1.2l-.3-.3L23 25zm3.3.9H6.4c-.1 0-.2 0-.3.1-.1.1-.1.2-.1.3V28c0 .1 0 .2.1.3.1.1.2.1.3.1h19.9c.1 0 .2 0 .3-.1.1-.1.1-.2.1-.3v-1.7c0-.1 0-.2-.1-.3-.1-.1-.2-.1-.3-.1zM6.4 6.8h19.9c.1 0 .2 0 .3-.1s.1-.2.1-.3V4.7c0-.1 0-.2-.1-.3s-.2-.1-.3-.1H6.4c-.1 0-.2 0-.3.1s-.1.1-.1.3v1.7c0 .1 0 .2.1.3s.2.1.3.1z" fill="#375273"/>
|
||||
<path fill="none" d="M28.6 19.2c.1-.2.2-.3.2-.5 0 .1-.1.3-.2.5z"/>
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0zm0 4.3l2.2-2.1c.1-.2.2-.4.2-.5 0-.2-.1-.4-.2-.4l-1-1c-.2-.1-.3-.2-.5-.2s-.4 0-.5.2l-2.1 2.1-2.2-2.1c-.2-.1-.3-.2-.5-.2s-.4.1-.5.2l-1 .9c-.1.2-.2.3-.2.5s0 .4.2.5l2.1 2.1-2.1 2.1c-.1.2-.2.3-.2.5s.1.4.2.5l1 1c.2.1.3.2.5.2s.4-.1.5-.2l2.2-2.1 2 2.2c.2.1.3.2.5.2s.4-.1.5-.2l1-1c.1-.2.2-.3.2-.5s-.1-.4-.2-.5l-2.1-2.2z"/>
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5"/>
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z"/>
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0"/>
|
||||
</svg>
|
||||
<path
|
||||
d="M12.4 17.6c-.4.3-.7.5-1 .7s-.5.5-.9.8c-.4.3-.7.7-.9.9-.2.3-.5.6-.7 1-.3.4-.5.8-.6 1.2-.2.4-.3.8-.4 1.3-.1.5-.2 1-.2 1.4h13.1l-.6-.6c-.1 0-.2-.3-.2-.6 0-.2.1-.3.2-.5 0 0 0-.1.1-.1l1.9-1.9-1.9-1.9c-.3-.2-.3-.5-.3-.7 0-.2.1-.3.2-.5 0 0 0-.1.1-.1l.2-.2c-.1 0-.1-.1-.2-.1-.4-.3-.7-.5-.9-.6s-.5-.3-.9-.6c.4-.3.7-.4.9-.6.2-.1.5-.3.9-.6s.7-.5 1-.7c.2-.2.5-.5.9-.8.4-.3.7-.7.9-.9.2-.3.5-.6.7-1 .3-.4.5-.8.6-1.2s.3-.8.4-1.3c.1-.5.2-1 .2-1.4H7.7c0 .5.1 1 .2 1.4.1.5.3.9.4 1.3s.4.8.6 1.2.5.7.7 1c.2.3.5.6.9.9.4.3.7.6.9.8.2.2.6.5 1 .7.4.3.7.5.9.6.2.1.5.3.9.6-.4.3-.7.4-.9.6s-.5.2-.9.5zM23 25h2c0-.4-.1-.8-.2-1.2l-.3-.3L23 25zm3.3.9H6.4c-.1 0-.2 0-.3.1-.1.1-.1.2-.1.3V28c0 .1 0 .2.1.3.1.1.2.1.3.1h19.9c.1 0 .2 0 .3-.1.1-.1.1-.2.1-.3v-1.7c0-.1 0-.2-.1-.3-.1-.1-.2-.1-.3-.1zM6.4 6.8h19.9c.1 0 .2 0 .3-.1s.1-.2.1-.3V4.7c0-.1 0-.2-.1-.3s-.2-.1-.3-.1H6.4c-.1 0-.2 0-.3.1s-.1.1-.1.3v1.7c0 .1 0 .2.1.3s.2.1.3.1z"
|
||||
fill="#375273" />
|
||||
<path fill="none" d="M28.6 19.2c.1-.2.2-.3.2-.5 0 .1-.1.3-.2.5z" />
|
||||
<path fill="#733737"
|
||||
d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0zm0 4.3l2.2-2.1c.1-.2.2-.4.2-.5 0-.2-.1-.4-.2-.4l-1-1c-.2-.1-.3-.2-.5-.2s-.4 0-.5.2l-2.1 2.1-2.2-2.1c-.2-.1-.3-.2-.5-.2s-.4.1-.5.2l-1 .9c-.1.2-.2.3-.2.5s0 .4.2.5l2.1 2.1-2.1 2.1c-.1.2-.2.3-.2.5s.1.4.2.5l1 1c.2.1.3.2.5.2s.4-.1.5-.2l2.2-2.1 2 2.2c.2.1.3.2.5.2s.4-.1.5-.2l1-1c.1-.2.2-.3.2-.5s-.1-.4-.2-.5l-2.1-2.2z" />
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5" />
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z" />
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
@ -1,7 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="984 984 32 32">
|
||||
<path fill="#375273" d="M998.8 999c0 .3-.2.5-.5.5h-.8c-.3 0-.5-.2-.5-.5v-12.5c0-.3.2-.5.5-.5h.8c.3 0 .5.2.5.5V999zm.7 2.4c.3 0 .4-.2.2-.4l-.5-.7c-.2-.2-.5-.4-.8-.4h-1.2c-.3 0-.6.2-.8.4l-.3.7c-.2.2-.1.4.2.4h3.2z"/>
|
||||
<path fill="#733737" d="M1007.1 1010.5c0 .2-.1.3-.2.5l-1 1c-.1.1-.3.2-.5.2s-.3-.1-.5-.2l-2.1-2.2-2.2 2.1c-.1.1-.3.2-.5.2s-.3-.1-.5-.2l-1-1c-.1-.1-.2-.3-.2-.5s.1-.3.2-.5l2.1-2.1-2.1-2.1c-.2-.1-.2-.3-.2-.5s.1-.3.2-.5l1-.9c.1-.1.3-.2.5-.2s.3.1.5.2l2.2 2.1 2.1-2.1c.1-.1.3-.2.5-.2s.3.1.5.2l1 1c.1.1.2.3.2.5s-.1.3-.2.5l-2.2 2.1 2.1 2.1c.2.1.3.3.3.5z"/>
|
||||
<path fill="none" d="M1006.9 1005.8c.1-.2.2-.3.2-.5 0 .2-.1.3-.2.5z"/>
|
||||
<path fill="#733737" d="M1004.7 1003.7c.1-.1.1-.1 0 0 .1-.1.1-.1 0 0zm0 4.2l2.2-2.1c.1-.2.2-.4.2-.5 0-.2-.1-.4-.2-.4l-1-1c-.2-.1-.3-.2-.5-.2s-.4 0-.5.2l-2.1 2.1-2.2-2.1c-.2-.1-.3-.2-.5-.2s-.4.1-.5.2l-1 .9c-.1.2-.2.3-.2.5s0 .4.2.5l2.1 2.1-2.1 2.1c-.1.2-.2.3-.2.5s.1.4.2.5l1 1c.2.1.3.2.5.2s.4-.1.5-.2l2.2-2.1 2 2.2c.2.1.3.2.5.2s.4-.1.5-.2l1-1c.1-.2.2-.3.2-.5s-.1-.4-.2-.5l-2.1-2.2z"/>
|
||||
<path fill="#375273" d="M1000.9 1012c-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-1-1c-.2-.2-.3-.4-.3-.7s.1-.5.3-.7l1.9-1.9-1.6-1.6h-3.7c-.3 0-.6.2-.6.5l-1.6 6.8c-.1.3.1.5.4.5h9.4c.3 0 .4-.2.4-.5l-.7-3-1.5 1.6zm-2.7-6.8c0-.3.1-.5.3-.7l1-.9c.2-.2.4-.3.7-.3.2 0 .3 0 .5.1l-.3-1.1c-.1-.3-.3-.5-.6-.5H996c-.3 0-.6.2-.6.5l-.7 3c-.1.3.1.5.4.5h3.3c-.1-.1-.2-.3-.2-.6z"/>
|
||||
</svg>
|
||||
<path fill="#375273"
|
||||
d="M998.8 999c0 .3-.2.5-.5.5h-.8c-.3 0-.5-.2-.5-.5v-12.5c0-.3.2-.5.5-.5h.8c.3 0 .5.2.5.5V999zm.7 2.4c.3 0 .4-.2.2-.4l-.5-.7c-.2-.2-.5-.4-.8-.4h-1.2c-.3 0-.6.2-.8.4l-.3.7c-.2.2-.1.4.2.4h3.2z" />
|
||||
<path fill="#733737"
|
||||
d="M1007.1 1010.5c0 .2-.1.3-.2.5l-1 1c-.1.1-.3.2-.5.2s-.3-.1-.5-.2l-2.1-2.2-2.2 2.1c-.1.1-.3.2-.5.2s-.3-.1-.5-.2l-1-1c-.1-.1-.2-.3-.2-.5s.1-.3.2-.5l2.1-2.1-2.1-2.1c-.2-.1-.2-.3-.2-.5s.1-.3.2-.5l1-.9c.1-.1.3-.2.5-.2s.3.1.5.2l2.2 2.1 2.1-2.1c.1-.1.3-.2.5-.2s.3.1.5.2l1 1c.1.1.2.3.2.5s-.1.3-.2.5l-2.2 2.1 2.1 2.1c.2.1.3.3.3.5z" />
|
||||
<path fill="none" d="M1006.9 1005.8c.1-.2.2-.3.2-.5 0 .2-.1.3-.2.5z" />
|
||||
<path fill="#733737"
|
||||
d="M1004.7 1003.7c.1-.1.1-.1 0 0 .1-.1.1-.1 0 0zm0 4.2l2.2-2.1c.1-.2.2-.4.2-.5 0-.2-.1-.4-.2-.4l-1-1c-.2-.1-.3-.2-.5-.2s-.4 0-.5.2l-2.1 2.1-2.2-2.1c-.2-.1-.3-.2-.5-.2s-.4.1-.5.2l-1 .9c-.1.2-.2.3-.2.5s0 .4.2.5l2.1 2.1-2.1 2.1c-.1.2-.2.3-.2.5s.1.4.2.5l1 1c.2.1.3.2.5.2s.4-.1.5-.2l2.2-2.1 2 2.2c.2.1.3.2.5.2s.4-.1.5-.2l1-1c.1-.2.2-.3.2-.5s-.1-.4-.2-.5l-2.1-2.2z" />
|
||||
<path fill="#375273"
|
||||
d="M1000.9 1012c-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-1-1c-.2-.2-.3-.4-.3-.7s.1-.5.3-.7l1.9-1.9-1.6-1.6h-3.7c-.3 0-.6.2-.6.5l-1.6 6.8c-.1.3.1.5.4.5h9.4c.3 0 .4-.2.4-.5l-.7-3-1.5 1.6zm-2.7-6.8c0-.3.1-.5.3-.7l1-.9c.2-.2.4-.3.7-.3.2 0 .3 0 .5.1l-.3-1.1c-.1-.3-.3-.5-.6-.5H996c-.3 0-.6.2-.6.5l-.7 3c-.1.3.1.5.4.5h3.3c-.1-.1-.2-.3-.2-.6z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
@ -1,6 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5"/>
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z"/>
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0"/>
|
||||
<path fill="#375273" d="M27.2 8.9c.4 0 .7.1.9.4s.4.6.4.9v17c0 .4-.1.7-.4.9s-.6.4-.9.4H13.8c-.4 0-.7-.1-.9-.4-.3-.3-.4-.6-.4-.9v-4H4.8c-.4 0-.7-.1-.9-.4s-.4-.6-.4-.9v-9.4c0-.4.1-.8.3-1.2.2-.4.4-.8.7-1.1l5.7-5.7c.3-.3.6-.5 1.1-.7.4-.2.9-.3 1.2-.3h5.8c.4 0 .7.1.9.4.3.3.4.6.4.9v4.6c.6-.4 1.2-.6 1.8-.6h5.8zm-13.8 6.6l4.4-4.4V5.3h-5.4v5.8c0 .4-.1.7-.4.9-.3.3-.6.4-.9.4H5.3v8.9h7.1v-3.6c0-.4.1-.8.3-1.2s.4-.7.7-1zm-2.8-9l-4.2 4.2h4.2V6.5zm16.1 20.2V10.6h-5.4v5.8c0 .4-.1.7-.4.9-.3.3-.6.4-.9.4h-5.8v8.9h12.5zm-7.1-14.9L15.4 16h4.2v-4.2z"/>
|
||||
</svg>
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5" />
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z" />
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0" />
|
||||
<path fill="#375273"
|
||||
d="M27.2 8.9c.4 0 .7.1.9.4s.4.6.4.9v17c0 .4-.1.7-.4.9s-.6.4-.9.4H13.8c-.4 0-.7-.1-.9-.4-.3-.3-.4-.6-.4-.9v-4H4.8c-.4 0-.7-.1-.9-.4s-.4-.6-.4-.9v-9.4c0-.4.1-.8.3-1.2.2-.4.4-.8.7-1.1l5.7-5.7c.3-.3.6-.5 1.1-.7.4-.2.9-.3 1.2-.3h5.8c.4 0 .7.1.9.4.3.3.4.6.4.9v4.6c.6-.4 1.2-.6 1.8-.6h5.8zm-13.8 6.6l4.4-4.4V5.3h-5.4v5.8c0 .4-.1.7-.4.9-.3.3-.6.4-.9.4H5.3v8.9h7.1v-3.6c0-.4.1-.8.3-1.2s.4-.7.7-1zm-2.8-9l-4.2 4.2h4.2V6.5zm16.1 20.2V10.6h-5.4v5.8c0 .4-.1.7-.4.9-.3.3-.6.4-.9.4h-5.8v8.9h12.5zm-7.1-14.9L15.4 16h4.2v-4.2z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 805 B After Width: | Height: | Size: 812 B |
@ -1,6 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5"/>
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z"/>
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0"/>
|
||||
<path fill="#375273" d="M21.1 16l7.1 5.6c.3.2.4.4.3.8 0 .3-.2.6-.5.7l-1.8.9h-.4c-.2 0-.3 0-.4-.1l-9.6-5.4-1.5.9c-.1 0-.1.1-.2.1.1.5.2.9.1 1.4-.1.7-.3 1.4-.8 2.1-.5.7-1.1 1.2-1.8 1.7-1.2.8-2.5 1.2-3.9 1.2-1.3 0-2.3-.4-3.1-1.1-.8-.8-1.2-1.8-1.1-3 .1-.7.3-1.4.8-2.1.5-.7 1.1-1.2 1.8-1.7 1.2-.8 2.5-1.2 3.9-1.2.8 0 1.5.1 2.1.4l.3-.3 1.7-1-1.7-1-.3-.3c-.6.3-1.3.4-2.1.4-1.4 0-2.7-.4-3.9-1.2-.8-.5-1.4-1.1-1.8-1.7-.5-.7-.7-1.3-.8-2.1 0-.5 0-1.1.2-1.6s.5-.9.9-1.3C5.4 6.4 6.4 6 7.7 6s2.6.4 3.9 1.2c.8.5 1.4 1.1 1.8 1.7.5.7.7 1.3.8 2.1 0 .4 0 .9-.1 1.4 0 0 .1 0 .2.1l1.5.9L25.4 8h.4c.1 0 .3 0 .4.1L28 9c.3.1.4.4.5.7 0 .3-.1.6-.3.8L21.1 16zm-9.5-3.6c.4-.4.5-.9.3-1.5s-.7-1.2-1.5-1.6c-.9-.6-1.8-.9-2.7-.9-.7 0-1.2.2-1.6.5-.4.4-.5.9-.3 1.5s.7 1.2 1.5 1.6c.9.5 1.7.8 2.7.8.7.1 1.2-.1 1.6-.4zm-1.2 10.4c.8-.5 1.2-1 1.5-1.6s.1-1.1-.3-1.5c-.4-.3-.9-.5-1.6-.5-.9 0-1.8.3-2.7.8-.8.5-1.2 1-1.5 1.6-.2.6-.1 1.1.3 1.5.4.3.9.5 1.6.5.9 0 1.8-.3 2.7-.8zm5.6-5.5l1.3.4 10.3-8-1.8-.9-10.7 6v1.6l-2.2 1.3.1.1s.1 0 .1.1l.2.2.2.2.4.4 2.1-1.4zm-3.1-3.1l1.3.8v-.2c0-.3.2-.6.5-.8l.2-.1-1.1-.7-.4.4s-.1.1-.1.2l-.2.2H13l-.1.2zm3.4 1.2c.2-.2.4-.3.6-.3.2 0 .5.1.6.3.2.2.3.4.3.6s-.1.5-.3.6-.4.3-.6.3c-.2 0-.5-.1-.6-.3-.2-.1-.3-.4-.3-.6s.1-.5.3-.6zm9.5 7.7l1.8-.9-7.3-5.7-2.5 1.9s-.1.1-.2.1l8.2 4.6z"/>
|
||||
</svg>
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5" />
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z" />
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0" />
|
||||
<path fill="#375273"
|
||||
d="M21.1 16l7.1 5.6c.3.2.4.4.3.8 0 .3-.2.6-.5.7l-1.8.9h-.4c-.2 0-.3 0-.4-.1l-9.6-5.4-1.5.9c-.1 0-.1.1-.2.1.1.5.2.9.1 1.4-.1.7-.3 1.4-.8 2.1-.5.7-1.1 1.2-1.8 1.7-1.2.8-2.5 1.2-3.9 1.2-1.3 0-2.3-.4-3.1-1.1-.8-.8-1.2-1.8-1.1-3 .1-.7.3-1.4.8-2.1.5-.7 1.1-1.2 1.8-1.7 1.2-.8 2.5-1.2 3.9-1.2.8 0 1.5.1 2.1.4l.3-.3 1.7-1-1.7-1-.3-.3c-.6.3-1.3.4-2.1.4-1.4 0-2.7-.4-3.9-1.2-.8-.5-1.4-1.1-1.8-1.7-.5-.7-.7-1.3-.8-2.1 0-.5 0-1.1.2-1.6s.5-.9.9-1.3C5.4 6.4 6.4 6 7.7 6s2.6.4 3.9 1.2c.8.5 1.4 1.1 1.8 1.7.5.7.7 1.3.8 2.1 0 .4 0 .9-.1 1.4 0 0 .1 0 .2.1l1.5.9L25.4 8h.4c.1 0 .3 0 .4.1L28 9c.3.1.4.4.5.7 0 .3-.1.6-.3.8L21.1 16zm-9.5-3.6c.4-.4.5-.9.3-1.5s-.7-1.2-1.5-1.6c-.9-.6-1.8-.9-2.7-.9-.7 0-1.2.2-1.6.5-.4.4-.5.9-.3 1.5s.7 1.2 1.5 1.6c.9.5 1.7.8 2.7.8.7.1 1.2-.1 1.6-.4zm-1.2 10.4c.8-.5 1.2-1 1.5-1.6s.1-1.1-.3-1.5c-.4-.3-.9-.5-1.6-.5-.9 0-1.8.3-2.7.8-.8.5-1.2 1-1.5 1.6-.2.6-.1 1.1.3 1.5.4.3.9.5 1.6.5.9 0 1.8-.3 2.7-.8zm5.6-5.5l1.3.4 10.3-8-1.8-.9-10.7 6v1.6l-2.2 1.3.1.1s.1 0 .1.1l.2.2.2.2.4.4 2.1-1.4zm-3.1-3.1l1.3.8v-.2c0-.3.2-.6.5-.8l.2-.1-1.1-.7-.4.4s-.1.1-.1.2l-.2.2H13l-.1.2zm3.4 1.2c.2-.2.4-.3.6-.3.2 0 .5.1.6.3.2.2.3.4.3.6s-.1.5-.3.6-.4.3-.6.3c-.2 0-.5-.1-.6-.3-.2-.1-.3-.4-.3-.6s.1-.5.3-.6zm9.5 7.7l1.8-.9-7.3-5.7-2.5 1.9s-.1.1-.2.1l8.2 4.6z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#733737" d="M29.6 24.2c0 .6-.2 1.1-.6 1.6l-3.1 3.1c-.4.4-.9.6-1.6.6-.6 0-1.1-.2-1.6-.6L16 22.1l-6.7 6.7c-.4.4-.9.6-1.6.6-.6 0-1.1-.2-1.6-.6L3 25.7c-.4-.4-.6-.9-.6-1.6s.2-1.1.6-1.6l6.7-6.7-6.6-6.6c-.5-.4-.7-1-.7-1.6 0-.6.2-1.1.6-1.6l3.2-3c.4-.4.9-.6 1.6-.6.6 0 1.1.2 1.6.6L16 9.7 22.7 3c.4-.4.9-.6 1.6-.6.6 0 1.1.2 1.6.6L29 6.1c.4.4.6.9.6 1.6 0 .6-.2 1.1-.6 1.6L22.3 16l6.7 6.7c.4.4.6.9.6 1.5z"/>
|
||||
</svg>
|
||||
<path fill="#733737"
|
||||
d="M29.6 24.2c0 .6-.2 1.1-.6 1.6l-3.1 3.1c-.4.4-.9.6-1.6.6-.6 0-1.1-.2-1.6-.6L16 22.1l-6.7 6.7c-.4.4-.9.6-1.6.6-.6 0-1.1-.2-1.6-.6L3 25.7c-.4-.4-.6-.9-.6-1.6s.2-1.1.6-1.6l6.7-6.7-6.6-6.6c-.5-.4-.7-1-.7-1.6 0-.6.2-1.1.6-1.6l3.2-3c.4-.4.9-.6 1.6-.6.6 0 1.1.2 1.6.6L16 9.7 22.7 3c.4-.4.9-.6 1.6-.6.6 0 1.1.2 1.6.6L29 6.1c.4.4.6.9.6 1.6 0 .6-.2 1.1-.6 1.6L22.3 16l6.7 6.7c.4.4.6.9.6 1.5z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 478 B After Width: | Height: | Size: 482 B |
@ -1,11 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5"/>
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z"/>
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0"/>
|
||||
<path fill="#375273" d="M27.1 29.5c-.4 0-.7-.1-.9-.4l-2.6-2.6c-.9.6-2 .9-3.1.9-.8 0-1.6-.2-2.3-.5-.7-.3-1.3-.7-1.9-1.2-.5-.5-.9-1.1-1.2-1.9-.3-.7-.5-1.5-.5-2.3s.2-1.6.5-2.3c.3-.7.7-1.3 1.2-1.9.5-.5 1.1-.9 1.9-1.2.7-.3 1.5-.5 2.3-.5.8 0 1.6.2 2.3.5.7.3 1.3.7 1.9 1.2.5.5.9 1.1 1.2 1.9.3.7.5 1.5.5 2.3 0 1.1-.3 2.2-.9 3.1l2.6 2.6c.2.2.4.5.4.9 0 .3-.1.6-.4.9-.3.4-.6.5-1 .5zm-6.6-11.2c-.9 0-1.7.3-2.3 1s-1 1.4-1 2.3c0 .9.3 1.7 1 2.3.7.7 1.4 1 2.3 1 .9 0 1.7-.3 2.3-1 .7-.7 1-1.4 1-2.3 0-.9-.3-1.7-1-2.3s-1.4-1-2.3-1z"/>
|
||||
<path fill="#FFF" d="M20.5 16.1c.8 0 1.5.1 2.2.4.7.3 1.3.7 1.8 1.2s.9 1.1 1.2 1.8c.3.7.4 1.4.4 2.2 0 1.2-.3 2.2-1 3.2l2.7 2.7c.2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3l-2.7-2.7c-.9.7-2 1-3.2 1-.8 0-1.5-.1-2.2-.4-.7-.3-1.3-.7-1.8-1.2s-.9-1.1-1.2-1.8c-.3-.7-.4-1.4-.4-2.2 0-.8.1-1.5.4-2.2.3-.7.7-1.3 1.2-1.8s1.1-.9 1.8-1.2c.7-.3 1.5-.4 2.2-.4m0 9.1c1 0 1.8-.3 2.5-1s1-1.5 1-2.5-.3-1.8-1-2.5-1.5-1-2.5-1-1.8.3-2.5 1-1 1.5-1 2.5.3 1.8 1 2.5 1.5 1 2.5 1m0-9.6c-.8 0-1.6.2-2.4.5-.7.3-1.4.8-1.9 1.3s-1 1.2-1.3 1.9c-.3.8-.5 1.5-.5 2.4 0 .8.2 1.6.5 2.4.3.7.8 1.4 1.3 1.9s1.2 1 1.9 1.3c.8.3 1.5.5 2.4.5 1.1 0 2.2-.3 3.1-.8l2.4 2.4c.3.3.6.4 1.1.4.4 0 .8-.2 1.1-.4.3-.3.4-.7.4-1.1 0-.4-.2-.8-.4-1.1l-2.4-2.4c.6-.9.8-2 .8-3.1 0-.8-.2-1.6-.5-2.4-.3-.7-.8-1.4-1.3-1.9s-1.2-1-1.9-1.3c-.8-.4-1.6-.5-2.4-.5zm0 9.1c-.8 0-1.6-.3-2.2-.9-.6-.6-.9-1.3-.9-2.2 0-.8.3-1.6.9-2.2.6-.6 1.3-.9 2.2-.9.8 0 1.6.3 2.2.9.6.6.9 1.3.9 2.2s-.3 1.6-.9 2.2c-.6.6-1.3.9-2.2.9z"/>
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5" />
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z" />
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0" />
|
||||
<path fill="#375273"
|
||||
d="M27.1 29.5c-.4 0-.7-.1-.9-.4l-2.6-2.6c-.9.6-2 .9-3.1.9-.8 0-1.6-.2-2.3-.5-.7-.3-1.3-.7-1.9-1.2-.5-.5-.9-1.1-1.2-1.9-.3-.7-.5-1.5-.5-2.3s.2-1.6.5-2.3c.3-.7.7-1.3 1.2-1.9.5-.5 1.1-.9 1.9-1.2.7-.3 1.5-.5 2.3-.5.8 0 1.6.2 2.3.5.7.3 1.3.7 1.9 1.2.5.5.9 1.1 1.2 1.9.3.7.5 1.5.5 2.3 0 1.1-.3 2.2-.9 3.1l2.6 2.6c.2.2.4.5.4.9 0 .3-.1.6-.4.9-.3.4-.6.5-1 .5zm-6.6-11.2c-.9 0-1.7.3-2.3 1s-1 1.4-1 2.3c0 .9.3 1.7 1 2.3.7.7 1.4 1 2.3 1 .9 0 1.7-.3 2.3-1 .7-.7 1-1.4 1-2.3 0-.9-.3-1.7-1-2.3s-1.4-1-2.3-1z" />
|
||||
<path fill="#FFF"
|
||||
d="M20.5 16.1c.8 0 1.5.1 2.2.4.7.3 1.3.7 1.8 1.2s.9 1.1 1.2 1.8c.3.7.4 1.4.4 2.2 0 1.2-.3 2.2-1 3.2l2.7 2.7c.2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3l-2.7-2.7c-.9.7-2 1-3.2 1-.8 0-1.5-.1-2.2-.4-.7-.3-1.3-.7-1.8-1.2s-.9-1.1-1.2-1.8c-.3-.7-.4-1.4-.4-2.2 0-.8.1-1.5.4-2.2.3-.7.7-1.3 1.2-1.8s1.1-.9 1.8-1.2c.7-.3 1.5-.4 2.2-.4m0 9.1c1 0 1.8-.3 2.5-1s1-1.5 1-2.5-.3-1.8-1-2.5-1.5-1-2.5-1-1.8.3-2.5 1-1 1.5-1 2.5.3 1.8 1 2.5 1.5 1 2.5 1m0-9.6c-.8 0-1.6.2-2.4.5-.7.3-1.4.8-1.9 1.3s-1 1.2-1.3 1.9c-.3.8-.5 1.5-.5 2.4 0 .8.2 1.6.5 2.4.3.7.8 1.4 1.3 1.9s1.2 1 1.9 1.3c.8.3 1.5.5 2.4.5 1.1 0 2.2-.3 3.1-.8l2.4 2.4c.3.3.6.4 1.1.4.4 0 .8-.2 1.1-.4.3-.3.4-.7.4-1.1 0-.4-.2-.8-.4-1.1l-2.4-2.4c.6-.9.8-2 .8-3.1 0-.8-.2-1.6-.5-2.4-.3-.7-.8-1.4-1.3-1.9s-1.2-1-1.9-1.3c-.8-.4-1.6-.5-2.4-.5zm0 9.1c-.8 0-1.6-.3-2.2-.9-.6-.6-.9-1.3-.9-2.2 0-.8.3-1.6.9-2.2.6-.6 1.3-.9 2.2-.9.8 0 1.6.3 2.2.9.6.6.9 1.3.9 2.2s-.3 1.6-.9 2.2c-.6.6-1.3.9-2.2.9z" />
|
||||
<g fill="#375273">
|
||||
<path d="M12.9 14.8c1.5 0 2.7-.5 3.8-1.6 1-1 1.6-2.3 1.6-3.8s-.5-2.7-1.6-3.8c-1-1-2.3-1.6-3.8-1.6s-2.7.5-3.8 1.6-1.6 2.3-1.6 3.8.5 2.7 1.6 3.8 2.3 1.6 3.8 1.6z"/>
|
||||
<path d="M14.9 24c-.3-.8-.5-1.5-.5-2.4 0-.8.2-1.6.5-2.4.3-.7.8-1.4 1.3-1.9s1.2-1 1.9-1.3c.8-.3 1.5-.5 2.4-.5h.7c-.2-.3-.4-.5-.6-.7-.3-.3-.7-.6-1.2-.7-.5-.2-1-.3-1.6-.3-.1 0-.3.1-.6.3-.3.2-.7.4-1 .7-.4.2-.9.5-1.5.7-.6.2-1.2.3-1.9.3s-1.2-.1-1.9-.3-1.1-.4-1.5-.7c-.4-.2-.7-.5-1-.7-.2-.1-.4-.2-.5-.2-.6 0-1.1.1-1.6.3s-.9.4-1.2.7-.6.7-.8 1.1c-.3.4-.5.9-.6 1.4-.1.5-.3 1-.4 1.5-.1.5-.2 1.1-.2 1.5v1.4c0 1.1.3 2 1 2.6.7.6 1.6 1 2.7 1h9c-.3-.4-.7-.8-.9-1.4z"/>
|
||||
<path
|
||||
d="M12.9 14.8c1.5 0 2.7-.5 3.8-1.6 1-1 1.6-2.3 1.6-3.8s-.5-2.7-1.6-3.8c-1-1-2.3-1.6-3.8-1.6s-2.7.5-3.8 1.6-1.6 2.3-1.6 3.8.5 2.7 1.6 3.8 2.3 1.6 3.8 1.6z" />
|
||||
<path
|
||||
d="M14.9 24c-.3-.8-.5-1.5-.5-2.4 0-.8.2-1.6.5-2.4.3-.7.8-1.4 1.3-1.9s1.2-1 1.9-1.3c.8-.3 1.5-.5 2.4-.5h.7c-.2-.3-.4-.5-.6-.7-.3-.3-.7-.6-1.2-.7-.5-.2-1-.3-1.6-.3-.1 0-.3.1-.6.3-.3.2-.7.4-1 .7-.4.2-.9.5-1.5.7-.6.2-1.2.3-1.9.3s-1.2-.1-1.9-.3-1.1-.4-1.5-.7c-.4-.2-.7-.5-1-.7-.2-.1-.4-.2-.5-.2-.6 0-1.1.1-1.6.3s-.9.4-1.2.7-.6.7-.8 1.1c-.3.4-.5.9-.6 1.4-.1.5-.3 1-.4 1.5-.1.5-.2 1.1-.2 1.5v1.4c0 1.1.3 2 1 2.6.7.6 1.6 1 2.7 1h9c-.3-.4-.7-.8-.9-1.4z" />
|
||||
</g>
|
||||
</svg>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.4 KiB |
@ -1,6 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5"/>
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z"/>
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0"/>
|
||||
<path fill="#375273" d="M27.6 25.8c0 .5-.2.9-.5 1.3-.4.4-.8.5-1.3.5s-.9-.2-1.3-.5l-4.8-4.8C18 23.5 16.2 24 14.1 24c-1.3 0-2.6-.3-3.8-.8s-2.2-1.2-3-2-1.6-2-2.1-3.2-.8-2.5-.8-3.8.3-2.6.8-3.8c.5-1.2 1.2-2.3 2.1-3.1s1.9-1.6 3.1-2.1 2.5-.8 3.8-.8 2.6.3 3.8.8c1.2.5 2.3 1.2 3.1 2.1s1.6 1.9 2.1 3.1c.5 1.2.8 2.5.8 3.8 0 2-.6 3.9-1.7 5.6l4.8 4.8c.3.3.5.7.5 1.2zm-9-7.2c1.2-1.2 1.8-2.7 1.8-4.4s-.6-3.2-1.8-4.4S15.9 8 14.2 8s-3.2.6-4.4 1.8C8.6 11 8 12.5 8 14.2s.6 3.2 1.8 4.4c1.2 1.2 2.7 1.8 4.4 1.8s3.2-.5 4.4-1.8z"/>
|
||||
</svg>
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5" />
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z" />
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0" />
|
||||
<path fill="#375273"
|
||||
d="M27.6 25.8c0 .5-.2.9-.5 1.3-.4.4-.8.5-1.3.5s-.9-.2-1.3-.5l-4.8-4.8C18 23.5 16.2 24 14.1 24c-1.3 0-2.6-.3-3.8-.8s-2.2-1.2-3-2-1.6-2-2.1-3.2-.8-2.5-.8-3.8.3-2.6.8-3.8c.5-1.2 1.2-2.3 2.1-3.1s1.9-1.6 3.1-2.1 2.5-.8 3.8-.8 2.6.3 3.8.8c1.2.5 2.3 1.2 3.1 2.1s1.6 1.9 2.1 3.1c.5 1.2.8 2.5.8 3.8 0 2-.6 3.9-1.7 5.6l4.8 4.8c.3.3.5.7.5 1.2zm-9-7.2c1.2-1.2 1.8-2.7 1.8-4.4s-.6-3.2-1.8-4.4S15.9 8 14.2 8s-3.2.6-4.4 1.8C8.6 11 8 12.5 8 14.2s.6 3.2 1.8 4.4c1.2 1.2 2.7 1.8 4.4 1.8s3.2-.5 4.4-1.8z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 780 B After Width: | Height: | Size: 787 B |
@ -1,6 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5"/>
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z"/>
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0"/>
|
||||
<path fill="#375273" d="M28.5 17.8v9.4c0 .4-.1.7-.4.9s-.6.4-.9.4H13.8c-.4 0-.7-.1-.9-.4-.3-.3-.4-.6-.4-.9V25H4.8c-.4 0-.7-.1-.9-.4s-.4-.6-.4-1V4.8c0-.4.1-.7.4-.9.3-.3.6-.4.9-.4H20c.4 0 .7.1.9.4.3.3.4.6.4.9v4.6c.2.1.4.3.5.4l5.7 5.7c.3.3.5.6.7 1.1.2.4.3.8.3 1.2zM17.8 6.6v-.9c0-.1 0-.2-.1-.3-.1-.1-.2-.1-.3-.1H7.5c-.1 0-.2 0-.3.1-.1.1-.1.2-.1.3v.9c0 .1 0 .2.1.3.1.1.2.2.3.2h9.8c.1 0 .2 0 .3-.1.1-.1.2-.3.2-.4zm-3.6 20.1h12.5v-8.9h-5.8c-.4 0-.7-.1-.9-.4-.3-.3-.4-.6-.4-.9v-5.8h-5.4v16zM21.4 16h4.2l-4.2-4.2V16z"/>
|
||||
</svg>
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5" />
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z" />
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0" />
|
||||
<path fill="#375273"
|
||||
d="M28.5 17.8v9.4c0 .4-.1.7-.4.9s-.6.4-.9.4H13.8c-.4 0-.7-.1-.9-.4-.3-.3-.4-.6-.4-.9V25H4.8c-.4 0-.7-.1-.9-.4s-.4-.6-.4-1V4.8c0-.4.1-.7.4-.9.3-.3.6-.4.9-.4H20c.4 0 .7.1.9.4.3.3.4.6.4.9v4.6c.2.1.4.3.5.4l5.7 5.7c.3.3.5.6.7 1.1.2.4.3.8.3 1.2zM17.8 6.6v-.9c0-.1 0-.2-.1-.3-.1-.1-.2-.1-.3-.1H7.5c-.1 0-.2 0-.3.1-.1.1-.1.2-.1.3v.9c0 .1 0 .2.1.3.1.1.2.2.3.2h9.8c.1 0 .2 0 .3-.1.1-.1.2-.3.2-.4zm-3.6 20.1h12.5v-8.9h-5.8c-.4 0-.7-.1-.9-.4-.3-.3-.4-.6-.4-.9v-5.8h-5.4v16zM21.4 16h4.2l-4.2-4.2V16z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 782 B After Width: | Height: | Size: 789 B |
@ -1,6 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5"/>
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z"/>
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0"/>
|
||||
<path fill="#375273" d="M23.2 19.2v2.7c0 1.1-.4 2.1-1.2 2.8s-1.7 1.2-2.8 1.2H7.6c-1.1 0-2.1-.4-2.8-1.2S3.6 23 3.6 21.9V10.2c0-1.1.4-2.1 1.2-2.8s1.7-1.2 2.8-1.2h11.6c.6 0 1.1.1 1.6.3.2.1.2.2.3.3 0 .2 0 .3-.1.4l-.7.7c-.2.2-.3.2-.5.1H7.6c-.6 0-1.2.2-1.6.6-.4.4-.7 1-.7 1.6v11.6c0 .6.2 1.1.7 1.6.4.4 1 .6 1.6.6h11.6c.6 0 1.1-.2 1.6-.7.4-.4.7-1 .7-1.6V20c0-.1 0-.2.1-.3l.9-.9c.1-.1.3-.2.5-.1.1.1.2.3.2.5zM21.9 8.9l4 4-9.4 9.4h-4v-4l9.4-9.4zm-6 12l1.6-1.6-2.1-2.1-1.6 1.6v.8h1.3v1.3h.8zm6.2-10c-.1-.1-.3-.1-.5 0l-4.9 4.9c-.2.2-.2.3 0 .5.1.1.3.1.5 0l4.9-4.9c.1-.2.1-.4 0-.5zm6-.2L26.8 12l-4-4L24 6.7c.3-.3.6-.4.9-.4.4 0 .7.1.9.4l2.1 2.1c.3.3.4.6.4.9s0 .7-.2 1z"/>
|
||||
</svg>
|
||||
<path fill="#FFF" d="M28.8 18.6c0 .1 0 .1 0 0 0 .2-.1.3-.2.5.1-.1.2-.3.2-.5" />
|
||||
<path fill="#733737" d="M26.4 17s.1 0 0 0c.1 0 0 0 0 0z" />
|
||||
<path fill="#FFF" d="M26.5 17s-.1 0 0 0c-.1 0 0 0 0 0" />
|
||||
<path fill="#375273"
|
||||
d="M23.2 19.2v2.7c0 1.1-.4 2.1-1.2 2.8s-1.7 1.2-2.8 1.2H7.6c-1.1 0-2.1-.4-2.8-1.2S3.6 23 3.6 21.9V10.2c0-1.1.4-2.1 1.2-2.8s1.7-1.2 2.8-1.2h11.6c.6 0 1.1.1 1.6.3.2.1.2.2.3.3 0 .2 0 .3-.1.4l-.7.7c-.2.2-.3.2-.5.1H7.6c-.6 0-1.2.2-1.6.6-.4.4-.7 1-.7 1.6v11.6c0 .6.2 1.1.7 1.6.4.4 1 .6 1.6.6h11.6c.6 0 1.1-.2 1.6-.7.4-.4.7-1 .7-1.6V20c0-.1 0-.2.1-.3l.9-.9c.1-.1.3-.2.5-.1.1.1.2.3.2.5zM21.9 8.9l4 4-9.4 9.4h-4v-4l9.4-9.4zm-6 12l1.6-1.6-2.1-2.1-1.6 1.6v.8h1.3v1.3h.8zm6.2-10c-.1-.1-.3-.1-.5 0l-4.9 4.9c-.2.2-.2.3 0 .5.1.1.3.1.5 0l4.9-4.9c.1-.2.1-.4 0-.5zm6-.2L26.8 12l-4-4L24 6.7c.3-.3.6-.4.9-.4.4 0 .7.1.9.4l2.1 2.1c.3.3.4.6.4.9s0 .7-.2 1z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 928 B After Width: | Height: | Size: 935 B |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="21.781" height="25.6" viewBox="0 0 21.782 25.6">
|
||||
<path fill="red" d="M13.671 21.7c0 .2-.1.4-.3.6-.2.2-.4.3-.6.3h-3.5c-.2 0-.4-.1-.6-.3-.2-.2-.3-.4-.3-.6v-3.1c0-.2.1-.4.3-.6.2-.2.4-.3.6-.3h3.5c.2 0 .4.1.6.3.2.2.3.4.3.6zm0-7.1c0 .2-.1.4-.3.6-.2.2-.4.3-.6.3h-3.5c-.2 0-.5-.1-.6-.3-.2-.2-.3-.4-.3-.6l-.5-10.7c0-.2.1-.4.2-.6.2-.2.4-.3.6-.3h4.4c.2 0 .4.1.6.3.2.2.3.4.2.6z"/>
|
||||
</svg>
|
||||
<path fill="red"
|
||||
d="M13.671 21.7c0 .2-.1.4-.3.6-.2.2-.4.3-.6.3h-3.5c-.2 0-.4-.1-.6-.3-.2-.2-.3-.4-.3-.6v-3.1c0-.2.1-.4.3-.6.2-.2.4-.3.6-.3h3.5c.2 0 .4.1.6.3.2.2.3.4.3.6zm0-7.1c0 .2-.1.4-.3.6-.2.2-.4.3-.6.3h-3.5c-.2 0-.5-.1-.6-.3-.2-.2-.3-.4-.3-.6l-.5-10.7c0-.2.1-.4.2-.6.2-.2.4-.3.6-.3h4.4c.2 0 .4.1.6.3.2.2.3.4.2.6z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 425 B After Width: | Height: | Size: 429 B |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15">
|
||||
<path d="M7.5.9C3.9.9.9 3.9.9 7.5s3 6.6 6.6 6.6 6.6-3 6.6-6.6S11.1.9 7.5.9zm0 8.4h-4l4-4.3 4 4.3h-4z" fill="#2e78d8"/>
|
||||
</svg>
|
||||
<path d="M7.5.9C3.9.9.9 3.9.9 7.5s3 6.6 6.6 6.6 6.6-3 6.6-6.6S11.1.9 7.5.9zm0 8.4h-4l4-4.3 4 4.3h-4z"
|
||||
fill="#2e78d8" />
|
||||
</svg>
|
Before Width: | Height: | Size: 189 B After Width: | Height: | Size: 193 B |
@ -1,71 +1,102 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="110.001" width="93" version="1">
|
||||
<defs>
|
||||
<linearGradient id="a" y2="102.34" gradientUnits="userSpaceOnUse" x2="95.46" gradientTransform="translate(-.896 -.987) scale(1.012)" y1="93.621" x1="86.738">
|
||||
<stop stop-color="#fcfcfc" offset="0"/>
|
||||
<stop stop-color="#f8f8f8" offset=".523"/>
|
||||
<stop stop-color="#f0efef" offset=".775"/>
|
||||
<stop stop-color="#e3e1e1" offset=".901"/>
|
||||
<stop stop-color="#cecbcb" offset="1"/>
|
||||
<linearGradient id="a" y2="102.34" gradientUnits="userSpaceOnUse" x2="95.46"
|
||||
gradientTransform="translate(-.896 -.987) scale(1.012)" y1="93.621" x1="86.738">
|
||||
<stop stop-color="#fcfcfc" offset="0" />
|
||||
<stop stop-color="#f8f8f8" offset=".523" />
|
||||
<stop stop-color="#f0efef" offset=".775" />
|
||||
<stop stop-color="#e3e1e1" offset=".901" />
|
||||
<stop stop-color="#cecbcb" offset="1" />
|
||||
</linearGradient>
|
||||
<radialGradient id="k" gradientUnits="userSpaceOnUse" cy="110.25" cx="90.75" gradientTransform="translate(-27.836 -33.818) scale(1.3067)" r="18.75">
|
||||
<stop stop-color="#fff" offset="0"/>
|
||||
<stop stop-color="#fff" stop-opacity="0" offset="1"/>
|
||||
<radialGradient id="k" gradientUnits="userSpaceOnUse" cy="110.25" cx="90.75"
|
||||
gradientTransform="translate(-27.836 -33.818) scale(1.3067)" r="18.75">
|
||||
<stop stop-color="#fff" offset="0" />
|
||||
<stop stop-color="#fff" stop-opacity="0" offset="1" />
|
||||
</radialGradient>
|
||||
<clipPath id="j">
|
||||
<path d="M112 82.503c0 4.465-2.797 6.41-5.28 8.094-5.108 3.465-14.939 3.325-20.72 3.406-.08 5.781.166 15.505-3.299 20.613-1.684 2.482-5.29 5.387-8.2 5.387 2.317 0 4.742-1.335 7.583-4.085 9.142-8.849 17.367-16.135 25.673-25.298 1.92-2.116 4.24-3.64 4.24-8.117z" fill="url(#a)"/>
|
||||
<path
|
||||
d="M112 82.503c0 4.465-2.797 6.41-5.28 8.094-5.108 3.465-14.939 3.325-20.72 3.406-.08 5.781.166 15.505-3.299 20.613-1.684 2.482-5.29 5.387-8.2 5.387 2.317 0 4.742-1.335 7.583-4.085 9.142-8.849 17.367-16.135 25.673-25.298 1.92-2.116 4.24-3.64 4.24-8.117z"
|
||||
fill="url(#a)" />
|
||||
</clipPath>
|
||||
<filter id="l" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation=".43"/>
|
||||
<feGaussianBlur stdDeviation=".43" />
|
||||
</filter>
|
||||
<linearGradient id="i" y2="102.07" gradientUnits="userSpaceOnUse" x2="95.182" gradientTransform="translate(-18.896 -9.987) scale(1.012)" y1="93.621" x1="86.738">
|
||||
<stop stop-color="#fcfcfc" offset="0"/>
|
||||
<stop stop-color="#f8f8f8" offset=".523"/>
|
||||
<stop stop-color="#f0efef" offset=".723"/>
|
||||
<stop stop-color="#e3e1e1" offset=".89"/>
|
||||
<stop stop-color="#cecbcb" offset="1"/>
|
||||
<linearGradient id="i" y2="102.07" gradientUnits="userSpaceOnUse" x2="95.182"
|
||||
gradientTransform="translate(-18.896 -9.987) scale(1.012)" y1="93.621" x1="86.738">
|
||||
<stop stop-color="#fcfcfc" offset="0" />
|
||||
<stop stop-color="#f8f8f8" offset=".523" />
|
||||
<stop stop-color="#f0efef" offset=".723" />
|
||||
<stop stop-color="#e3e1e1" offset=".89" />
|
||||
<stop stop-color="#cecbcb" offset="1" />
|
||||
</linearGradient>
|
||||
<clipPath id="e">
|
||||
<path d="M17 8v112h57.5c1.675 0 3.914-.565 7-3.6 8.87-8.725 20.24-19.852 27.499-27.176 2.44-2.463 3-4.471 3-6.724V8z" fill="#fff"/>
|
||||
<path
|
||||
d="M17 8v112h57.5c1.675 0 3.914-.565 7-3.6 8.87-8.725 20.24-19.852 27.499-27.176 2.44-2.463 3-4.471 3-6.724V8z"
|
||||
fill="#fff" />
|
||||
</clipPath>
|
||||
<filter id="h" width="1.225" y="-.121" x="-.113" height="1.241" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="2.386"/>
|
||||
<feGaussianBlur stdDeviation="2.386" />
|
||||
</filter>
|
||||
<radialGradient id="g" fx="63.793" fy="47.275" gradientUnits="userSpaceOnUse" cy="64.004" cx="64" gradientTransform="matrix(1.6842 -.0843 .06886 1.3759 -66.197 -27.663)" r="47.5">
|
||||
<stop stop-color="#fff" offset="0"/>
|
||||
<stop stop-color="#fff" stop-opacity="0" offset="1"/>
|
||||
<radialGradient id="g" fx="63.793" fy="47.275" gradientUnits="userSpaceOnUse" cy="64.004" cx="64"
|
||||
gradientTransform="matrix(1.6842 -.0843 .06886 1.3759 -66.197 -27.663)" r="47.5">
|
||||
<stop stop-color="#fff" offset="0" />
|
||||
<stop stop-color="#fff" stop-opacity="0" offset="1" />
|
||||
</radialGradient>
|
||||
<filter id="f" width="1.957" y="-.513" x="-.479" height="2.026" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="10.141"/>
|
||||
<feGaussianBlur stdDeviation="10.141" />
|
||||
</filter>
|
||||
<linearGradient id="d" y2="116.4" gradientUnits="userSpaceOnUse" x2="72" x1="72" gradientTransform="translate(-18 -9)">
|
||||
<stop stop-color="#eeecec" offset="0"/>
|
||||
<stop stop-color="#f4f4f4" offset=".4"/>
|
||||
<stop stop-color="#f6f5f5" offset="1"/>
|
||||
<linearGradient id="d" y2="116.4" gradientUnits="userSpaceOnUse" x2="72" x1="72"
|
||||
gradientTransform="translate(-18 -9)">
|
||||
<stop stop-color="#eeecec" offset="0" />
|
||||
<stop stop-color="#f4f4f4" offset=".4" />
|
||||
<stop stop-color="#f6f5f5" offset="1" />
|
||||
</linearGradient>
|
||||
<filter id="c" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="1.036"/>
|
||||
<feGaussianBlur stdDeviation="1.036" />
|
||||
</filter>
|
||||
<filter id="b" color-interpolation-filters="sRGB">
|
||||
<feGaussianBlur stdDeviation="1.501"/>
|
||||
<feGaussianBlur stdDeviation="1.501" />
|
||||
</filter>
|
||||
<linearGradient id="m" y2="786.48" gradientUnits="userSpaceOnUse" x2="782.06" x1="348.28">
|
||||
<stop stop-color="#72B4F5" offset="0"/>
|
||||
<stop stop-color="#356EBF" offset="1"/>
|
||||
<stop stop-color="#72B4F5" offset="0" />
|
||||
<stop stop-color="#356EBF" offset="1" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path d="M-1-.5v112h58.188c2.116 0 4.529-1.772 7-4.25.712-.714 1.44-1.394 2.156-2.094.416-.406.832-.814 1.25-1.219 7.774-7.41 14.983-14.023 22.22-22 .42-.42.811-.81 1.155-1.187 1.465-1.498 2.762-2.838 2.994-5.863l.04-.732V-.5z" opacity=".262" filter="url(#b)"/>
|
||||
<path d="M-1-1v112.2h57.746c4.168 0 7.729-4.856 20.854-17.1 7.486-6.984 10.44-10.889 13.15-13.6 1.74-1.743 3.25-3.037 3.25-7.2V-1z" fill-opacity=".701" filter="url(#c)"/>
|
||||
<path d="M-1-1v112h57.5c1.675 0 3.914-.565 7-3.6 8.87-8.725 20.24-19.852 27.499-27.176 2.44-2.463 3-4.471 3-6.724V-1z" fill="#fff"/>
|
||||
<path d="M.5 0C.16 0 0 .235 0 .5v107.97c0 .822.68 1.5 1.5 1.5h53.688c.053 0 .81.023 1.5.031 1.778-.04 3.132-.753 4.356-1.593 1.052-.291 20.65-19.62 29.771-28.809 1.362-1.373 2.186-3.948 2.186-4.896V.5c0-.322-.16-.5-.5-.5z" fill="url(#d)"/>
|
||||
<path d="M114.4 82.503c0 4.465-4.997 6.61-7.48 8.294-5.108 3.465-14.739 3.525-20.52 3.606-.08 5.781-.034 15.305-3.499 20.413-1.684 2.482-5.79 8.687-8.7 8.687-2.092 1.534 3.488 8.21 6.734 5.32 9.502-8.461 35.132-30.023 43.351-39.263 2.04-2.294-4.905-9.845-9.885-7.057z" clip-path="url(#e)" transform="translate(-18 -9)" opacity=".277" filter="url(#f)"/>
|
||||
<path d="M.5 0C.16 0 0 .235 0 .5v107.97c0 .822.68 1.5 1.5 1.5l54.5.031c.053 0 3.274-.008 3.963 0 6.542-4.503 22.638-21.953 31.584-30.955 1.476-1.656.457-.37 1.453-1.607V.5c0-.323-.16-.5-.5-.5z" opacity=".847" fill="url(#g)"/>
|
||||
<path d="M113.9 82.503c0 4.465-4.497 6.61-6.98 8.294-5.108 3.465-14.739 3.525-20.52 3.606-.08 5.781.766 15.305-2.699 20.413-1.684 2.482-5.79 7.987-8.7 7.987-2.092 1.534 3.488 11.21 6.734 8.32 9.502-8.461 46-30.201 54.218-39.442 2.04-2.294-17.072-11.966-22.053-9.179z" clip-path="url(#e)" transform="translate(-18 -9)" opacity=".401" filter="url(#h)"/>
|
||||
<path d="M94 73.503c0 4.465-2.797 6.41-5.28 8.094-5.108 3.465-14.939 3.325-20.72 3.406-.08 5.781.166 15.505-3.299 20.613-1.684 2.482-5.29 5.387-8.2 5.387 2.317 0 4.742-1.335 7.583-4.085 9.142-8.849 17.367-16.135 25.673-25.298 1.92-2.116 4.24-3.64 4.24-8.117z" fill="url(#i)"/>
|
||||
<path d="M94.02 74.212c-.316 3.9-3.523 5.903-5.85 7.481-5.11 3.466-15.339 2.326-21.12 2.407-.081 5.781.853 16.316-2.612 21.425-1.474 2.172-4.1 4.66-6.763 5.25 1.98-.362 3.885-1.661 6.269-3.969.339-.388.574-.679 1.106-1.5 3.465-5.108 2.924-14.466 3.005-20.247 5.78-.08 15.718.212 20.827-3.253.465-.315 1.594-1.187 2.006-1.6 1.536-1.536 2.902-2.613 3.131-5.994zM57.675 110.78c-.158.035-.313.041-.469.063.157-.017.31-.034.469-.063z" fill="#fff"/>
|
||||
<path d="M117.31 81.861L72.639 125.35" clip-path="url(#j)" transform="translate(-18 -9)" fill="none" stroke="url(#k)" stroke-width="1.2" filter="url(#l)"/>
|
||||
<path
|
||||
d="M-1-.5v112h58.188c2.116 0 4.529-1.772 7-4.25.712-.714 1.44-1.394 2.156-2.094.416-.406.832-.814 1.25-1.219 7.774-7.41 14.983-14.023 22.22-22 .42-.42.811-.81 1.155-1.187 1.465-1.498 2.762-2.838 2.994-5.863l.04-.732V-.5z"
|
||||
opacity=".262" filter="url(#b)" />
|
||||
<path
|
||||
d="M-1-1v112.2h57.746c4.168 0 7.729-4.856 20.854-17.1 7.486-6.984 10.44-10.889 13.15-13.6 1.74-1.743 3.25-3.037 3.25-7.2V-1z"
|
||||
fill-opacity=".701" filter="url(#c)" />
|
||||
<path d="M-1-1v112h57.5c1.675 0 3.914-.565 7-3.6 8.87-8.725 20.24-19.852 27.499-27.176 2.44-2.463 3-4.471 3-6.724V-1z"
|
||||
fill="#fff" />
|
||||
<path
|
||||
d="M.5 0C.16 0 0 .235 0 .5v107.97c0 .822.68 1.5 1.5 1.5h53.688c.053 0 .81.023 1.5.031 1.778-.04 3.132-.753 4.356-1.593 1.052-.291 20.65-19.62 29.771-28.809 1.362-1.373 2.186-3.948 2.186-4.896V.5c0-.322-.16-.5-.5-.5z"
|
||||
fill="url(#d)" />
|
||||
<path
|
||||
d="M114.4 82.503c0 4.465-4.997 6.61-7.48 8.294-5.108 3.465-14.739 3.525-20.52 3.606-.08 5.781-.034 15.305-3.499 20.413-1.684 2.482-5.79 8.687-8.7 8.687-2.092 1.534 3.488 8.21 6.734 5.32 9.502-8.461 35.132-30.023 43.351-39.263 2.04-2.294-4.905-9.845-9.885-7.057z"
|
||||
clip-path="url(#e)" transform="translate(-18 -9)" opacity=".277" filter="url(#f)" />
|
||||
<path
|
||||
d="M.5 0C.16 0 0 .235 0 .5v107.97c0 .822.68 1.5 1.5 1.5l54.5.031c.053 0 3.274-.008 3.963 0 6.542-4.503 22.638-21.953 31.584-30.955 1.476-1.656.457-.37 1.453-1.607V.5c0-.323-.16-.5-.5-.5z"
|
||||
opacity=".847" fill="url(#g)" />
|
||||
<path
|
||||
d="M113.9 82.503c0 4.465-4.497 6.61-6.98 8.294-5.108 3.465-14.739 3.525-20.52 3.606-.08 5.781.766 15.305-2.699 20.413-1.684 2.482-5.79 7.987-8.7 7.987-2.092 1.534 3.488 11.21 6.734 8.32 9.502-8.461 46-30.201 54.218-39.442 2.04-2.294-17.072-11.966-22.053-9.179z"
|
||||
clip-path="url(#e)" transform="translate(-18 -9)" opacity=".401" filter="url(#h)" />
|
||||
<path
|
||||
d="M94 73.503c0 4.465-2.797 6.41-5.28 8.094-5.108 3.465-14.939 3.325-20.72 3.406-.08 5.781.166 15.505-3.299 20.613-1.684 2.482-5.29 5.387-8.2 5.387 2.317 0 4.742-1.335 7.583-4.085 9.142-8.849 17.367-16.135 25.673-25.298 1.92-2.116 4.24-3.64 4.24-8.117z"
|
||||
fill="url(#i)" />
|
||||
<path
|
||||
d="M94.02 74.212c-.316 3.9-3.523 5.903-5.85 7.481-5.11 3.466-15.339 2.326-21.12 2.407-.081 5.781.853 16.316-2.612 21.425-1.474 2.172-4.1 4.66-6.763 5.25 1.98-.362 3.885-1.661 6.269-3.969.339-.388.574-.679 1.106-1.5 3.465-5.108 2.924-14.466 3.005-20.247 5.78-.08 15.718.212 20.827-3.253.465-.315 1.594-1.187 2.006-1.6 1.536-1.536 2.902-2.613 3.131-5.994zM57.675 110.78c-.158.035-.313.041-.469.063.157-.017.31-.034.469-.063z"
|
||||
fill="#fff" />
|
||||
<path d="M117.31 81.861L72.639 125.35" clip-path="url(#j)" transform="translate(-18 -9)" fill="none" stroke="url(#k)"
|
||||
stroke-width="1.2" filter="url(#l)" />
|
||||
<g transform="translate(13.396 22.396) scale(.06368)">
|
||||
<circle cy="512" cx="512" r="496" fill="url(#m)" stroke="#daefff" stroke-width="32"/>
|
||||
<path d="M712.9 332.4q66.657 0 103.38 45.671 37.03 45.364 37.03 128.68 0 83.32-37.34 129.61-37.03 45.98-103.07 45.98-33.02 0-60.484-12.035-27.156-12.344-45.672-37.649h-3.703l-10.8 43.512h-36.72v-480.16h51.227v116.65q0 39.191-2.469 70.359h2.47q35.796-50.61 106.16-50.61zm-7.406 42.894q-52.46 0-75.605 30.242-23.145 29.934-23.145 101.22 0 71.285 23.762 102.14 23.761 30.55 76.222 30.55 47.215 0 70.36-34.254 23.144-34.562 23.144-99.058 0-66.04-23.144-98.442-23.145-32.402-71.594-32.402z" fill="#fff"/>
|
||||
<path d="M317.27 639.45q51.227 0 74.68-27.466 23.453-27.464 24.996-92.578v-11.418q0-70.976-24.07-102.14-24.07-31.168-76.223-31.168-45.055 0-69.125 35.18-23.762 34.87-23.762 98.75 0 63.879 23.454 97.515 23.761 33.328 70.05 33.328zm-7.715 42.894q-65.421 0-102.14-45.98-36.723-45.981-36.723-128.38 0-83.011 37.032-129.61 37.03-46.598 103.07-46.598 69.433 0 106.77 52.461h2.778l7.406-46.289h40.426v490.06h-51.24v-144.73q0-30.86 3.395-52.461h-4.012q-35.488 51.535-106.77 51.535z" fill="#c8e8ff"/>
|
||||
<circle cy="512" cx="512" r="496" fill="url(#m)" stroke="#daefff" stroke-width="32" />
|
||||
<path
|
||||
d="M712.9 332.4q66.657 0 103.38 45.671 37.03 45.364 37.03 128.68 0 83.32-37.34 129.61-37.03 45.98-103.07 45.98-33.02 0-60.484-12.035-27.156-12.344-45.672-37.649h-3.703l-10.8 43.512h-36.72v-480.16h51.227v116.65q0 39.191-2.469 70.359h2.47q35.796-50.61 106.16-50.61zm-7.406 42.894q-52.46 0-75.605 30.242-23.145 29.934-23.145 101.22 0 71.285 23.762 102.14 23.761 30.55 76.222 30.55 47.215 0 70.36-34.254 23.144-34.562 23.144-99.058 0-66.04-23.144-98.442-23.145-32.402-71.594-32.402z"
|
||||
fill="#fff" />
|
||||
<path
|
||||
d="M317.27 639.45q51.227 0 74.68-27.466 23.453-27.464 24.996-92.578v-11.418q0-70.976-24.07-102.14-24.07-31.168-76.223-31.168-45.055 0-69.125 35.18-23.762 34.87-23.762 98.75 0 63.879 23.454 97.515 23.761 33.328 70.05 33.328zm-7.715 42.894q-65.421 0-102.14-45.98-36.723-45.981-36.723-128.38 0-83.011 37.032-129.61 37.03-46.598 103.07-46.598 69.433 0 106.77 52.461h2.778l7.406-46.289h40.426v490.06h-51.24v-144.73q0-30.86 3.395-52.461h-4.012q-35.488 51.535-106.77 51.535z"
|
||||
fill="#c8e8ff" />
|
||||
</g>
|
||||
</svg>
|
||||
</svg>
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 7.0 KiB |
@ -1 +1,9 @@
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.2" transform="matrix(.96199006 0 0 .96361338 .608159 .582186)"><path d="m4.0469584 21.650549 5.7224128 6.278357 5.7224128-6.278357m-5.7224128-17.5794007v22.6020867" stroke="#008000"/><path d="m27.953041 10.349451-5.722412-6.2783574-5.722413 6.2783574m5.722413 17.579401v-22.6020868" stroke="#4169e1"/></g></svg>
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.2"
|
||||
transform="matrix(.96199006 0 0 .96361338 .608159 .582186)">
|
||||
<path d="m4.0469584 21.650549 5.7224128 6.278357 5.7224128-6.278357m-5.7224128-17.5794007v22.6020867"
|
||||
stroke="#008000" />
|
||||
<path d="m27.953041 10.349451-5.722412-6.2783574-5.722413 6.2783574m5.722413 17.579401v-22.6020868"
|
||||
stroke="#4169e1" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 472 B After Width: | Height: | Size: 535 B |
@ -1 +1,8 @@
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke="#ff8c00" stroke-linecap="round" stroke-linejoin="round" stroke-width="49.3599" transform="matrix(.06922604 0 0 .06817697 -1.721831 -1.453304)"><path d="m400 304 48 48-48 48m0-288 48 48-48 48m-336 144h85.19a80 80 0 0 0 66.56-35.62l40.25-60.38"/><path d="m64 160h85.19a80 80 0 0 1 66.56 35.62l80.5 120.76a80 80 0 0 0 66.56 35.62h53.19m0-192h-53.19a80 80 0 0 0 -66.56 35.62l-8.25 12.38"/></g></svg>
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" stroke="#ff8c00" stroke-linecap="round" stroke-linejoin="round" stroke-width="49.3599"
|
||||
transform="matrix(.06922604 0 0 .06817697 -1.721831 -1.453304)">
|
||||
<path d="m400 304 48 48-48 48m0-288 48 48-48 48m-336 144h85.19a80 80 0 0 0 66.56-35.62l40.25-60.38" />
|
||||
<path
|
||||
d="m64 160h85.19a80 80 0 0 1 66.56 35.62l80.5 120.76a80 80 0 0 0 66.56 35.62h53.19m0-192h-53.19a80 80 0 0 0 -66.56 35.62l-8.25 12.38" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 501 B After Width: | Height: | Size: 552 B |
@ -1 +1,7 @@
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke="#f00" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.2" transform="matrix(.95741072 0 0 .96843842 .681429 .504985)"><path d="m3.9772656 21.616246 5.7557776 6.240243 5.7557778-6.240243m-5.7557778-17.4726808v22.4648758"/><path d="m28.022734 10.383754-5.755777-6.2402431-5.755778 6.2402431m5.755778 17.472681v-22.4648754"/></g></svg>
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" stroke="#f00" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.2"
|
||||
transform="matrix(.95741072 0 0 .96843842 .681429 .504985)">
|
||||
<path d="m3.9772656 21.616246 5.7557776 6.240243 5.7557778-6.240243m-5.7557778-17.4726808v22.4648758" />
|
||||
<path d="m28.022734 10.383754-5.755777-6.2402431-5.755778 6.2402431m5.755778 17.472681v-22.4648754" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 452 B After Width: | Height: | Size: 491 B |
@ -1 +1,9 @@
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.2" transform="matrix(.96198992 0 0 .96361031 .608162 .582235)"><path d="m4.0469562 10.349429 5.7224138-6.2783812 5.722414 6.2783812m-5.722414 17.579469v-22.6021738" stroke="#6495ed"/><path d="m27.953043 21.650571-5.722413 6.278382-5.722414-6.278382m5.722414-17.5794689v22.6021739" stroke="#3cb371"/></g></svg>
|
||||
<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.2"
|
||||
transform="matrix(.96198992 0 0 .96361031 .608162 .582235)">
|
||||
<path d="m4.0469562 10.349429 5.7224138-6.2783812 5.722414 6.2783812m-5.722414 17.579469v-22.6021738"
|
||||
stroke="#6495ed" />
|
||||
<path d="m27.953043 21.650571-5.722413 6.278382-5.722414-6.278382m5.722414-17.5794689v22.6021739"
|
||||
stroke="#3cb371" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 470 B After Width: | Height: | Size: 533 B |
@ -1,3 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.781139 25.6" width="21.781" height="25.6">
|
||||
<path d="M21.5 3.7l-7.6 7.5v11.4c0 .5-.2.7-.6.9-.1.1-.3.1-.4.1-.3 0-.6-.1-.7-.3l-4-4c-.2-.2-.3-.5-.3-.7v-7.5L.4 3.7C0 3.3-.1 2.9.1 2.6.3 2.2.6 2 1 2h19.7c.5 0 .7.3.9.6.3.4.2.7-.1 1.1z" fill="#427337"/>
|
||||
</svg>
|
||||
<path
|
||||
d="M21.5 3.7l-7.6 7.5v11.4c0 .5-.2.7-.6.9-.1.1-.3.1-.4.1-.3 0-.6-.1-.7-.3l-4-4c-.2-.2-.3-.5-.3-.7v-7.5L.4 3.7C0 3.3-.1 2.9.1 2.6.3 2.2.6 2 1 2h19.7c.5 0 .7.3.9.6.3.4.2.7-.1 1.1z"
|
||||
fill="#427337" />
|
||||
</svg>
|
Before Width: | Height: | Size: 310 B After Width: | Height: | Size: 318 B |
@ -1,3 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.781139 25.6" width="21.781" height="25.6">
|
||||
<path d="M21.5 3.7l-7.6 7.5v11.4c0 .5-.2.7-.6.9-.1.1-.3.1-.4.1-.3 0-.6-.1-.7-.3l-4-4c-.2-.2-.3-.5-.3-.7v-7.5L.4 3.7C0 3.3-.1 2.9.1 2.6.3 2.2.6 2 1 2h19.7c.5 0 .7.3.9.6.3.4.2.7-.1 1.1z" fill="#d1954e"/>
|
||||
</svg>
|
||||
<path
|
||||
d="M21.5 3.7l-7.6 7.5v11.4c0 .5-.2.7-.6.9-.1.1-.3.1-.4.1-.3 0-.6-.1-.7-.3l-4-4c-.2-.2-.3-.5-.3-.7v-7.5L.4 3.7C0 3.3-.1 2.9.1 2.6.3 2.2.6 2 1 2h19.7c.5 0 .7.3.9.6.3.4.2.7-.1 1.1z"
|
||||
fill="#d1954e" />
|
||||
</svg>
|
Before Width: | Height: | Size: 310 B After Width: | Height: | Size: 318 B |
@ -1,3 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.781139 25.6" width="21.781" height="25.6">
|
||||
<path d="M21.5 3.7l-7.6 7.5v11.4c0 .5-.2.7-.6.9-.1.1-.3.1-.4.1-.3 0-.6-.1-.7-.3l-4-4c-.2-.2-.3-.5-.3-.7v-7.5L.4 3.7C0 3.3-.1 2.9.1 2.6.3 2.2.6 2 1 2h19.7c.5 0 .7.3.9.6.3.4.2.7-.1 1.1z" fill="#733737"/>
|
||||
</svg>
|
||||
<path
|
||||
d="M21.5 3.7l-7.6 7.5v11.4c0 .5-.2.7-.6.9-.1.1-.3.1-.4.1-.3 0-.6-.1-.7-.3l-4-4c-.2-.2-.3-.5-.3-.7v-7.5L.4 3.7C0 3.3-.1 2.9.1 2.6.3 2.2.6 2 1 2h19.7c.5 0 .7.3.9.6.3.4.2.7-.1 1.1z"
|
||||
fill="#733737" />
|
||||
</svg>
|
Before Width: | Height: | Size: 310 B After Width: | Height: | Size: 318 B |
@ -1,3 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.781139 25.6" width="21.781" height="25.6">
|
||||
<path d="M21.5 3.7l-7.6 7.5v11.4c0 .5-.2.7-.6.9-.1.1-.3.1-.4.1-.3 0-.6-.1-.7-.3l-4-4c-.2-.2-.3-.5-.3-.7v-7.5L.4 3.7C0 3.3-.1 2.9.1 2.6.3 2.2.6 2 1 2h19.7c.5 0 .7.3.9.6.3.4.2.7-.1 1.1z" fill="#686868"/>
|
||||
</svg>
|
||||
<path
|
||||
d="M21.5 3.7l-7.6 7.5v11.4c0 .5-.2.7-.6.9-.1.1-.3.1-.4.1-.3 0-.6-.1-.7-.3l-4-4c-.2-.2-.3-.5-.3-.7v-7.5L.4 3.7C0 3.3-.1 2.9.1 2.6.3 2.2.6 2 1 2h19.7c.5 0 .7.3.9.6.3.4.2.7-.1 1.1z"
|
||||
fill="#686868" />
|
||||
</svg>
|
Before Width: | Height: | Size: 310 B After Width: | Height: | Size: 318 B |
@ -1,3 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#D1954E" d="M25.8 27.2v.9c0 .1 0 .2-.1.3-.1.1-.2.1-.3.1H6.6c-.1 0-.2 0-.3-.1-.1-.1-.1-.2-.1-.3v-.9c0-.1 0-.2.1-.3s.2-.1.3-.1h18.8c.1 0 .2 0 .3.1.1 0 .1.1.1.3zm-3.5-14.8c0 .7-.1 1.4-.3 2s-.6 1.2-1 1.6l-1.2 1.2c-.4.4-.9.7-1.3 1.1-.4.3-.9.7-1.2 1-.4.3-.7.7-.9 1.1-.2.4-.3.9-.3 1.3 0 .9.3 1.9.9 3.1h-.1c-.8-.4-1.6-.8-2.2-1.2s-1.3-.9-1.9-1.4-1.2-1.1-1.6-1.7c-.4-.6-.8-1.3-1-2.1-.3-.8-.4-1.7-.4-2.6 0-.7.1-1.4.3-2s.5-1.1.9-1.6l1.2-1.2c.4-.4.9-.7 1.3-1.1.4-.3.9-.7 1.2-1 .4-.3.7-.7.9-1.1.3-.3.4-.7.4-1.2 0-.9-.3-1.9-.9-3.1.8.4 1.6.8 2.2 1.2.7.3 1.3.8 2 1.4s1.2 1.1 1.6 1.7c.4.6.8 1.3 1 2.1s.4 1.6.4 2.5z"/>
|
||||
</svg>
|
||||
<path fill="#D1954E"
|
||||
d="M25.8 27.2v.9c0 .1 0 .2-.1.3-.1.1-.2.1-.3.1H6.6c-.1 0-.2 0-.3-.1-.1-.1-.1-.2-.1-.3v-.9c0-.1 0-.2.1-.3s.2-.1.3-.1h18.8c.1 0 .2 0 .3.1.1 0 .1.1.1.3zm-3.5-14.8c0 .7-.1 1.4-.3 2s-.6 1.2-1 1.6l-1.2 1.2c-.4.4-.9.7-1.3 1.1-.4.3-.9.7-1.2 1-.4.3-.7.7-.9 1.1-.2.4-.3.9-.3 1.3 0 .9.3 1.9.9 3.1h-.1c-.8-.4-1.6-.8-2.2-1.2s-1.3-.9-1.9-1.4-1.2-1.1-1.6-1.7c-.4-.6-.8-1.3-1-2.1-.3-.8-.4-1.7-.4-2.6 0-.7.1-1.4.3-2s.5-1.1.9-1.6l1.2-1.2c.4-.4.9-.7 1.3-1.1.4-.3.9-.7 1.2-1 .4-.3.7-.7.9-1.1.3-.3.4-.7.4-1.2 0-.9-.3-1.9-.9-3.1.8.4 1.6.8 2.2 1.2.7.3 1.3.8 2 1.4s1.2 1.1 1.6 1.7c.4.6.8 1.3 1 2.1s.4 1.6.4 2.5z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 682 B After Width: | Height: | Size: 686 B |
@ -1,76 +1,134 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ac" viewBox="0 0 640 480">
|
||||
<path fill="#006" d="M640 480V0H0v480h640z"/>
|
||||
<path fill="#8fc5ff" stroke="#fff" stroke-width="4.3" d="M574.5 199.7c0 63.7-10.2 132.5-93 165.3-82.6-32.8-92.7-101.6-93.1-165.3z"/>
|
||||
<path fill="#366cc9" stroke="#000" stroke-width="4.3" d="M481.4 364.7A134.1 134.1 0 0 0 555 302h-7.8c-2.3-.4-79.4-7.8-88.7-11.7-7.9-2.8-38.4 2.7-52.4 7.8a133 133 0 0 0 75.4 66.5z"/>
|
||||
<path fill="#5d3100" stroke="#000" stroke-width=".4" d="M423.6 325.6h4.7c1.1 0 1.1 0 1.5-1.2.4-1.2 1.6-.8 2.4-.4.7.4 2.3 0 3-.8.9-.8.9-.8 1.7 0 .7.8 1.1.4 2 0 .3 0 1.9-.8 2.3-2 .3-1.1 1.5-1.5 2-.7.3.8 1 .8 1.9.8.7 0 .7.3.7 1.5 0 .8 0 1.2 2-.4 1.6 1.6 2 .8 2-.8 0-1.5 0-7.8-.8-8.2-.8-.4-1.2-3.1-1.6-5 0-4 0-4-3.9-6 0-1-.8-1.5-4-1.5.5-.4 0-1.5-.7-2-.8-.3-.8-.7 0-2.3.8 0 2.4 0 2.7-1.2.8-.7 3.2-.7 4.7 0 1.6.8 3.2.8 5.9 0l4.7-2.3c2-1.2 2.3-1.6 2.3-3.1 0-4-1.1-7.8-2-9.8-1-2-1-4-2.7-7.4-1.5-3.2-1.5-4-3-5.9-.9-.8-1.3-1.2-1.3-2.3a5.9 5.9 0 0 0-2-4c-3-2.7-3.8-11.7-5.4-18.3-.8-4 0-13-1.5-14.5-2.8-2-4-1.6-6-2.3-1.5-2-1.9-5.5-3.4-9-2 .4-3.2 2.3-4.3 3-1.2.9-1.6.9-1.6 2.8 0 1.6-1.2 4-2.7 7-1.6 3.2-5.1 2-7.9 6.3-5.4-6.6-5.4-8.6-5.8-10.5 0-2-1.2-2.4-4.3-5.1v-6c-2.8-2-4.3-1.5-5.5 0-1.2 1.2-2 3.1-3.9 4-.8 1.5-4 4.6-6.3 9 2.4 35.1 10.2 70.3 34 98.5z"/>
|
||||
<path fill="#ff0" stroke="#fff" stroke-width="4.3" d="M574.5 199.7c0-24.3-1.2-47.8-.8-68a248.7 248.7 0 0 0-92.3-16.9c-20.7 0-61.4 3.1-92.2 16.8.7 20.3-.8 43.8-.8 68z"/>
|
||||
<path fill="#cf6200" d="M393.5 227.4c1 1.6 2.9 4.3 3 6 .8-1.6 1.4-2.2 1.5-3.1 0-1 1.3-2.7.8-3.7-.4-1-.7-1.7.4-1s.9 2 .7 3.8c-.7 5-2.7 6-3 9.3 2.9 7 .7 9.6 4 16.6.5.2 1.8-.3 2.2-.2 1.8-1.2 3-.9 5.5-.3 2.4.5 3.7 2.2 3.7 3.8 0 1.6 0 1.9.6 2.8.5.8 1.4 2.3 1.3 3.4-.3 1 .1 1.6.5 2 .3.5-.2 1.8-.4 2.4-.3.6-.2 1.7 1 3.2 1.2 1.5 4 7.9 4 11.6 0 3.9.3 5.6 1.8 6.3 1.5.7 2 1.3 1.8 2.9-.2 1.5.7 10 .9 11.4.1 1.3.7 1 1.4 1.7.6.7 1 1.5 3 1.5 2.1 0 4-.2 5.2 0 2 2.5 3 6 3.5 8.1.5 2.2.4 5 1 5 .8 0 1.5 0 1.3-2.5-.2-2.6-.4-3-1.3-4.4-1-1.3-1.5-2-1-2.7.5-.8.6-2 .5-3.1-.2-1-.6-2.6 1.2-.6l2.7 3.3c.5.6.7 2 .6 3.3-.1 1.2 0 1.7.9 1 .7-.6 1.5.5 1 1.8-.3 1.3.3 2.1 1.5 2.6 1.2.4 1.7.7 2 1.6.3.8 1.3 1.3 1.3-.6a27 27 0 0 0-1.2-6.9c-.5-1.2-.9-3.8-1-5.4-.2-1.5-.4-1.9-1.1-2.1-.7-.3-1.4-1-1.5-1.6 0-.7-.7-1-1.1-1-.5 0-.9-.3-1.2-.8-.2-.6-.5-.6-1-.6-.5-.1-1.3.2-1.6-.6-.2-.8-.6-2-1.1-2.6-.5-.6-.9-.9-1-3.2 0-2.3 0-2.6-.8-3.4-.8-.8-2-3-2.5-3.8-.4-1-1-1.9-1 0 0 2 0 3 1.3 3.7 1.2.7 1.5.7 1 1.8-.6 1 0 1.7.2 2.4.3.7.6 1.4 0 2-.6.8-1.2.6-1.1-.5a6.4 6.4 0 0 0-.9-3.3c-.4-1-.9-1.6-1.5-1-.6.4-1.1-.2-.7-.6.5-.4.3-.7 0-1-.2-.2-.4-.6.1-1.2s.5-.9.2-2.3-2.5-8.6-3.5-10.2c-1-1.7-.9-2.8.3-1.3 1.3 1.6 2.5 3 2.7 4.4 0 1.4.3 2.2.7 2.6.5.5.7.4 1-.8 0-1.1 1-.7-.4-2.8-1.5-2.1-4.1-5.7-5.2-12.2-1-6.4-1.4-10.5-2.4-12.2-1-1.8-1.3-2.2-1.4-3.8-.1-1.6 0-3.3-.7-4.5-.7-1.2-1.2-1.4-1.3.4-.1 1.8 0 6 .6 6.6.6.7.2 2.6 0 3.5-.2 1-1.7 2.1 1.7 4.1 1.3.9 1 2 1 2.6-.3.8-.5.7-1.2-.4s-1.4-2.1-2.1-2.6c-.7-.5-.9-1-.7-2.5.2-1.5.3-2.5 0-3-.4-.4-.6-.1-.9.8-.2.8-.3 3-.9 3.6-.5.6-.5.2-.8-1.1-.4-1.3.1-3.4.8-5.7.7-2.2 1.2-4.8.6-7.8s-.4-4-2.6-6.5c-2.4-2.6-5.1-5-6.1-8.1-1.2-3.2-1.4-6-2.7-7.4a17 17 0 0 0-4-3.7v-4.7c0-1.2-.5-1.8-1.8-1.6-1.3.2-2.2 1.3-3 2.8-.8 1.6-1.4.9-2.6 3.5-1.2 2.6-2.6 4-2.6 6.8z"/>
|
||||
<path fill="#cf6200" d="M400.8 257.1c1 .6 1.7.9 3 .3 1.1-.6 2.5-2.4 4.3-.6a11 11 0 0 1 2.4 6.7c0 2.3 0 6.5 2.6 8.8 2.6 2.3 3.9 4.8 4 7.8a53.2 53.2 0 0 0 1.4 9c.4 1.2 1 2.6 1.9 3.5.7.8 1.4 3.1 1.5 5.5.1 2.5-.3 4.1 0 5.4.4 1.2 0 2.2-.8 1.7-1-.5-1.2-1-1.8-2-.6-1-1-.9-.5.7s2 3 3.3 3c1.3 0 1.7.1 2.6 1 .8.8.9 1.2 2.3 1.2s1.6 0 3 .4c1.3.3 1.3.2 2 0 .7-.3 1.4.4 1.9 1.7.4 1.3 1.7 5 1.7 6s0 2 .7 3c.7 1.1.5 2-.3 1.5-.7-.6-.8-.5-1.3-.3-.6.2-1-.2-1.9-.8-.8-.4-.3-.3-1.1-1.5-.8-1.3-1.3-1.7-1.3-.7s-.2 2-.8 1.4c-.6-.5-.9-.5-1.4 0-.5.6-.7 1-1.3 0-.6-1-1.3-1-2-1.3-.5-.1-.5-.1-.8-1-.3-1-1.3-1.2-2-1.2-.9 0-1.3-.4-1.4-1 0-.6-.6-1-1-1.3-.5-.3-.2-1-.3-1.7 0-.7-.7-.5-1.1-.6-.5-.2-.7-.1-.7-1.2 0-1-.5-1.3-.7-2-.4-.8 0-1.5.2-2.2.1-1 0-1.4-.6-2-.6-.8 0-1.5-1.7-3-1.7-1.3-2.5-.1-3-3.4a43.7 43.7 0 0 0-2.4-11.4c-1-1-1.5-2-2.5-2.3-1-.3-1.4 0-1.5-2-.1-2-.7-4.4-2-5.6l-2.3-2.2c-.6-.4-.9-1.4 0-3 .9-1.8.5-4.2.4-5.3-.1-1-.4-2.6-.2-3.8.2-1.2 0-2.7-.2-3.5-.3-.7-.7-1-.2-1.7zm24.5-28.8a22.1 22.1 0 0 1-4.7 4.6c-1.9 1.4-4.3 2.4-3 4.7 1.4 2.3 2.5 2.6 2.7 4.3.3 1.8.8 3.3 2 3.7 1.5.4 2 .2 2 3 0 2.7 0 4 1.2 5s1 2.2 1.6 4.7c.6 2.6.6 8.2 2.2 12 1.5 3.7 5.3 11 4.8 12.4-.4 1.5-.8 2.6.7 4.4 1.7 1.7 2.7 4.3 3 5.8 0 1.5.3 2 2 1.5a6 6 0 0 0 2.9-1.7c.5-.7 1.6-.6 3.1.2 1.5.9 3.8 1.6 5.2.9 1.3-.9 2-2.1 3.2-2.1 1.9-1.4 2.6-4.2 3-5 .4-.8.1-.8-.7-1.6-.8-.8-.4-2.2-.5-3.5-.2-1.4-.7-3.5-2.3-6.5-1.6-3-2.7-6.6-3.7-7.5-1-1-1.6-3.3-1.7-4.4-.1-1-1.4-2-2.2-2.8-.9-.9-1.6-2-2.6-6.8-1-4.7-1.6-8-1.6-9 0-.8-.2-.8-1-1.2-.8-.3-1.2-1.6-.8-2.2.1-.7-.4-1.4-.7-2.2-.2-.8 0-2.3.6-3.2.5-.8.4-3-.1-5-.5-1.8-1.1-3.4-3.3-3.8-2.1-.2-2.6-.8-3.3-2.6-1-1.7-1.8-4.8-2-5.5-.2-.7-.7-.8-2.3.6-1.6 1.3-2.2 1.7-2.2 4.3 0 1.7.4 2.2.9 3.1.5 1 .7 1.3 1 3.8.4 2.5 2.7 6.6-.2 9-3 2.2-2.6 2.8-2.5 4.4.2 1.7-.8 2.7-1.3.5-.6-2.4 0-3.7 1.6-4.8 1.6-1 3.1-2.5 2-4a19 19 0 0 1-1.7-6.6c-.1-1.6-.3-2.2-1.3-.9z"/>
|
||||
<path fill="#00b800" d="m401.2 262.8.3 3.3c0 1.1.4 3.5-.5 5.2-.8 1.7-.6 2.6 0 3.1h.1c1.7-.5 2-2.3 1.5-3.2a3.2 3.2 0 0 1 .2-3c.5-1 .5-1.5 0-2.2-.5-.7-.5-.7 0-2.6.6-1.7-.7-1.7-1.6-.6zm17.4 26.3c-.3-1.2-1.5-6-1.5-9-.1-3-1.5-5.5-4-7.8-2-1.8-2.4-4.7-2.6-7-1.5-.9-2-.5-1.9 1.2 0 1.8 2 2.6 1.7 5.3-.3 2.6-.3 2 1 3.3 1.1 1.2 1.7 2.6 1 3-.7.5-.7 1.5.2 1.8 1 .4 1 1.4.9 2.4-.1.9.9 1.1 1.3 1.7.6.7.6 2.4 0 3.3-.4 1-.5 2.5.4 1.7 1-.9 1.4 0 2.1 1.2.6 1 1.2.7 2 .5a8.5 8.5 0 0 1-.7-1.6zm13 23.6c-.4 1.2-1.1.9-1.7.3-.6-.6-1.3-.6-1-1.8.2-1.1 0-1.3-.7-1.9l-.3-.3h-.8c-1.5 0-1.6-.3-2.5-1.2a6.8 6.8 0 0 0-.5-.4v.8c0 1.1 0 .8-1 1.2-1 .3-1-1.1-1.2-2a3.4 3.4 0 0 0-.1-.6 4 4 0 0 1-3-2.9c-.5-1.6 0-1.7.6-.7s.7 1.3 1.6 2c.8.5 1.2-.5.8-1.7a5.2 5.2 0 0 1 0-1.3 2 2 0 0 0-.8-1c-1.8-.7-1.2-.8-1.2-2.2.2-1.3-.1-1.3-1.2-.6-1 .7-1 0-1-2.2 0-2-1.4-2-1.7-.6-.3 1.5-.9.5-1.4-1.5-.5-2-1.5-2.6-1.5-.6 0 1.7-.6 2-1.6 1.2l.4 3.1c.5 3.3 1.3 2 3 3.5 1.6 1.4 1.1 2.2 1.7 2.9.6.7.7 1.2.6 2-.3.8-.6 1.5-.3 2.2.3.8.8 1 .8 2.1 0 1 .2.9.7 1.2h.8l.7-1c1.3-1.2 3 0 3.7 1.7.6 1.5 1.3 1.9 2.3.6 1-1.2.6-1 1.6.1 1 1.2 1.4 1 1.4 1s1-.4 1.8.2c.7.6 1 .5 2.4-1.4 1.3-2-.6-1.4-1.2-.2zm3.8-55.8c.4-3 .1-5.9 1.3-7 1.3-1 2.7-3.3 2.7 1.4-.2 4.6-.4 4.3-1.3 5.4-1 1.1-1.8 1.4-1 3.1 1.1 1.7 1.2 2 1.1 4.6-.1 2.7-.1 3.9.9 5.2 1.1 1.4 1.4 1.4 1.7 3a8.4 8.4 0 0 0 2.4 4.5c1.2 1.2 2.6 4.2 2.7 6.4.2 2.2 2 2.7 3.8 4.3 1.8 1.5-.4 2.5-1.7 1.8-1.4-.6-.9 0-1.7 1-.8 1-1 1.1-1.7-.6-.7-1.6-3-2.7-4.1-3.1-1.1-.4-2-2.2-3-4a5.2 5.2 0 0 0-3.9-2.6c.4 1.1.6 2 .5 2.4-.4 1.5-.8 2.6.7 4.4 1.7 1.7 2.7 4.3 3 5.8 0 1.5.3 2 2 1.5a7.2 7.2 0 0 0 2.9-1.7c.5-.7 1.6-.7 3.1.2 1.5.8 3.8 1.6 5.2.8 1.3-.9 2-2 3.2-2 1.9-1.4 2.6-4.3 3-5 .4-1 .1-1-.7-1.7-.8-.8-.4-2.2-.6-3.5 0-1.4-.6-3.4-2.2-6.4-1.7-3-2.7-6.6-3.7-7.5-1-1-1.7-3.3-1.7-4.4-.2-1-1.4-2-2.2-2.9-.9-.8-1.7-2-2.6-6.7-.7-3.7-1.4-6.6-1.5-8-1 1.5-1.7 2-2 .8-.5-1.2-.9-1.8-1.5-1-.5.8-.7-.8-.7-1.5s0-.7-.9-.7c-.8 0 0-1-.3-3.2-.3-2-.7-2.2-.9.2-.3 2.4-1.7 4-1.1 4.4.5.6.2 1.7-.3 3.3a5.1 5.1 0 0 0 0 3.6c.4 1-.2 3.2-.4 4.9-.3 1.7 1.1 3.5 1.5.6zm-24.8-24.2c-1 0-1.7 1-1.1 4 .4 2-1 1.6-1.6.6-.5-1-1-3-2-4.7-1.1-1.7-.6 1.1-.7 2.8-.2 1.7.9 1.7 1.8 3 1 1.4.2 1.9-.8 1.9s-.7 2.2-.4 3.6c.3 1.5-.3 1.8-1 .6-1-1.3-.3-3-.2-5.4.2-2.3.3-1.8-1.2-2.3-1.5-.6-1.3-.9-.6-2.2.5-1.4 1-2 .3-2.7-.6-.7-.5-1.1.6-1.2 1-.2.6-1 1.6-1.2 1-.3 1.4 0 1.5-1.7.1-1.5.6-2.3 1.7-1.9.7 2.3 1.5 5.8 2.1 6.8zm13.7 16c0 2.8 0 4 1.2 5s1 2.2 1.6 4.7c.6 2.6.6 8.2 2.2 12l1.8 4a7.7 7.7 0 0 0 2-2.6c.3-.8-.9-2.8-1.8-4.3-1-1.8.1-2.3 1-4.4 1-1.9 0-2-1.6-2.6-1.4-.5-1.4-2-2.2-4.1-.8-2.2-.7-3.1-.2-4.4.5-1.2.2-2.1-.9-2.4-1.1-.3-.8-1-.4-2.4.4-1.3.7-1.6-1-1.3-1.2.4-1.5.7-1.9 1z"/>
|
||||
<path fill="#5d3100" d="M439.9 254.3c-.2 1.6-.2 2.5-.6 3-.4.5-.1 1.3.3 2.2.5.8.6 1.8.3 3.4-.4 1.5.2 2.6 1 3 .8.4 1.2 0 1 2a5.8 5.8 0 0 0 1.7 4.7c1 .8 1.7 2.1 1.5 3 0 .8.7 1.5 1.7 2 1 .4.8.5.8 1s.4.6 1.4.9c1 .3 2 .9 3.2 2.4 1.2 1.6 3 2.3 2.7.7-.3-1.5 0-2.8-1.6-3.5-1.7-.8-2.9-4.7-3.5-7.4a17 17 0 0 0-4-7.1c-.3-2 0-2.9-1.2-3.8a4 4 0 0 1-1.7-3.2c0-.8-.6-2-1.2-2.4-.5-.3-.8-.9-.8-1.8 0-.8-.8-.7-1 1z"/>
|
||||
<path fill="#00d860" d="M432.7 327a39.2 39.2 0 0 0 9.7-2.8c1.7 1.1 4.5 2.6 5.7 2.6-2.3.5-3.9.3-4.4-.2.3.7 1 1.9 1.6 2-2.3 0-4.8-.6-5.6-1.4-2 .8-5.2 1-7-.2zm4.3 3c.9.3 5.2 1 5.8 1-1.4 1.2-.2 2.4 2.1 2.2-1 .2-2.4.6-1.5.8a24.4 24.4 0 0 0 8.9-1.8c-2 2.5-11.4 4.8-15.3-2.2zm4 6.1a9 9 0 0 1 5.3.3c-1.4.6-4.5.6-5.4-.2z"/>
|
||||
<path d="M445.3 336.1c2-.3 8 1 10-.2-.7 1.9-4.3 2.2-5.7 1.7-1.3-.3-2.5-.8-3.4-.8.6-.3-.2-.3-1-.7z"/>
|
||||
<path fill="#00d860" d="M447.4 339a30.5 30.5 0 0 0 9-1.1c1.7.6 5.4 1.6 6.2 1.5-1.7 1-5 .4-6 0a10.9 10.9 0 0 1-9.2-.4z"/>
|
||||
<path fill="#00d860" d="M450 339.9c2.3.5 4.3.2 6.5-.5.7.2 2.3.6 3.9.6 1 .5 2.3 1.3 3.7 1.5a16.6 16.6 0 0 1-7.5-.7 19.2 19.2 0 0 0-8 1.5 3 3 0 0 1 1.5-2.3z"/>
|
||||
<path d="M447.4 328.6c1.7.5 8.2.2 11.3-1.3 1.4-.7 2.2.4.7.8-5.2 2-9.5 2.6-12.5 1-1.2-.6-1.4-1.2.5-.6z"/>
|
||||
<path fill="#00d860" d="M478.6 319.8c-7.9 3.7-13 4.8-23.9 1.4-1-.2-1.7 0-.6.7a40 40 0 0 0 8.5 2.6c1.4.1.9.7 0 1-.8.2-1 .8.1.4 1.1-.5 7.8-.7 10.5.7 1.1.7 1.4.5 1.3 0-.1-.4.5-.7 1.4-.8.8-.1 1.4-.4.7-.6-.7-.3-.8-.5-.3-.7.5-.3.6-.6-.2-.7-.7-.2-1.3-.4-.6-.7a9 9 0 0 1 2.6-.7c.2-.5-.1-2 .5-2.6z"/>
|
||||
<path d="M465.6 320.7a26 26 0 0 0 17-6c1.6 1 3.7 2 4.9 2.2 1.1.2 2 1.2.3 1.2s-4-.7-5.2-1.2a29.5 29.5 0 0 1-17 4.3c-1.1 0-1.4-.5 0-.4z"/>
|
||||
<path fill="#00d860" d="M452.3 296.3c1.6 1.1 4.3 2.9 7.8 2.6a17 17 0 0 0 5.7 3c-2.4.8-5 1.7-5.6 2.4-1-1-2.5-.8-2.8-1.4-1 1-.9 1.3-.2 1.8a22 22 0 0 0 7 .9c1.2-.4 1.7.7.6 1-2.7 1-8 0-9.8-2.9-2-2.9-3.5-4-8.5-1.3-.5-1.5-.5-1.7-1.5-1.7s-2.8-1.3-1.4-1.3 5.4-.6 8.7-3z"/>
|
||||
<path fill="#00d860" d="M453.6 303c-1 .1-3.3 1.4-4.1 1.5-.9.2-2.4 1.4-.9 1.4 1.7 0 3.7-1.7 4.8-1.7 1.1 0 1.2-1.5.2-1.3zm5 5c-.7.2-3.3.8-4 .8-.7 0-1.5 0-1.4.6.1.5.3.9-.9.7-1-.2-1.9.3-2.1.6-.3.3-.5.6.6.7 1 0 1.6.3 2.9-.4 1.2-.6 2.3-1.3 3.6-1.4 1.3 0 2.6-1.8 1.2-1.5z"/>
|
||||
<path d="M454.9 311.1c1.1.9 6.6 2.6 8.5 2.6 2-.1 1.7.7.2 1a12.2 12.2 0 0 1-9.6-2.7c-1.2-1 0-1.4.8-.9z"/>
|
||||
<path fill="#00d860" d="M480.8 314a21 21 0 0 1-10.2.3c-1.7-.6-3.3-.6-2 .6 1 1.1 4.8 1.8 7 1.3-7.6 1.7-9.6 1.6-11.4 1.3a38 38 0 0 0-7-.2 6 6 0 0 1-3.3-.4c-.7-.5-.9-1.1 1.1-.9 2 .1 2.3-.2.6-.5-1.8-.3-4.1.4-1.8 2 2.4 1.4 7.4-.2 10.7.8a18.6 18.6 0 0 0 16.7-3.8c.3-.2.9-1-.4-.6zm-20.6-6.3c.2.6.2 1 0 1.4-.2.4-.1.9.5.4s1-1.2 1.8-.8c.7.3 2.3.3 3 .2.8 0 1-.3 0-.7a7.4 7.4 0 0 0-2.9-.6c-.6.1-1.4 0-1.9-.3s-.6 0-.5.4z"/>
|
||||
<path fill="#00d860" d="M471 309.7c-.8 0-2.4-.6-3.1-1-.8-.3-2-.3-1.2 1 .9 1.2 4.6 1.7 6 1.2 1.3-.6.8-1.2 2-.4 1.4.8 2.7 1.3 3.7 1.3s1.3 0 .3-.6-1.6-.7-1.8-1.2c-.2-.5-.2-.9.9-.5 1 .3 2 .8 2.8.4.8-.4 2.2-1.3 3.5-1.3l.2-.8c-1.8 0-3 .5-3.5.6-.4.2-1.4.4-2.4.2s-2.2-.3-2.5-.5c-.4-.3-.3-.5.5-.6.8-.2 1-.7 0-.6-1 .2-4.2.2-5.8-.3-1.5-.5-2.2-.6-2.8-.3-.7.2-.6 1 .3 1 1 0 3.2.3 4 1 .6.7.6.7-.2.4-.9-.4-2.5-.2-.9 1z"/>
|
||||
<path fill="#00d860" d="m484.3 307.8-.3.8c1.9 0 6.4.4 8 1.3 1.4-1.1 1.1-1.5 2-1.2 1 .3 2.4.5 3 .3a2 2 0 0 1 1.5-.2c.6 0 2-.2 2.7-.6.8-.5 2.4-1 3.3-1 .8 0 2-.3.3-.6-1.6-.3-4.2.3-5 .6-1 .3-3.5.5-5 .5s-3.6.7-5.3.3c-1.8-.4-4.2-.2-5.3-.2z"/>
|
||||
<path d="M507.9 307c-3 2.2-6.8 2.7-11.1 3-1.3 0-.9.4.2.5 4.6.5 9.8-1.2 11.6-3 .5-.6.4-1.4-.7-.6z"/>
|
||||
<path fill="#00d860" d="M487.1 312.2a47 47 0 0 1 7.3 1.7c1.2-.2 1.5-.4 1.3-.9-.3-.4-.4-.8 1.7-.6h7.5c.8-.3 2.3-1.5 3-1.5-1.8 0-9.5.4-10.4.3-1 0-1.5 0-2.1.4-.6.3-.9.5-1.7.1-1-.3-2.1-.7-3-.1-.6.4-2.3 0-3.6.6z"/>
|
||||
<path fill="#00d860" d="M504.9 312.4c.7-.3 2.3-1.5 3-1.6 1.4-.1 2.8.4 3.5.6.7.2 1.5 0 1-.6-.4-.5 0-1.6 2-1.3 2.2.2 3.2.6 5.3.4 2.1-.2 2.9 1.3 6.7-.2-.2 1.5.5 1.6 1.2 1.3.7-.2 1.5-.2 2.7.7 1.3 1 8.7 1 10.4.7 1.8-.3 2.6.6 1.3 1s-1.6 1-1.3 1.5c.3.4.6.9-1 .7-1.7-.2-2 .3-2.7.8-.8.6-1 1-3.3.5-2.2-.4-2.7-.1-3.9 0-1.2.2-1.5.3-2.8-.1a9.6 9.6 0 0 0-5.5-.3c-1.6.6-2.7 1-4.2.6-1.5-.3-1.5-.2-.6-1 .8-1 1-1 2.8-1.1 1.8-.2 3-.7 1.9-1.4-1.3-.7-1.6-.6-3.3.1-1.6.8-2.4 1.4-4.3.4-1.8-1-2.6-.9-4-.5-1.2.3-3.2-.5-4.9-1.2zm6.1 3c-2.4.4-3-1.1-5.4-.9-.8.2-2.2 1.2-.3 1 1.9-.1 4 .9 5.8.8 1.8-.1 1-1 0-.9zm-2.6 1.7c1.1-.4 3.6.5 4.8.3 1.1-.2 2 .4.8.9-1.2.4-3.7-.7-5-.4-1.1.4-2.4-.1-.7-.8zm-24.4 6.7c1.7 0 7.8-.3 10.2-5.3.2-.4.3-.6 1 0 .7.5 3.6 2.1 8.8 2.6 1.5 0 3 .8.1.7-3-.2-7.6-1-9.1-2-2.7 4.1-7.4 4.6-11 4.5-2.1 0-1.6-.6 0-.5z"/>
|
||||
<path fill="#00d860" d="M497.1 316.8c-.8 1.1-3.6 3-4.8 3.2-1.3 0-5.2-.2-6.1-.6-1-.3-2.1-.3-.8.7a11 11 0 0 0 6 1.3c1.6-.3 3.1-.8 4.2 0 1 .6 3 1.8 4.2 1.6 1.2-.3 3.5-.3 4.3 0 .8.4 2.1 1.6.1 1-2-.7-3.6-.2-4.5-.6 1 1.4 3.3 3.7 5.2 3.7.5 0 .9.9 0 1.3.8.4 3 .9 4.3-.3-.4.5-.2.7.3.9.5.2 1.1.6.2.8-1 .2-3 .3-3.6 0 2 1.3 7 3.4 12.3 2.3 1-.1 1.6-.6 0-.5-3.5 0-3.7 0-4.3-.3-.6-.4-.4-.7.6-1a24 24 0 0 1 4.3-.7c1 0 2.1-.3 0-.3-2 0-4.6 0-5.7-.4-1-.3-1.7-.9-.6-1.6 1-.7 2.1-.5 2.6-1-3.3 0-7.4-2-5.2-3.6.5-.3.4-.4-.4-.5a22 22 0 0 1-4.5-1.4c-1-.5-.4-1.1.5-1.3-2 .3-6-.7-8.6-2.6zm29.8 0c-1.8 1.3-5.3 2-6.8 2-1.4 0-1.7.4-.5.5 1.2.1 2.5.4 3 .2s.9-.2 1.6.2a6 6 0 0 0 3.8 0c1.5-.4 3.7-.6 4.7-.6 1 .1 2 .1 0-.4-1.8-.5-5-.2-5.8 0-.7.2-2.8 0-1.7-.2 1.1-.3 2-1 2.6-1.4l-.9-.3zm-1 4a11.8 11.8 0 0 1-6.1 2.3c2 .8 3.8 3 5.2 2.8-.7.5-1.5 1-2.3 1.2a8 8 0 0 0 5.4-1c3 .8 7 .2 8.3-1-2 0-4.3-.6-5.4-1.6 1 0 1.9-.5 2.3-1.1-2.3.4-6-.7-7.3-1.8z"/>
|
||||
<path fill="#00d860" d="M522.7 327c.8 0 1.7-.6 2.3-1a19.2 19.2 0 0 1-11.1-2.6c-2.2-1.9-2.2-.4-.7.9a11 11 0 0 0 9.6 2.8zm5.4 4.7c-.9.5-5.3.9-6.7.5-1.5-.3-2-.2-1.8.5.3.6.6 1-.6.8a12 12 0 0 0-4 .5c-1 .2-2 1-.2.7 1.9-.2 3.5-.6 5-.3 1.3.3 6.1.4 7 0 1-.4.4-.3 0-.3-.5 0-.7-.3 0-.7.7-.3 1.1-1 1.3-1.7zm-42.3-5.8a62 62 0 0 1-9.6 2.5c-2 .9-3.6 1.4-4.6 1.4.7.6 3.5 1.2 4.5.9-.6.7-2 1.3-2.5 1.7 1.7-.3 3.5.2 4.4.3a12.2 12.2 0 0 1-6.7 1.4c.6.6 1.3 1.3 2.2 1.3a11.3 11.3 0 0 1-5.5.2c.6 1 1 1.6 1.8 1.8-1.7.1-3.7.4-5.4-.6 1.3 1.8 4.2 2.3 8.6 1.8 4.4-.5 8-2.4 9-3.2-1.8.2-4.3.3-5.4 0a32.2 32.2 0 0 0 8.6-3.7 4.9 4.9 0 0 1-2.8-.9 27 27 0 0 0 8-.8 5.8 5.8 0 0 1-3.5-2.3 34.2 34.2 0 0 0 17 .5c.8-.2.8-1.3-.7-1.1-2.8.2-8.3-.6-9.8-1.3a10.1 10.1 0 0 0 4 1.7c-2.5.8-6.2 1.3-11.6-1.7z"/>
|
||||
<path fill="#00d860" d="M473.6 332.4c.5-.4 2-1 2.5-1.7-1.1.3-3.8-.3-4.5-1 1 0 2.6-.4 4.6-1.3-3.6-.1-6-.1-7.5-.9-1.4-.8-3.7-.4-4.7-.2-1 .1-.6 1.7 3.3 1.3a13.4 13.4 0 0 1-7.6 1c.4 1.4.7 2.7.3 3.5 2.1 1.2 7.7 2.7 10.5 2.5-2.5-.9-3.8-1.9-1.8-2.2 2-.2 3.2-.6 5-1z"/>
|
||||
<path d="M467.3 339c4.8-.4 11.4-.5 16.6-5 1.3-1 2.2-.6.9.5a28.8 28.8 0 0 1-16 6c-2.7 0-3.9-1.3-1.5-1.6z"/>
|
||||
<path fill="#00d860" d="M503.7 331a19 19 0 0 1-5.6.8 6 6 0 0 0-3.3.2c-.8.5-.9 1 .2 1l3.3.2a5.4 5.4 0 0 0-1.8 1.5c1.8-.4 4.7.3 5.6.8a2.6 2.6 0 0 1-2-.4c2.7 3 10.9 3 12.2 2.4-.6.5-1.2 1-1.7 1 2.2.5 4.8.4 7.5-1l-4.2-.2a4.9 4.9 0 0 1 2-1.2c-1-.2-4.2-.1-5 .3a3.5 3.5 0 0 1 1.5-1.7c-4 0-8.9 0-10.6-1 2.7.4 5.9-1.3 7.2-1.3-2.2 0-4.6-.5-5.2-1.5zm-10.1 2c-2 .5-5 1.4-5.9 1.8-.8.5-1.6.7.1.7a109.4 109.4 0 0 1 .6-.1c-.7 0-1.5 0-.1-.5 1.3-.4 3-1.3 5.2-1.7zm-4 4.9c.7 0 3.7 0 5-1 1.2.8 3.7 2.2 5.2 2.2 1.6 0 1.4.4 0 .6a10.5 10.5 0 0 1-5.4-1.7c-1.8.7-3.3.1-5-.1zM466 351.6a17 17 0 0 0 10.3 1.1c1.8 1.5 5.3 1.6 7.2 1.2 2-.4 3.7-.6 5.9 0 2 .8 6.4.9 7.7 1.9l-4.1.1c-.6.2-.3.5.8 1a22 22 0 0 0-11.3 3 6.4 6.4 0 0 1 6-3.8c-1.8-.6-7.7-.7-9.7.5a5.8 5.8 0 0 1-1.2-2c-3.1 1.7-9.2-.9-11.7-3zm-8-5.8a14 14 0 0 0 7.3-2.8c.7.6 3.5 1.2 6.5.3-.6.4-.7 1.3-.5 1.7a22.8 22.8 0 0 0-7 1.8c-1.2.6-5 1.1-6.2.4-1.2-.6-1.2-1.2-.2-1.4z"/>
|
||||
<path fill="#00d860" d="M471.3 345.1a22.8 22.8 0 0 0-7 1.8l.5 1.7a44.4 44.4 0 0 1 15.3-1.6c-1.6.1-4.5 1.8-6.1 1.9 4-.3 7.8.5 8.8.8 1 .2 1.3 1 .5 1.8-.8.9-1.1.7.5.9 1.6 0 5-.3 6.5-1.8-.7-.6-2.2-.3-2.7-.9a7 7 0 0 0 2.7-1.6 25.3 25.3 0 0 1-4.6-.3c-.8-.2-1.5-.5-.4-1.1a6.6 6.6 0 0 0 2-1.5c-2 .5-5.1 1-7.8-1 1 .2 3.3 0 4.1-.3a5.2 5.2 0 0 0-2.2-.8c2-1 6-1.9 11.3.1a27 27 0 0 1 7.1.4c1-.8 2.6-2.8 3.5-3.2-6 .4-16.8-.6-16.5-3.8-2 2.6-6.5 4-8.4 3.6-.2.8.6 2 1.3 2.6-2 .4-5.5.8-7.1.4 1 .9 2.6 1.7 3.6 1.7-2 0-3.2.4-4.9.2z"/>
|
||||
<path fill="#00d860" d="M483.7 352.3c1.8 0 5-.2 6.6-1.7-.7-.6-2.2-.3-2.7-.9a7 7 0 0 0 2.7-1.6c4.4-.4 8.1-.2 10-.7 1.8-.5 6.5-.3 7.4-.5-4.1.7-4.9 1-5 1.7-.2.7 1.2 1.1 2.2 1.1-1.7 0-4.1 1.9-4.4 2.7-2.4-1.4-3.4.2-3.8.8-1-.4-4.4-.3-6.1 1.2-2.2-.7-3.7-1-6-.7 1.5-.3 1.2-1.3-.8-1.4zm19.5-12c1.4 0 4.4.2 5.5 0a6.5 6.5 0 0 0-1.8 1.3c3.5-.4 8.2-.7 9.6-.4-1.8-.3-3.5.9-4.4 1.4-.8.5-.3.9.9 1 1.2.2 2.7 1 .6.8-2-.2-6.4-.3-7.4-.2-1 .2-1.6-.3 0-.6a10 10 0 0 0 3.1-1c-1.2.3-3.5.3-4.3 0-.8-.3-1.1-.5-.3-.8.9-.3.3-.4-.6-.3-.9 0-3 1-4.3 2.1 1.3-1.4 2.6-2.6 3.4-3.2z"/>
|
||||
<path d="M487.8 342.7a8.7 8.7 0 0 0 6.8 3c.6 0 2 .9.3 1-4.3.2-6.4-.9-8.3-3.6-.4-.6.3-1.4 1.2-.4zm25.5-35.6c2.2 1 6.7 2 10.2 1.9.7 0 1.8.6.3.7a18.3 18.3 0 0 1-10.8-2c-.9-.5-.6-1 .3-.6z"/>
|
||||
<path fill="#00d860" d="M515.5 307.1c3.5 0 6.1 0 7 .9 2-.5 5.7-.9 6.4-.7.8.2 1.8-.3-.1-.7-2-.4-6.2-.6-7.6-.3-1.4.2-5.7.4-7 .2.5 0 .9.2 1.3.6zm13.4 1.3c1.6-.8 6.3 0 7.7-.6-1 1.2 3.3 1.3 7 .4-1.4.8-4.5 1-5.8 1.6-1.3.6-2 .1-3-.3a11 11 0 0 0-5.9-1z"/>
|
||||
<path fill="#00d860" d="M543.6 308.2c-3.7.8-8 .8-7-.4-1.4.6-6-.2-7.7.6 1.8-1 3-.1 4.2-2.2.8.1 2.6.2 3.2-.6 1 .3 3 .7 3.5 1.3.5.6 1.3-.2.7-1 1.7-.6.6.7 4.5-.3.9-.2 2.8-.6 3.5-.6a24 24 0 0 1-5 3.2z"/>
|
||||
<path fill="#ff0" stroke="#000" stroke-width=".4" d="m471.6 291.1-.7-86.8c0-3.9-2-3-2 0v86zm28.2-91.4 3.1 91.4-.4.8h-2l-1.9-92.2zm26.6 77.4-1.6-74.3c0-2.4-2-2-2 .4l1.6 73.9z"/>
|
||||
<path fill="#fff" stroke="#000" stroke-width=".4" d="m484.2 214.9-27.4-.4c-1.2 5.5 5.5 5 7.8 4 3.1 1.9 5.5 1.9 7 0 2.4 1.9 5.5 1.5 6.7 0 3.1 2.7 6.6 0 5.9-4zm2 13.3h-27.5c-5 4.7 1.2 7 6.7 3.9.8 1.6 3.9 2.3 6.2 1.2 2.4 1.5 5.5.4 7-1.2 2.8 1.2 6.3 1.6 7.9-4zm-.9 17.6h-26.6c-.3 4.3 5.1 3.9 7 2.7 2 3.2 6.7 2.4 8.3.4 2.7 2 5 1.6 6.2 0 2.8 2.4 5.5-.8 5.1-3.1zM487 263l-30.1-.4c-1.6 5 3.1 5.9 5 4.7.9 2.7 4.8 2 6 0 1.5 1.2 3.5.4 4.2-.8.4 2.7 4 3.1 6.7.8 5.5 3.9 10.5-.8 7.8-4.3zm26.2-7h-24.6c1.1 4.6 3.5 5.8 7.4 3 3.1 3.2 7.8 2 9 .5 5.5 4.3 8.2-.8 8.2-4zm-2.4-17.2-24.2-.8c.4 6.2 6.3 5.8 9.4 3.5 2 2.7 5.9 2 7.8 0 2.7 3.1 7.8 1.2 7-2.7zm3.2-19.2h-26c0 4.3 5.8 6.6 10.1 2.7 1.2 5.1 5.9 3.5 7.9 1.6 3 3.9 9.7-.8 7.8-4zm-1.6-13-23.5.5c0 3.9 5.5 5.5 7.5 2.3 1.2 2 5 1.6 6.2 0 1.6 2.8 4 .8 4.7 0 2.8 2 5.5.8 5.1-2.7zm27 8.7-28.2-.4c0 2.7 2.8 4 4.7 2.7 0 3.2 4 4 6.7 1.6 1.5 2.7 6.6 3.1 8.6 0 3.9 3.5 8.6.8 7.8-4zm-.4 23h-27.4c0 4 4.3 5.1 7 3.2.5 3.1 4 3.5 6 1.6 2.7 2.7 6.6 3 9 0 3 1.1 5.8-1.6 5.4-4.7zm-1.6 20.8h-21.9c0 3.9 4.7 3.9 6.7 2 2.3 2.7 5.5 2.7 7.4.7 2.7 2.4 7.4 1.6 7.8-2.7z"/>
|
||||
<path stroke="#000" stroke-width=".4" d="M502.5 292c-11.7 0-23.8 0-32-.9-8.2-.7-10.6-2.3-16.4-5.8L432 272c-1.9-.8-3.8.4-1.1 2l21.9 14.4a60 60 0 0 1 13.3 11.7c4.7 5.1 7.8 5.1 10.1 4.3 2.4-.7 5.5-2 9-1.1 3.2.7 7.8 1.1 10.2.7 2 2 7 1.6 9.8.8 2.7-.8 4.7-.8 6.6-.4h6.7c2 0 7-1.1 10.5-.7 4 .7 7.4 0 9.8 0a19.5 19.6 0 0 1 7.8-.4c2.4-1.6 3.1-3.6 4-5.5 2.3-.4 3-.8 3.4-2l2.4-6.2h.8v-2.4l-1.6-2.3.8-4 2-.7-.8-4-34.4.9a7.8 7.8 0 0 0-2.4 4.3l-10.2 1.5c-1.1.4-2.3.4-3.5 2z"/>
|
||||
<path stroke="#000" stroke-width=".4" d="m543.6 276.7 5-19.2c.8-2-1.1-2.3-1.9 0l-5 19.2z"/>
|
||||
<path fill="#fff" stroke="#000" stroke-width=".4" d="M563.5 255.2c-4.3 2-6.6 3.1-8.6 2.3-2-.8-4.3-1.2-5.8-.4a2 2 0 0 1 0 .4 1928.6 1928.8 0 0 1-4.3 14.9c3 1.2 8.6 1.2 9.7 0 1.6-1.6 5.1-1.2 7-1.2 1.2-1.6 1.6-3.5 1.2-4.3-.4-.8 0-2.7 0-4 0-1 1.6-5.4.8-7.7z"/>
|
||||
<path fill="none" stroke="#000" stroke-width=".4" d="M465 218.4a208 208 0 0 1-31.3 54.8m7.8 4.7a213 213.1 0 0 0 44.6-49.3m-27.4 16.8c-1.1 10.6-4.3 29.3-5.8 39.1m10.1-15.6c-3.9 3.9-9 10.1-13.2 13.6m49.6-34.8c-3.1 3.2-6.6 7-10.2 7.9m12.2-7a27.4 27.4 0 0 0 10.5 7.4m-12.5-24.3a33.2 33.2 0 0 1-11.7 6.7M501 232c2.3 2.3 5 5 8.6 6.7m-21.1-19.2a27.4 27.4 0 0 0 10.5-5.9m1.2 0a30 30 0 0 0 10.5 6.3m-21.5-13a15.6 15.6 0 0 0 9.4-5.4m1.2-.8c2.7 2.4 7.8 5.5 10.6 5.9m12.5 3.1c-1.6 2-5.9 5.1-8.6 5.1m10.5-5c1.2 1.9 4.3 5 6.3 5m-18.8 23.5a28.1 28.2 0 0 0 11-7.5m2 .4a21.9 21.9 0 0 0 7.3 7m-16 20.4c1.6 0 5.9-2.4 7-5m2.4-1.3a27.4 27.4 0 0 0 7.8 6.7m-73.1 3.5c5-1.6 14.9-7.8 20-13.7m-9.4 7.4c3.9 2.8 9 6 12.5 6.7m-24.3-17.6a31.3 31.3 0 0 0 9.4-5.9m2-.4c1.1 1.6 9.3 6.7 12.9 6.7m-14.9-23a38.3 38.3 0 0 1-9.8 5.4m11.8-5.5c2.7 2 8.6 5.5 12 5.5M469 207c-2.3 2.3-6.2 6.2-9.4 7.4m11.4-7c1.5 2.7 6.2 6.6 9.3 7m31.3 10.2c7.5 12.9 20.7 29 34 37.5m-55-52c10.9 15.6 32 49.7 52.3 62.2m4-13.3a72 72 0 0 1-19.2 18m17.5-13.7c-6.6-11-10.1-24.6-15.6-43m-54.7 48.5 7.8 23.4m-9.4-23.8 7.4 23.4m-9.3-24.6 7 24.2m-7.8-23.8 5.4 23.8m0-.7h6.7m-.8-2.4h-6.2m5.4-2h-6.2m5.4-1.9H474m5-2.3h-5m-.4-2h5m-5.4-1.6h5m-5.4-2h4.7m-5-1.5h4.2m-4.7-2h4m-4.4-1.5h4m-4.3-1.2h3.9m-4-1.5h3.6m-10.2 0-4.7 19.5m5.9-19.5-4 20.3M467 268l-3.2 21.5m4.7-22-2.3 22.8m2.7-1.6h-7.8m7.8-2h-9m9-2.3h-8.2m7.8-2h-7.4m7.8-2h-7.4m7.4-2.3h-6.6m6.6-2h-6.6m6.2-1.9h-5.8m5.8-2h-5m5-1.9h-4.7m4.7-1.2h-4.3m4 21.6v-23.1m25.3-7.8L478 291.5m16.8-32-13.3 32.4m14.1-32.8L485 291.9m11.8-32-8.6 32m.4-1.1h-9.8m10.5-3.2H480m9.7-2.3h-7.8m9.4-2.4h-7.8m8.2-2.3h-7.4m8.2-2.4h-7m7.7-2.7H487m6.6-2h-5.8m6.6-2.3h-5.5m6-1.6h-5.2m5.5-1.5h-5.5m5.1-1.6h-3.9m4-1.2h-3.6m3.9-1.5H492m3.9-1.6h-3.1m3-1.2h-2.7m13.3-.4 6.7 22m-5.5-21.6 8.2 21.2m-7-21.2 9.8 20.8m2.3-2-11-19.2m11 19.6h-7.8m7-3.1h-7.8m6.7-2.4h-7.5m5.9-2.7h-6.7m5.1-2.4H510m4.3-2.7h-5.1m3.9-2.7h-4.7m3.1-2.4h-3.9m12.5.4-7 20.3m9-21-6.3 20.7m2.8-.4 4.7-19.6m1.1.8-3.9 18.4m-6.6-1.2h6.6m-5.8-2.3h6.6m-5.9-2.8h6.3m-5-2.3h5.8m-5.1-2.8h5.5m-4.7-2.3h5m-3.9-2.8h4.7m-3.9-2.3h4m3.5.4 3 14m-1.9-14.8 4.3 14.5m-2.7-14.5 4.7 14.5m-2.8-13.7 5.1 13.7m-.4-1.2h-6.6m5.9-2h-6.3m5.5-1.9h-5.9m5-2.4h-5.8m4.7-2H528m4.7-1.9h-5m4.3-2h-4.7"/>
|
||||
<path fill="#00b800" d="M467.6 299.2c3.1-2 8.5-1.7 11.3.4 3.3-1.8 9.2-1.3 11.9 1.2 4.2-3 7.7-3.4 11.7-.6a10.5 10.5 0 0 1 11.9.2c3.7-1.7 7.7-3.1 11.2.6a9.3 9.3 0 0 0-11.3.7c-3.5-3.5-9.7-2.2-11.8.3a7.7 7.7 0 0 0-11.5.2c-3.7-3-9.1-3.2-12-1a13 13 0 0 0-11.4-2z"/>
|
||||
<path fill="#cf6200" d="M523.1 294.8c-16.1 2.8-51.4 1-59-1.1-2.7-.6-2-1.6.3-1 8.9 2 27.9 2 38.3 1.4l6.2-8.5c1-1.3 1.4-1.4 3.5-1.7l8.7-1.5v1.2c-.2.3-.4.6-.7.7 0 2 .4 7.1.9 9l1.1-.3c.7-.2 1.4 1.7.7 1.8z"/>
|
||||
<path fill="#cf6200" d="M549.6 295.6h2.2c.6 0 1.6-.5 1.9-1.5l2.2-6.3-1.7-2.5.9-5.3 2-.9c.2-.3 0-1.6-.4-2l-31.6 1c-1 0-1.4 0-1.7 1.3a23.5 23.5 0 0 0 8 23.2c.5.4 1.2 0 .3-.7a26 26 0 0 1-4.3-5.7h5.2c.4 1.7 1.7 5.2 2 5.9.2.7.8.7.4-.3-.6-2-1-4.5-1.3-5.7h5.3l.4 5.2c0 .7.6.7.6-.1V296l4.8-.2-.4 5.2c-.1.9.3 1.2.5 0l.7-5.2 3.3-.2c0 1.2-1.1 4.4-1.4 5.2-.3 1 .2 1 .5.1a30.5 30.5 0 0 0 1.6-5.2z"/>
|
||||
<path d="M526.5 294.8c-.5-1.1-2.3-5.1-2.4-8h7c.2 2.1.8 6.8 1.2 7.9zm5.8-8.2c.1 1.8 1 7.5 1.2 8h5.6l-.4-8.1zm-7.9-7a33.1 33.1 0 0 0-.2 6l6.7-.3-.6-5.9zm7.3-.2.4 6 6.6-.2-.3-6zm8-.3.2 6 5.7-.1c0-1.3.3-5.2.2-6.1zm7.2-.2-.2 6 6.2-.2c.3-1.3.9-4.7.9-6zm6.3 7.2-6.6.2-.6 8 6.3-.2a53.7 53.7 0 0 0 2.3-6c-.5-1-.9-1.3-1.4-2zm-13.3.4.2 8 4.8-.2.6-8zm-27-1.6-2.6.4a196 196 0 0 1-6.3 8.8l9.3-.2-.3-9zm1.2-.3.4 9.2 5.6-.4-1-9.6z"/>
|
||||
<path stroke="#000" stroke-width=".4" d="M486.9 263h-30.1v-.8l30 .4zm23.5-24.2c.3 0 .3 0 0 0l-23.5-.4c-.4 0-.4 0 0 0h23.5zm-25 6.6c.3 0 .3.4 0 .4h-26.7c-.3 0 0-.4 0-.4zm.7-17.2c.4 0 .4.4 0 .4h-27.7c-.4 0-.4-.4 0-.4zm-2-13.7c.4 0 .4.4 0 .4h-27c-.3 0 0-.8 0-.8l27.4.4z"/>
|
||||
<path fill="#fff" stroke="#000" stroke-width=".4" d="m512.3 206.7-23.5.4z"/>
|
||||
<path stroke="#000" stroke-width=".4" d="M513.5 220c.4 0 .4 0 0 0H488c-.4 0-.4 0 0 0zm25.4 18v.4h-27.4c-.8 0-.8 0 0 0H539zm0-23.1c.8 0 .8.4 0 .4H511c-.4 0-.4-.4 0-.4h28.2zM513 255.6c.4 0 .4.4 0 .4h-25v-.4zm24.2 3.5c.4 0 .4 0 0 0h-21.9z"/>
|
||||
<path fill="#ef072d" stroke="#000" stroke-width=".4" d="M557.3 263a11.7 11.7 0 0 0 0-5.5 4.3 4.3 0 0 1-2.4 0 11.7 11.7 0 0 0-1.2-.8 25 25 0 0 1-1.5 7.5c-1.2 0-4 0-5.1-.8l-1.2 3.9a13.7 13.7 0 0 0 5.9 0c0 2.3-.4 4.3-1.6 5.9 2 0 4 0 4.3-1.2 1.2-1.6 1.2-4 1.6-5.1l2-.4 1.9-.8 2.7-.4V263l.8-1.6-6.2 2z"/>
|
||||
<path stroke="#000" stroke-width=".4" d="M460.3 130.8c-3.1 0-10.2 0-11.7.8-1.2.8-1.6 1.2.8 1.6 2.3.4 6.6 2 9 3.1 2.3 1.6 3.9 4 3.9 7.8a23.5 23.5 0 0 0 11.7 24.7c.4.4.8.7.4 2.3l-1.2 4.3c0 .8-.4 1.6.8 1.2a78.2 78.2 0 0 1-4 6.2c-6.2-.7-11.6 0-11.6 7 0 .9 0 1.6.7 0 1.2-1.5 2.4-3 5.1-3.8-1.5 2.7-2.3 5-2 6.6 0 1.2.8 2 1.6 0 .4-1.6 2-3.1 3.2-4.3.7-.4.7-.4.3.8a6 6 0 0 0 1.2 4.3c.8.8 1.2.4.8-.8 0-1.6 0-4.3 2-5 2.3-1.6 4.6-.9 5.4.7 1.2 2 2 0 .8-1.6-1.2-1.5-2.3-3.5-3.9-3.5l4-6.6c0-.8.7-1.2 1.5-.8 0 .4.8.4 1.1-.8l2.8-5.5 2.3-.7 4 5.8v2.4c0 1.5-1.6 5-2 6.2-4.7 0-7 0-8.6 2.8-.8 1.1.4 1.5 1.5 1.1a7.8 7.8 0 0 1 4-1.1c.7 0 1.1.7 0 1.1-2.8 1.2-4.7 3.2-4.7 5.9 0 .8.7 1.2 1.1 0a9 9 0 0 1 5.1-4c0 2 .4 5.2 2 6 1.1.7 1.1 0 .8-1.2-.8-2 0-4 1.1-5.1 2-2.3 6.7.8 7.9 1.6.7.7 1.5 1.1.7-1.2-.4-2.7-4.3-4-7.8-4.7l4.7-16.4c2 1.2 4-2 7-.8a83.4 83.4 0 0 1 14.9 8.6c1.6 1.2 2 .8 2.7 0 .8-.4 2 0 3.2 0 .7.4 1.5.8.4-1.6a28.1 28.2 0 0 0-9.4-10.1c3.1 0 7 0 7-.8s-4.7-2.4-6.6-2.4a12.9 12.9 0 0 0 6.2-3c.8-.9 0-1.3-3.1-1.3-8.2 0-12.5 0-16.8-2.3-7-4-11.4-8.6-14.9-10.2-1.5-1.1-2.7-3.5-3.9-5.4-2-6-2-9-7-11-5.1-2-11.8.4-14.5 3.1z"/>
|
||||
<path fill="#fff" stroke="#000" stroke-width=".4" d="M460.7 132.4h-6.6s-.8 0 0 0l5.8 1.6c1.2 0 .8 1.1 0 .7-.8-.3-1.5 0-.8.8 4 2.8 4.7 4 4 14.5l1.9 1.6c.8 0 .4.7 0 .3-.4-.3-2 0-.8.8s2 .8.8.8-2.3.8 0 .4c2 0 3.1.8 0 1.2-2.3 0-1.6.8 0 .8 2.7 0 2 .7 1.2.7s-1.2.8.8.8h2.7c.4 0 .8 0 0 .4-.8 0-.8.8.4.8 1.2 0 2 0 .8.4-.4 0-1.2.4 0 .8 2.7 0 3 .7 2.3 1.1-.8.4-1.2.4 0 .4s2.4.4 1.2.8c-.8 0-1.2.8 0 .8s2 .8 1.2 1.2c-.8.4-1.2.8 0 .8 1.1 0 1.5.3.7.7-.7.8-1.1.8-2 0 0-.7-.7-.7-.7 0l-.8-1.1c-.4-1.2-1.2-1.2-1.2 0 0 1.1-.7.4-1.5 0a12.9 12.9 0 0 0 15.6 3c.4 0 .8 0 1.2 1.3l2.3 4.3c.4.7 1.2 0 1.2-.8l2.4-6.7c0-1.1 1.5-2 1.1 1.2 1.2-.8 5.9-1.2 9.8 0a47.7 47.7 0 0 1 10.6 5.9 2.3 2.3 0 0 0 2 .4c1 0 1.5 0-.5-2s-1.1-2.7 0-2c1.2.8 2 .4.8-.7l-3.9-3.5c-.4 0-.4-.8-2.3-.8h-6c-.7 0-1.5 0 .9.8 2.3.7 6.6 3.9 7.8 4.6 1.2.8 1.6 2.4-.4.8a102 102 0 0 0-14-7.8c-10.6 1.2-19.2 2.4-25.5-4.3-3.1-3.5-3.1-11 2-14-.8-.9-.8-1.6-.4-1.6v-2.4c-.8-.4-1.6-1.2-1.6-2-1.2 0-2-1.9-3.9-1.1-2 .8-2.3 0-3.1-.4-.4-.8-.8-.8-2-.8s-2 0-2-.8c0-.7.8-.7 2.4 0 2.7 1.2 5 2 7-.7 1.6-2.4-.7-4.3-3.9-5.1-3.5-.8-5.8 2-7.4 3.1z"/>
|
||||
<path fill="#fff" stroke="#000" stroke-width=".4" d="M477.9 131.2a11 11 0 0 0-4-2.3c-1 0-1 .8-.7 1.2v2.3c.8.4 1.2 1.2 0 1.2-.8.8 0 3.5 1.2 2.7h.8s0 1.2.7 1.2c.8 0 0 .8 0 1.2h.8c.8 0 .4 1.5-.4 2 1.2 0 1.6 0 1.6.7.4.8 1.6 1.2 1.6 2.3 0 1.2 0 1.2-1.6.8-1.6-.4-1.6 0-2 .8-.3.8-.7 1.2 0 1.2.8 0 1.6.4.4.8-1.1.3-2.3 0-2.7 1.1 0 1.2 0 1.6.8 1.2l2.7-1.6 2 .4c.8.4 0 2-.8 1.2s-1.6 0-2 .4l-2 .8c-.7 0-1.5 0-1 2 0 5.4 4.2 9.3 12 9.3h13c-2.4-1.6-4-2.3-5.2-2.3H492c.4-.4 0-1.2-.4-1.2s-1.2-.8-2 0l-3.9 2c-.8 0-2 0-.8-.8l3.6-1.6c.7 0 .3-.8.3-.8s0-1.2 1.2-.8c2.4 1.6 5.9 3.6 7 3.6 1.2 0 1.6-.8.8-1.2-.7-.4-1.1-1.2-1.1-1.6 0-.4.4-.8 2 0 1.5 1.2 3.8 2 5 2.4 1.2.4 2 .4 0-.8l-9-6.7c-1.2-1.1-1.2 0-.8.8.4.8-1.1 1.2-2 .4-.7-.8-1.1-1.2 0-1.6 1.2-.3.9-.7-.3-2-1.6-1-2-1-1.6 0 .4 1.3.4 2-.8 1.7-1.1-.4-2.3-1.2-1.1-1.6.7-.8 2-1.2 0-2.4-2-1.1-.8 0-1.2.8-.4.8-1.6.8-2 0-.4-.8-1.1-1.1-.7-1.5.3-.4.3-.8 1.1 0 .8.7 1.6 0 .4-1.2-1.2-1.2-1.5-.8-1.2 0 .4.8-.7 1.6-2.3 0-.8-.4-.8-1.2 0-1.6.8 0 .8-.4 0-1.1-2.7-4.7-1.6-8.3-4.7-11.8z"/>
|
||||
<path fill="#cf6200" d="M478 132c-.2.4-.3.3-.8.7-.5.4-.7 1.5.3 1.4a2 2 0 0 0 1.4-.8 8.7 8.7 0 0 0-.8-1.3zm-3-2.6c-.9.8-1 1.2-.6 1.2.5 0 .3 0 0 .6-.4.5.6.8 1 .3.5-.4.5-.5.7 0 .1.5 1 0 1.3-.3-.7-.7-1.7-1.3-2.5-1.8zm-1.5 4.4c-1 .5-.7 3.2.9 2.4.5-.2.9 0 .9.3v.7a4.7 4.7 0 0 0 1.7-1.2c.9-1.2 0-1-1.4-1s-1.7-.3-.4-1.1c1.2-.8.3-1.2-1.3-1 .2.3.1.6-.4.9zm5.9 6c-.8-.9-.3-1.2.5-1.7a1 1 0 0 0 .4-.3l-.7-2.6c-.3.2-.8 1.1-1 1.5-.2.7-.4 1.1-1 1-.7-.3-1.3.4-1.4 1.1h.5c.2.1.3.6.2 1 1.9 0 2.2 1.1 2.5 2 .4 1 .7.9 1 .3.3-.6-.3-1.5-1-2.3z"/>
|
||||
<path fill="#ff0" d="M479.9 150.4c-.4.8-.4.7-1.5.7-1 .1-2.4.3-3 .9-.3.3-2.2.5-2.2 1.3 0 .9 0 1.5.8 1.6.8 0 1 .2.7.8-.4.6-.6 1.5.8 1.7 1.4 0 2.5-.3 2.8.4.4 1 0 2.1.3 2.7.2.5 1.2.7 2.7 1.2 1 .2 4.8.5 6 .3 1-.2.6-.8-.5-.8-1.2-.2-2-.4-2.3-1.2-.3-.9-.5-1.3.2-2 .6-.8 1.2-1.3.8-2.5-.3-1.1-1-2.5-2.3-2.9-1.3-.4-.9-2.3-2.3-2.4-.5 0-.8 0-1 .2z"/>
|
||||
<path fill="#cf6200" d="M473.3 161.4c1.2.2 2.1.5 1.2.8-.9.3-1.5.8-.3.9 1.2 0 2.3.6 1.3.8-1 .3-1 1 .1 1s1.7.4.9 1c-.9.4-1.4.7-2-.1-.5-.9-.8-1-.9-.5-.2.6-.5.2-.9-.7-.3-.8-1.2-1.2-1-.5.3.7-.6.9-1.5.5a11 11 0 0 0 2.9 2.4c1.2-.4 2.6 0 3 0 .6 0 2.1.4 3 .9.9.4 1.5-.4 1.1-1.3-.4-1-.4-.7-.8 0-.6.4-.6-.3-.6-1.4 0-.8-.6-.7-.7-.1-.2.5-.7-.4-.5-.9.3-.5 0-.8-.4-.6-.5.2-.5 0-.6-1-.1-1.1-.5-1-.6-.5-.1.4-.6-.2-1.3-1-.5-.6-1-.2-2.1.1z"/>
|
||||
<path fill="#ff0" d="M485.6 167.8c-5.5 2.2-9.5 1.2-12.5-.8 1.2-.4 2.6 0 3.1 0s2.1.4 2.9.9c.8.4 1.5-.4 1.1-1.3.7 1 1.3 1.6 2.2 1.5l3.2-.3zM473.8 142c-.4-1.2-.7-1.4-1.3-1.3-.6 0-.9-.1-1.6-.4-.6-.3-1.5 0-1.6 1.3-.2 1.3-1 1.8-2 2.6-1 .7-1.5 1.3-1.5 2.6 0 1.2-.3 1.4-1 2.4l-1.1 1.3 1.2.7c.8.4.5.9-.2.7-.7-.2-1.5.2-.2.4 1.2.3 1.7 1 .6 1-1.3-.3-2.6.8-.3.5 2.3-.2 3.1.9.5.9-2.7 0-1.7.9-.2.9 2.5 0 1.7.7 1 .7-.6 0-.9 1 .8.7l.6-1c.3-.8.5-3.1 1.5-3.8.9-.6 1.4-1.7 1.4-2.3 0-.6 1.5-3.7 2.3-4.4 1-.7 1.4-2.3 1-3.4z"/>
|
||||
<path fill="#cf6200" d="M471.8 142.2c-.9-.7-1.9-.2-1.9 1 0 1-.6 1.5-1.4 2a3.5 3.5 0 0 0-1.8 2.3c0 1 .2 1.5-.4 2.3-.7.7-.8 1.3-.4 1.8.6.4.6.4.7 1 .3.6 1.4 0 1.4-.7s.3-.7 1-1.1c.8-.4 2-2.4 1.7-2.9-.2-.5-1-1 0-1.7 1-.8 1.8-1 1.8-1.6 0-.8.2-1 .5-1.3.3-.3-.6-.7-1.2-1z"/>
|
||||
<path d="M471.8 141.2c-.6-.2-1 1.1-.1 1.3.9.2 1-.9 0-1.2zm-.1 1.7c-.7.1-1.5 1-.4 1 1.2-.2 1.6-1 .3-1zm-1.4 1.7c-.7.3-.5 1.3.5.6 1-.7 1.2-1.5-.5-.6zm-1 1.4c-.7.3-.7 1.3.4.6 1-.6 1.3-1.5-.4-.6z"/>
|
||||
<path d="M467.9 146.7c-.7.3-.3 1.2.7.6s1-1.5-.7-.6zm.8.9c-.8.3-.3 1.2.7.6s1-1.5-.8-.6z"/>
|
||||
<path d="M467.4 147.9c-.6.4-.2 1.2.9.6 1-.6.9-1.5-.9-.6zm.9 1c-.8.3-.4 1.2.7.6 1-.7 1-1.5-.8-.6z"/>
|
||||
<path d="M467 149.5c-.6.3-.2 1.2.9.6 1-.6.8-1.5-.8-.6z"/>
|
||||
<path d="M467 150.3c-.5.4-.1 1.4 1 .7 1-.7.8-1.5-1-.7z"/>
|
||||
<path fill="#cf6200" d="M466.6 158.9c-.7 0-1.2 1.1-.3 1.3.9.2 1.1.3 1.1.9 0 .6.3 1.7 1.2 1.7 1 0 1.8-1 1-1.3-.9-.3-1.6-.6-1.7-1.4 0-.7-.8-1.2-1.3-1.2z"/>
|
||||
<path fill="#ff0" d="m491.5 153 .5.6c.7.5 2 0 1.7-.5-.1-.4-.8-2 1-.8l9.2 6.5c1.9 1.4.6 1.6-.2 1.1l-5-2.3c-1.5-.9-1.7-.5-2-.3 0 .3 0 .9.6 1.4-.9.1-2.3 0-2.8-1-.5-1.2-1.7-2.6-2.6-3.7-.3-.4-.4-.7-.3-.9z"/>
|
||||
<path fill="#00d860" d="M542 319.5c-1.3.9-3 2.4-1.9 4.5l.4-.1a124.1 124.1 0 0 0 12.9-19v-.6a17.9 17.9 0 0 1-4.5 2.7c.6 1.7-2.3 3.8-3.7 4.4.6 1 .4 2.6-1 2.9.3.8-.7.8-2 1.4-1.1.5-1.7.8-2.1 1.5.6-.4 1.6-.7 2-.5.4.2.6.9-.3 1.1-.8.3-1.4.7-1.8 1 1.3-.3 3.2-.2 2 .7z"/>
|
||||
<path stroke="#000" stroke-width=".4" d="M481.8 151.2c-1.6-1.2-2-.4-1.6 0 .4.4 0 1.5-1.1 2h-4c-.7 0-1.9 1.5 0 1l6.3-1c.8 0 1.6-.9 0-2zm2.7 2.3c-1.1-1.2-1.5-.8-1.1 0 .4.8-.4 1.2-1.2 1.2l-5.5 1.5c-1.5 0-1.5 1.2.4 1.2 2 0 5.9-2 6.3-2 .4 0 .8-1.1 1.1-.7.4.4 1.2 0 0-1.2zm1.2 3.1-3.9 2c-1.2 0-2 1.2 0 1.2s4-2 4.7-2.4l1.6-.8s1.5-.4 0-1.5c-1.6-1.2-3.2 0-2.4.4.8.4 0 1.1 0 1.1z"/>
|
||||
<path d="M469.7 131.2c-2.5-1.7-5.2 1.7-2.5 3.6 2.4 1.7 5-2 2.6-3.6z"/>
|
||||
<path fill="#fff" d="M466.6 132.7h.7c0 .8.7 2 1.8 1.7-.9.7-2.6-.2-2.5-1.7zm9.6 37c.8.3 3.4.5 4.4.5l-1.2 2.2c-.3.7-.4.8-.5-.3 0-1-.6-1.7-1.1-.6l-1 2c-.3.4-.7.5-.6-.6.2-1.1.1-2.3 0-3.2z"/>
|
||||
<path fill="none" stroke="#000" stroke-width="1.2" d="M574.5 199.7c0 63.7-10.2 132.5-93 165.3-82.6-32.8-92.7-101.6-93.1-165.3zm0 0c0-24.3-1.2-47.8-.8-68a248.7 248.7 0 0 0-92.3-16.9c-20.7 0-61.4 3.1-92.2 16.8.7 20.3-.8 43.8-.8 68z"/>
|
||||
<path fill="#012169" d="M0 0h320v240H0Z"/>
|
||||
<path fill="#fff" d="m37.5 0 122 90.5L281 0h39v31l-120 89.5 120 89V240h-40l-120-89.5L40.5 240H0v-30l119.5-89L0 32V0Z"/>
|
||||
<path fill="#c8102e" d="M212 140.5 320 220v20l-135.5-99.5Zm-92 10 3 17.5-96 72H0ZM320 0v1.5l-124.5 94 1-22L295 0ZM0 0l119.5 88h-30L0 21Z"/>
|
||||
<path fill="#fff" d="M120.5 0v240h80V0ZM0 80v80h320V80Z"/>
|
||||
<path fill="#c8102e" d="M0 96.5v48h320v-48zM136.5 0v240h48V0Z"/>
|
||||
</svg>
|
||||
<path fill="#006" d="M640 480V0H0v480h640z" />
|
||||
<path fill="#8fc5ff" stroke="#fff" stroke-width="4.3"
|
||||
d="M574.5 199.7c0 63.7-10.2 132.5-93 165.3-82.6-32.8-92.7-101.6-93.1-165.3z" />
|
||||
<path fill="#366cc9" stroke="#000" stroke-width="4.3"
|
||||
d="M481.4 364.7A134.1 134.1 0 0 0 555 302h-7.8c-2.3-.4-79.4-7.8-88.7-11.7-7.9-2.8-38.4 2.7-52.4 7.8a133 133 0 0 0 75.4 66.5z" />
|
||||
<path fill="#5d3100" stroke="#000" stroke-width=".4"
|
||||
d="M423.6 325.6h4.7c1.1 0 1.1 0 1.5-1.2.4-1.2 1.6-.8 2.4-.4.7.4 2.3 0 3-.8.9-.8.9-.8 1.7 0 .7.8 1.1.4 2 0 .3 0 1.9-.8 2.3-2 .3-1.1 1.5-1.5 2-.7.3.8 1 .8 1.9.8.7 0 .7.3.7 1.5 0 .8 0 1.2 2-.4 1.6 1.6 2 .8 2-.8 0-1.5 0-7.8-.8-8.2-.8-.4-1.2-3.1-1.6-5 0-4 0-4-3.9-6 0-1-.8-1.5-4-1.5.5-.4 0-1.5-.7-2-.8-.3-.8-.7 0-2.3.8 0 2.4 0 2.7-1.2.8-.7 3.2-.7 4.7 0 1.6.8 3.2.8 5.9 0l4.7-2.3c2-1.2 2.3-1.6 2.3-3.1 0-4-1.1-7.8-2-9.8-1-2-1-4-2.7-7.4-1.5-3.2-1.5-4-3-5.9-.9-.8-1.3-1.2-1.3-2.3a5.9 5.9 0 0 0-2-4c-3-2.7-3.8-11.7-5.4-18.3-.8-4 0-13-1.5-14.5-2.8-2-4-1.6-6-2.3-1.5-2-1.9-5.5-3.4-9-2 .4-3.2 2.3-4.3 3-1.2.9-1.6.9-1.6 2.8 0 1.6-1.2 4-2.7 7-1.6 3.2-5.1 2-7.9 6.3-5.4-6.6-5.4-8.6-5.8-10.5 0-2-1.2-2.4-4.3-5.1v-6c-2.8-2-4.3-1.5-5.5 0-1.2 1.2-2 3.1-3.9 4-.8 1.5-4 4.6-6.3 9 2.4 35.1 10.2 70.3 34 98.5z" />
|
||||
<path fill="#ff0" stroke="#fff" stroke-width="4.3"
|
||||
d="M574.5 199.7c0-24.3-1.2-47.8-.8-68a248.7 248.7 0 0 0-92.3-16.9c-20.7 0-61.4 3.1-92.2 16.8.7 20.3-.8 43.8-.8 68z" />
|
||||
<path fill="#cf6200"
|
||||
d="M393.5 227.4c1 1.6 2.9 4.3 3 6 .8-1.6 1.4-2.2 1.5-3.1 0-1 1.3-2.7.8-3.7-.4-1-.7-1.7.4-1s.9 2 .7 3.8c-.7 5-2.7 6-3 9.3 2.9 7 .7 9.6 4 16.6.5.2 1.8-.3 2.2-.2 1.8-1.2 3-.9 5.5-.3 2.4.5 3.7 2.2 3.7 3.8 0 1.6 0 1.9.6 2.8.5.8 1.4 2.3 1.3 3.4-.3 1 .1 1.6.5 2 .3.5-.2 1.8-.4 2.4-.3.6-.2 1.7 1 3.2 1.2 1.5 4 7.9 4 11.6 0 3.9.3 5.6 1.8 6.3 1.5.7 2 1.3 1.8 2.9-.2 1.5.7 10 .9 11.4.1 1.3.7 1 1.4 1.7.6.7 1 1.5 3 1.5 2.1 0 4-.2 5.2 0 2 2.5 3 6 3.5 8.1.5 2.2.4 5 1 5 .8 0 1.5 0 1.3-2.5-.2-2.6-.4-3-1.3-4.4-1-1.3-1.5-2-1-2.7.5-.8.6-2 .5-3.1-.2-1-.6-2.6 1.2-.6l2.7 3.3c.5.6.7 2 .6 3.3-.1 1.2 0 1.7.9 1 .7-.6 1.5.5 1 1.8-.3 1.3.3 2.1 1.5 2.6 1.2.4 1.7.7 2 1.6.3.8 1.3 1.3 1.3-.6a27 27 0 0 0-1.2-6.9c-.5-1.2-.9-3.8-1-5.4-.2-1.5-.4-1.9-1.1-2.1-.7-.3-1.4-1-1.5-1.6 0-.7-.7-1-1.1-1-.5 0-.9-.3-1.2-.8-.2-.6-.5-.6-1-.6-.5-.1-1.3.2-1.6-.6-.2-.8-.6-2-1.1-2.6-.5-.6-.9-.9-1-3.2 0-2.3 0-2.6-.8-3.4-.8-.8-2-3-2.5-3.8-.4-1-1-1.9-1 0 0 2 0 3 1.3 3.7 1.2.7 1.5.7 1 1.8-.6 1 0 1.7.2 2.4.3.7.6 1.4 0 2-.6.8-1.2.6-1.1-.5a6.4 6.4 0 0 0-.9-3.3c-.4-1-.9-1.6-1.5-1-.6.4-1.1-.2-.7-.6.5-.4.3-.7 0-1-.2-.2-.4-.6.1-1.2s.5-.9.2-2.3-2.5-8.6-3.5-10.2c-1-1.7-.9-2.8.3-1.3 1.3 1.6 2.5 3 2.7 4.4 0 1.4.3 2.2.7 2.6.5.5.7.4 1-.8 0-1.1 1-.7-.4-2.8-1.5-2.1-4.1-5.7-5.2-12.2-1-6.4-1.4-10.5-2.4-12.2-1-1.8-1.3-2.2-1.4-3.8-.1-1.6 0-3.3-.7-4.5-.7-1.2-1.2-1.4-1.3.4-.1 1.8 0 6 .6 6.6.6.7.2 2.6 0 3.5-.2 1-1.7 2.1 1.7 4.1 1.3.9 1 2 1 2.6-.3.8-.5.7-1.2-.4s-1.4-2.1-2.1-2.6c-.7-.5-.9-1-.7-2.5.2-1.5.3-2.5 0-3-.4-.4-.6-.1-.9.8-.2.8-.3 3-.9 3.6-.5.6-.5.2-.8-1.1-.4-1.3.1-3.4.8-5.7.7-2.2 1.2-4.8.6-7.8s-.4-4-2.6-6.5c-2.4-2.6-5.1-5-6.1-8.1-1.2-3.2-1.4-6-2.7-7.4a17 17 0 0 0-4-3.7v-4.7c0-1.2-.5-1.8-1.8-1.6-1.3.2-2.2 1.3-3 2.8-.8 1.6-1.4.9-2.6 3.5-1.2 2.6-2.6 4-2.6 6.8z" />
|
||||
<path fill="#cf6200"
|
||||
d="M400.8 257.1c1 .6 1.7.9 3 .3 1.1-.6 2.5-2.4 4.3-.6a11 11 0 0 1 2.4 6.7c0 2.3 0 6.5 2.6 8.8 2.6 2.3 3.9 4.8 4 7.8a53.2 53.2 0 0 0 1.4 9c.4 1.2 1 2.6 1.9 3.5.7.8 1.4 3.1 1.5 5.5.1 2.5-.3 4.1 0 5.4.4 1.2 0 2.2-.8 1.7-1-.5-1.2-1-1.8-2-.6-1-1-.9-.5.7s2 3 3.3 3c1.3 0 1.7.1 2.6 1 .8.8.9 1.2 2.3 1.2s1.6 0 3 .4c1.3.3 1.3.2 2 0 .7-.3 1.4.4 1.9 1.7.4 1.3 1.7 5 1.7 6s0 2 .7 3c.7 1.1.5 2-.3 1.5-.7-.6-.8-.5-1.3-.3-.6.2-1-.2-1.9-.8-.8-.4-.3-.3-1.1-1.5-.8-1.3-1.3-1.7-1.3-.7s-.2 2-.8 1.4c-.6-.5-.9-.5-1.4 0-.5.6-.7 1-1.3 0-.6-1-1.3-1-2-1.3-.5-.1-.5-.1-.8-1-.3-1-1.3-1.2-2-1.2-.9 0-1.3-.4-1.4-1 0-.6-.6-1-1-1.3-.5-.3-.2-1-.3-1.7 0-.7-.7-.5-1.1-.6-.5-.2-.7-.1-.7-1.2 0-1-.5-1.3-.7-2-.4-.8 0-1.5.2-2.2.1-1 0-1.4-.6-2-.6-.8 0-1.5-1.7-3-1.7-1.3-2.5-.1-3-3.4a43.7 43.7 0 0 0-2.4-11.4c-1-1-1.5-2-2.5-2.3-1-.3-1.4 0-1.5-2-.1-2-.7-4.4-2-5.6l-2.3-2.2c-.6-.4-.9-1.4 0-3 .9-1.8.5-4.2.4-5.3-.1-1-.4-2.6-.2-3.8.2-1.2 0-2.7-.2-3.5-.3-.7-.7-1-.2-1.7zm24.5-28.8a22.1 22.1 0 0 1-4.7 4.6c-1.9 1.4-4.3 2.4-3 4.7 1.4 2.3 2.5 2.6 2.7 4.3.3 1.8.8 3.3 2 3.7 1.5.4 2 .2 2 3 0 2.7 0 4 1.2 5s1 2.2 1.6 4.7c.6 2.6.6 8.2 2.2 12 1.5 3.7 5.3 11 4.8 12.4-.4 1.5-.8 2.6.7 4.4 1.7 1.7 2.7 4.3 3 5.8 0 1.5.3 2 2 1.5a6 6 0 0 0 2.9-1.7c.5-.7 1.6-.6 3.1.2 1.5.9 3.8 1.6 5.2.9 1.3-.9 2-2.1 3.2-2.1 1.9-1.4 2.6-4.2 3-5 .4-.8.1-.8-.7-1.6-.8-.8-.4-2.2-.5-3.5-.2-1.4-.7-3.5-2.3-6.5-1.6-3-2.7-6.6-3.7-7.5-1-1-1.6-3.3-1.7-4.4-.1-1-1.4-2-2.2-2.8-.9-.9-1.6-2-2.6-6.8-1-4.7-1.6-8-1.6-9 0-.8-.2-.8-1-1.2-.8-.3-1.2-1.6-.8-2.2.1-.7-.4-1.4-.7-2.2-.2-.8 0-2.3.6-3.2.5-.8.4-3-.1-5-.5-1.8-1.1-3.4-3.3-3.8-2.1-.2-2.6-.8-3.3-2.6-1-1.7-1.8-4.8-2-5.5-.2-.7-.7-.8-2.3.6-1.6 1.3-2.2 1.7-2.2 4.3 0 1.7.4 2.2.9 3.1.5 1 .7 1.3 1 3.8.4 2.5 2.7 6.6-.2 9-3 2.2-2.6 2.8-2.5 4.4.2 1.7-.8 2.7-1.3.5-.6-2.4 0-3.7 1.6-4.8 1.6-1 3.1-2.5 2-4a19 19 0 0 1-1.7-6.6c-.1-1.6-.3-2.2-1.3-.9z" />
|
||||
<path fill="#00b800"
|
||||
d="m401.2 262.8.3 3.3c0 1.1.4 3.5-.5 5.2-.8 1.7-.6 2.6 0 3.1h.1c1.7-.5 2-2.3 1.5-3.2a3.2 3.2 0 0 1 .2-3c.5-1 .5-1.5 0-2.2-.5-.7-.5-.7 0-2.6.6-1.7-.7-1.7-1.6-.6zm17.4 26.3c-.3-1.2-1.5-6-1.5-9-.1-3-1.5-5.5-4-7.8-2-1.8-2.4-4.7-2.6-7-1.5-.9-2-.5-1.9 1.2 0 1.8 2 2.6 1.7 5.3-.3 2.6-.3 2 1 3.3 1.1 1.2 1.7 2.6 1 3-.7.5-.7 1.5.2 1.8 1 .4 1 1.4.9 2.4-.1.9.9 1.1 1.3 1.7.6.7.6 2.4 0 3.3-.4 1-.5 2.5.4 1.7 1-.9 1.4 0 2.1 1.2.6 1 1.2.7 2 .5a8.5 8.5 0 0 1-.7-1.6zm13 23.6c-.4 1.2-1.1.9-1.7.3-.6-.6-1.3-.6-1-1.8.2-1.1 0-1.3-.7-1.9l-.3-.3h-.8c-1.5 0-1.6-.3-2.5-1.2a6.8 6.8 0 0 0-.5-.4v.8c0 1.1 0 .8-1 1.2-1 .3-1-1.1-1.2-2a3.4 3.4 0 0 0-.1-.6 4 4 0 0 1-3-2.9c-.5-1.6 0-1.7.6-.7s.7 1.3 1.6 2c.8.5 1.2-.5.8-1.7a5.2 5.2 0 0 1 0-1.3 2 2 0 0 0-.8-1c-1.8-.7-1.2-.8-1.2-2.2.2-1.3-.1-1.3-1.2-.6-1 .7-1 0-1-2.2 0-2-1.4-2-1.7-.6-.3 1.5-.9.5-1.4-1.5-.5-2-1.5-2.6-1.5-.6 0 1.7-.6 2-1.6 1.2l.4 3.1c.5 3.3 1.3 2 3 3.5 1.6 1.4 1.1 2.2 1.7 2.9.6.7.7 1.2.6 2-.3.8-.6 1.5-.3 2.2.3.8.8 1 .8 2.1 0 1 .2.9.7 1.2h.8l.7-1c1.3-1.2 3 0 3.7 1.7.6 1.5 1.3 1.9 2.3.6 1-1.2.6-1 1.6.1 1 1.2 1.4 1 1.4 1s1-.4 1.8.2c.7.6 1 .5 2.4-1.4 1.3-2-.6-1.4-1.2-.2zm3.8-55.8c.4-3 .1-5.9 1.3-7 1.3-1 2.7-3.3 2.7 1.4-.2 4.6-.4 4.3-1.3 5.4-1 1.1-1.8 1.4-1 3.1 1.1 1.7 1.2 2 1.1 4.6-.1 2.7-.1 3.9.9 5.2 1.1 1.4 1.4 1.4 1.7 3a8.4 8.4 0 0 0 2.4 4.5c1.2 1.2 2.6 4.2 2.7 6.4.2 2.2 2 2.7 3.8 4.3 1.8 1.5-.4 2.5-1.7 1.8-1.4-.6-.9 0-1.7 1-.8 1-1 1.1-1.7-.6-.7-1.6-3-2.7-4.1-3.1-1.1-.4-2-2.2-3-4a5.2 5.2 0 0 0-3.9-2.6c.4 1.1.6 2 .5 2.4-.4 1.5-.8 2.6.7 4.4 1.7 1.7 2.7 4.3 3 5.8 0 1.5.3 2 2 1.5a7.2 7.2 0 0 0 2.9-1.7c.5-.7 1.6-.7 3.1.2 1.5.8 3.8 1.6 5.2.8 1.3-.9 2-2 3.2-2 1.9-1.4 2.6-4.3 3-5 .4-1 .1-1-.7-1.7-.8-.8-.4-2.2-.6-3.5 0-1.4-.6-3.4-2.2-6.4-1.7-3-2.7-6.6-3.7-7.5-1-1-1.7-3.3-1.7-4.4-.2-1-1.4-2-2.2-2.9-.9-.8-1.7-2-2.6-6.7-.7-3.7-1.4-6.6-1.5-8-1 1.5-1.7 2-2 .8-.5-1.2-.9-1.8-1.5-1-.5.8-.7-.8-.7-1.5s0-.7-.9-.7c-.8 0 0-1-.3-3.2-.3-2-.7-2.2-.9.2-.3 2.4-1.7 4-1.1 4.4.5.6.2 1.7-.3 3.3a5.1 5.1 0 0 0 0 3.6c.4 1-.2 3.2-.4 4.9-.3 1.7 1.1 3.5 1.5.6zm-24.8-24.2c-1 0-1.7 1-1.1 4 .4 2-1 1.6-1.6.6-.5-1-1-3-2-4.7-1.1-1.7-.6 1.1-.7 2.8-.2 1.7.9 1.7 1.8 3 1 1.4.2 1.9-.8 1.9s-.7 2.2-.4 3.6c.3 1.5-.3 1.8-1 .6-1-1.3-.3-3-.2-5.4.2-2.3.3-1.8-1.2-2.3-1.5-.6-1.3-.9-.6-2.2.5-1.4 1-2 .3-2.7-.6-.7-.5-1.1.6-1.2 1-.2.6-1 1.6-1.2 1-.3 1.4 0 1.5-1.7.1-1.5.6-2.3 1.7-1.9.7 2.3 1.5 5.8 2.1 6.8zm13.7 16c0 2.8 0 4 1.2 5s1 2.2 1.6 4.7c.6 2.6.6 8.2 2.2 12l1.8 4a7.7 7.7 0 0 0 2-2.6c.3-.8-.9-2.8-1.8-4.3-1-1.8.1-2.3 1-4.4 1-1.9 0-2-1.6-2.6-1.4-.5-1.4-2-2.2-4.1-.8-2.2-.7-3.1-.2-4.4.5-1.2.2-2.1-.9-2.4-1.1-.3-.8-1-.4-2.4.4-1.3.7-1.6-1-1.3-1.2.4-1.5.7-1.9 1z" />
|
||||
<path fill="#5d3100"
|
||||
d="M439.9 254.3c-.2 1.6-.2 2.5-.6 3-.4.5-.1 1.3.3 2.2.5.8.6 1.8.3 3.4-.4 1.5.2 2.6 1 3 .8.4 1.2 0 1 2a5.8 5.8 0 0 0 1.7 4.7c1 .8 1.7 2.1 1.5 3 0 .8.7 1.5 1.7 2 1 .4.8.5.8 1s.4.6 1.4.9c1 .3 2 .9 3.2 2.4 1.2 1.6 3 2.3 2.7.7-.3-1.5 0-2.8-1.6-3.5-1.7-.8-2.9-4.7-3.5-7.4a17 17 0 0 0-4-7.1c-.3-2 0-2.9-1.2-3.8a4 4 0 0 1-1.7-3.2c0-.8-.6-2-1.2-2.4-.5-.3-.8-.9-.8-1.8 0-.8-.8-.7-1 1z" />
|
||||
<path fill="#00d860"
|
||||
d="M432.7 327a39.2 39.2 0 0 0 9.7-2.8c1.7 1.1 4.5 2.6 5.7 2.6-2.3.5-3.9.3-4.4-.2.3.7 1 1.9 1.6 2-2.3 0-4.8-.6-5.6-1.4-2 .8-5.2 1-7-.2zm4.3 3c.9.3 5.2 1 5.8 1-1.4 1.2-.2 2.4 2.1 2.2-1 .2-2.4.6-1.5.8a24.4 24.4 0 0 0 8.9-1.8c-2 2.5-11.4 4.8-15.3-2.2zm4 6.1a9 9 0 0 1 5.3.3c-1.4.6-4.5.6-5.4-.2z" />
|
||||
<path d="M445.3 336.1c2-.3 8 1 10-.2-.7 1.9-4.3 2.2-5.7 1.7-1.3-.3-2.5-.8-3.4-.8.6-.3-.2-.3-1-.7z" />
|
||||
<path fill="#00d860"
|
||||
d="M447.4 339a30.5 30.5 0 0 0 9-1.1c1.7.6 5.4 1.6 6.2 1.5-1.7 1-5 .4-6 0a10.9 10.9 0 0 1-9.2-.4z" />
|
||||
<path fill="#00d860"
|
||||
d="M450 339.9c2.3.5 4.3.2 6.5-.5.7.2 2.3.6 3.9.6 1 .5 2.3 1.3 3.7 1.5a16.6 16.6 0 0 1-7.5-.7 19.2 19.2 0 0 0-8 1.5 3 3 0 0 1 1.5-2.3z" />
|
||||
<path d="M447.4 328.6c1.7.5 8.2.2 11.3-1.3 1.4-.7 2.2.4.7.8-5.2 2-9.5 2.6-12.5 1-1.2-.6-1.4-1.2.5-.6z" />
|
||||
<path fill="#00d860"
|
||||
d="M478.6 319.8c-7.9 3.7-13 4.8-23.9 1.4-1-.2-1.7 0-.6.7a40 40 0 0 0 8.5 2.6c1.4.1.9.7 0 1-.8.2-1 .8.1.4 1.1-.5 7.8-.7 10.5.7 1.1.7 1.4.5 1.3 0-.1-.4.5-.7 1.4-.8.8-.1 1.4-.4.7-.6-.7-.3-.8-.5-.3-.7.5-.3.6-.6-.2-.7-.7-.2-1.3-.4-.6-.7a9 9 0 0 1 2.6-.7c.2-.5-.1-2 .5-2.6z" />
|
||||
<path
|
||||
d="M465.6 320.7a26 26 0 0 0 17-6c1.6 1 3.7 2 4.9 2.2 1.1.2 2 1.2.3 1.2s-4-.7-5.2-1.2a29.5 29.5 0 0 1-17 4.3c-1.1 0-1.4-.5 0-.4z" />
|
||||
<path fill="#00d860"
|
||||
d="M452.3 296.3c1.6 1.1 4.3 2.9 7.8 2.6a17 17 0 0 0 5.7 3c-2.4.8-5 1.7-5.6 2.4-1-1-2.5-.8-2.8-1.4-1 1-.9 1.3-.2 1.8a22 22 0 0 0 7 .9c1.2-.4 1.7.7.6 1-2.7 1-8 0-9.8-2.9-2-2.9-3.5-4-8.5-1.3-.5-1.5-.5-1.7-1.5-1.7s-2.8-1.3-1.4-1.3 5.4-.6 8.7-3z" />
|
||||
<path fill="#00d860"
|
||||
d="M453.6 303c-1 .1-3.3 1.4-4.1 1.5-.9.2-2.4 1.4-.9 1.4 1.7 0 3.7-1.7 4.8-1.7 1.1 0 1.2-1.5.2-1.3zm5 5c-.7.2-3.3.8-4 .8-.7 0-1.5 0-1.4.6.1.5.3.9-.9.7-1-.2-1.9.3-2.1.6-.3.3-.5.6.6.7 1 0 1.6.3 2.9-.4 1.2-.6 2.3-1.3 3.6-1.4 1.3 0 2.6-1.8 1.2-1.5z" />
|
||||
<path d="M454.9 311.1c1.1.9 6.6 2.6 8.5 2.6 2-.1 1.7.7.2 1a12.2 12.2 0 0 1-9.6-2.7c-1.2-1 0-1.4.8-.9z" />
|
||||
<path fill="#00d860"
|
||||
d="M480.8 314a21 21 0 0 1-10.2.3c-1.7-.6-3.3-.6-2 .6 1 1.1 4.8 1.8 7 1.3-7.6 1.7-9.6 1.6-11.4 1.3a38 38 0 0 0-7-.2 6 6 0 0 1-3.3-.4c-.7-.5-.9-1.1 1.1-.9 2 .1 2.3-.2.6-.5-1.8-.3-4.1.4-1.8 2 2.4 1.4 7.4-.2 10.7.8a18.6 18.6 0 0 0 16.7-3.8c.3-.2.9-1-.4-.6zm-20.6-6.3c.2.6.2 1 0 1.4-.2.4-.1.9.5.4s1-1.2 1.8-.8c.7.3 2.3.3 3 .2.8 0 1-.3 0-.7a7.4 7.4 0 0 0-2.9-.6c-.6.1-1.4 0-1.9-.3s-.6 0-.5.4z" />
|
||||
<path fill="#00d860"
|
||||
d="M471 309.7c-.8 0-2.4-.6-3.1-1-.8-.3-2-.3-1.2 1 .9 1.2 4.6 1.7 6 1.2 1.3-.6.8-1.2 2-.4 1.4.8 2.7 1.3 3.7 1.3s1.3 0 .3-.6-1.6-.7-1.8-1.2c-.2-.5-.2-.9.9-.5 1 .3 2 .8 2.8.4.8-.4 2.2-1.3 3.5-1.3l.2-.8c-1.8 0-3 .5-3.5.6-.4.2-1.4.4-2.4.2s-2.2-.3-2.5-.5c-.4-.3-.3-.5.5-.6.8-.2 1-.7 0-.6-1 .2-4.2.2-5.8-.3-1.5-.5-2.2-.6-2.8-.3-.7.2-.6 1 .3 1 1 0 3.2.3 4 1 .6.7.6.7-.2.4-.9-.4-2.5-.2-.9 1z" />
|
||||
<path fill="#00d860"
|
||||
d="m484.3 307.8-.3.8c1.9 0 6.4.4 8 1.3 1.4-1.1 1.1-1.5 2-1.2 1 .3 2.4.5 3 .3a2 2 0 0 1 1.5-.2c.6 0 2-.2 2.7-.6.8-.5 2.4-1 3.3-1 .8 0 2-.3.3-.6-1.6-.3-4.2.3-5 .6-1 .3-3.5.5-5 .5s-3.6.7-5.3.3c-1.8-.4-4.2-.2-5.3-.2z" />
|
||||
<path d="M507.9 307c-3 2.2-6.8 2.7-11.1 3-1.3 0-.9.4.2.5 4.6.5 9.8-1.2 11.6-3 .5-.6.4-1.4-.7-.6z" />
|
||||
<path fill="#00d860"
|
||||
d="M487.1 312.2a47 47 0 0 1 7.3 1.7c1.2-.2 1.5-.4 1.3-.9-.3-.4-.4-.8 1.7-.6h7.5c.8-.3 2.3-1.5 3-1.5-1.8 0-9.5.4-10.4.3-1 0-1.5 0-2.1.4-.6.3-.9.5-1.7.1-1-.3-2.1-.7-3-.1-.6.4-2.3 0-3.6.6z" />
|
||||
<path fill="#00d860"
|
||||
d="M504.9 312.4c.7-.3 2.3-1.5 3-1.6 1.4-.1 2.8.4 3.5.6.7.2 1.5 0 1-.6-.4-.5 0-1.6 2-1.3 2.2.2 3.2.6 5.3.4 2.1-.2 2.9 1.3 6.7-.2-.2 1.5.5 1.6 1.2 1.3.7-.2 1.5-.2 2.7.7 1.3 1 8.7 1 10.4.7 1.8-.3 2.6.6 1.3 1s-1.6 1-1.3 1.5c.3.4.6.9-1 .7-1.7-.2-2 .3-2.7.8-.8.6-1 1-3.3.5-2.2-.4-2.7-.1-3.9 0-1.2.2-1.5.3-2.8-.1a9.6 9.6 0 0 0-5.5-.3c-1.6.6-2.7 1-4.2.6-1.5-.3-1.5-.2-.6-1 .8-1 1-1 2.8-1.1 1.8-.2 3-.7 1.9-1.4-1.3-.7-1.6-.6-3.3.1-1.6.8-2.4 1.4-4.3.4-1.8-1-2.6-.9-4-.5-1.2.3-3.2-.5-4.9-1.2zm6.1 3c-2.4.4-3-1.1-5.4-.9-.8.2-2.2 1.2-.3 1 1.9-.1 4 .9 5.8.8 1.8-.1 1-1 0-.9zm-2.6 1.7c1.1-.4 3.6.5 4.8.3 1.1-.2 2 .4.8.9-1.2.4-3.7-.7-5-.4-1.1.4-2.4-.1-.7-.8zm-24.4 6.7c1.7 0 7.8-.3 10.2-5.3.2-.4.3-.6 1 0 .7.5 3.6 2.1 8.8 2.6 1.5 0 3 .8.1.7-3-.2-7.6-1-9.1-2-2.7 4.1-7.4 4.6-11 4.5-2.1 0-1.6-.6 0-.5z" />
|
||||
<path fill="#00d860"
|
||||
d="M497.1 316.8c-.8 1.1-3.6 3-4.8 3.2-1.3 0-5.2-.2-6.1-.6-1-.3-2.1-.3-.8.7a11 11 0 0 0 6 1.3c1.6-.3 3.1-.8 4.2 0 1 .6 3 1.8 4.2 1.6 1.2-.3 3.5-.3 4.3 0 .8.4 2.1 1.6.1 1-2-.7-3.6-.2-4.5-.6 1 1.4 3.3 3.7 5.2 3.7.5 0 .9.9 0 1.3.8.4 3 .9 4.3-.3-.4.5-.2.7.3.9.5.2 1.1.6.2.8-1 .2-3 .3-3.6 0 2 1.3 7 3.4 12.3 2.3 1-.1 1.6-.6 0-.5-3.5 0-3.7 0-4.3-.3-.6-.4-.4-.7.6-1a24 24 0 0 1 4.3-.7c1 0 2.1-.3 0-.3-2 0-4.6 0-5.7-.4-1-.3-1.7-.9-.6-1.6 1-.7 2.1-.5 2.6-1-3.3 0-7.4-2-5.2-3.6.5-.3.4-.4-.4-.5a22 22 0 0 1-4.5-1.4c-1-.5-.4-1.1.5-1.3-2 .3-6-.7-8.6-2.6zm29.8 0c-1.8 1.3-5.3 2-6.8 2-1.4 0-1.7.4-.5.5 1.2.1 2.5.4 3 .2s.9-.2 1.6.2a6 6 0 0 0 3.8 0c1.5-.4 3.7-.6 4.7-.6 1 .1 2 .1 0-.4-1.8-.5-5-.2-5.8 0-.7.2-2.8 0-1.7-.2 1.1-.3 2-1 2.6-1.4l-.9-.3zm-1 4a11.8 11.8 0 0 1-6.1 2.3c2 .8 3.8 3 5.2 2.8-.7.5-1.5 1-2.3 1.2a8 8 0 0 0 5.4-1c3 .8 7 .2 8.3-1-2 0-4.3-.6-5.4-1.6 1 0 1.9-.5 2.3-1.1-2.3.4-6-.7-7.3-1.8z" />
|
||||
<path fill="#00d860"
|
||||
d="M522.7 327c.8 0 1.7-.6 2.3-1a19.2 19.2 0 0 1-11.1-2.6c-2.2-1.9-2.2-.4-.7.9a11 11 0 0 0 9.6 2.8zm5.4 4.7c-.9.5-5.3.9-6.7.5-1.5-.3-2-.2-1.8.5.3.6.6 1-.6.8a12 12 0 0 0-4 .5c-1 .2-2 1-.2.7 1.9-.2 3.5-.6 5-.3 1.3.3 6.1.4 7 0 1-.4.4-.3 0-.3-.5 0-.7-.3 0-.7.7-.3 1.1-1 1.3-1.7zm-42.3-5.8a62 62 0 0 1-9.6 2.5c-2 .9-3.6 1.4-4.6 1.4.7.6 3.5 1.2 4.5.9-.6.7-2 1.3-2.5 1.7 1.7-.3 3.5.2 4.4.3a12.2 12.2 0 0 1-6.7 1.4c.6.6 1.3 1.3 2.2 1.3a11.3 11.3 0 0 1-5.5.2c.6 1 1 1.6 1.8 1.8-1.7.1-3.7.4-5.4-.6 1.3 1.8 4.2 2.3 8.6 1.8 4.4-.5 8-2.4 9-3.2-1.8.2-4.3.3-5.4 0a32.2 32.2 0 0 0 8.6-3.7 4.9 4.9 0 0 1-2.8-.9 27 27 0 0 0 8-.8 5.8 5.8 0 0 1-3.5-2.3 34.2 34.2 0 0 0 17 .5c.8-.2.8-1.3-.7-1.1-2.8.2-8.3-.6-9.8-1.3a10.1 10.1 0 0 0 4 1.7c-2.5.8-6.2 1.3-11.6-1.7z" />
|
||||
<path fill="#00d860"
|
||||
d="M473.6 332.4c.5-.4 2-1 2.5-1.7-1.1.3-3.8-.3-4.5-1 1 0 2.6-.4 4.6-1.3-3.6-.1-6-.1-7.5-.9-1.4-.8-3.7-.4-4.7-.2-1 .1-.6 1.7 3.3 1.3a13.4 13.4 0 0 1-7.6 1c.4 1.4.7 2.7.3 3.5 2.1 1.2 7.7 2.7 10.5 2.5-2.5-.9-3.8-1.9-1.8-2.2 2-.2 3.2-.6 5-1z" />
|
||||
<path d="M467.3 339c4.8-.4 11.4-.5 16.6-5 1.3-1 2.2-.6.9.5a28.8 28.8 0 0 1-16 6c-2.7 0-3.9-1.3-1.5-1.6z" />
|
||||
<path fill="#00d860"
|
||||
d="M503.7 331a19 19 0 0 1-5.6.8 6 6 0 0 0-3.3.2c-.8.5-.9 1 .2 1l3.3.2a5.4 5.4 0 0 0-1.8 1.5c1.8-.4 4.7.3 5.6.8a2.6 2.6 0 0 1-2-.4c2.7 3 10.9 3 12.2 2.4-.6.5-1.2 1-1.7 1 2.2.5 4.8.4 7.5-1l-4.2-.2a4.9 4.9 0 0 1 2-1.2c-1-.2-4.2-.1-5 .3a3.5 3.5 0 0 1 1.5-1.7c-4 0-8.9 0-10.6-1 2.7.4 5.9-1.3 7.2-1.3-2.2 0-4.6-.5-5.2-1.5zm-10.1 2c-2 .5-5 1.4-5.9 1.8-.8.5-1.6.7.1.7a109.4 109.4 0 0 1 .6-.1c-.7 0-1.5 0-.1-.5 1.3-.4 3-1.3 5.2-1.7zm-4 4.9c.7 0 3.7 0 5-1 1.2.8 3.7 2.2 5.2 2.2 1.6 0 1.4.4 0 .6a10.5 10.5 0 0 1-5.4-1.7c-1.8.7-3.3.1-5-.1zM466 351.6a17 17 0 0 0 10.3 1.1c1.8 1.5 5.3 1.6 7.2 1.2 2-.4 3.7-.6 5.9 0 2 .8 6.4.9 7.7 1.9l-4.1.1c-.6.2-.3.5.8 1a22 22 0 0 0-11.3 3 6.4 6.4 0 0 1 6-3.8c-1.8-.6-7.7-.7-9.7.5a5.8 5.8 0 0 1-1.2-2c-3.1 1.7-9.2-.9-11.7-3zm-8-5.8a14 14 0 0 0 7.3-2.8c.7.6 3.5 1.2 6.5.3-.6.4-.7 1.3-.5 1.7a22.8 22.8 0 0 0-7 1.8c-1.2.6-5 1.1-6.2.4-1.2-.6-1.2-1.2-.2-1.4z" />
|
||||
<path fill="#00d860"
|
||||
d="M471.3 345.1a22.8 22.8 0 0 0-7 1.8l.5 1.7a44.4 44.4 0 0 1 15.3-1.6c-1.6.1-4.5 1.8-6.1 1.9 4-.3 7.8.5 8.8.8 1 .2 1.3 1 .5 1.8-.8.9-1.1.7.5.9 1.6 0 5-.3 6.5-1.8-.7-.6-2.2-.3-2.7-.9a7 7 0 0 0 2.7-1.6 25.3 25.3 0 0 1-4.6-.3c-.8-.2-1.5-.5-.4-1.1a6.6 6.6 0 0 0 2-1.5c-2 .5-5.1 1-7.8-1 1 .2 3.3 0 4.1-.3a5.2 5.2 0 0 0-2.2-.8c2-1 6-1.9 11.3.1a27 27 0 0 1 7.1.4c1-.8 2.6-2.8 3.5-3.2-6 .4-16.8-.6-16.5-3.8-2 2.6-6.5 4-8.4 3.6-.2.8.6 2 1.3 2.6-2 .4-5.5.8-7.1.4 1 .9 2.6 1.7 3.6 1.7-2 0-3.2.4-4.9.2z" />
|
||||
<path fill="#00d860"
|
||||
d="M483.7 352.3c1.8 0 5-.2 6.6-1.7-.7-.6-2.2-.3-2.7-.9a7 7 0 0 0 2.7-1.6c4.4-.4 8.1-.2 10-.7 1.8-.5 6.5-.3 7.4-.5-4.1.7-4.9 1-5 1.7-.2.7 1.2 1.1 2.2 1.1-1.7 0-4.1 1.9-4.4 2.7-2.4-1.4-3.4.2-3.8.8-1-.4-4.4-.3-6.1 1.2-2.2-.7-3.7-1-6-.7 1.5-.3 1.2-1.3-.8-1.4zm19.5-12c1.4 0 4.4.2 5.5 0a6.5 6.5 0 0 0-1.8 1.3c3.5-.4 8.2-.7 9.6-.4-1.8-.3-3.5.9-4.4 1.4-.8.5-.3.9.9 1 1.2.2 2.7 1 .6.8-2-.2-6.4-.3-7.4-.2-1 .2-1.6-.3 0-.6a10 10 0 0 0 3.1-1c-1.2.3-3.5.3-4.3 0-.8-.3-1.1-.5-.3-.8.9-.3.3-.4-.6-.3-.9 0-3 1-4.3 2.1 1.3-1.4 2.6-2.6 3.4-3.2z" />
|
||||
<path
|
||||
d="M487.8 342.7a8.7 8.7 0 0 0 6.8 3c.6 0 2 .9.3 1-4.3.2-6.4-.9-8.3-3.6-.4-.6.3-1.4 1.2-.4zm25.5-35.6c2.2 1 6.7 2 10.2 1.9.7 0 1.8.6.3.7a18.3 18.3 0 0 1-10.8-2c-.9-.5-.6-1 .3-.6z" />
|
||||
<path fill="#00d860"
|
||||
d="M515.5 307.1c3.5 0 6.1 0 7 .9 2-.5 5.7-.9 6.4-.7.8.2 1.8-.3-.1-.7-2-.4-6.2-.6-7.6-.3-1.4.2-5.7.4-7 .2.5 0 .9.2 1.3.6zm13.4 1.3c1.6-.8 6.3 0 7.7-.6-1 1.2 3.3 1.3 7 .4-1.4.8-4.5 1-5.8 1.6-1.3.6-2 .1-3-.3a11 11 0 0 0-5.9-1z" />
|
||||
<path fill="#00d860"
|
||||
d="M543.6 308.2c-3.7.8-8 .8-7-.4-1.4.6-6-.2-7.7.6 1.8-1 3-.1 4.2-2.2.8.1 2.6.2 3.2-.6 1 .3 3 .7 3.5 1.3.5.6 1.3-.2.7-1 1.7-.6.6.7 4.5-.3.9-.2 2.8-.6 3.5-.6a24 24 0 0 1-5 3.2z" />
|
||||
<path fill="#ff0" stroke="#000" stroke-width=".4"
|
||||
d="m471.6 291.1-.7-86.8c0-3.9-2-3-2 0v86zm28.2-91.4 3.1 91.4-.4.8h-2l-1.9-92.2zm26.6 77.4-1.6-74.3c0-2.4-2-2-2 .4l1.6 73.9z" />
|
||||
<path fill="#fff" stroke="#000" stroke-width=".4"
|
||||
d="m484.2 214.9-27.4-.4c-1.2 5.5 5.5 5 7.8 4 3.1 1.9 5.5 1.9 7 0 2.4 1.9 5.5 1.5 6.7 0 3.1 2.7 6.6 0 5.9-4zm2 13.3h-27.5c-5 4.7 1.2 7 6.7 3.9.8 1.6 3.9 2.3 6.2 1.2 2.4 1.5 5.5.4 7-1.2 2.8 1.2 6.3 1.6 7.9-4zm-.9 17.6h-26.6c-.3 4.3 5.1 3.9 7 2.7 2 3.2 6.7 2.4 8.3.4 2.7 2 5 1.6 6.2 0 2.8 2.4 5.5-.8 5.1-3.1zM487 263l-30.1-.4c-1.6 5 3.1 5.9 5 4.7.9 2.7 4.8 2 6 0 1.5 1.2 3.5.4 4.2-.8.4 2.7 4 3.1 6.7.8 5.5 3.9 10.5-.8 7.8-4.3zm26.2-7h-24.6c1.1 4.6 3.5 5.8 7.4 3 3.1 3.2 7.8 2 9 .5 5.5 4.3 8.2-.8 8.2-4zm-2.4-17.2-24.2-.8c.4 6.2 6.3 5.8 9.4 3.5 2 2.7 5.9 2 7.8 0 2.7 3.1 7.8 1.2 7-2.7zm3.2-19.2h-26c0 4.3 5.8 6.6 10.1 2.7 1.2 5.1 5.9 3.5 7.9 1.6 3 3.9 9.7-.8 7.8-4zm-1.6-13-23.5.5c0 3.9 5.5 5.5 7.5 2.3 1.2 2 5 1.6 6.2 0 1.6 2.8 4 .8 4.7 0 2.8 2 5.5.8 5.1-2.7zm27 8.7-28.2-.4c0 2.7 2.8 4 4.7 2.7 0 3.2 4 4 6.7 1.6 1.5 2.7 6.6 3.1 8.6 0 3.9 3.5 8.6.8 7.8-4zm-.4 23h-27.4c0 4 4.3 5.1 7 3.2.5 3.1 4 3.5 6 1.6 2.7 2.7 6.6 3 9 0 3 1.1 5.8-1.6 5.4-4.7zm-1.6 20.8h-21.9c0 3.9 4.7 3.9 6.7 2 2.3 2.7 5.5 2.7 7.4.7 2.7 2.4 7.4 1.6 7.8-2.7z" />
|
||||
<path stroke="#000" stroke-width=".4"
|
||||
d="M502.5 292c-11.7 0-23.8 0-32-.9-8.2-.7-10.6-2.3-16.4-5.8L432 272c-1.9-.8-3.8.4-1.1 2l21.9 14.4a60 60 0 0 1 13.3 11.7c4.7 5.1 7.8 5.1 10.1 4.3 2.4-.7 5.5-2 9-1.1 3.2.7 7.8 1.1 10.2.7 2 2 7 1.6 9.8.8 2.7-.8 4.7-.8 6.6-.4h6.7c2 0 7-1.1 10.5-.7 4 .7 7.4 0 9.8 0a19.5 19.6 0 0 1 7.8-.4c2.4-1.6 3.1-3.6 4-5.5 2.3-.4 3-.8 3.4-2l2.4-6.2h.8v-2.4l-1.6-2.3.8-4 2-.7-.8-4-34.4.9a7.8 7.8 0 0 0-2.4 4.3l-10.2 1.5c-1.1.4-2.3.4-3.5 2z" />
|
||||
<path stroke="#000" stroke-width=".4" d="m543.6 276.7 5-19.2c.8-2-1.1-2.3-1.9 0l-5 19.2z" />
|
||||
<path fill="#fff" stroke="#000" stroke-width=".4"
|
||||
d="M563.5 255.2c-4.3 2-6.6 3.1-8.6 2.3-2-.8-4.3-1.2-5.8-.4a2 2 0 0 1 0 .4 1928.6 1928.8 0 0 1-4.3 14.9c3 1.2 8.6 1.2 9.7 0 1.6-1.6 5.1-1.2 7-1.2 1.2-1.6 1.6-3.5 1.2-4.3-.4-.8 0-2.7 0-4 0-1 1.6-5.4.8-7.7z" />
|
||||
<path fill="none" stroke="#000" stroke-width=".4"
|
||||
d="M465 218.4a208 208 0 0 1-31.3 54.8m7.8 4.7a213 213.1 0 0 0 44.6-49.3m-27.4 16.8c-1.1 10.6-4.3 29.3-5.8 39.1m10.1-15.6c-3.9 3.9-9 10.1-13.2 13.6m49.6-34.8c-3.1 3.2-6.6 7-10.2 7.9m12.2-7a27.4 27.4 0 0 0 10.5 7.4m-12.5-24.3a33.2 33.2 0 0 1-11.7 6.7M501 232c2.3 2.3 5 5 8.6 6.7m-21.1-19.2a27.4 27.4 0 0 0 10.5-5.9m1.2 0a30 30 0 0 0 10.5 6.3m-21.5-13a15.6 15.6 0 0 0 9.4-5.4m1.2-.8c2.7 2.4 7.8 5.5 10.6 5.9m12.5 3.1c-1.6 2-5.9 5.1-8.6 5.1m10.5-5c1.2 1.9 4.3 5 6.3 5m-18.8 23.5a28.1 28.2 0 0 0 11-7.5m2 .4a21.9 21.9 0 0 0 7.3 7m-16 20.4c1.6 0 5.9-2.4 7-5m2.4-1.3a27.4 27.4 0 0 0 7.8 6.7m-73.1 3.5c5-1.6 14.9-7.8 20-13.7m-9.4 7.4c3.9 2.8 9 6 12.5 6.7m-24.3-17.6a31.3 31.3 0 0 0 9.4-5.9m2-.4c1.1 1.6 9.3 6.7 12.9 6.7m-14.9-23a38.3 38.3 0 0 1-9.8 5.4m11.8-5.5c2.7 2 8.6 5.5 12 5.5M469 207c-2.3 2.3-6.2 6.2-9.4 7.4m11.4-7c1.5 2.7 6.2 6.6 9.3 7m31.3 10.2c7.5 12.9 20.7 29 34 37.5m-55-52c10.9 15.6 32 49.7 52.3 62.2m4-13.3a72 72 0 0 1-19.2 18m17.5-13.7c-6.6-11-10.1-24.6-15.6-43m-54.7 48.5 7.8 23.4m-9.4-23.8 7.4 23.4m-9.3-24.6 7 24.2m-7.8-23.8 5.4 23.8m0-.7h6.7m-.8-2.4h-6.2m5.4-2h-6.2m5.4-1.9H474m5-2.3h-5m-.4-2h5m-5.4-1.6h5m-5.4-2h4.7m-5-1.5h4.2m-4.7-2h4m-4.4-1.5h4m-4.3-1.2h3.9m-4-1.5h3.6m-10.2 0-4.7 19.5m5.9-19.5-4 20.3M467 268l-3.2 21.5m4.7-22-2.3 22.8m2.7-1.6h-7.8m7.8-2h-9m9-2.3h-8.2m7.8-2h-7.4m7.8-2h-7.4m7.4-2.3h-6.6m6.6-2h-6.6m6.2-1.9h-5.8m5.8-2h-5m5-1.9h-4.7m4.7-1.2h-4.3m4 21.6v-23.1m25.3-7.8L478 291.5m16.8-32-13.3 32.4m14.1-32.8L485 291.9m11.8-32-8.6 32m.4-1.1h-9.8m10.5-3.2H480m9.7-2.3h-7.8m9.4-2.4h-7.8m8.2-2.3h-7.4m8.2-2.4h-7m7.7-2.7H487m6.6-2h-5.8m6.6-2.3h-5.5m6-1.6h-5.2m5.5-1.5h-5.5m5.1-1.6h-3.9m4-1.2h-3.6m3.9-1.5H492m3.9-1.6h-3.1m3-1.2h-2.7m13.3-.4 6.7 22m-5.5-21.6 8.2 21.2m-7-21.2 9.8 20.8m2.3-2-11-19.2m11 19.6h-7.8m7-3.1h-7.8m6.7-2.4h-7.5m5.9-2.7h-6.7m5.1-2.4H510m4.3-2.7h-5.1m3.9-2.7h-4.7m3.1-2.4h-3.9m12.5.4-7 20.3m9-21-6.3 20.7m2.8-.4 4.7-19.6m1.1.8-3.9 18.4m-6.6-1.2h6.6m-5.8-2.3h6.6m-5.9-2.8h6.3m-5-2.3h5.8m-5.1-2.8h5.5m-4.7-2.3h5m-3.9-2.8h4.7m-3.9-2.3h4m3.5.4 3 14m-1.9-14.8 4.3 14.5m-2.7-14.5 4.7 14.5m-2.8-13.7 5.1 13.7m-.4-1.2h-6.6m5.9-2h-6.3m5.5-1.9h-5.9m5-2.4h-5.8m4.7-2H528m4.7-1.9h-5m4.3-2h-4.7" />
|
||||
<path fill="#00b800"
|
||||
d="M467.6 299.2c3.1-2 8.5-1.7 11.3.4 3.3-1.8 9.2-1.3 11.9 1.2 4.2-3 7.7-3.4 11.7-.6a10.5 10.5 0 0 1 11.9.2c3.7-1.7 7.7-3.1 11.2.6a9.3 9.3 0 0 0-11.3.7c-3.5-3.5-9.7-2.2-11.8.3a7.7 7.7 0 0 0-11.5.2c-3.7-3-9.1-3.2-12-1a13 13 0 0 0-11.4-2z" />
|
||||
<path fill="#cf6200"
|
||||
d="M523.1 294.8c-16.1 2.8-51.4 1-59-1.1-2.7-.6-2-1.6.3-1 8.9 2 27.9 2 38.3 1.4l6.2-8.5c1-1.3 1.4-1.4 3.5-1.7l8.7-1.5v1.2c-.2.3-.4.6-.7.7 0 2 .4 7.1.9 9l1.1-.3c.7-.2 1.4 1.7.7 1.8z" />
|
||||
<path fill="#cf6200"
|
||||
d="M549.6 295.6h2.2c.6 0 1.6-.5 1.9-1.5l2.2-6.3-1.7-2.5.9-5.3 2-.9c.2-.3 0-1.6-.4-2l-31.6 1c-1 0-1.4 0-1.7 1.3a23.5 23.5 0 0 0 8 23.2c.5.4 1.2 0 .3-.7a26 26 0 0 1-4.3-5.7h5.2c.4 1.7 1.7 5.2 2 5.9.2.7.8.7.4-.3-.6-2-1-4.5-1.3-5.7h5.3l.4 5.2c0 .7.6.7.6-.1V296l4.8-.2-.4 5.2c-.1.9.3 1.2.5 0l.7-5.2 3.3-.2c0 1.2-1.1 4.4-1.4 5.2-.3 1 .2 1 .5.1a30.5 30.5 0 0 0 1.6-5.2z" />
|
||||
<path
|
||||
d="M526.5 294.8c-.5-1.1-2.3-5.1-2.4-8h7c.2 2.1.8 6.8 1.2 7.9zm5.8-8.2c.1 1.8 1 7.5 1.2 8h5.6l-.4-8.1zm-7.9-7a33.1 33.1 0 0 0-.2 6l6.7-.3-.6-5.9zm7.3-.2.4 6 6.6-.2-.3-6zm8-.3.2 6 5.7-.1c0-1.3.3-5.2.2-6.1zm7.2-.2-.2 6 6.2-.2c.3-1.3.9-4.7.9-6zm6.3 7.2-6.6.2-.6 8 6.3-.2a53.7 53.7 0 0 0 2.3-6c-.5-1-.9-1.3-1.4-2zm-13.3.4.2 8 4.8-.2.6-8zm-27-1.6-2.6.4a196 196 0 0 1-6.3 8.8l9.3-.2-.3-9zm1.2-.3.4 9.2 5.6-.4-1-9.6z" />
|
||||
<path stroke="#000" stroke-width=".4"
|
||||
d="M486.9 263h-30.1v-.8l30 .4zm23.5-24.2c.3 0 .3 0 0 0l-23.5-.4c-.4 0-.4 0 0 0h23.5zm-25 6.6c.3 0 .3.4 0 .4h-26.7c-.3 0 0-.4 0-.4zm.7-17.2c.4 0 .4.4 0 .4h-27.7c-.4 0-.4-.4 0-.4zm-2-13.7c.4 0 .4.4 0 .4h-27c-.3 0 0-.8 0-.8l27.4.4z" />
|
||||
<path fill="#fff" stroke="#000" stroke-width=".4" d="m512.3 206.7-23.5.4z" />
|
||||
<path stroke="#000" stroke-width=".4"
|
||||
d="M513.5 220c.4 0 .4 0 0 0H488c-.4 0-.4 0 0 0zm25.4 18v.4h-27.4c-.8 0-.8 0 0 0H539zm0-23.1c.8 0 .8.4 0 .4H511c-.4 0-.4-.4 0-.4h28.2zM513 255.6c.4 0 .4.4 0 .4h-25v-.4zm24.2 3.5c.4 0 .4 0 0 0h-21.9z" />
|
||||
<path fill="#ef072d" stroke="#000" stroke-width=".4"
|
||||
d="M557.3 263a11.7 11.7 0 0 0 0-5.5 4.3 4.3 0 0 1-2.4 0 11.7 11.7 0 0 0-1.2-.8 25 25 0 0 1-1.5 7.5c-1.2 0-4 0-5.1-.8l-1.2 3.9a13.7 13.7 0 0 0 5.9 0c0 2.3-.4 4.3-1.6 5.9 2 0 4 0 4.3-1.2 1.2-1.6 1.2-4 1.6-5.1l2-.4 1.9-.8 2.7-.4V263l.8-1.6-6.2 2z" />
|
||||
<path stroke="#000" stroke-width=".4"
|
||||
d="M460.3 130.8c-3.1 0-10.2 0-11.7.8-1.2.8-1.6 1.2.8 1.6 2.3.4 6.6 2 9 3.1 2.3 1.6 3.9 4 3.9 7.8a23.5 23.5 0 0 0 11.7 24.7c.4.4.8.7.4 2.3l-1.2 4.3c0 .8-.4 1.6.8 1.2a78.2 78.2 0 0 1-4 6.2c-6.2-.7-11.6 0-11.6 7 0 .9 0 1.6.7 0 1.2-1.5 2.4-3 5.1-3.8-1.5 2.7-2.3 5-2 6.6 0 1.2.8 2 1.6 0 .4-1.6 2-3.1 3.2-4.3.7-.4.7-.4.3.8a6 6 0 0 0 1.2 4.3c.8.8 1.2.4.8-.8 0-1.6 0-4.3 2-5 2.3-1.6 4.6-.9 5.4.7 1.2 2 2 0 .8-1.6-1.2-1.5-2.3-3.5-3.9-3.5l4-6.6c0-.8.7-1.2 1.5-.8 0 .4.8.4 1.1-.8l2.8-5.5 2.3-.7 4 5.8v2.4c0 1.5-1.6 5-2 6.2-4.7 0-7 0-8.6 2.8-.8 1.1.4 1.5 1.5 1.1a7.8 7.8 0 0 1 4-1.1c.7 0 1.1.7 0 1.1-2.8 1.2-4.7 3.2-4.7 5.9 0 .8.7 1.2 1.1 0a9 9 0 0 1 5.1-4c0 2 .4 5.2 2 6 1.1.7 1.1 0 .8-1.2-.8-2 0-4 1.1-5.1 2-2.3 6.7.8 7.9 1.6.7.7 1.5 1.1.7-1.2-.4-2.7-4.3-4-7.8-4.7l4.7-16.4c2 1.2 4-2 7-.8a83.4 83.4 0 0 1 14.9 8.6c1.6 1.2 2 .8 2.7 0 .8-.4 2 0 3.2 0 .7.4 1.5.8.4-1.6a28.1 28.2 0 0 0-9.4-10.1c3.1 0 7 0 7-.8s-4.7-2.4-6.6-2.4a12.9 12.9 0 0 0 6.2-3c.8-.9 0-1.3-3.1-1.3-8.2 0-12.5 0-16.8-2.3-7-4-11.4-8.6-14.9-10.2-1.5-1.1-2.7-3.5-3.9-5.4-2-6-2-9-7-11-5.1-2-11.8.4-14.5 3.1z" />
|
||||
<path fill="#fff" stroke="#000" stroke-width=".4"
|
||||
d="M460.7 132.4h-6.6s-.8 0 0 0l5.8 1.6c1.2 0 .8 1.1 0 .7-.8-.3-1.5 0-.8.8 4 2.8 4.7 4 4 14.5l1.9 1.6c.8 0 .4.7 0 .3-.4-.3-2 0-.8.8s2 .8.8.8-2.3.8 0 .4c2 0 3.1.8 0 1.2-2.3 0-1.6.8 0 .8 2.7 0 2 .7 1.2.7s-1.2.8.8.8h2.7c.4 0 .8 0 0 .4-.8 0-.8.8.4.8 1.2 0 2 0 .8.4-.4 0-1.2.4 0 .8 2.7 0 3 .7 2.3 1.1-.8.4-1.2.4 0 .4s2.4.4 1.2.8c-.8 0-1.2.8 0 .8s2 .8 1.2 1.2c-.8.4-1.2.8 0 .8 1.1 0 1.5.3.7.7-.7.8-1.1.8-2 0 0-.7-.7-.7-.7 0l-.8-1.1c-.4-1.2-1.2-1.2-1.2 0 0 1.1-.7.4-1.5 0a12.9 12.9 0 0 0 15.6 3c.4 0 .8 0 1.2 1.3l2.3 4.3c.4.7 1.2 0 1.2-.8l2.4-6.7c0-1.1 1.5-2 1.1 1.2 1.2-.8 5.9-1.2 9.8 0a47.7 47.7 0 0 1 10.6 5.9 2.3 2.3 0 0 0 2 .4c1 0 1.5 0-.5-2s-1.1-2.7 0-2c1.2.8 2 .4.8-.7l-3.9-3.5c-.4 0-.4-.8-2.3-.8h-6c-.7 0-1.5 0 .9.8 2.3.7 6.6 3.9 7.8 4.6 1.2.8 1.6 2.4-.4.8a102 102 0 0 0-14-7.8c-10.6 1.2-19.2 2.4-25.5-4.3-3.1-3.5-3.1-11 2-14-.8-.9-.8-1.6-.4-1.6v-2.4c-.8-.4-1.6-1.2-1.6-2-1.2 0-2-1.9-3.9-1.1-2 .8-2.3 0-3.1-.4-.4-.8-.8-.8-2-.8s-2 0-2-.8c0-.7.8-.7 2.4 0 2.7 1.2 5 2 7-.7 1.6-2.4-.7-4.3-3.9-5.1-3.5-.8-5.8 2-7.4 3.1z" />
|
||||
<path fill="#fff" stroke="#000" stroke-width=".4"
|
||||
d="M477.9 131.2a11 11 0 0 0-4-2.3c-1 0-1 .8-.7 1.2v2.3c.8.4 1.2 1.2 0 1.2-.8.8 0 3.5 1.2 2.7h.8s0 1.2.7 1.2c.8 0 0 .8 0 1.2h.8c.8 0 .4 1.5-.4 2 1.2 0 1.6 0 1.6.7.4.8 1.6 1.2 1.6 2.3 0 1.2 0 1.2-1.6.8-1.6-.4-1.6 0-2 .8-.3.8-.7 1.2 0 1.2.8 0 1.6.4.4.8-1.1.3-2.3 0-2.7 1.1 0 1.2 0 1.6.8 1.2l2.7-1.6 2 .4c.8.4 0 2-.8 1.2s-1.6 0-2 .4l-2 .8c-.7 0-1.5 0-1 2 0 5.4 4.2 9.3 12 9.3h13c-2.4-1.6-4-2.3-5.2-2.3H492c.4-.4 0-1.2-.4-1.2s-1.2-.8-2 0l-3.9 2c-.8 0-2 0-.8-.8l3.6-1.6c.7 0 .3-.8.3-.8s0-1.2 1.2-.8c2.4 1.6 5.9 3.6 7 3.6 1.2 0 1.6-.8.8-1.2-.7-.4-1.1-1.2-1.1-1.6 0-.4.4-.8 2 0 1.5 1.2 3.8 2 5 2.4 1.2.4 2 .4 0-.8l-9-6.7c-1.2-1.1-1.2 0-.8.8.4.8-1.1 1.2-2 .4-.7-.8-1.1-1.2 0-1.6 1.2-.3.9-.7-.3-2-1.6-1-2-1-1.6 0 .4 1.3.4 2-.8 1.7-1.1-.4-2.3-1.2-1.1-1.6.7-.8 2-1.2 0-2.4-2-1.1-.8 0-1.2.8-.4.8-1.6.8-2 0-.4-.8-1.1-1.1-.7-1.5.3-.4.3-.8 1.1 0 .8.7 1.6 0 .4-1.2-1.2-1.2-1.5-.8-1.2 0 .4.8-.7 1.6-2.3 0-.8-.4-.8-1.2 0-1.6.8 0 .8-.4 0-1.1-2.7-4.7-1.6-8.3-4.7-11.8z" />
|
||||
<path fill="#cf6200"
|
||||
d="M478 132c-.2.4-.3.3-.8.7-.5.4-.7 1.5.3 1.4a2 2 0 0 0 1.4-.8 8.7 8.7 0 0 0-.8-1.3zm-3-2.6c-.9.8-1 1.2-.6 1.2.5 0 .3 0 0 .6-.4.5.6.8 1 .3.5-.4.5-.5.7 0 .1.5 1 0 1.3-.3-.7-.7-1.7-1.3-2.5-1.8zm-1.5 4.4c-1 .5-.7 3.2.9 2.4.5-.2.9 0 .9.3v.7a4.7 4.7 0 0 0 1.7-1.2c.9-1.2 0-1-1.4-1s-1.7-.3-.4-1.1c1.2-.8.3-1.2-1.3-1 .2.3.1.6-.4.9zm5.9 6c-.8-.9-.3-1.2.5-1.7a1 1 0 0 0 .4-.3l-.7-2.6c-.3.2-.8 1.1-1 1.5-.2.7-.4 1.1-1 1-.7-.3-1.3.4-1.4 1.1h.5c.2.1.3.6.2 1 1.9 0 2.2 1.1 2.5 2 .4 1 .7.9 1 .3.3-.6-.3-1.5-1-2.3z" />
|
||||
<path fill="#ff0"
|
||||
d="M479.9 150.4c-.4.8-.4.7-1.5.7-1 .1-2.4.3-3 .9-.3.3-2.2.5-2.2 1.3 0 .9 0 1.5.8 1.6.8 0 1 .2.7.8-.4.6-.6 1.5.8 1.7 1.4 0 2.5-.3 2.8.4.4 1 0 2.1.3 2.7.2.5 1.2.7 2.7 1.2 1 .2 4.8.5 6 .3 1-.2.6-.8-.5-.8-1.2-.2-2-.4-2.3-1.2-.3-.9-.5-1.3.2-2 .6-.8 1.2-1.3.8-2.5-.3-1.1-1-2.5-2.3-2.9-1.3-.4-.9-2.3-2.3-2.4-.5 0-.8 0-1 .2z" />
|
||||
<path fill="#cf6200"
|
||||
d="M473.3 161.4c1.2.2 2.1.5 1.2.8-.9.3-1.5.8-.3.9 1.2 0 2.3.6 1.3.8-1 .3-1 1 .1 1s1.7.4.9 1c-.9.4-1.4.7-2-.1-.5-.9-.8-1-.9-.5-.2.6-.5.2-.9-.7-.3-.8-1.2-1.2-1-.5.3.7-.6.9-1.5.5a11 11 0 0 0 2.9 2.4c1.2-.4 2.6 0 3 0 .6 0 2.1.4 3 .9.9.4 1.5-.4 1.1-1.3-.4-1-.4-.7-.8 0-.6.4-.6-.3-.6-1.4 0-.8-.6-.7-.7-.1-.2.5-.7-.4-.5-.9.3-.5 0-.8-.4-.6-.5.2-.5 0-.6-1-.1-1.1-.5-1-.6-.5-.1.4-.6-.2-1.3-1-.5-.6-1-.2-2.1.1z" />
|
||||
<path fill="#ff0"
|
||||
d="M485.6 167.8c-5.5 2.2-9.5 1.2-12.5-.8 1.2-.4 2.6 0 3.1 0s2.1.4 2.9.9c.8.4 1.5-.4 1.1-1.3.7 1 1.3 1.6 2.2 1.5l3.2-.3zM473.8 142c-.4-1.2-.7-1.4-1.3-1.3-.6 0-.9-.1-1.6-.4-.6-.3-1.5 0-1.6 1.3-.2 1.3-1 1.8-2 2.6-1 .7-1.5 1.3-1.5 2.6 0 1.2-.3 1.4-1 2.4l-1.1 1.3 1.2.7c.8.4.5.9-.2.7-.7-.2-1.5.2-.2.4 1.2.3 1.7 1 .6 1-1.3-.3-2.6.8-.3.5 2.3-.2 3.1.9.5.9-2.7 0-1.7.9-.2.9 2.5 0 1.7.7 1 .7-.6 0-.9 1 .8.7l.6-1c.3-.8.5-3.1 1.5-3.8.9-.6 1.4-1.7 1.4-2.3 0-.6 1.5-3.7 2.3-4.4 1-.7 1.4-2.3 1-3.4z" />
|
||||
<path fill="#cf6200"
|
||||
d="M471.8 142.2c-.9-.7-1.9-.2-1.9 1 0 1-.6 1.5-1.4 2a3.5 3.5 0 0 0-1.8 2.3c0 1 .2 1.5-.4 2.3-.7.7-.8 1.3-.4 1.8.6.4.6.4.7 1 .3.6 1.4 0 1.4-.7s.3-.7 1-1.1c.8-.4 2-2.4 1.7-2.9-.2-.5-1-1 0-1.7 1-.8 1.8-1 1.8-1.6 0-.8.2-1 .5-1.3.3-.3-.6-.7-1.2-1z" />
|
||||
<path
|
||||
d="M471.8 141.2c-.6-.2-1 1.1-.1 1.3.9.2 1-.9 0-1.2zm-.1 1.7c-.7.1-1.5 1-.4 1 1.2-.2 1.6-1 .3-1zm-1.4 1.7c-.7.3-.5 1.3.5.6 1-.7 1.2-1.5-.5-.6zm-1 1.4c-.7.3-.7 1.3.4.6 1-.6 1.3-1.5-.4-.6z" />
|
||||
<path d="M467.9 146.7c-.7.3-.3 1.2.7.6s1-1.5-.7-.6zm.8.9c-.8.3-.3 1.2.7.6s1-1.5-.8-.6z" />
|
||||
<path d="M467.4 147.9c-.6.4-.2 1.2.9.6 1-.6.9-1.5-.9-.6zm.9 1c-.8.3-.4 1.2.7.6 1-.7 1-1.5-.8-.6z" />
|
||||
<path d="M467 149.5c-.6.3-.2 1.2.9.6 1-.6.8-1.5-.8-.6z" />
|
||||
<path d="M467 150.3c-.5.4-.1 1.4 1 .7 1-.7.8-1.5-1-.7z" />
|
||||
<path fill="#cf6200"
|
||||
d="M466.6 158.9c-.7 0-1.2 1.1-.3 1.3.9.2 1.1.3 1.1.9 0 .6.3 1.7 1.2 1.7 1 0 1.8-1 1-1.3-.9-.3-1.6-.6-1.7-1.4 0-.7-.8-1.2-1.3-1.2z" />
|
||||
<path fill="#ff0"
|
||||
d="m491.5 153 .5.6c.7.5 2 0 1.7-.5-.1-.4-.8-2 1-.8l9.2 6.5c1.9 1.4.6 1.6-.2 1.1l-5-2.3c-1.5-.9-1.7-.5-2-.3 0 .3 0 .9.6 1.4-.9.1-2.3 0-2.8-1-.5-1.2-1.7-2.6-2.6-3.7-.3-.4-.4-.7-.3-.9z" />
|
||||
<path fill="#00d860"
|
||||
d="M542 319.5c-1.3.9-3 2.4-1.9 4.5l.4-.1a124.1 124.1 0 0 0 12.9-19v-.6a17.9 17.9 0 0 1-4.5 2.7c.6 1.7-2.3 3.8-3.7 4.4.6 1 .4 2.6-1 2.9.3.8-.7.8-2 1.4-1.1.5-1.7.8-2.1 1.5.6-.4 1.6-.7 2-.5.4.2.6.9-.3 1.1-.8.3-1.4.7-1.8 1 1.3-.3 3.2-.2 2 .7z" />
|
||||
<path stroke="#000" stroke-width=".4"
|
||||
d="M481.8 151.2c-1.6-1.2-2-.4-1.6 0 .4.4 0 1.5-1.1 2h-4c-.7 0-1.9 1.5 0 1l6.3-1c.8 0 1.6-.9 0-2zm2.7 2.3c-1.1-1.2-1.5-.8-1.1 0 .4.8-.4 1.2-1.2 1.2l-5.5 1.5c-1.5 0-1.5 1.2.4 1.2 2 0 5.9-2 6.3-2 .4 0 .8-1.1 1.1-.7.4.4 1.2 0 0-1.2zm1.2 3.1-3.9 2c-1.2 0-2 1.2 0 1.2s4-2 4.7-2.4l1.6-.8s1.5-.4 0-1.5c-1.6-1.2-3.2 0-2.4.4.8.4 0 1.1 0 1.1z" />
|
||||
<path d="M469.7 131.2c-2.5-1.7-5.2 1.7-2.5 3.6 2.4 1.7 5-2 2.6-3.6z" />
|
||||
<path fill="#fff"
|
||||
d="M466.6 132.7h.7c0 .8.7 2 1.8 1.7-.9.7-2.6-.2-2.5-1.7zm9.6 37c.8.3 3.4.5 4.4.5l-1.2 2.2c-.3.7-.4.8-.5-.3 0-1-.6-1.7-1.1-.6l-1 2c-.3.4-.7.5-.6-.6.2-1.1.1-2.3 0-3.2z" />
|
||||
<path fill="none" stroke="#000" stroke-width="1.2"
|
||||
d="M574.5 199.7c0 63.7-10.2 132.5-93 165.3-82.6-32.8-92.7-101.6-93.1-165.3zm0 0c0-24.3-1.2-47.8-.8-68a248.7 248.7 0 0 0-92.3-16.9c-20.7 0-61.4 3.1-92.2 16.8.7 20.3-.8 43.8-.8 68z" />
|
||||
<path fill="#012169" d="M0 0h320v240H0Z" />
|
||||
<path fill="#fff"
|
||||
d="m37.5 0 122 90.5L281 0h39v31l-120 89.5 120 89V240h-40l-120-89.5L40.5 240H0v-30l119.5-89L0 32V0Z" />
|
||||
<path fill="#c8102e"
|
||||
d="M212 140.5 320 220v20l-135.5-99.5Zm-92 10 3 17.5-96 72H0ZM320 0v1.5l-124.5 94 1-22L295 0ZM0 0l119.5 88h-30L0 21Z" />
|
||||
<path fill="#fff" d="M120.5 0v240h80V0ZM0 80v80h320V80Z" />
|
||||
<path fill="#c8102e" d="M0 96.5v48h320v-48zM136.5 0v240h48V0Z" />
|
||||
</svg>
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 36 KiB |