eagler, polytrack, theme, quotes

This commit is contained in:
sky 2024-09-22 18:43:20 -04:00
parent 0efd123da5
commit 765c80bfab
84 changed files with 66663 additions and 44441 deletions

View File

@ -41,10 +41,17 @@ body[theme=custom] {
--textcolor: #fff;
--bg: #10002b;
}
body[theme=mainnew] {
--inputbg: #3c096c;
--inputborder: #5a189a;
--uibg: #240046bb;
--textcolor: #fff;
--bg: linear-gradient(0deg, rgba(36,0,70,1) 0%, rgba(60,9,108,1) 50%, rgba(36,0,70,1) 100%);
}
body[theme=main] {
--inputbg: #3c096c;
--inputborder: #5a189a;
--uibg: #240046;
--uibg: #240046bb;
--textcolor: #fff;
--bg: #10002b;
}

View File

@ -121,7 +121,6 @@
"Piplup so cool very cool",
"The 7576th piplup is really bad",
"The northernfish goes south",
"Fajr 5 heading to Tel Aviv.",
"Piplup7575 is the cool",
"Piplup is cool",
"uwu",
@ -193,9 +192,8 @@
"dont look behind you",
"sky",
"penguinify",
"a456ph",
"a456pur",
"selenite",
"yocorvettekid loves gay men",
"3kh0",
"selenite is the best",
"selenite is the best website",
@ -233,12 +231,6 @@
"laptops are better then iPads",
"Remember When The Platform Was Sliding Into The Fire Pit, And I Said 'Goodbye,' And You Were Like 'No Way!' And Then I Was All, 'We Pretended We Were Going To Murder You.' That Was Great.",
"How Are You Holding Up? Because Im A Potato.",
"Secret Theme: Open the console and run 'nebelung_the_hacker()'",
"benis",
"Pray to uncle benis",
"uncle benis",
"Would you like to know about uncle benis?",
"Uncle benis our lord and savoir",
"As resilient as the pirate bay",
"We are resilient",
"We will never go away",

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,13 +1,13 @@
<!DOCTYPE html>
<html>
<html style="width:100%;height:100%;background-color:black;">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
<meta name="description" content="Play minecraft 1.8 in your browser" />
<meta name="keywords" content="eaglercraft, eaglercraftx, minecraft, 1.8, 1.8.8" />
<title>EaglercraftX 1.8</title>
<meta property="og:locale" content="en-US" />
<script src="/js/all.min.js"></script>
<meta property="og:locale" content="en-US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="EaglercraftX 1.8" />
<meta property="og:description" content="Play minecraft 1.8 in your browser" />
@ -16,13 +16,14 @@
<script type="text/javascript" src="classes.js"></script>
<script type="text/javascript">
"use strict";
window.addEventListener("load", () => {
if(document.location.href.startsWith("file:")) {
window.addEventListener("load", function() {
if(window.location.href.indexOf("file:") === 0) {
alert("HTTP please, do not open this file locally, run a local HTTP server and load it via HTTP");
}else {
// %%%%%%%%% launch options %%%%%%%%%%%%
const relayId = Math.floor(Math.random() * 3);
var relayId = Math.floor(Math.random() * 3);
window.eaglercraftXOpts = {
demoMode: false,
container: "game_frame",
@ -43,8 +44,8 @@
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
var q = window.location.search;
if(typeof q === "string" && q.startsWith("?")) {
q = new URLSearchParams(q);
if((typeof q === "string") && q[0] === "?" && (typeof window.URLSearchParams !== "undefined")) {
q = new window.URLSearchParams(q);
var s = q.get("server");
if(s) window.eaglercraftXOpts.joinServer = s;
}
@ -55,6 +56,6 @@
});
</script>
</head>
<body style="margin:0px;width:100vw;height:100vh;overflow:hidden;" id="game_frame">
<body style="margin:0px;width:100%;height:100%;overflow:hidden;background-color:black;" id="game_frame">
</body>
</html>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="-4 -4 32 32"><path fill="#ffffff" d="M9 22l-10-10.598 2.798-2.859 7.149 7.473 13.144-14.016 2.909 2.806z"/></svg>

After

Width:  |  Height:  |  Size: 185 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" style="fill:#ffffff" width="24" height="24" viewBox="0 0 24 24"><path d="M12 21l-12-18h24z"/></svg>

After

Width:  |  Height:  |  Size: 139 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" style="fill:#ffffff" width="24" height="24" viewBox="0 0 24 24"><path d="M3 12l18-12v24z"/></svg>

After

Width:  |  Height:  |  Size: 137 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" style="fill:#ffffff" width="24" height="24" viewBox="0 0 24 24"><path d="M21 12l-18-12v24z"/></svg>

After

Width:  |  Height:  |  Size: 139 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" style="fill:#ffffff" width="24" height="24" viewBox="0 0 24 24"><path d="M12 3l12 18h-24z"/></svg>

After

Width:  |  Height:  |  Size: 138 B

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg4"
sodipodi:docname="back.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="42.791667"
inkscape:cx="11.065239"
inkscape:cy="11.988315"
inkscape:window-width="2560"
inkscape:window-height="1369"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
d="m 10.416748,4.083739 h 5.722665 L 10.586947,9.6251217 H 21.499513 V 14.374878 H 10.586947 l 5.552466,5.541383 H 10.416748 L 2.5004869,12 Z"
id="path2"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.791626" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="-4 -4 32 32"><path fill="#ffffff" d="M24 20.188l-8.315-8.209 8.2-8.282-3.697-3.697-8.212 8.318-8.31-8.203-3.666 3.666 8.321 8.24-8.206 8.313 3.666 3.666 8.237-8.318 8.285 8.203z"/></svg>

After

Width:  |  Height:  |  Size: 258 B

View File

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1024" height="1024" version="1.1" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
<desc>car.blend, (Blender 4.0.2)</desc>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024 -2e-3 1024" fill="#141414" fill-opacity=".25" stroke="#000"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024" fill="#141414" fill-opacity=".25" stroke="#000"/>
<g>
<path d="m259.51 81.711v145.52h70.268 70.268v-145.52h-70.268-70.268zm16.674 154.52 14.674 137.29h38.92 38.92l14.674-137.29h-53.594-53.594zm-16.674 150.88v257.82l8.623 63.094 22.672 137.54 15.475 47.842h23.498 23.498l15.473-47.842 22.676-137.54 8.6211-63.094v-257.82h-70.268-70.268z"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024" fill-opacity=".25" stroke="#000"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024" fill-opacity=".25" stroke="#000"/>
</g>
<g fill="#141414" fill-opacity=".25" stroke="#000">
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
</g>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024" fill-opacity=".25" stroke="#000"/>
<g fill="#141414" fill-opacity=".25" stroke="#000">
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
</g>
<g fill-opacity=".25" stroke="#000">
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024 -2e-3 1024" fill="#1a0000"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024 -2e-3 1024" fill="#141414"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024" fill="#141414"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
</g>
<g fill="#141414" fill-opacity=".25" stroke="#000">
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
</g>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024" fill-opacity=".25" stroke="#000"/>
<g fill="#141414" fill-opacity=".25" stroke="#000">
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024"/>
</g>
<polygon points="-2e-3 1024 -2e-3 1024 -2e-3 1024 -2e-3 1024" fill="#1a0000" fill-opacity=".25" stroke="#000"/>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m1.9682 23.819-1.8494-0.49555 5.9466-22.193 1.8494 0.49555zm21.944-15.317s-1.8533 0.92069-3.8257 0.39218c-3.107-0.83252-2.46-3.5284-6.0672-4.4949-1.9493-0.52231-4.011-0.10347-4.9591 0.35013l-2.9943 11.175c1.2978-0.46397 3.1712-0.81631 4.9688-0.33464 3.4066 0.9128 3.2023 3.5875 6.2381 4.401 1.9622 0.52578 3.6592-0.36642 3.6592-0.36642z" fill="#fff100" stroke-width=".95732"/>
</svg>

After

Width:  |  Height:  |  Size: 535 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg4"
sodipodi:docname="copy.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="42.791667"
inkscape:cx="11.439143"
inkscape:cy="11.988315"
inkscape:window-width="2560"
inkscape:window-height="1369"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
style="fill:#ffffff;stroke-width:0.752678"
d="M 21.032132,5.9785784 H 5.9785784 V 21.032132 H 21.032132 Z M 2.9678676,18.774099 V 2.9678676 H 18.774099 V 4.473223 H 4.473223 v 14.300876 z"
id="path2" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
viewBox="0 0 6.3499998 6.3499999"
version="1.1"
id="svg8"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="customize.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="31.678384"
inkscape:cx="18.989199"
inkscape:cy="13.296788"
inkscape:document-units="mm"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="px" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Layer 2"
transform="translate(-53.16327,-163.09031)"
style="display:inline">
<g
id="g872"
transform="matrix(0.04695923,0,0,0.0467179,52.314206,161.48311)">
<rect
y="122.35137"
x="24.190477"
height="12.567708"
width="24.072357"
id="rect827"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:10;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
y="118.76457"
x="128.67104"
height="12.567708"
width="24.072357"
id="rect827-6"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:10;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<path
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccc"
inkscape:connector-curvature="0"
id="path844"
d="m 20.938897,104.1713 h -2.296848 v 2.40751 h 2.3052 v 6.76526 h 5.220108 v 7.36547 h 6.468523 v -7.27604 h 2.303293 v 8.97693 h 2.385976 v -8.98874 h 10.370722 l 11.221167,11.62277 49.514882,2.83481 4.74832,-14.62295 26.46809,-4.04657 v 9.68852 h 2.23838 v -10.02261 l 2.05135,-0.30861 v 5.23261 h 6.45116 v -7.43801 l 1.52845,-0.55124 2.3e-4,-6.841554 -1.52845,-0.55124 v -7.438007 h -6.45116 v 5.232607 l -2.05135,-0.30861 V 85.880999 h -2.23838 v 9.688517 l -26.46809,-4.04657 -4.74832,-14.622944 -49.514867,2.834807 -11.22117,11.622767 H 37.325392 v -8.988737 h -2.385976 v 8.976927 H 32.636123 V 84.069729 H 26.1676 v 7.365467 h -5.220108 v 6.76526 h -2.3052 v 2.407514 h 2.296848 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<rect
transform="scale(1,-1)"
y="-82.427887"
x="24.155148"
height="12.567708"
width="24.072357"
id="rect827-9"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:10;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
<rect
transform="scale(1,-1)"
y="-86.014694"
x="128.63574"
height="12.567708"
width="24.072357"
id="rect827-6-8"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:10;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1 @@
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd"><path fill="#fff" d="M19 24h-14c-1.104 0-2-.896-2-2v-16h18v16c0 1.104-.896 2-2 2zm-7-10.414l3.293-3.293 1.414 1.414-3.293 3.293 3.293 3.293-1.414 1.414-3.293-3.293-3.293 3.293-1.414-1.414 3.293-3.293-3.293-3.293 1.414-1.414 3.293 3.293zm10-8.586h-20v-2h6v-1.5c0-.827.673-1.5 1.5-1.5h5c.825 0 1.5.671 1.5 1.5v1.5h6v2zm-8-3h-4v1h4v-1z"/></svg>

After

Width:  |  Height:  |  Size: 444 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 508.67 96.36"><defs><style>.cls-1{fill:#fff;}</style></defs><g id="图层_2" data-name="图层 2"><g id="Discord_Logos" data-name="Discord Logos"><g id="Discord_Logo_-_Large_-_White" data-name="Discord Logo - Large - White"><path class="cls-1" d="M170.85,20.2h27.3q9.87,0,16.7,3.08a22.5,22.5,0,0,1,10.21,8.58,23.34,23.34,0,0,1,3.4,12.56A23.24,23.24,0,0,1,224.93,57a23.94,23.94,0,0,1-10.79,8.92q-7.24,3.3-17.95,3.29H170.85Zm25.06,36.54q6.65,0,10.22-3.32a11.8,11.8,0,0,0,3.57-9.07,11.5,11.5,0,0,0-3.18-8.5q-3.2-3.18-9.63-3.19h-8.54V56.74Z"/><path class="cls-1" d="M269.34,69.13a37,37,0,0,1-10.22-4.27V53.24a27.77,27.77,0,0,0,9.2,4.38,39.31,39.31,0,0,0,11.17,1.71,8.71,8.71,0,0,0,3.82-.66c.86-.44,1.29-1,1.29-1.58a2.37,2.37,0,0,0-.7-1.75,6.15,6.15,0,0,0-2.73-1.19l-8.4-1.89q-7.22-1.68-10.25-4.65a10.39,10.39,0,0,1-3-7.81,10.37,10.37,0,0,1,2.66-7.07,17.13,17.13,0,0,1,7.56-4.65,36,36,0,0,1,11.48-1.65A43.27,43.27,0,0,1,292,27.69a30.25,30.25,0,0,1,8.12,3.22v11a30,30,0,0,0-7.6-3.11,34,34,0,0,0-8.85-1.16q-6.58,0-6.58,2.24a1.69,1.69,0,0,0,1,1.58,16.14,16.14,0,0,0,3.74,1.08l7,1.26Q295.65,45,299,48t3.36,8.78a11.61,11.61,0,0,1-5.57,10.12Q291.26,70.61,281,70.6A46.41,46.41,0,0,1,269.34,69.13Z"/><path class="cls-1" d="M318.9,67.66a21,21,0,0,1-9.07-8,21.59,21.59,0,0,1-3-11.34,20.62,20.62,0,0,1,3.15-11.27,21.16,21.16,0,0,1,9.24-7.8,34.25,34.25,0,0,1,14.56-2.84q10.5,0,17.43,4.41V43.65a21.84,21.84,0,0,0-5.7-2.73,22.65,22.65,0,0,0-7-1.05q-6.51,0-10.19,2.38a7.15,7.15,0,0,0-.1,12.43q3.57,2.41,10.36,2.41a23.91,23.91,0,0,0,6.9-1,25.71,25.71,0,0,0,5.84-2.49V66a34,34,0,0,1-17.85,4.62A32.93,32.93,0,0,1,318.9,67.66Z"/><path class="cls-1" d="M368.64,67.66a21.77,21.77,0,0,1-9.25-8,21.14,21.14,0,0,1-3.18-11.41A20.27,20.27,0,0,1,359.39,37a21.42,21.42,0,0,1,9.21-7.74,38.17,38.17,0,0,1,28.7,0,21.25,21.25,0,0,1,9.17,7.7,20.41,20.41,0,0,1,3.15,11.27,21.29,21.29,0,0,1-3.15,11.41,21.51,21.51,0,0,1-9.2,8,36.32,36.32,0,0,1-28.63,0Zm21.27-12.42a9.12,9.12,0,0,0,2.56-6.76,8.87,8.87,0,0,0-2.56-6.68,9.53,9.53,0,0,0-7-2.49,9.67,9.67,0,0,0-7,2.49,8.9,8.9,0,0,0-2.55,6.68,9.15,9.15,0,0,0,2.55,6.76,9.53,9.53,0,0,0,7,2.55A9.4,9.4,0,0,0,389.91,55.24Z"/><path class="cls-1" d="M451.69,29V44.14a12.47,12.47,0,0,0-6.93-1.75c-3.73,0-6.61,1.14-8.61,3.4s-3,5.77-3,10.53V69.2H416V28.25h16.8v13q1.4-7.14,4.52-10.53a10.38,10.38,0,0,1,8-3.4A11.71,11.71,0,0,1,451.69,29Z"/><path class="cls-1" d="M508.67,18.8V69.2H491.52V60a16.23,16.23,0,0,1-6.62,7.88A20.81,20.81,0,0,1,474,70.6a18.11,18.11,0,0,1-10.15-2.83A18.6,18.6,0,0,1,457.11,60a25.75,25.75,0,0,1-2.34-11.17,24.87,24.87,0,0,1,2.48-11.55,19.43,19.43,0,0,1,7.21-8,19.85,19.85,0,0,1,10.61-2.87q12.24,0,16.45,10.64V18.8ZM489,55a8.83,8.83,0,0,0,2.63-6.62A8.42,8.42,0,0,0,489,42a11,11,0,0,0-13.89,0,8.55,8.55,0,0,0-2.59,6.47A8.67,8.67,0,0,0,475.14,55,9.42,9.42,0,0,0,482,57.51,9.56,9.56,0,0,0,489,55Z"/><path class="cls-1" d="M107.7,8.07A105.15,105.15,0,0,0,81.47,0a72.06,72.06,0,0,0-3.36,6.83A97.68,97.68,0,0,0,49,6.83,72.37,72.37,0,0,0,45.64,0,105.89,105.89,0,0,0,19.39,8.09C2.79,32.65-1.71,56.6.54,80.21h0A105.73,105.73,0,0,0,32.71,96.36,77.7,77.7,0,0,0,39.6,85.25a68.42,68.42,0,0,1-10.85-5.18c.91-.66,1.8-1.34,2.66-2a75.57,75.57,0,0,0,64.32,0c.87.71,1.76,1.39,2.66,2a68.68,68.68,0,0,1-10.87,5.19,77,77,0,0,0,6.89,11.1A105.25,105.25,0,0,0,126.6,80.22h0C129.24,52.84,122.09,29.11,107.7,8.07ZM42.45,65.69C36.18,65.69,31,60,31,53s5-12.74,11.43-12.74S54,46,53.89,53,48.84,65.69,42.45,65.69Zm42.24,0C78.41,65.69,73.25,60,73.25,53s5-12.74,11.44-12.74S96.23,46,96.12,53,91.08,65.69,84.69,65.69Z"/><ellipse class="cls-1" cx="242.92" cy="24.93" rx="8.55" ry="7.68"/><path class="cls-1" d="M234.36,37.9a22.08,22.08,0,0,0,17.11,0V69.42H234.36Z"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
fill-rule="evenodd"
clip-rule="evenodd"
version="1.1"
id="svg827"
sodipodi:docname="editor.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata833">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs831" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1278"
inkscape:window-height="1368"
id="namedview829"
showgrid="false"
inkscape:zoom="17.353579"
inkscape:cx="11.673068"
inkscape:cy="6.9753212"
inkscape:window-x="-7"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="svg827" />
<path
d="M 11.201688,21.57975 H 6.4118125 V 8.0084375 h 4.7898755 z m 10.378062,0 h -8.781438 v -4.789875 h 3.19325 v -3.19325 H 21.57975 Z M 9.6050625,18.3865 8.0084375,19.184812 v 0.798313 l 1.596625,-0.798313 z m 6.3864995,1.596625 V 18.3865 h -1.596625 v 1.596625 z M 19.983125,18.3865 h -2.394938 v 1.596625 h 2.394938 z M 9.6050625,15.991562 8.0084375,16.789875 v 0.798312 l 1.596625,-0.798312 z M 19.983125,15.19325 h -2.394938 v 1.596625 h 2.394938 z M 9.6050625,13.596625 8.0084375,14.394937 v 0.798313 l 1.596625,-0.798313 z m 0,-2.394937 L 8.0084375,12 v 0.798312 L 9.6050625,12 Z M 11.201688,4.016875 h 7.983124 L 21.57975,6.4118125 V 7.210125 H 19.184812 V 9.6050625 H 21.57975 V 12 H 15.991562 V 9.6050625 H 18.3865 V 7.210125 H 5.6135 V 9.6050625 H 2.42025 V 4.016875 H 6.4118125 V 2.42025 H 11.201688 Z M 9.6050625,8.80675 8.0084375,9.6050625 v 0.7983125 l 1.596625,-0.7983125 z"
id="path825"
inkscape:connector-curvature="0"
style="fill:#ffffff;stroke-width:0.79831249" />
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
height="48"
viewBox="0 0 48 48"
version="1.1"
id="svg827"
sodipodi:docname="erase.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata833">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs831" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1278"
inkscape:window-height="1368"
id="namedview829"
showgrid="true"
showguides="true"
inkscape:zoom="11.637799"
inkscape:cx="23.849311"
inkscape:cy="22.626248"
inkscape:window-x="-7"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="svg827">
<inkscape:grid
type="xygrid"
id="grid4538" />
</sodipodi:namedview>
<path
d="m 36,32.188 -8.315,-8.209 8.2,-8.282 L 32.188,12 23.976,20.318 15.666,12.115 12,15.781 l 8.321,8.24 -8.206,8.313 3.666,3.666 8.237,-8.318 8.285,8.203 z"
id="path825"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
fill-rule="evenodd"
clip-rule="evenodd"
version="1.1"
id="svg4"
sodipodi:docname="export.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="15.129139"
inkscape:cx="-3.1396367"
inkscape:cy="4.1641498"
inkscape:window-width="2560"
inkscape:window-height="1369"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
style="fill:#ffffff;stroke-width:0.779675"
d="M 8.8813015,11.220325 H 4.2032538 v 7.796747 H 19.796746 V 11.220325 H 15.118698 V 9.6609762 h 6.237397 V 20.576421 H 2.6439046 V 9.6609762 H 8.8813015 Z M 8.1016269,8.1016269 12,3.4235792 15.898373,8.1016269 h -3.118698 v 8.5764211 h -1.55935 V 8.1016269 Z"
id="path2" />
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="32"
height="32"
viewBox="0 0 8.4666665 8.4666665"
version="1.1"
id="svg5"
xml:space="preserve"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
sodipodi:docname="helmet.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview7"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="10.35098"
inkscape:cx="24.200607"
inkscape:cy="44.488541"
inkscape:window-width="1278"
inkscape:window-height="1360"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="layer1" /><defs
id="defs2"><inkscape:path-effect
effect="bspline"
id="path-effect510"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" /><inkscape:path-effect
effect="bspline"
id="path-effect364"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" /><inkscape:path-effect
effect="bspline"
id="path-effect360"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" /><inkscape:path-effect
effect="bspline"
id="path-effect364-5"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" /><inkscape:path-effect
effect="bspline"
id="path-effect510-2"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" /><inkscape:path-effect
effect="bspline"
id="path-effect510-3"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" /></defs><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"><path
id="path358"
style="opacity:1;fill:#e3e3e3;stroke-width:4.99999"
d="m 4.0347104,0.47590316 c 0.5404961,-0.004509 1.0659773,0.078196 1.5373739,0.35139974 0.6285287,0.3642717 1.1606504,1.0674928 1.5270385,1.6298747 0.044501,0.068305 0.086765,0.1344162 0.1266073,0.1989543 -0.0044,0.00128 -0.0068,0.00177 -0.011369,0.0031 -0.1831859,0.053232 -0.5070271,0.1427722 -0.9585978,0.2087727 -0.4515708,0.066 -1.0308123,0.1082918 -1.4376384,0.1167888 -0.406826,0.0085 -0.6409344,-0.017145 -0.8092529,0 -0.1683186,0.017145 -0.2705703,0.0772 -0.3343465,0.173116 -0.063776,0.095917 -0.089312,0.2275352 0.010852,0.4532023 0.100165,0.2256672 0.3257905,0.5455863 0.5281332,0.7947836 0.2023427,0.2491971 0.3810685,0.4281292 0.6387207,0.5601725 0.2576521,0.1320433 0.5942789,0.2172158 1.1885579,0.298173 0.594279,0.080957 1.4465732,0.1572776 1.8748209,0.1808675 0.1482158,0.00816 0.2445523,0.00992 0.3085083,0.00723 0.052669,0.3401235 0.03962,0.540483 -0.064079,0.8454264 C 8.0492048,6.6236985 7.8361618,7.0711656 7.710455,7.3225137 7.5847482,7.5738618 7.5462888,7.629351 6.5280983,7.4992471 5.5099077,7.3691432 3.5122841,7.0538613 2.4110369,6.8600096 1.3097897,6.6661579 1.1050999,6.5938162 0.87728036,6.2083698 0.64946086,5.8229234 0.39796556,5.124048 0.30418876,4.5681599 0.21041186,4.0122717 0.21679926,3.6183486 0.22962276,3.3073055 0.24244626,2.9962625 0.26185576,2.7681379 0.42149426,2.3868977 0.58113266,2.0056574 0.93870806,1.4519347 1.4839617,1.0939533 2.0292154,0.73597191 2.7620305,0.57407875 3.4905576,0.50587549 3.6726893,0.48882467 3.8545451,0.47740619 4.0347104,0.47590316 Z"
sodipodi:nodetypes="sssccscsssssscccssssssssss" /><path
id="path362"
style="opacity:1;fill:#e3e3e3;stroke-width:4.41638"
d="m 7.3594984,2.7536206 c 0.01543,4.569e-4 0.031158,0.00327 0.050167,0.00885 0.038018,0.011167 0.087401,0.03358 0.081645,0.074759 -0.00576,0.041179 -0.066454,0.1005482 -0.2695266,0.165749 C 7.0187116,3.0681796 6.673623,3.139425 6.3586104,3.1879092 6.0435977,3.2363932 5.7589563,3.2626272 5.5957716,3.300048 5.4325869,3.337469 5.3906689,3.385911 5.3528043,3.5351459 c -0.037865,0.1492352 -0.071927,0.3988793 -0.047216,0.6133204 0.024711,0.2144408 0.1079764,0.3937188 0.1687001,0.514953 0.060724,0.1212342 0.09896,0.1846108 0.3796979,0.249853 0.2807381,0.065242 0.8045923,0.1324723 1.2049998,0.171651 0.4004077,0.039182 0.6773075,0.050212 0.8253021,0.052135 0.1479946,0.00193 0.167061,-0.00561 0.1805041,0.00934 0.013443,0.014956 0.020764,0.05235 0.022625,0.084104 0.00186,0.031756 -0.00162,0.058038 -0.3831408,0.03738 C 7.322751,5.2472314 6.5634405,5.1799229 6.0339985,5.1090266 5.5045565,5.0381303 5.2046166,4.9634962 4.9750741,4.8478613 4.7455317,4.7322264 4.5862851,4.575728 4.4060191,4.3575001 4.225753,4.1392723 4.0245662,3.8591705 3.9353313,3.6615512 3.8460961,3.463932 3.8686754,3.3486358 3.9254946,3.264639 3.9823136,3.180642 4.0735944,3.1281674 4.2235476,3.1131533 c 0.1499534,-0.015014 0.3585919,0.00744 0.7210326,0 0.3624407,-0.00744 0.8789312,-0.044995 1.2812346,-0.1027939 0.4023036,-0.057798 0.690629,-0.1358551 0.8538285,-0.1824713 0.1631996,-0.046617 0.2013377,-0.06183 0.2336224,-0.069349 0.016142,-0.00376 0.030803,-0.00538 0.046233,-0.00492 z M 4.6706272,3.3418574 A 0.29244444,0.29244444 0 0 0 4.3779843,3.6340084 0.29244444,0.29244444 0 0 0 4.6706272,3.9266512 0.29244444,0.29244444 0 0 0 4.9632701,3.6340084 0.29244444,0.29244444 0 0 0 4.6706272,3.3418574 Z" /><path
style="opacity:1;fill:#e3e3e3;stroke-width:4.99999"
d="M 7.5009128,3.0365141 8.0069985,5.0066334 H 7.320168 l -0.4518623,-1.7713 z"
id="path636" /><path
style="opacity:1;fill:#e3e3e3;stroke-width:4.99999"
d="m 6.6785235,3.2805198 -0.1355587,0.00904 0.3524525,1.699002 0.1717077,0.00904 z"
id="path638" /></g></svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 5.1237c4.3328 0 7.8578 3.525 7.8578 7.8578 0 4.3328-3.525 7.8578-7.8578 7.8578-4.3328 0-7.8578-3.525-7.8578-7.8578 0-4.3328 3.525-7.8578 7.8578-7.8578zm0-1.5716c-5.2074 0-9.4294 4.222-9.4294 9.4294 0 5.2074 4.222 9.4294 9.4294 9.4294 5.2074 0 9.4294-4.222 9.4294-9.4294 0-5.2074-4.222-9.4294-9.4294-9.4294zm0.98223 13.358c0 0.54219-0.43925 0.98223-0.98223 0.98223-0.5414 0-0.98223-0.44004-0.98223-0.98223s0.44082-0.98223 0.98223-0.98223c0.54298 0 0.98223 0.44004 0.98223 0.98223zm1.0946-7.8563c-0.47776-0.48404-1.1905-0.75042-2.0045-0.75042-1.713 0-2.821 1.218-2.821 3.1038h1.5802c0-1.1677 0.65142-1.5818 1.2085-1.5818 0.49819 0 1.027 0.33082 1.0718 0.96337 0.04872 0.66556-0.30646 1.0034-0.75592 1.4309-1.1095 1.0553-1.13 1.5661-1.1252 2.7251h1.5755c-0.01022-0.52176 0.02357-0.9453 0.73471-1.7114 0.53198-0.57362 1.1936-1.2871 1.207-2.3746 0.0086-0.72606-0.22316-1.3508-0.67106-1.8049z" fill="#fff" stroke-width=".78578"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="200"
height="200"
viewBox="0 0 52.916666 52.916666"
version="1.1"
id="svg5"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
sodipodi:docname="icon.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview7"
pagecolor="#000000"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="3.6596241"
inkscape:cx="122.00707"
inkscape:cy="60.661968"
inkscape:window-width="2560"
inkscape:window-height="1369"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g5117" /><defs
id="defs2" /><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"><g
aria-label="PolyTrack"
id="text382"
style="font-size:59.2131px;font-family:Impact;-inkscape-font-specification:Impact;fill:#28346a;stroke:#212b58;stroke-width:1.32292"><g
id="g5117"><rect
style="fill:#28346a;fill-opacity:1;stroke:none;stroke-width:5.13017"
id="rect302"
width="52.916668"
height="52.916668"
x="0"
y="0" /><path
id="path4993"
style="font-family:'FORCED SQUARE';-inkscape-font-specification:'FORCED SQUARE';fill:#b3c1ff;fill-opacity:1;stroke:#112052;stroke-width:0.939478;stroke-dasharray:none;stroke-opacity:1"
d="m 18.136096,15.178219 -3.97364,23.30498 h 4.087232 l 1.595482,-9.357691 h 16.666846 l 2.378159,-13.947289 z m 3.274425,4.768092 h 12.420656 l -0.782676,4.589598 H 20.627846 Z"
sodipodi:nodetypes="cccccccccccc" /></g></g></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
fill-rule="evenodd"
clip-rule="evenodd"
version="1.1"
id="svg4"
sodipodi:docname="import.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="42.791667"
inkscape:cx="11.439143"
inkscape:cy="11.988315"
inkscape:window-width="2560"
inkscape:window-height="1369"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
style="fill:#ffffff;stroke-width:0.781889"
d="M 8.872444,11.218111 H 4.18111 v 7.81889 h 15.63778 v -7.81889 H 15.127556 V 9.654333 h 6.255112 V 20.600779 H 2.617332 V 9.654333 h 6.255112 z m 3.909445,1.563778 h 3.127556 L 12,17.473223 8.090555,12.781889 h 3.127556 V 3.399221 h 1.563778 z"
id="path2" />
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg4"
sodipodi:docname="load.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="42.791667"
inkscape:cx="11.439143"
inkscape:cy="11.988315"
inkscape:window-width="2560"
inkscape:window-height="1369"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
style="fill:#ffffff;stroke-width:0.787342"
d="M 2.5518987,9.6379747 V 4.1265823 H 8.0632911 C 9.3978354,5.6556 9.9300785,6.4886076 11.212658,6.4886076 h 10.235443 v 3.1493671 z m 0,1.5746833 v 8.66076 H 21.448101 v -8.66076 z"
id="path2" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="1000"
height="200"
viewBox="0 0 264.58333 52.916666"
version="1.1"
id="svg5"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
sodipodi:docname="logo.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview7"
pagecolor="#000000"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="5.1754899"
inkscape:cx="794.51416"
inkscape:cy="44.923283"
inkscape:window-width="2544"
inkscape:window-height="1360"
inkscape:window-x="-7"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g5128" /><defs
id="defs2" /><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"><g
aria-label="PolyTrack"
id="text382"
style="font-size:59.2131px;font-family:Impact;-inkscape-font-specification:Impact;fill:#28346a;stroke:#212b58;stroke-width:1.32292"><g
id="g5117"><g
id="g5128"
transform="matrix(1,0,-0.19146517,1,7.8303099,0)"><rect
style="font-size:59.2131px;font-family:Impact;-inkscape-font-specification:Impact;fill:#112052;fill-opacity:1;stroke:none;stroke-width:0.37098;stroke-dasharray:none;stroke-opacity:1"
id="rect19982-1"
width="72.351089"
height="0.95230049"
x="143.26874"
y="3.2728517"
transform="matrix(1,0,0.18804934,0.98215958,0,0)" /><rect
style="font-size:59.2131px;font-family:Impact;-inkscape-font-specification:Impact;fill:#112052;fill-opacity:1;stroke:none;stroke-width:0.372483;stroke-dasharray:none;stroke-opacity:1"
id="rect19982-1-3"
width="72.938583"
height="0.95230049"
x="142.6154"
y="7.2492614"
transform="matrix(1,0,0.18804934,0.98215958,0,0)" /><g
id="g872"
transform="matrix(0.07480357,0,0.01424868,0.07441914,212.37131,-1.9847472)"
style="fill:#b3c1ff;fill-opacity:1"><rect
y="122.35137"
x="24.190477"
height="12.567708"
width="24.072357"
id="rect827"
style="opacity:1;fill:#b3c1ff;fill-opacity:1;stroke:none;stroke-width:10;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" /><rect
y="118.76457"
x="128.67104"
height="12.567708"
width="24.072357"
id="rect827-6"
style="opacity:1;fill:#b3c1ff;fill-opacity:1;stroke:none;stroke-width:10;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" /><path
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccc"
inkscape:connector-curvature="0"
id="path844"
d="m 20.938897,104.1713 h -2.296848 v 2.40751 h 2.3052 v 6.76526 h 5.220108 v 7.36547 h 6.468523 v -7.27604 h 2.303293 v 8.97693 h 2.385976 v -8.98874 h 10.370722 l 11.221167,11.62277 49.514882,2.83481 4.74832,-14.62295 26.46809,-4.04657 v 9.68852 h 2.23838 v -10.02261 l 2.05135,-0.30861 v 5.23261 h 6.45116 v -7.43801 l 1.52845,-0.55124 2.3e-4,-6.841554 -1.52845,-0.55124 v -7.438007 h -6.45116 v 5.232607 l -2.05135,-0.30861 V 85.880999 h -2.23838 v 9.688517 l -26.46809,-4.04657 -4.74832,-14.622944 -49.514867,2.834807 -11.22117,11.622767 H 37.325392 v -8.988737 h -2.385976 v 8.976927 H 32.636123 V 84.069729 H 26.1676 v 7.365467 h -5.220108 v 6.76526 h -2.3052 v 2.407514 h 2.296848 z"
style="fill:#b3c1ff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><rect
transform="scale(1,-1)"
y="-82.427887"
x="24.155148"
height="12.567708"
width="24.072357"
id="rect827-9"
style="opacity:1;fill:#b3c1ff;fill-opacity:1;stroke:none;stroke-width:10;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" /><rect
transform="scale(1,-1)"
y="-86.014694"
x="128.63574"
height="12.567708"
width="24.072357"
id="rect827-6-8"
style="opacity:1;fill:#b3c1ff;fill-opacity:1;stroke:none;stroke-width:10;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers" /></g><path
id="path4993"
style="font-family:'FORCED SQUARE';-inkscape-font-specification:'FORCED SQUARE';fill:#b3c1ff;fill-opacity:1;stroke:#112052;stroke-width:1.40413;stroke-dasharray:none;stroke-opacity:1"
d="m 231.16884,2.0294248 0.76921,36.6957412 h 6.10871 l -0.21614,-10.323001 h 3.73655 l 9.34969,10.323001 h 5.69358 l -0.0725,-3.463475 -9.41323,-10.522359 8.97783,-10.256161 -0.0725,-3.462894 h -5.45652 l -9.15458,10.32242 H 237.6824 L 237.27808,2.0294248 Z m -161.021639,0.06626 0.767922,36.6294832 h 6.108701 L 76.255902,2.0956888 Z M 1.6239476,3.8939758 2.3539792,38.725172 H 8.462681 L 8.169459,24.739338 H 33.079421 L 32.642612,3.8939758 Z m 111.5596424,0 0.14963,7.1263062 h 12.21741 l 0.5809,27.70489 h 6.34577 l -0.58039,-27.70489 h 12.2174 l -0.14912,-7.1263062 z m 30.93072,7.1263062 0.5804,27.70489 h 6.34628 L 150.60417,17.87981 h 6.76089 l 0.1441,6.859528 h 6.34575 l -0.28717,-13.719056 z m 56.10064,-0.266778 0.58451,27.904829 h 24.90995 l -0.14951,-7.125726 h -18.56369 l -0.28728,-13.719636 h 18.56369 l -0.14823,-7.059467 z m -31.07355,0.199939 0.13675,6.526489 h 18.56368 l 0.0948,4.528846 h -18.56367 l 0.34877,16.649555 h 24.90943 l -0.58034,-27.70489 z M 7.882283,11.02028 h 18.563684 l 0.143587,6.859528 H 8.025872 Z m 31.196202,0 0.580913,27.704889 H 64.568843 L 63.988446,11.020277 Z m 43.354597,0 0.580914,27.704889 h 16.013476 l -6.318516,6.992627 0.09345,4.462005 h 4.804356 L 107.68638,38.725169 107.10598,11.02028 h -6.10922 l 0.43681,20.84536 H 88.979109 L 88.542301,11.02028 Z M 45.568351,17.879808 H 57.785755 L 58.078977,31.86564 H 45.861574 Z M 175.83786,27.66983 h 12.2174 l 0.10032,4.795045 h -12.21744 z" /></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m9 22h-4v-20h4zm10-20h-4v20h4z" fill="#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 204 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#fff" d="M12 0c-4.198 0-8 3.403-8 7.602 0 6.243 6.377 6.903 8 16.398 1.623-9.495 8-10.155 8-16.398 0-4.199-3.801-7.602-8-7.602zm0 11c-1.657 0-3-1.343-3-3s1.342-3 3-3 3 1.343 3 3-1.343 3-3 3z"/></svg>

After

Width:  |  Height:  |  Size: 294 B

View File

@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg817"
sodipodi:docname="play.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata823">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs821" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1278"
inkscape:window-height="1368"
id="namedview819"
showgrid="false"
inkscape:zoom="17.353579"
inkscape:cx="10.463199"
inkscape:cy="11.48866"
inkscape:window-x="-7"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="svg817" />
<path
d="M 5,22 V 2 l 18,10 z"
id="path815"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path style="fill:#fff" d="M16 18c0 1.104-.896 2-2 2h-12c-1.105 0-2-.896-2-2v-12c0-1.104.895-2 2-2h12c1.104 0 2 .896 2 2v12zm8-14l-6 6.223v3.554l6 6.223v-16z"/></svg>

After

Width:  |  Height:  |  Size: 249 B

View File

@ -0,0 +1 @@
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd"><path fill="#ffffff" d="M20 23h2v1h-20v-1h2v-23h16v23zm-1-22h-14v22h14l-10-1.954v-18.015l10-2.031zm-7 11h-2v1h2v-1z"/></svg>

After

Width:  |  Height:  |  Size: 227 B

View File

@ -0,0 +1,122 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
clip-rule="evenodd"
fill-rule="evenodd"
stroke-linejoin="round"
stroke-miterlimit="2"
viewBox="0 0 24 24"
version="1.1"
id="svg4"
sodipodi:docname="random.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="42.791667"
inkscape:cx="8.2609542"
inkscape:cy="11.988315"
inkscape:window-width="2560"
inkscape:window-height="1369"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
d="m21 7.702-8.5 4.62v9.678c1.567-.865 6.379-3.517 7.977-4.399.323-.177.523-.519.523-.891zm-9.5 4.619-8.5-4.722v9.006c0 .37.197.708.514.887 1.59.898 6.416 3.623 7.986 4.508zm-8.079-5.629 8.579 4.763 8.672-4.713s-6.631-3.738-8.186-4.614c-.151-.085-.319-.128-.486-.128-.168 0-.335.043-.486.128-1.555.876-8.093 4.564-8.093 4.564z"
fill-rule="nonzero"
id="path2"
style="fill:#ffffff;fill-opacity:1" />
<circle
style="fill:#000000;fill-opacity:1;stroke-width:0.662607"
id="path2358"
cx="15.285538"
cy="13.60297"
r="0.75" />
<circle
style="fill:#000000;fill-opacity:1;stroke-width:0.662607"
id="path2358-3"
cx="18.975658"
cy="11.918208"
r="0.75" />
<circle
style="fill:#000000;fill-opacity:1;stroke-width:0.662607"
id="path2358-4"
cx="18.952288"
cy="16.334957"
r="0.75" />
<circle
style="fill:#000000;fill-opacity:1;stroke-width:0.662607"
id="path2358-9"
cx="15.330088"
cy="18.064264"
r="0.75" />
<circle
style="fill:#000000;fill-opacity:1;stroke-width:0.662607"
id="path2358-8"
cx="-8.9726162"
cy="13.404334"
r="0.75"
transform="scale(-1,1)" />
<circle
style="fill:#000000;fill-opacity:1;stroke-width:0.662607"
id="path2358-8-3"
cx="-12.035053"
cy="9.0438175"
r="0.75"
transform="scale(-1,1)" />
<circle
style="fill:#000000;fill-opacity:1;stroke-width:0.662607"
id="path2358-8-0"
cx="-12.058423"
cy="6.4031157"
r="0.75"
transform="scale(-1,1)" />
<circle
style="fill:#000000;fill-opacity:1;stroke-width:0.662607"
id="path2358-8-09"
cx="-12.081791"
cy="4.0895815"
r="0.75"
transform="scale(-1,1)" />
<circle
style="fill:#000000;fill-opacity:1;stroke-width:0.662607"
id="path2358-8-4"
cx="-6.9639726"
cy="14.769231"
r="0.75"
transform="scale(-1,1)" />
<circle
style="fill:#000000;fill-opacity:1;stroke-width:0.662607"
id="path2358-3-5"
cx="-5.282495"
cy="11.719572"
r="0.75"
transform="scale(-1,1)" />
<circle
style="fill:#000000;fill-opacity:1;stroke-width:0.662607"
id="path2358-4-6"
cx="-5.3058658"
cy="16.136322"
r="0.75"
transform="scale(-1,1)" />
<circle
style="fill:#000000;fill-opacity:1;stroke-width:0.662607"
id="path2358-9-8"
cx="-8.9280663"
cy="17.865629"
r="0.75"
transform="scale(-1,1)" />
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#fff" d="M13.5 2c-5.621 0-10.211 4.443-10.475 10h-3.025l5 6.625 5-6.625h-2.975c.257-3.351 3.06-6 6.475-6 3.584 0 6.5 2.916 6.5 6.5s-2.916 6.5-6.5 6.5c-1.863 0-3.542-.793-4.728-2.053l-2.427 3.216c1.877 1.754 4.389 2.837 7.155 2.837 5.79 0 10.5-4.71 10.5-10.5s-4.71-10.5-10.5-10.5z"/></svg>

After

Width:  |  Height:  |  Size: 383 B

View File

@ -0,0 +1 @@
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd"><path fill="#ffffff" d="M2.458 9.012c-.297.947-.458 1.955-.458 3 0 5.52 4.481 10 10 10 5.52 0 10-4.48 10-10 0-5.519-4.48-10-10-10-2.121 0-4.083.668-5.703 1.796l1.703 2.204h-6.58l1.935-6.012 1.718 2.223c1.958-1.389 4.346-2.211 6.927-2.211 6.623 0 12 5.377 12 12s-5.377 11.988-12 11.988-12-5.365-12-11.988c0-1.036.132-2.041.379-3h2.079zm10.35-3.012c.292.821.375 1.346 1.01 1.609.637.264 1.073-.052 1.854-.423l1.142 1.142c-.373.787-.687 1.218-.423 1.854.262.634.784.716 1.609 1.009v1.617c-.816.29-1.347.375-1.61 1.01-.264.636.052 1.071.424 1.853l-1.142 1.142c-.79-.375-1.219-.687-1.85-.424-.639.265-.723.793-1.014 1.611h-1.616c-.292-.821-.375-1.347-1.01-1.61-.637-.264-1.072.052-1.854.423l-1.142-1.142c.366-.771.689-1.212.423-1.854-.263-.635-.793-.719-1.609-1.009v-1.617c.817-.29 1.346-.373 1.609-1.009.264-.637-.051-1.07-.423-1.854l1.142-1.142c.788.374 1.218.687 1.854.423.635-.263.719-.792 1.01-1.609h1.616zm-.808 8c-1.105 0-2-.896-2-2 0-1.105.895-2.001 2-2.001 1.104 0 2 .896 2 2.001 0 1.104-.896 2-2 2z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#fff" d="M18.885 3.515c-4.617-4.618-12.056-4.676-16.756-.195l-2.129-2.258v7.938h7.484l-2.066-2.191c2.82-2.706 7.297-2.676 10.073.1 4.341 4.341 1.737 12.291-5.491 12.291v4.8c3.708 0 6.614-1.244 8.885-3.515 4.686-4.686 4.686-12.284 0-16.97z"/></svg>

After

Width:  |  Height:  |  Size: 342 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="-4 -4 32 32"><path fill="#ffffff" d="M14 3h2.997v5h-2.997v-5zm9 1v20h-22v-24h17.997l4.003 4zm-17 5h12v-7h-12v7zm14 4h-16v9h16v-9z"/></svg>

After

Width:  |  Height:  |  Size: 210 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#ffffff" d="M24 14v-4c-1.619 0-2.906.267-3.705-1.476-.697-1.663.604-2.596 1.604-3.596l-2.829-2.828c-1.033 1.033-1.908 2.307-3.666 1.575-1.674-.686-1.404-2.334-1.404-3.675h-4c0 1.312.278 2.985-1.404 3.675-1.761.733-2.646-.553-3.667-1.574l-2.829 2.828c1.033 1.033 2.308 1.909 1.575 3.667-.348.849-1.176 1.404-2.094 1.404h-1.581v4c1.471 0 2.973-.281 3.704 1.475.698 1.661-.604 2.596-1.604 3.596l2.829 2.829c1-1 1.943-2.282 3.667-1.575 1.673.687 1.404 2.332 1.404 3.675h4c0-1.244-.276-2.967 1.475-3.704 1.645-.692 2.586.595 3.596 1.604l2.828-2.829c-1-1-2.301-1.933-1.604-3.595l.03-.072c.687-1.673 2.332-1.404 3.675-1.404zm-12 2c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4z"/></svg>

After

Width:  |  Height:  |  Size: 785 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#f55" d="M16.971 0h-9.942l-7.029 7.029v9.941l7.029 7.03h9.941l7.03-7.029v-9.942l-7.029-7.029zm-1.402 16.945l-3.554-3.521-3.518 3.568-1.418-1.418 3.507-3.566-3.586-3.472 1.418-1.417 3.581 3.458 3.539-3.583 1.431 1.431-3.535 3.568 3.566 3.522-1.431 1.43z"/></svg>

After

Width:  |  Height:  |  Size: 356 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#ff5" d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm7 14h-8v-9h2v7h6v2z"/></svg>

After

Width:  |  Height:  |  Size: 208 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#5f5" d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm-1.25 16.518l-4.5-4.319 1.396-1.435 3.078 2.937 6.105-6.218 1.421 1.409-7.5 7.626z"/></svg>

After

Width:  |  Height:  |  Size: 271 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#ffffff" d="M21.739 10.921c-1.347-.39-1.885-.538-3.552-.921 0 0-2.379-2.359-2.832-2.816-.568-.572-1.043-1.184-2.949-1.184h-7.894c-.511 0-.736.547-.07 1-.742.602-1.619 1.38-2.258 2.027-1.435 1.455-2.184 2.385-2.184 4.255 0 1.76 1.042 3.718 3.174 3.718h.01c.413 1.162 1.512 2 2.816 2 1.304 0 2.403-.838 2.816-2h6.367c.413 1.162 1.512 2 2.816 2s2.403-.838 2.816-2h.685c1.994 0 2.5-1.776 2.5-3.165 0-2.041-1.123-2.584-2.261-2.914zm-15.739 6.279c-.662 0-1.2-.538-1.2-1.2s.538-1.2 1.2-1.2 1.2.538 1.2 1.2-.538 1.2-1.2 1.2zm3.576-6.2c-1.071 0-3.5-.106-5.219-.75.578-.75.998-1.222 1.27-1.536.318-.368.873-.714 1.561-.714h2.388v3zm1-3h1.835c.882 0 1.428.493 2.022 1.105.452.466 1.732 1.895 1.732 1.895h-5.588v-3zm7.424 9.2c-.662 0-1.2-.538-1.2-1.2s.538-1.2 1.2-1.2 1.2.538 1.2 1.2-.538 1.2-1.2 1.2z"/></svg>

After

Width:  |  Height:  |  Size: 893 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="#ffffff" d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm-1 17l-5-5.299 1.399-1.43 3.574 3.736 6.572-7.007 1.455 1.403-8 8.597z"/></svg>

After

Width:  |  Height:  |  Size: 262 B

View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>Polytrack</title>
<script src="/js/all.min.js"></script>
<link rel="manifest" href="manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<canvas id="screen"></canvas>
<div id="ui"></div>
<div id="transition-layer"></div>
<script type="module" src="main.bundle.js" defer></script>
</body>
</html>

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
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

View File

@ -0,0 +1 @@
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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
v3KAUJXYjtGIyA4pdXXuzjkUDEA2v63TvSIeQc8QiDIlMyQCCJjfAAJgEe74QEgESkSEp8vb2Fme0t7ZW2lbx2l9XP7cnuTfaXuKXucVu8oUtq4f8zhf7f90rMC9I0DQfXo7hODdKQmEd4pXpMhftY1XHk0VkYtFJal6pwM7TUQiuSpFJGRzWlFbsmsZkmYde3hx6S60w39qPCd84bLQzQHxOHx2zQLQBrEWjsPY1Ffg2WWTrDqCqelS1J7FlmpaoGoWoOoBoeQ7uiCeZ9AUPUHULUDUNUFkDanyF8emyuOHxC7a1YZO2xifw8mlzJtE5Ff1Eer4pe3WVx5SecUMncmxIZPjseeOpsFdJXzGzYE6dTeRd5MKfkZBaGKce1e9UfYJTU0Wbwi6SudmeI0DseCS1C9A0jQhqGtuUfJr7rR3Apl9d4bjE1iZm7gGg6g6hahagqhqgcQ3QGyNXdaFz0Hg6h6gahqhagqgcQvf0JksXvnIR8GiPIYjSMf9EzjS0EPE9Cff6bKWM71xdyHqeLBpWqItURa5WBLVu7gGviWQ6isvzU3VWeJq6PRVfIJeyNaFyDtANDdEaC6AWeh03FySOvlblsl6noXpRXN6mpnS5Yb0E0RoZoFIP0K0Js8JWtT4Bnwr2oVIPzzjueYvNaFproxKSPi0jIdLasRTIdCNmwKbRyDSlqJprW6vcUyUzkByeKaC6Az7A6eA2bbN2oJZe0y9MKIJOfcqXYU3Qk0ag0QKIxeyjZ5MySsySsySEywJjhTGDnMGOPMkH8Mal1wza4ZN2oVkupxKrxZWjzY5zUltnTw94f2jPvXunJTVQ1QNXSakqRDNWRjl3IFSVohCrowyZagOMD0hpHqDq9KK3nPPWDjVzY1MW1V0MvvYjiSfyU3PZPcH7h7YPcH7hI9JpZLRmbJycLRmbJyEpPPdjucC9PpzvdlqiwN3DJpWeWBbpbj6Hv4ldzSlhIRfbTvSzgf57LfOvifhyr4yfe3dxr6izfnmscLVzDlaO7fS9iwYO6zXBVD1A1C1B1DNAtDaE6mLlqvcsZoFIP66xe8sGesue4Le4f84zesP8s38kHEpfu6tkTjKem1MphUQh6vnR5XDnJNkByeSpWqntUPnJbasDiuZSDpgENOIW2SnlM9bhemVZbtgtWwWLYrFs1MeoZuJaGrOjvNjfNq7fMVR0mksH7npcWYL0fI9bka5mgWuFplbgEp3S39NaPdn2z9iR6rTvPywK7gagqhsQVQfqUdyuS01eLUvBfek0VxR1tjKeOuFIT1QNQjJf5i8S1MNA1D1B1C1AVDVB5geTp66xifXPW8c9nVkI15mxS34Qe9sENftC5u9fyyvfoO9KT1vqeSJbyRPMH9Od8ecPjWh8MvNdzd9c8GUHvgxRXPHdC3sn0xMnxuCdiz1VIP0RoJhcXS5feruy9yFSBJ7jNaCpToxEWZCv6I0EVGxI0LK9F0cXTe7KfNpIvm77ffBeqr9yA

View File

@ -0,0 +1 @@
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

View File

@ -0,0 +1 @@
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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -90,6 +90,7 @@
</div>
<div class="samerow themebtns">
<button onclick="setTheme('main')" style="background-color: #3c096c; color: #fff; border: 5px solid #5a189a">selenite</button>
<button onclick="setTheme('mainnew')" style="background-color: #3c096c; color: #fff; border: 5px solid #5a189a">selenite 2.0</button>
<button onclick="setTheme('light')" style="background-color: #bbbbbb; color: #1a1a1a; border: 5px solid #e6e6e6">light mode</button>
<button onclick="setTheme('dark')" style="background-color: #333333; color: #fff; border: 5px solid #444444">dark mode</button>
<button onclick="setTheme('egamepass')" style="background-color: #596eb1; color: #cbe0ff; border: 5px solid #5586e0">e-gamepass</button>