Обновлены иконки. Изменено поведение cl-update-checker

master-3.5 3.5.0_alpha11
parent bf5a86b512
commit 233832f043

@ -100,7 +100,6 @@ def main():
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
session_bus = dbus.SessionBus()
dbus_updater_hide_tray(session_bus)
app.setQuitOnLastWindowClosed(False)

@ -29,6 +29,12 @@ from calculate.consolegui.application.dbus_service import (DBUS_NAME,
DBUS_METHOD_APP, DBUS_MAINAPP, DBUS_APP_UPDATER, DBUS_NAME_UPDATER)
from calculate.update.update_info import UpdateInfo
import sys
from calculate.lib.cl_lang import setLocalTranslate, getLazyLocalTranslate, _
setLocalTranslate('cl_consolegui3', sys.modules[__name__])
__ = getLazyLocalTranslate(_)
GUI_UPDATE_APP = DBUS_METHOD_APP % "update"
@ -52,16 +58,19 @@ def check_livecd_and_autocheck():
dv.close()
class SysTray(QtGui.QSystemTrayIcon):
ICON = "/usr/share/pixmaps/calculate-console-update.png"
ICON = "/usr/share/pixmaps/calculate-console-update.svg"
ICON_NO_UPDATE = "/usr/share/pixmaps/calculate-console-update-no.svg"
def __init__(self, parent):
super(SysTray, self).__init__()
self.parent = parent
self.timeout = 0
self.setIcon(QtGui.QIcon(self.ICON))
self.activated.connect(self.systrayActivate)
self.icon_on = QtGui.QIcon(self.ICON)
self.icon_off = QtGui.QIcon(self.ICON_NO_UPDATE)
self.show()
self.update(has_updates=False)
def run_cl_gui_update(self):
cmd = '/usr/bin/cl-console-gui'
@ -72,11 +81,11 @@ class SysTray(QtGui.QSystemTrayIcon):
def show_update(self):
try:
iface = self.parent.get_dbus_iface(GUI_UPDATE_APP)
iface = self.parent.get_dbus_iface(DBUS_MAINAPP)
if iface:
iface.show()
iface.update()
return True
except dbus.DBusException:
except dbus.DBusException as e:
return False
return False
@ -86,6 +95,16 @@ class SysTray(QtGui.QSystemTrayIcon):
self.show_update() or self.run_cl_gui_update()
self.parent.step()
def update(self, has_updates=False):
if has_updates:
self.show()
self.setIcon(self.icon_on)
self.setToolTip(_("Updates are available"))
else:
self.setIcon(self.icon_off)
self.setToolTip(_("No updates"))
self.hide()
class DBusChecker(dbus.service.Object):
def __init__(self, name, session, parent):
@ -97,6 +116,7 @@ class DBusChecker(dbus.service.Object):
def hide_systray(self):
self.parent.systray.hide()
@dbus.service.method(DBUS_NAME_UPDATER, in_signature='', out_signature='')
def show_systray(self):
self.parent.systray.show()
@ -121,9 +141,9 @@ class CheckThread(QtGui.QMainWindow, UpdateInfo):
UpdateInfo.__init__(self)
self.bus = bus
self.already_timer = QtCore.QTimer(self)
self.already_timer.timeout.connect(self.step_already)
self.already_timer.start(1000)
#self.already_timer = QtCore.QTimer(self)
#self.already_timer.timeout.connect(self.step)
#self.already_timer.start(1000)
self.check_timer = QtCore.QTimer(self)
self.check_timer.timeout.connect(self.step)
@ -132,6 +152,7 @@ class CheckThread(QtGui.QMainWindow, UpdateInfo):
self.systray = SysTray(self)
self.gui_runned = False
self.step()
self.systray.update(has_updates=False)
def get_dbus_iface(self, app_name):
try:
@ -156,21 +177,11 @@ class CheckThread(QtGui.QMainWindow, UpdateInfo):
def is_gui_update_run(self):
return self.ping_app(GUI_UPDATE_APP)
def step_already(self):
now_gui_runned = self.is_gui_update_run()
if (self.is_console_gui_run() or
(not now_gui_runned and
(self.update_already_run() or self.gui_runned))):
self.systray.hide()
self.gui_runned = now_gui_runned
def step(self):
if not self.is_console_gui_run():
if (self.need_update() and not self.update_already_run() or
self.is_gui_update_run()):
self.systray.show()
return
self.systray.hide()
if self.need_update():
self.systray.update(has_updates=True)
return
self.systray.update(has_updates=False)
if __name__ == '__main__':
import sys

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

@ -0,0 +1,186 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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"
height="64"
viewBox="0 0 64 64"
width="64"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="calculate-console-update-check.svg">
<metadata
id="metadata28">
<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="defs26">
<linearGradient
id="linearGradient4296"
osb:paint="solid">
<stop
style="stop-color:#00ff00;stop-opacity:1;"
offset="0"
id="stop4298" />
</linearGradient>
<linearGradient
id="linearGradient4290"
osb:paint="solid">
<stop
style="stop-color:#00ff00;stop-opacity:1;"
offset="0"
id="stop4292" />
</linearGradient>
<linearGradient
id="linearGradient4284"
osb:paint="solid">
<stop
style="stop-color:#00ff00;stop-opacity:1;"
offset="0"
id="stop4286" />
</linearGradient>
<linearGradient
id="linearGradient4278"
osb:paint="solid">
<stop
style="stop-color:#00ff00;stop-opacity:1;"
offset="0"
id="stop4280" />
</linearGradient>
<linearGradient
id="linearGradient4272"
osb:paint="solid">
<stop
style="stop-color:#00ff00;stop-opacity:1;"
offset="0"
id="stop4274" />
</linearGradient>
<linearGradient
id="linearGradient4266"
osb:paint="solid">
<stop
style="stop-color:#00ff00;stop-opacity:1;"
offset="0"
id="stop4268" />
</linearGradient>
<linearGradient
id="linearGradient4260"
osb:paint="solid">
<stop
style="stop-color:#00ff00;stop-opacity:1;"
offset="0"
id="stop4262" />
</linearGradient>
<linearGradient
id="linearGradient4215"
osb:paint="solid">
<stop
style="stop-color:#00ff00;stop-opacity:1;"
offset="0"
id="stop4217" />
</linearGradient>
<linearGradient
id="linearGradient4156"
osb:paint="solid">
<stop
style="stop-color:#4d4d4d;stop-opacity:1;"
offset="0"
id="stop4158" />
</linearGradient>
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter4172"
x="-0.013516133"
width="1.0270323"
y="-0.010789697"
height="1.0215794">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.23894927"
id="feGaussianBlur4174" />
</filter>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1332"
inkscape:window-height="748"
id="namedview24"
showgrid="false"
inkscape:zoom="3.6875"
inkscape:cx="25.335908"
inkscape:cy="32"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<g
id="g4302">
<path
d="m 31.964334,10.139829 c -11.697971,0 -21.214583,8.811436 -21.214583,19.642592 0,8.217537 5.479602,15.49685 13.727083,18.371601 l 0,10.514564 c 0,0.638962 0.557819,1.155447 1.247916,1.155447 l 1.247917,0 0,2.310893 c 0,0.638962 0.557819,1.155447 1.247917,1.155447 l 7.487499,0 c 0.690098,0 1.247917,-0.516485 1.247917,-1.155447 l 0,-2.310893 1.247916,0 c 0.690098,0 1.247917,-0.516485 1.247917,-1.155447 l 0,-10.514564 c 8.247481,-2.874751 13.727083,-10.154064 13.727083,-18.371601 0,-10.831156 -9.516612,-19.642592 -21.214582,-19.642592 z m 3.743749,47.373311 c -0.690098,0 -1.247916,0.516484 -1.247916,1.155446 l 0,2.310894 -4.991667,0 0,-2.310894 c 0,-0.638962 -0.557818,-1.155446 -1.247916,-1.155446 l -1.247917,0 0,-5.777233 9.983333,0 0,5.777233 z M 37.814567,46.238292 C 37.301673,46.394277 36.956,46.837969 36.956,47.335966 l 0,2.089048 -9.983333,0 0,-2.089048 c 0,-0.499153 -0.345673,-0.941689 -0.858567,-1.097674 -7.695901,-2.343246 -12.868515,-8.957022 -12.868515,-16.455871 0,-9.556698 8.39723,-17.331699 18.718749,-17.331699 10.321518,0 18.718748,7.775001 18.718748,17.331699 0,7.498849 -5.172614,14.112625 -12.868515,16.455871 z"
id="path6"
style="fill:#666666;stroke:#999999;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4172)"
inkscape:connector-curvature="0" />
<path
d="m 31.964334,7.828936 c 0.690097,0 1.247916,-0.5164847 1.247916,-1.1554466 l 0,-4.6217864 c 0,-0.638962 -0.557819,-1.15544663 -1.247916,-1.15544663 -0.690098,0 -1.247917,0.51648463 -1.247917,1.15544663 l 0,4.6217864 c 0,0.6389619 0.557819,1.1554466 1.247917,1.1554466 z"
id="path8"
style="fill:#666666;stroke:#999999;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m 61.914332,28.626975 -4.991667,0 c -0.690097,0 -1.247916,0.516484 -1.247916,1.155446 0,0.638962 0.557819,1.155447 1.247916,1.155447 l 4.991667,0 c 0.690098,0 1.247916,-0.516485 1.247916,-1.155447 0,-0.638962 -0.557818,-1.155446 -1.247916,-1.155446 z"
id="path10"
style="fill:#666666;stroke:#999999;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m 7.0060015,28.626975 -4.9916664,0 c -0.6900979,0 -1.2479166,0.516484 -1.2479166,1.155446 0,0.638962 0.5578187,1.155447 1.2479166,1.155447 l 4.9916664,0 c 0.6900979,0 1.2479166,-0.516485 1.2479166,-1.155447 0,-0.638962 -0.5578187,-1.155446 -1.2479166,-1.155446 z"
id="path12"
style="fill:#666666;stroke:#999999;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m 52.260449,9.3564364 -3.529108,3.2676026 c -0.487935,0.45178 -0.487935,1.182022 0,1.633802 0.243344,0.225312 0.56281,0.338546 0.882277,0.338546 0.319467,0 0.638933,-0.113234 0.882277,-0.338546 l 3.529108,-3.267603 c 0.487936,-0.45178 0.487936,-1.182022 0,-1.6338016 -0.487935,-0.4517796 -1.277866,-0.4506242 -1.764554,0 z"
id="path14"
style="fill:#666666;stroke:#999999;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m 13.432772,45.307002 -3.5291082,3.267603 c -0.4879353,0.451779 -0.4879353,1.182022 0,1.633801 0.2433442,0.225312 0.5628102,0.338546 0.8822772,0.338546 0.319467,0 0.638933,-0.113234 0.882277,-0.338546 l 3.529108,-3.267603 c 0.487935,-0.451779 0.487935,-1.182021 0,-1.633801 -0.487935,-0.45178 -1.276619,-0.45178 -1.764554,0 z"
id="path16"
style="fill:#666666;stroke:#999999;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m 50.495895,45.307002 c -0.487935,-0.45178 -1.276619,-0.45178 -1.764554,0 -0.487935,0.45178 -0.487935,1.182022 0,1.633801 l 3.529108,3.267603 c 0.243344,0.225312 0.56281,0.338546 0.882277,0.338546 0.319467,0 0.638933,-0.113234 0.882277,-0.338546 0.487936,-0.451779 0.487936,-1.182022 0,-1.633801 z"
id="path18"
style="fill:#666666;stroke:#999999;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m 13.432772,14.257841 c 0.243344,0.225312 0.56281,0.338546 0.882277,0.338546 0.319467,0 0.638933,-0.113234 0.882277,-0.338546 0.487935,-0.45178 0.487935,-1.182022 0,-1.633802 L 11.668218,9.3564364 c -0.487935,-0.4517796 -1.276619,-0.4517796 -1.7645542,0 -0.4879353,0.4517796 -0.4879353,1.1820216 0,1.6338016 z"
id="path20"
style="fill:#666666;stroke:#999999;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m 31.964334,15.917062 c -8.257465,0 -14.975,6.219769 -14.975,13.865359 0,0.638962 0.557819,1.155447 1.247917,1.155447 0.690098,0 1.247916,-0.516485 1.247916,-1.155447 0,-6.371132 5.598154,-11.554466 12.479167,-11.554466 0.690097,0 1.247916,-0.516484 1.247916,-1.155446 0,-0.638962 -0.557819,-1.155447 -1.247916,-1.155447 z"
id="path22"
style="fill:#666666;stroke:#999999;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.0 KiB

@ -15,7 +15,7 @@
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="calculate-update-console.svg">
sodipodi:docname="calculate-console-update-up.svg">
<metadata
id="metadata28">
<rdf:RDF>
@ -41,12 +41,26 @@
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4156"
id="linearGradient4160"
id="linearGradient4145"
gradientUnits="userSpaceOnUse"
x1="2"
y1="27"
x2="52"
y2="27"
gradientUnits="userSpaceOnUse" />
gradientTransform="matrix(1.2479166,0,0,1.1554466,-1.7294147,0.89625637)" />
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter4172"
x="-0.013516133"
width="1.0270323"
y="-0.010789697"
height="1.0215794">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.23894927"
id="feGaussianBlur4174" />
</filter>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
@ -62,52 +76,58 @@
id="namedview24"
showgrid="false"
inkscape:zoom="3.6875"
inkscape:cx="-3.5254237"
inkscape:cx="25.335908"
inkscape:cy="32"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<g
fill="#4d4d4d"
transform="matrix(1.2690909 0 0 1.1750842 -2.4443613 .45454515)"
id="g4"
style="stroke:url(#linearGradient4160);stroke-width:1.22831682;stroke-miterlimit:4;stroke-dasharray:none;fill:#4d4d4d">
id="g4176">
<path
d="m27 8c-9.374 0-17 7.626-17 17 0 7.112 4.391 13.412 11 15.9v9.1c0 .553.447 1 1 1h1v2c0 .553.447 1 1 1h6c .553 0 1-.447 1-1v-2h1c .553 0 1-.447 1-1v-9.1c6.609-2.488 11-8.788 11-15.9 0-9.374-7.626-17-17-17zm3 41c-.553 0-1 .447-1 1v2h-4v-2c0-.553-.447-1-1-1h-1v-5h8v5zm1.688-9.758c-.411.135-.688.519-.688.95v1.808h-8v-1.808c0-.432-.277-.815-.688-.95-6.167-2.028-10.312-7.752-10.312-14.242 0-8.271 6.729-15 15-15 8.271 0 15 6.729 15 15 0 6.49-4.145 12.214-10.312 14.242z"
d="m 31.964334,10.139829 c -11.697971,0 -21.214583,8.811436 -21.214583,19.642592 0,8.217537 5.479602,15.49685 13.727083,18.371601 l 0,10.514564 c 0,0.638962 0.557819,1.155447 1.247916,1.155447 l 1.247917,0 0,2.310893 c 0,0.638962 0.557819,1.155447 1.247917,1.155447 l 7.487499,0 c 0.690098,0 1.247917,-0.516485 1.247917,-1.155447 l 0,-2.310893 1.247916,0 c 0.690098,0 1.247917,-0.516485 1.247917,-1.155447 l 0,-10.514564 c 8.247481,-2.874751 13.727083,-10.154064 13.727083,-18.371601 0,-10.831156 -9.516612,-19.642592 -21.214582,-19.642592 z m 3.743749,47.373311 c -0.690098,0 -1.247916,0.516484 -1.247916,1.155446 l 0,2.310894 -4.991667,0 0,-2.310894 c 0,-0.638962 -0.557818,-1.155446 -1.247916,-1.155446 l -1.247917,0 0,-5.777233 9.983333,0 0,5.777233 z M 37.814567,46.238292 C 37.301673,46.394277 36.956,46.837969 36.956,47.335966 l 0,2.089048 -9.983333,0 0,-2.089048 c 0,-0.499153 -0.345673,-0.941689 -0.858567,-1.097674 -7.695901,-2.343246 -12.868515,-8.957022 -12.868515,-16.455871 0,-9.556698 8.39723,-17.331699 18.718749,-17.331699 10.321518,0 18.718748,7.775001 18.718748,17.331699 0,7.498849 -5.172614,14.112625 -12.868515,16.455871 z"
id="path6"
style="stroke:url(#linearGradient4160);stroke-width:1.22831682;stroke-miterlimit:4;stroke-dasharray:none;fill:#4d4d4d" />
style="fill:#ff6600;stroke:url(#linearGradient4145);stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter4172)"
inkscape:connector-curvature="0" />
<path
d="m27 6c .553 0 1-.447 1-1v-4c0-.553-.447-1-1-1-.553 0-1 .447-1 1v4c0 .553.447 1 1 1z"
d="m 31.964334,7.828936 c 0.690097,0 1.247916,-0.5164847 1.247916,-1.1554466 l 0,-4.6217864 c 0,-0.638962 -0.557819,-1.15544663 -1.247916,-1.15544663 -0.690098,0 -1.247917,0.51648463 -1.247917,1.15544663 l 0,4.6217864 c 0,0.6389619 0.557819,1.1554466 1.247917,1.1554466 z"
id="path8"
style="stroke:url(#linearGradient4160);stroke-width:1.22831682;stroke-miterlimit:4;stroke-dasharray:none;fill:#4d4d4d" />
style="fill:#ff6600;stroke:#ff6600;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m51 24h-4c-.553 0-1 .447-1 1 0 .553.447 1 1 1h4c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"
d="m 61.914332,28.626975 -4.991667,0 c -0.690097,0 -1.247916,0.516484 -1.247916,1.155446 0,0.638962 0.557819,1.155447 1.247916,1.155447 l 4.991667,0 c 0.690098,0 1.247916,-0.516485 1.247916,-1.155447 0,-0.638962 -0.557818,-1.155446 -1.247916,-1.155446 z"
id="path10"
style="stroke:url(#linearGradient4160);stroke-width:1.22831682;stroke-miterlimit:4;stroke-dasharray:none;fill:#4d4d4d" />
style="fill:#ff6600;stroke:#ff6600;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m7 24h-4c-.553 0-1 .447-1 1 0 .553.447 1 1 1h4c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"
d="m 7.0060015,28.626975 -4.9916664,0 c -0.6900979,0 -1.2479166,0.516484 -1.2479166,1.155446 0,0.638962 0.5578187,1.155447 1.2479166,1.155447 l 4.9916664,0 c 0.6900979,0 1.2479166,-0.516485 1.2479166,-1.155447 0,-0.638962 -0.5578187,-1.155446 -1.2479166,-1.155446 z"
id="path12"
style="stroke:url(#linearGradient4160);stroke-width:1.22831682;stroke-miterlimit:4;stroke-dasharray:none;fill:#4d4d4d" />
style="fill:#ff6600;stroke:#ff6600;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m43.264 7.322l-2.828 2.828c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.828-2.828c.391-.391.391-1.023 0-1.414-.391-.391-1.024-.39-1.414 0z"
d="m 52.260449,9.3564364 -3.529108,3.2676026 c -0.487935,0.45178 -0.487935,1.182022 0,1.633802 0.243344,0.225312 0.56281,0.338546 0.882277,0.338546 0.319467,0 0.638933,-0.113234 0.882277,-0.338546 l 3.529108,-3.267603 c 0.487936,-0.45178 0.487936,-1.182022 0,-1.6338016 -0.487935,-0.4517796 -1.277866,-0.4506242 -1.764554,0 z"
id="path14"
style="stroke:url(#linearGradient4160);stroke-width:1.22831682;stroke-miterlimit:4;stroke-dasharray:none;fill:#4d4d4d" />
style="fill:#ff6600;stroke:#ff6600;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m12.15 38.436l-2.828 2.828c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.828-2.828c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0z"
d="m 13.432772,45.307002 -3.5291082,3.267603 c -0.4879353,0.451779 -0.4879353,1.182022 0,1.633801 0.2433442,0.225312 0.5628102,0.338546 0.8822772,0.338546 0.319467,0 0.638933,-0.113234 0.882277,-0.338546 l 3.529108,-3.267603 c 0.487935,-0.451779 0.487935,-1.182021 0,-1.633801 -0.487935,-0.45178 -1.276619,-0.45178 -1.764554,0 z"
id="path16"
style="stroke:url(#linearGradient4160);stroke-width:1.22831682;stroke-miterlimit:4;stroke-dasharray:none;fill:#4d4d4d" />
style="fill:#ff6600;stroke:#ff6600;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m41.85 38.436c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2.828 2.828c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414z"
d="m 50.495895,45.307002 c -0.487935,-0.45178 -1.276619,-0.45178 -1.764554,0 -0.487935,0.45178 -0.487935,1.182022 0,1.633801 l 3.529108,3.267603 c 0.243344,0.225312 0.56281,0.338546 0.882277,0.338546 0.319467,0 0.638933,-0.113234 0.882277,-0.338546 0.487936,-0.451779 0.487936,-1.182022 0,-1.633801 z"
id="path18"
style="stroke:url(#linearGradient4160);stroke-width:1.22831682;stroke-miterlimit:4;stroke-dasharray:none;fill:#4d4d4d" />
style="fill:#ff6600;stroke:#ff6600;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m12.15 11.564c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-2.828-2.828c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414z"
d="m 13.432772,14.257841 c 0.243344,0.225312 0.56281,0.338546 0.882277,0.338546 0.319467,0 0.638933,-0.113234 0.882277,-0.338546 0.487935,-0.45178 0.487935,-1.182022 0,-1.633802 L 11.668218,9.3564364 c -0.487935,-0.4517796 -1.276619,-0.4517796 -1.7645542,0 -0.4879353,0.4517796 -0.4879353,1.1820216 0,1.6338016 z"
id="path20"
style="stroke:url(#linearGradient4160);stroke-width:1.22831682;stroke-miterlimit:4;stroke-dasharray:none;fill:#4d4d4d" />
style="fill:#ff6600;stroke:#ff6600;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
d="m27 13c-6.617 0-12 5.383-12 12 0 .553.447 1 1 1 .553 0 1-.447 1-1 0-5.514 4.486-10 10-10 .553 0 1-.447 1-1 0-.553-.447-1-1-1z"
d="m 31.964334,15.917062 c -8.257465,0 -14.975,6.219769 -14.975,13.865359 0,0.638962 0.557819,1.155447 1.247917,1.155447 0.690098,0 1.247916,-0.516485 1.247916,-1.155447 0,-6.371132 5.598154,-11.554466 12.479167,-11.554466 0.690097,0 1.247916,-0.516484 1.247916,-1.155446 0,-0.638962 -0.557819,-1.155447 -1.247916,-1.155447 z"
id="path22"
style="stroke:url(#linearGradient4160);stroke-width:1.22831682;stroke-miterlimit:4;stroke-dasharray:none;fill:#4d4d4d" />
style="fill:#ff6600;stroke:#ff6600;stroke-width:1.4749527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

@ -7,7 +7,7 @@ Name[de]=Calculate Linux installieren
Name[ua]=Установка Calculate Linux
Comment=Calculate Linux installer
Exec=cl-console-gui --method install
Icon=calculate-install
Icon=cl-console-gui-install
Terminal=false
Type=Application
Categories=System;

@ -3,7 +3,7 @@ Name=Calculate Console
Name[ru]=Консоль Calculate
Comment=Calculate Console
Exec=cl-console-gui
Icon=calculate-console
Icon=cl-console-gui
Terminal=false
Type=Application
Categories=Settings;DesktopSettings;LXQt;X-XFCE-SettingsDialog;X-XFCE-SystemSettings;

@ -3,7 +3,7 @@ Name=Calculate Linux Update
Name[ru]=Обновление Calculate Linux
Comment=Calculate Linux updater
Exec=cl-console-gui --method update
Icon=calculate-update
Icon=cl-console-gui-update
Terminal=false
Type=Application
Categories=Settings;DesktopSettings;LXQt;X-XFCE-SettingsDialog;X-XFCE-SystemSettings;

@ -3,7 +3,7 @@ Name=Calculate Linux Update
Name[ru]=Обновление Calculate Linux
Comment=Calculate Linux updater
Exec=cl-console-gui --method update
Icon=calculate-update
Icon=cl-console-gui-update
Terminal=false
Type=Application
Categories=System;

@ -3,7 +3,7 @@ Name=Calculate Console
Name[ru]=Консоль Calculate
Comment=Calculate Console
Exec=cl-console-gui
Icon=calculate-console
Icon=cl-console-gui
Terminal=false
Type=Application
Categories=System;

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d"><path d="m60.287609 17.095682l-14.41-14.4890002v8.6520002c-3.875.031-6.701.909-8.557 1.771h-33.4429993v48h47.9999993v-35.478zm-14.185-3.838c.243 0 .492.004.744.012l1.03.03v-5.8450002l9.59 9.6420002-5.59 5.619 0 0-.948.953-3.052 3.069v-5.602-.001l-.765-.185c-.119-.029-2.943-.69-6.714.24-1.151.285-2.47.747-3.861 1.478-1.316.691-2.697 1.625-4.066 2.889-.906.836-1.808 1.813-2.68 2.961.115-2.535.85-6.373 3.761-9.92.671-.818 1.458-1.62 2.38-2.387.001-.001.041-.036.108-.09.01-.008.019-.016.031-.025.027-.021.063-.049.098-.075.027-.021.054-.041.086-.064.031-.023.069-.05.105-.075.052-.037.106-.075.167-.116.028-.019.059-.039.09-.06.086-.057.18-.116.283-.179.014-.009.029-.017.043-.026 1.445-.873 4.459-2.243 9.16-2.243zm3.775 14.305v31.468h-43.9999993v-44h28.3579993c-.069.06-.131.121-.198.181-.119.107-.236.213-.35.321-.125.117-.247.235-.367.353-.11.108-.218.217-.323.326-.116.12-.229.24-.34.36-.1.109-.199.218-.296.327-.107.122-.211.244-.314.367-.092.11-.183.22-.271.33-.098.123-.193.247-.287.37-.084.111-.167.221-.247.333-.09.124-.176.248-.261.372-.076.111-.152.223-.225.334-.082.125-.16.25-.238.375-.068.11-.136.22-.202.331-.075.127-.146.253-.217.38-.061.109-.121.218-.179.327-.068.127-.132.254-.196.381-.054.107-.108.215-.159.322-.061.128-.119.256-.176.383-.047.106-.095.211-.14.317-.054.127-.105.254-.156.38-.042.104-.084.209-.123.313-.048.127-.093.253-.137.379-.036.101-.072.202-.105.303-.042.127-.081.252-.12.378-.031.099-.062.198-.09.296-.036.125-.07.248-.103.371-.026.096-.052.192-.076.288-.031.125-.06.247-.088.37-.021.091-.043.182-.062.272-.027.124-.05.245-.074.367-.017.087-.035.174-.05.26-.022.122-.041.242-.061.362-.013.082-.027.164-.039.245-.018.12-.033.237-.048.354-.01.078-.021.156-.03.233-.014.117-.025.231-.036.345-.007.072-.015.145-.021.216-.01.114-.017.224-.025.335-.005.068-.01.136-.014.202-.006.11-.011.216-.015.323-.002.062-.006.125-.008.186-.003.107-.005.21-.006.313-.001.055-.002.111-.003.165-.001.104 0 .204.001.303 0 .048 0 .098.001.144.002.096.005.187.008.278.001.045.002.093.004.137.004.09.009.175.013.259.002.039.004.08.006.117.005.085.011.163.018.241.002.032.005.067.007.097.007.08.014.154.021.226.002.023.004.049.007.072.008.073.015.139.023.203.002.017.004.037.006.053.009.071.017.134.025.192.001.006.002.013.002.019.017.117.031.204.042.264.001.005.002.013.003.018.005.03.009.051.012.063l.5 2.573 1.341-2.252c4.445-7.467 10.111-9.137 13.61-9.374 1.045-.07 1.899-.014 2.467.055v8.817.001z"/><g transform="matrix(.53030303 0 0 .53246753 7.0901854 31.318182)"><path d="m39.914 0h-2.414-28-9v49h7 33 8v-40.414zm-4.414 2v14h-24v-14zm-26 45v-19h29v19zm37 0h-6v-21h-33v21h-5v-45h7v16h28v-16h1.586l7.414 7.414z"/><path d="m13.5 33h7c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-7c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m23.5 35h-10c-.553 0-1 .447-1 1 0 .553.447 1 1 1h10c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m25.79 35.29c-.181.189-.29.45-.29.71 0 .26.109.52.29.71.189.18.439.29.71.29.26 0 .52-.11.71-.29.18-.19.29-.45.29-.71 0-.26-.11-.521-.29-.71-.37-.37-1.05-.37-1.42 0z"/><path d="m33.5 4h-6v10h6zm-2 8h-2v-6h2z"/></g></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m45.876953 2.6074219v8.6503901c-3.875.031-6.70064.909485-8.556641 1.771485h-33.4433589v48h47.9999999v-35.478516l8.410156-8.455078zm2 4.8476562l9.589844 9.6425779-5.589844 5.617188-.949219.953125-3.050781 3.070312v-5.603515l-.765625-.185547c-.119-.029-2.94189-.689766-6.71289.240234-1.151001.285-2.470329.747516-3.861329 1.478516-1.316.691-2.697406 1.624672-4.066406 2.888672-.906.836-1.807687 1.812937-2.679687 2.960937.115-2.535.848765-6.372922 3.759765-9.919922.671-.818 1.45886-1.619719 2.38086-2.386718.001-.001.04042-.03584.107421-.08984.01-.008.01925-.01639.03125-.02539.027-.021.06266-.04822.09766-.07422.027-.021.05394-.04145.08594-.06445.031-.023.06947-.05117.105469-.07617.052-.037.106969-.07423.167969-.115234.028-.019.05884-.03955.08984-.06055.086-.057.180203-.114734.283203-.177734.014-.009.02897-.01834.04297-.02734 1.445-.873 4.459157-2.242188 9.160157-2.242188.243 0 .490187.0037.742187.01172l1.03125.0293v-5.8437499zm-41.9999999 7.5761719h28.3593749c-.069.06-.132219.119687-.199219.179688-.119.106999-.235609.214265-.349609.322265-.125.117-.247187.233563-.367188.351563-.109999.108-.217265.217172-.322265.326172-.116.12-.228844.241328-.339844.361328-.1.109-.199875.217171-.296875.326172-.107.121999-.211453.244187-.314453.367187-.092.11-.181531.220078-.269531.330078-.098.123-.19311.246141-.28711.369141-.084.111-.168047.221984-.248046.333984-.09.124-.174766.247094-.259766.371094-.076.111-.153563.222984-.226563.333984-.082.125-.158328.25-.236328.375-.068.11-.137125.221031-.203125.332032-.075.126999-.145797.251906-.216797.378906-.061.109-.121687.219125-.179687.328125-.068.127-.131313.253859-.195313.380859-.054.107-.107203.215266-.158203.322266-.061.128-.120734.255812-.177734.382812-.047.106-.09367.210406-.138672.316406-.054.127-.10525.25486-.15625.38086-.042.104-.08405.2085-.123047.3125-.048.127-.09272.252906-.136719.378906-.036.101-.07247.201734-.105468.302734-.042.127-.08014.252907-.119141.378907-.031.099-.06184.196922-.08984.294922-.036.125-.07052.248093-.103515.371093-.026.096-.05217.193063-.07617.289063-.031.125-.05989.246141-.08789.369141-.021.091-.0435.181484-.0625.271484-.027.124-.05022.245187-.07422.367187-.017.087-.03383.173766-.04883.259766-.022.122-.0425.243281-.0625.363281-.013.082-.02706.163141-.03906.244141-.018.12-.03187.236515-.04687.353515-.01.078-.02225.157376-.03125.234376-.014.117-.02416.22975-.03516.34375-.007.072-.01548.145796-.02148.216796-.01.114-.01739.222985-.02539.333985-.005.068-.0097.137125-.01367.203125-.006.11-.0097.215265-.01367.322265-.002.062-.0058.1265-.0078.1875-.003.107-.0068.2095-.0078.3125-.001.055-.000953.110063-.002.164063-.001.104-.001.203734 0 .302734 0 .048.000953.09853.002.144532.002.096.0048.186343.0078.277343.001.045.0019.09467.0039.138672.004.09.0097.173813.01367.257813.0014.0273.0025.05483.0039.08203.194111.01215.387809.02551.527343.03906.460982.04478.802243.155075 1.054688.3125.167523.0039.336051.0039.501953.0078.07363.0017.147076.0022.220703.0039.02614.000019.02043.000042.04883 0 .09408-.00008.142511.0021.222657.002.06631-.01549.162331-.05658.164062 0 .06057.000336.140031.000577.191406.002 4.283157-6.244835 9.426109-7.716594 12.6875-7.9375 1.045-.07 1.898797-.01236 2.466797.05664v8.816406l4-4.019531v31.46875h-43.9999999v-44z" fill="#666"/><path d="m57.49 21.5h-3.49v-6.268c0-1.507-1.226-2.732-2.732-2.732h-24.753l-5-7h-18.783c-1.506 0-2.732 1.226-2.732 2.732v43.687h.006c-.005.563.17 1.114.522 1.575.49.64 1.232 1.006 2.037 1.006h44.759c1.156 0 2.174-.779 2.45-1.813l10.226-28.038v-.177c0-1.722-1.056-2.972-2.51-2.972zm-55.49-13.268c0-.404.329-.732.732-.732h17.753l5 7h25.782c.404 0 .732.328.732.732v6.268h-39.268c-.144 0-.287.012-.426.036-.973.163-1.782.873-2.023 1.776l-8.282 22.587zm45.869 43.851c-.066.245-.291.417-.545.417h-44.759c-.243 0-.385-.139-.448-.222-.063-.082-.16-.256-.123-.408l10.191-27.953c.066-.245.291-.417.545-.417h41.27 3.49c.38 0 .477.546.502.819z" fill="#666" stroke="#666" stroke-width="1.56750143" transform="matrix(.62485876 0 0 .65133172 7.6949156 22.087167)"/></svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d"><path d="m56.28 15.314c-.161-.238-2.92-4.216-8.28-6.257v-4.184h-48v48h48v-36.709c2.081-.175 4.475-.013 7.205.68l2.541.645zm-10.28 35.559h-44v-44h44v1.565c-.974-.246-2.014-.42-3.127-.502-.086-.007-.173-.008-.26-.014-.425-.026-.85-.049-1.295-.045-.582.001-1.165.024-1.75.079-.214.007-5.075.231-10.457 5.528l-6.118-6.118.056 20.435 20.435.056-6.229-6.229c.036-.045.085-.101.125-.15.077-.094.159-.19.252-.297.076-.086.164-.179.25-.271.086-.093.181-.189.278-.288.106-.107.214-.215.333-.327.104-.099.223-.201.337-.303.229-.203.477-.408.746-.617.13-.102.258-.203.398-.304.174-.126.363-.251.553-.376.139-.092.283-.183.43-.273.208-.127.419-.253.644-.375.151-.083.315-.16.473-.24.41-.206.848-.399 1.31-.579.197-.077.388-.156.594-.228.257-.088.53-.165.802-.242.237-.068.478-.131.726-.19.161-.038.328-.071.494-.105zm2-36.708v-.048l-1.131.149c-7.898 1.044-11.443 6.411-11.75 6.9-.015.023-.026.04-.028.043l-.41.671 3.961 3.962-13.599-.036-.036-13.599 4.134 4.134.707-.75c5.054-5.369 9.746-5.636 9.845-5.641.571-.053 1.136-.073 1.698-.071.061 0 .123 0 .184 0 1.759.024 3.469.311 5.106.865l.927.313c2.248.907 3.954 2.18 5.122 3.261-1.713-.234-3.284-.265-4.73-.153z" transform="translate(4.0525905 4.2179088)"/><g transform="matrix(.50378788 0 0 .52504638 6.6736965 28.045455)"><path d="m39.914 0h-2.414-28-9v49h7 33 8v-40.414zm-4.414 2v14h-24v-14zm-26 45v-19h29v19zm37 0h-6v-21h-33v21h-5v-45h7v16h28v-16h1.586l7.414 7.414z"/><path d="m13.5 33h7c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-7c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m23.5 35h-10c-.553 0-1 .447-1 1 0 .553.447 1 1 1h10c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m25.79 35.29c-.181.189-.29.45-.29.71 0 .26.109.52.29.71.189.18.439.29.71.29.26 0 .52-.11.71-.29.18-.19.29-.45.29-.71 0-.26-.11-.521-.29-.71-.37-.37-1.05-.37-1.42 0z"/><path d="m33.5 4h-6v10h6zm-2 8h-2v-6h2z"/></g></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m11.726562 9.0917969v4.1835941c-5.7124008 2.041-8.6526321 6.017859-8.8242182 6.255859l-1.5625 2.175781 2.7089843-.644531c2.9094875-.693 5.459915-.854688 7.6777339-.679688v36.708985h51.15625v-48.0000001zm2.132813 2.0000001h46.892578v44h-46.892578v-34.410156c.176913.034.353805.06552.525391.103515.264304.059.522808.123406.77539.191406.289884.077.579618.154188.853516.242188.219543.072.422859.149562.632812.226562.492375.180001.959529.374079 1.396485.580079.168388.08.342979.157234.503906.240234.239794.122.465824.248.6875.375.156664.09.308893.179484.457031.271484.202492.125.404404.250953.589844.376953.149205.101002.285281.202688.423828.304688.286686.209.550865.412234.794922.615234.121494.102.248538.205688.359375.304688.126824.112.242499.219172.355469.326172.103377.099.203262.194109.294922.287109.09165.092.186578.185485.267578.271485.09912.106999.185508.202875.267578.296874.04263.049.0964.105391.134766.150391l-6.638672 6.228516 12.453125-.03125c-.105205-.419506-.06131-.853224.09961-1.267578-.129673-.229564-.220226-.479763-.306641-.732422l-7.085937.01758 4.220703-3.962891-.4375-.669922c-.0021-.003-.01331-.01997-.0293-.04297-.327185-.489-4.104218-5.856391-12.521484-6.900391l-1.207032-.150391v.04883c-1.541069-.112-3.2134384-.08166-5.039062.152344 1.2447916-1.081 3.0612327-2.352765 5.457031-3.259765l.988281-.314453c1.744629-.554002 3.566758-.839282 5.441407-.863282h.197265c.59895-.002 1.200052.01731 1.808594.07031.105508.005 5.105903.271625 10.492188 5.640625l.753906.75 4.40625-4.132813-.02734 9.882813c.09102-.003.188947-.01674.269531-.0039.596353.09497 1.288545.119828 1.859375.324218l.04492-15.044922-6.521484 6.117188c-5.73585-5.297-10.914508-5.520344-11.142578-5.527344-.623462-.055-1.24497-.07713-1.865235-.07813-.474257-.004-.927918.01892-1.380859.04492-.09272.006-.185684.0067-.277344.01367-1.186176.082-2.293996.255953-3.332031.501953v-1.564453z" fill="#666"/><path d="m57.49 21.5h-3.49v-6.268c0-1.507-1.226-2.732-2.732-2.732h-24.753l-5-7h-18.783c-1.506 0-2.732 1.226-2.732 2.732v43.687h.006c-.005.563.17 1.114.522 1.575.49.64 1.232 1.006 2.037 1.006h44.759c1.156 0 2.174-.779 2.45-1.813l10.226-28.038v-.177c0-1.722-1.056-2.972-2.51-2.972zm-55.49-13.268c0-.404.329-.732.732-.732h17.753l5 7h25.782c.404 0 .732.328.732.732v6.268h-39.268c-.144 0-.287.012-.426.036-.973.163-1.782.873-2.023 1.776l-8.282 22.587zm45.869 43.851c-.066.245-.291.417-.545.417h-44.759c-.243 0-.385-.139-.448-.222-.063-.082-.16-.256-.123-.408l10.191-27.953c.066-.245.291-.417.545-.417h41.27 3.49c.38 0 .477.546.502.819z" fill="#666" stroke="#666" stroke-width="1.94109046" transform="matrix(.51152454 0 0 .54022178 29.12884 23.250973)"/></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m58.452753 29.386302c-.463423-.724433-1.239014-1.122871-2.187315-1.122871-.0043 0-.0086 0-.01287 0-1.788256.006-3.940171.671106-5.61579 1.734614-1.545817.981002-3.786769 2.799127-5.678008 5.899095-.355077.581558-.937574.975972-1.560836 1.069544-.0021-.134825-.0011-.288767-.0011-.434659 0-.310903.0011-.681168-.01287-1.089668v-22.271273c0-2.219581-1.924494-4.0246253-4.290957-4.0246253-2.366463 0-4.290957 1.8050443-4.290957 4.0246253v15.595425c0 .276693-.241366.503079-.536369.503079-.295004 0-.53637-.226386-.53637-.503079v-22.6385196c0-2.2195811-1.924494-4.0246258-4.290957-4.0246258-2.366462 0-4.290957 1.8050447-4.290957 4.0246258v22.6385196c0 .276693-.241366.503079-.536369.503079-.295003 0-.53637-.226386-.53637-.503079v-18.110816c0-1.9418815-1.6842-3.5215472-3.754587-3.5215472-2.070387 0-3.754587 1.5796657-3.754587 3.5215472v20.123129c0 .276693-.241366.503078-.53637.503078-.295003 0-.536369-.226385-.536369-.503078v-12.576955c0-1.941882-1.684201-3.521548-3.765315-3.521548-2.0703866 0-3.7545871 1.579666-3.7545871 3.521548l.00215 27.364436c1.038429 14.069086 10.2393131 15.966697 19.1033571 15.966697 7.343973 0 13.940246-3.416907 17.192791-8.878324.418368-.633879 1.550108-2.303093 2.892105-4.28019 3.355528-4.944253 6.166105-9.09666 6.581255-9.835179.925774-1.64406 1.958822-2.928922 2.986506-3.715736.930065-.712359 1.498616-1.620918 1.960967-2.4188.239221-.415543.447332-1.941882-.239221-3.018469zm-1.70351 2.156193c-.429095.733488-.833518 1.308003-1.375251 1.72254-1.265833.969935-2.451209 2.427855-3.526094 4.335528-.408714.727451-4.069973 6.123468-6.49329 9.694317-1.349506 1.988165-2.48661 3.664422-2.931797 4.340559-2.897468 4.86376-8.777152 7.886254-15.344461 7.886254-11.308817 0-16.223035-4.083989-16.960007-14.023808v-27.296018c0-.832092.721954-1.509235 1.619837-1.509235.887155 0 1.609108.677143 1.609108 1.509235v12.576955c0 1.38749 1.202541 2.515391 2.681848 2.515391 1.479308 0 2.681848-1.127901 2.681848-2.515391v-20.123129c0-.832091.721954-1.5092343 1.609109-1.5092343.887155 0 1.609109.6771433 1.609109 1.5092343v18.110816c0 1.38749 1.202541 2.515391 2.681848 2.515391 1.479307 0 2.681848-1.127901 2.681848-2.515391v-22.6385196c0-1.1097906.962247-2.0123129 2.145478-2.0123129 1.183232 0 2.145479.9025223 2.145479 2.0123129v22.6385196c0 1.38749 1.20254 2.515391 2.681848 2.515391 1.479307 0 2.681848-1.127901 2.681848-2.515391v-15.595425c0-1.10979.962247-2.012312 2.145478-2.012312 1.183231 0 2.145478.902522 2.145478 2.012312v22.302464c.01395.41353.01287.762667.01287 1.056464-.0021.90051-.0032 1.550488.525642 2.036461.443042.405481 1.016957.430635 1.422453.43466 1.459998-.03119 2.848122-.838129 3.621567-2.10488 1.685273-2.764918 3.658041-4.370743 5.017201-5.231007 1.321615-.839134 3.05838-1.384471 4.422904-1.389502.0011 0 .0032 0 .0043 0 .229566 0 .28213.06339.31324.100616.211329.251539.220984.884411.170565 1.166135z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m58.452753 29.386302c-.463423-.724433-1.239014-1.122871-2.187315-1.122871-.0043 0-.0086 0-.01287 0-1.788256.006-3.940171.671106-5.61579 1.734614-1.545817.981002-3.786769 2.799127-5.678008 5.899095-.355077.581558-.937574.975972-1.560836 1.069544-.0021-.134825-.0011-.288767-.0011-.434659 0-.310903.0011-.681168-.01287-1.089668v-22.271273c0-2.219581-1.924494-4.0246253-4.290957-4.0246253-2.366463 0-4.290957 1.8050443-4.290957 4.0246253v15.595425c0 .276693-.241366.503079-.536369.503079-.295004 0-.53637-.226386-.53637-.503079v-22.6385196c0-2.2195811-1.924494-4.0246258-4.290957-4.0246258-2.366462 0-4.290957 1.8050447-4.290957 4.0246258v22.6385196c0 .276693-.241366.503079-.536369.503079-.295003 0-.53637-.226386-.53637-.503079v-18.110816c0-1.9418815-1.6842-3.5215472-3.754587-3.5215472-2.070387 0-3.754587 1.5796657-3.754587 3.5215472v20.123129c0 .276693-.241366.503078-.53637.503078-.295003 0-.536369-.226385-.536369-.503078v-12.576955c0-1.941882-1.684201-3.521548-3.765315-3.521548-2.0703866 0-3.7545871 1.579666-3.7545871 3.521548l.00215 27.364436c1.038429 14.069086 10.2393131 15.966697 19.1033571 15.966697 7.343973 0 13.940246-3.416907 17.192791-8.878324.418368-.633879 1.550108-2.303093 2.892105-4.28019 3.355528-4.944253 6.166105-9.09666 6.581255-9.835179.925774-1.64406 1.958822-2.928922 2.986506-3.715736.930065-.712359 1.498616-1.620918 1.960967-2.4188.239221-.415543.447332-1.941882-.239221-3.018469zm-1.70351 2.156193c-.429095.733488-.833518 1.308003-1.375251 1.72254-1.265833.969935-2.451209 2.427855-3.526094 4.335528-.408714.727451-4.069973 6.123468-6.49329 9.694317-1.349506 1.988165-2.48661 3.664422-2.931797 4.340559-2.897468 4.86376-8.777152 7.886254-15.344461 7.886254-11.308817 0-16.223035-4.083989-16.960007-14.023808v-27.296018c0-.832092.721954-1.509235 1.619837-1.509235.887155 0 1.609108.677143 1.609108 1.509235v12.576955c0 1.38749 1.202541 2.515391 2.681848 2.515391 1.479308 0 2.681848-1.127901 2.681848-2.515391v-20.123129c0-.832091.721954-1.5092343 1.609109-1.5092343.887155 0 1.609109.6771433 1.609109 1.5092343v18.110816c0 1.38749 1.202541 2.515391 2.681848 2.515391 1.479307 0 2.681848-1.127901 2.681848-2.515391v-22.6385196c0-1.1097906.962247-2.0123129 2.145478-2.0123129 1.183232 0 2.145479.9025223 2.145479 2.0123129v22.6385196c0 1.38749 1.20254 2.515391 2.681848 2.515391 1.479307 0 2.681848-1.127901 2.681848-2.515391v-15.595425c0-1.10979.962247-2.012312 2.145478-2.012312 1.183231 0 2.145478.902522 2.145478 2.012312v22.302464c.01395.41353.01287.762667.01287 1.056464-.0021.90051-.0032 1.550488.525642 2.036461.443042.405481 1.016957.430635 1.422453.43466 1.459998-.03119 2.848122-.838129 3.621567-2.10488 1.685273-2.764918 3.658041-4.370743 5.017201-5.231007 1.321615-.839134 3.05838-1.384471 4.422904-1.389502.0011 0 .0032 0 .0043 0 .229566 0 .28213.06339.31324.100616.211329.251539.220984.884411.170565 1.166135z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="translate(2.0826097 2)"><path d="m30 0c-16.542 0-30 13.458-30 30 0 16.542 13.458 30 30 30 16.542 0 30-13.458 30-30 0-16.542-13.458-30-30-30zm0 58c-15.439 0-28-12.561-28-28 0-15.439 12.561-28 28-28 15.439 0 28 12.561 28 28 0 15.439-12.561 28-28 28z"/><path d="m23.165 8.459c.537-.13.868-.67.739-1.206-.129-.537-.67-.866-1.206-.739-3.935.946-7.522 2.955-10.376 5.809-2.854 2.854-4.862 6.441-5.808 10.375-.129.536.202 1.076.739 1.206.078.019.157.027.234.027.451 0 .861-.308.972-.767.859-3.575 2.685-6.836 5.277-9.429 2.592-2.593 5.854-4.417 9.429-5.276z"/><path d="m52.747 36.096c-.538-.129-1.077.201-1.206.739-.859 3.575-2.685 6.836-5.277 9.429-2.592 2.593-5.854 4.418-9.43 5.277-.537.13-.868.67-.739 1.206.11.459.521.767.972.767.077 0 .156-.009.234-.027 3.936-.946 7.523-2.955 10.377-5.809 2.854-2.854 4.862-6.441 5.809-10.376.128-.536-.203-1.076-.74-1.206z"/><path d="m24.452 13.286c.538-.125.873-.663.747-1.2-.125-.538-.665-.878-1.2-.747-3.09.72-5.904 2.282-8.141 4.52-2.237 2.236-3.8 5.051-4.52 8.141-.126.537.209 1.075.747 1.2.076.019.152.026.228.026.454 0 .865-.312.973-.773.635-2.725 2.014-5.207 3.986-7.18 1.972-1.973 4.456-3.352 7.18-3.987z"/><path d="m48.661 36.001c.126-.537-.209-1.075-.747-1.2-.538-.133-1.075.209-1.2.747-.635 2.725-2.014 5.207-3.986 7.18-1.972 1.973-4.455 3.352-7.18 3.986-.538.125-.873.663-.747 1.2.107.462.519.773.973.773.075 0 .151-.008.228-.026 3.09-.72 5.904-2.282 8.141-4.52 2.236-2.236 3.798-5.05 4.518-8.14z"/><path d="m26.495 16.925c-.119-.541-.653-.879-1.19-.763-4.557.997-8.146 4.586-9.143 9.143-.118.539.224 1.072.763 1.19.072.016.144.023.215.023.46 0 .873-.318.976-.786.831-3.796 3.821-6.786 7.617-7.617.538-.118.88-.651.762-1.19z"/><path d="m43.838 34.695c.118-.539-.224-1.072-.763-1.19-.54-.118-1.072.222-1.19.763-.831 3.796-3.821 6.786-7.617 7.617-.539.118-.881.651-.763 1.19.103.468.516.786.976.786.071 0 .143-.008.215-.023 4.556-.997 8.145-4.586 9.142-9.143z"/><path d="m38.08 30c0-4.455-3.625-8.08-8.08-8.08-4.455 0-8.08 3.625-8.08 8.08 0 4.455 3.625 8.08 8.08 8.08 4.455 0 8.08-3.625 8.08-8.08zm-8.08 6.08c-3.353 0-6.08-2.728-6.08-6.08 0-3.352 2.728-6.08 6.08-6.08 3.352 0 6.08 2.728 6.08 6.08 0 3.352-2.727 6.08-6.08 6.08z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="translate(2.0826097 2)"><path d="m30 0c-16.542 0-30 13.458-30 30 0 16.542 13.458 30 30 30 16.542 0 30-13.458 30-30 0-16.542-13.458-30-30-30zm0 58c-15.439 0-28-12.561-28-28 0-15.439 12.561-28 28-28 15.439 0 28 12.561 28 28 0 15.439-12.561 28-28 28z"/><path d="m23.165 8.459c.537-.13.868-.67.739-1.206-.129-.537-.67-.866-1.206-.739-3.935.946-7.522 2.955-10.376 5.809-2.854 2.854-4.862 6.441-5.808 10.375-.129.536.202 1.076.739 1.206.078.019.157.027.234.027.451 0 .861-.308.972-.767.859-3.575 2.685-6.836 5.277-9.429 2.592-2.593 5.854-4.417 9.429-5.276z"/><path d="m52.747 36.096c-.538-.129-1.077.201-1.206.739-.859 3.575-2.685 6.836-5.277 9.429-2.592 2.593-5.854 4.418-9.43 5.277-.537.13-.868.67-.739 1.206.11.459.521.767.972.767.077 0 .156-.009.234-.027 3.936-.946 7.523-2.955 10.377-5.809 2.854-2.854 4.862-6.441 5.809-10.376.128-.536-.203-1.076-.74-1.206z"/><path d="m24.452 13.286c.538-.125.873-.663.747-1.2-.125-.538-.665-.878-1.2-.747-3.09.72-5.904 2.282-8.141 4.52-2.237 2.236-3.8 5.051-4.52 8.141-.126.537.209 1.075.747 1.2.076.019.152.026.228.026.454 0 .865-.312.973-.773.635-2.725 2.014-5.207 3.986-7.18 1.972-1.973 4.456-3.352 7.18-3.987z"/><path d="m48.661 36.001c.126-.537-.209-1.075-.747-1.2-.538-.133-1.075.209-1.2.747-.635 2.725-2.014 5.207-3.986 7.18-1.972 1.973-4.455 3.352-7.18 3.986-.538.125-.873.663-.747 1.2.107.462.519.773.973.773.075 0 .151-.008.228-.026 3.09-.72 5.904-2.282 8.141-4.52 2.236-2.236 3.798-5.05 4.518-8.14z"/><path d="m26.495 16.925c-.119-.541-.653-.879-1.19-.763-4.557.997-8.146 4.586-9.143 9.143-.118.539.224 1.072.763 1.19.072.016.144.023.215.023.46 0 .873-.318.976-.786.831-3.796 3.821-6.786 7.617-7.617.538-.118.88-.651.762-1.19z"/><path d="m43.838 34.695c.118-.539-.224-1.072-.763-1.19-.54-.118-1.072.222-1.19.763-.831 3.796-3.821 6.786-7.617 7.617-.539.118-.881.651-.763 1.19.103.468.516.786.976.786.071 0 .143-.008.215-.023 4.556-.997 8.145-4.586 9.142-9.143z"/><path d="m38.08 30c0-4.455-3.625-8.08-8.08-8.08-4.455 0-8.08 3.625-8.08 8.08 0 4.455 3.625 8.08 8.08 8.08 4.455 0 8.08-3.625 8.08-8.08zm-8.08 6.08c-3.353 0-6.08-2.728-6.08-6.08 0-3.352 2.728-6.08 6.08-6.08 3.352 0 6.08 2.728 6.08 6.08 0 3.352-2.727 6.08-6.08 6.08z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="matrix(1.1328671 0 0 1.1328671 2.8732549 2.3636364)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m38.5 25h-11.5v-11c0-.553-.448-1-1-1-.552 0-1 .447-1 1v11h-11.5c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11.5v12c0 .553.448 1 1 1 .552 0 1-.447 1-1v-12h11.5c.552 0 1-.447 1-1 0-.553-.448-1-1-1z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1.1328671 0 0 1.1328671 2.8732549 2.3636364)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m38.5 25h-11.5v-11c0-.553-.448-1-1-1-.552 0-1 .447-1 1v11h-11.5c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11.5v12c0 .553.448 1 1 1 .552 0 1-.447 1-1v-12h11.5c.552 0 1-.447 1-1 0-.553-.448-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 601 B

After

Width:  |  Height:  |  Size: 598 B

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="translate(1.7823457 2.1818182)"><path d="m38.914 0h-32.414v60h47v-45.414zm.586 3.414l10.586 10.586h-10.586zm-31 54.586v-56h29v14h14v42z"/><path d="m42.5 21h-16c-.552 0-1 .447-1 1 0 .553.448 1 1 1h16c .552 0 1-.447 1-1 0-.553-.448-1-1-1z"/><path d="m22.875 18.219l-4.301 3.441-1.367-1.367c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2 2c .194.194.45.293.707.293.22 0 .441-.072.624-.219l5-4c .432-.346.501-.975.156-1.406-.344-.432-.974-.501-1.405-.156z"/><path d="m42.5 32h-16c-.552 0-1 .447-1 1 0 .553.448 1 1 1h16c .552 0 1-.447 1-1 0-.553-.448-1-1-1z"/><path d="m22.875 29.219l-4.301 3.441-1.367-1.367c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2 2c .194.194.45.293.707.293.22 0 .441-.072.624-.219l5-4c .432-.346.501-.975.156-1.406-.344-.432-.974-.501-1.405-.156z"/><path d="m42.5 43h-16c-.552 0-1 .447-1 1 0 .553.448 1 1 1h16c .552 0 1-.447 1-1 0-.553-.448-1-1-1z"/><path d="m22.875 40.219l-4.301 3.441-1.367-1.367c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2 2c .194.194.45.293.707.293.22 0 .441-.072.624-.219l5-4c .432-.346.501-.975.156-1.406-.344-.432-.974-.501-1.405-.156z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="translate(1.7823457 2.1818182)"><path d="m38.914 0h-32.414v60h47v-45.414zm.586 3.414l10.586 10.586h-10.586zm-31 54.586v-56h29v14h14v42z"/><path d="m42.5 21h-16c-.552 0-1 .447-1 1 0 .553.448 1 1 1h16c .552 0 1-.447 1-1 0-.553-.448-1-1-1z"/><path d="m22.875 18.219l-4.301 3.441-1.367-1.367c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2 2c .194.194.45.293.707.293.22 0 .441-.072.624-.219l5-4c .432-.346.501-.975.156-1.406-.344-.432-.974-.501-1.405-.156z"/><path d="m42.5 32h-16c-.552 0-1 .447-1 1 0 .553.448 1 1 1h16c .552 0 1-.447 1-1 0-.553-.448-1-1-1z"/><path d="m22.875 29.219l-4.301 3.441-1.367-1.367c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2 2c .194.194.45.293.707.293.22 0 .441-.072.624-.219l5-4c .432-.346.501-.975.156-1.406-.344-.432-.974-.501-1.405-.156z"/><path d="m42.5 43h-16c-.552 0-1 .447-1 1 0 .553.448 1 1 1h16c .552 0 1-.447 1-1 0-.553-.448-1-1-1z"/><path d="m22.875 40.219l-4.301 3.441-1.367-1.367c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2 2c .194.194.45.293.707.293.22 0 .441-.072.624-.219l5-4c .432-.346.501-.975.156-1.406-.344-.432-.974-.501-1.405-.156z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m60.825709 18.804636c-.161-.238-2.92-4.216-8.28-6.257v-4.1839996h-47.9999996v47.9999996h47.9999996v-36.709c2.081-.175 4.475-.013 7.205.68l2.541.645zm-10.28 35.559h-43.9999996v-44h43.9999996v1.565c-.974-.246-2.014-.42-3.127-.502-.086-.007-.173-.008-.26-.014-.425-.026-.85-.049-1.295-.045-.582.001-1.165.024-1.75.079-.214.007-5.075.231-10.457 5.528l-6.118-6.118.056 20.435 20.435.056-6.229-6.229c.036-.045.085-.101.125-.15.077-.094.159-.19.252-.297.076-.086.164-.179.25-.271.086-.093.181-.189.278-.288.106-.107.214-.215.333-.327.104-.099.223-.201.337-.303.229-.203.477-.408.746-.617.13-.102.258-.203.398-.304.174-.126.363-.251.553-.376.139-.092.283-.183.43-.273.208-.127.419-.253.644-.375.151-.083.315-.16.473-.24.41-.206.848-.399 1.31-.579.197-.077.388-.156.594-.228.257-.088.53-.165.802-.242.237-.068.478-.131.726-.19.161-.038.328-.071.494-.105zm2-36.708v-.048l-1.131.149c-7.898 1.044-11.443 6.411-11.75 6.9-.015.023-.026.04-.028.043l-.41.671 3.961 3.962-13.599-.036-.036-13.599 4.134 4.134.707-.75c5.054-5.369 9.746-5.636 9.845-5.641.571-.053 1.136-.073 1.698-.071.061 0 .123 0 .184 0 1.759.024 3.469.311 5.106.865l.927.313c2.248.907 3.954 2.18 5.122 3.261-1.713-.234-3.284-.265-4.73-.153z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m60.825709 18.804636c-.161-.238-2.92-4.216-8.28-6.257v-4.1839996h-47.9999996v47.9999996h47.9999996v-36.709c2.081-.175 4.475-.013 7.205.68l2.541.645zm-10.28 35.559h-43.9999996v-44h43.9999996v1.565c-.974-.246-2.014-.42-3.127-.502-.086-.007-.173-.008-.26-.014-.425-.026-.85-.049-1.295-.045-.582.001-1.165.024-1.75.079-.214.007-5.075.231-10.457 5.528l-6.118-6.118.056 20.435 20.435.056-6.229-6.229c.036-.045.085-.101.125-.15.077-.094.159-.19.252-.297.076-.086.164-.179.25-.271.086-.093.181-.189.278-.288.106-.107.214-.215.333-.327.104-.099.223-.201.337-.303.229-.203.477-.408.746-.617.13-.102.258-.203.398-.304.174-.126.363-.251.553-.376.139-.092.283-.183.43-.273.208-.127.419-.253.644-.375.151-.083.315-.16.473-.24.41-.206.848-.399 1.31-.579.197-.077.388-.156.594-.228.257-.088.53-.165.802-.242.237-.068.478-.131.726-.19.161-.038.328-.071.494-.105zm2-36.708v-.048l-1.131.149c-7.898 1.044-11.443 6.411-11.75 6.9-.015.023-.026.04-.028.043l-.41.671 3.961 3.962-13.599-.036-.036-13.599 4.134 4.134.707-.75c5.054-5.369 9.746-5.636 9.845-5.641.571-.053 1.136-.073 1.698-.071.061 0 .123 0 .184 0 1.759.024 3.469.311 5.106.865l.927.313c2.248.907 3.954 2.18 5.122 3.261-1.713-.234-3.284-.265-4.73-.153z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m60.714618 17.2775l-14.41-14.489v8.652c-3.875.031-6.701.909-8.557 1.771h-33.4429995v48h47.9999995v-35.478zm-14.185-3.838c.243 0 .492.004.744.012l1.03.03v-5.845l9.59 9.642-5.59 5.619 0 0-.948.953-3.052 3.069v-5.602-.001l-.765-.185c-.119-.029-2.943-.69-6.714.24-1.151.285-2.47.747-3.861 1.478-1.316.691-2.697 1.625-4.066 2.889-.906.836-1.807999 1.813-2.679999 2.961.115-2.535.85-6.373 3.760999-9.92.671-.818 1.458-1.62 2.38-2.387.001-.001.041-.036.108-.09.01-.008.019-.016.031-.025.027-.021.063-.049.098-.075.027-.021.054-.041.086-.064.031-.023.069-.05.105-.075.052-.037.106-.075.167-.116.028-.019.059-.039.09-.06.086-.057.18-.116.283-.179.014-.009.029-.017.043-.026 1.445-.873 4.459-2.243 9.16-2.243zm3.775 14.305v31.468h-43.9999995v-44h28.3579995c-.069.06-.131.121-.198.181-.119.107-.236.213-.35.321-.125.117-.247.235-.367.353-.11.108-.218.217-.323.326-.116.12-.229.24-.34.36-.1.109-.199.218-.296.327-.107.122-.211.244-.314.367-.092.11-.183.22-.271.33-.098.123-.193.247-.287.37-.084.111-.167.221-.247.333-.09.124-.176.248-.260999.372-.076.111-.152.223-.225.334-.082.125-.16.25-.238.375-.068.11-.136.22-.202.331-.075.127-.146.253-.217.38-.061.109-.121.218-.179.327-.068.127-.132.254-.196.381-.054.107-.108.215-.159.322-.061.128-.119.256-.176.383-.047.106-.095.211-.14.317-.054.127-.105.254-.156.38-.042.104-.084.209-.123.313-.048.127-.093.253-.137.379-.036.101-.072.202-.105.303-.042.127-.081.252-.12.378-.031.099-.062.198-.09.296-.036.125-.07.248-.103.371-.026.096-.052.192-.076.288-.031.125-.06.247-.088.37-.021.091-.043.182-.062.272-.027.124-.05.245-.074.367-.017.087-.035.174-.05.26-.022.122-.041.242-.061.362-.013.082-.027.164-.039.245-.018.12-.033.237-.048.354-.01.078-.021.156-.03.233-.014.117-.025.231-.036.345-.007.072-.015.145-.021.216-.01.114-.017.224-.025.335-.005.068-.01.136-.014.202-.006.11-.011.216-.015.323-.002.062-.006.125-.008.186-.003.107-.005.21-.006.313-.001.055-.002.111-.003.165-.001.104 0 .204.001.303 0 .048 0 .098.001.144.002.096.005.187.008.278.001.045.002.093.004.137.004.09.009.175.013.259.002.039.004.08.006.117.005.085.011.163.018.241.002.032.005.067.007.097.007.08.014.154.021.226.002.023.004.049.007.072.008.073.015.139.023.203.002.017.004.037.006.053.009.071.017.134.025.192.001.006.002.013.002.019.017.117.031.204.042.264.001.005.002.013.003.018.005.03.009.051.012.063l.5 2.573 1.341-2.252c4.444999-7.467 10.110999-9.137 13.609999-9.374 1.045-.07 1.899-.014 2.467.055v8.817.001z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m60.714618 17.2775l-14.41-14.489v8.652c-3.875.031-6.701.909-8.557 1.771h-33.4429995v48h47.9999995v-35.478zm-14.185-3.838c.243 0 .492.004.744.012l1.03.03v-5.845l9.59 9.642-5.59 5.619 0 0-.948.953-3.052 3.069v-5.602-.001l-.765-.185c-.119-.029-2.943-.69-6.714.24-1.151.285-2.47.747-3.861 1.478-1.316.691-2.697 1.625-4.066 2.889-.906.836-1.807999 1.813-2.679999 2.961.115-2.535.85-6.373 3.760999-9.92.671-.818 1.458-1.62 2.38-2.387.001-.001.041-.036.108-.09.01-.008.019-.016.031-.025.027-.021.063-.049.098-.075.027-.021.054-.041.086-.064.031-.023.069-.05.105-.075.052-.037.106-.075.167-.116.028-.019.059-.039.09-.06.086-.057.18-.116.283-.179.014-.009.029-.017.043-.026 1.445-.873 4.459-2.243 9.16-2.243zm3.775 14.305v31.468h-43.9999995v-44h28.3579995c-.069.06-.131.121-.198.181-.119.107-.236.213-.35.321-.125.117-.247.235-.367.353-.11.108-.218.217-.323.326-.116.12-.229.24-.34.36-.1.109-.199.218-.296.327-.107.122-.211.244-.314.367-.092.11-.183.22-.271.33-.098.123-.193.247-.287.37-.084.111-.167.221-.247.333-.09.124-.176.248-.260999.372-.076.111-.152.223-.225.334-.082.125-.16.25-.238.375-.068.11-.136.22-.202.331-.075.127-.146.253-.217.38-.061.109-.121.218-.179.327-.068.127-.132.254-.196.381-.054.107-.108.215-.159.322-.061.128-.119.256-.176.383-.047.106-.095.211-.14.317-.054.127-.105.254-.156.38-.042.104-.084.209-.123.313-.048.127-.093.253-.137.379-.036.101-.072.202-.105.303-.042.127-.081.252-.12.378-.031.099-.062.198-.09.296-.036.125-.07.248-.103.371-.026.096-.052.192-.076.288-.031.125-.06.247-.088.37-.021.091-.043.182-.062.272-.027.124-.05.245-.074.367-.017.087-.035.174-.05.26-.022.122-.041.242-.061.362-.013.082-.027.164-.039.245-.018.12-.033.237-.048.354-.01.078-.021.156-.03.233-.014.117-.025.231-.036.345-.007.072-.015.145-.021.216-.01.114-.017.224-.025.335-.005.068-.01.136-.014.202-.006.11-.011.216-.015.323-.002.062-.006.125-.008.186-.003.107-.005.21-.006.313-.001.055-.002.111-.003.165-.001.104 0 .204.001.303 0 .048 0 .098.001.144.002.096.005.187.008.278.001.045.002.093.004.137.004.09.009.175.013.259.002.039.004.08.006.117.005.085.011.163.018.241.002.032.005.067.007.097.007.08.014.154.021.226.002.023.004.049.007.072.008.073.015.139.023.203.002.017.004.037.006.053.009.071.017.134.025.192.001.006.002.013.002.019.017.117.031.204.042.264.001.005.002.013.003.018.005.03.009.051.012.063l.5 2.573 1.341-2.252c4.444999-7.467 10.110999-9.137 13.609999-9.374 1.045-.07 1.899-.014 2.467.055v8.817.001z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m12.282346 8.1363636c-2.4810003 0-4.5000003 2.0190004-4.5000003 4.5000004 0 2.481 2.019 4.5 4.5000003 4.5 2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5000004-4.5-4.5000004zm0 7.0000004c-1.378 0-2.5000003-1.121-2.5000003-2.5 0-1.379 1.1220003-2.5 2.5000003-2.5 1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5z" fill="#4d4d4d"/><circle cx="51.782345" cy="11.136364" fill="#4d4d4d" r="1"/><circle cx="47.782345" cy="11.136364" fill="#4d4d4d" r="1"/><circle cx="53.782345" cy="14.136364" fill="#4d4d4d" r="1"/><circle cx="49.782345" cy="14.136364" fill="#4d4d4d" r="1"/><circle cx="43.782345" cy="11.136364" fill="#4d4d4d" r="1"/><circle cx="45.782345" cy="14.136364" fill="#4d4d4d" r="1"/><circle cx="39.782345" cy="11.136364" fill="#4d4d4d" r="1"/><circle cx="41.782345" cy="14.136364" fill="#4d4d4d" r="1"/><circle cx="35.782345" cy="11.136364" fill="#4d4d4d" r="1"/><circle cx="37.782345" cy="14.136364" fill="#4d4d4d" r="1"/><path d="m61.782346 18.528364v-11.7840004c0-2.541-2.067-4.608-4.608-4.608h-50.7840003c-2.541 0-4.608 2.067-4.608 4.608v11.7830004c0 1.469.703 2.764 1.777 3.608-1.074.845-1.777 2.141-1.777 3.609v11.783c0 1.469.703 2.764 1.777 3.608-1.074.845-1.777 2.141-1.777 3.609v11.783c0 2.542 2.067 4.609 4.608 4.609h50.7830003c2.541 0 4.608-2.067 4.608-4.608v-11.784c0-1.469-.703-2.764-1.777-3.608 1.075-.844 1.778-2.14 1.778-3.608v-11.784c0-1.469-.703-2.764-1.777-3.608 1.074-.844 1.777-2.14 1.777-3.608zm-2 26.216v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.7840003c-1.438.001-2.608-1.169-2.608-2.607v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.7830003c1.439 0 2.609 1.17 2.609 2.608zm0-19v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.7840003c-1.438.001-2.608-1.169-2.608-2.607v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.7830003c1.439 0 2.609 1.17 2.609 2.608zm-53.3920003-4.608c-1.438 0-2.608-1.17-2.608-2.608v-11.7840004c0-1.438 1.17-2.608 2.608-2.608h50.7830003c1.439 0 2.609 1.17 2.609 2.608v11.7830004c0 1.438-1.17 2.608-2.608 2.608h-50.7840003z" fill="#4d4d4d"/><path d="m12.282346 36.136364c2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5-2.4810003 0-4.5000003 2.019-4.5000003 4.5 0 2.481 2.019 4.5 4.5000003 4.5zm0-7c1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5-1.378 0-2.5000003-1.121-2.5000003-2.5 0-1.379 1.1220003-2.5 2.5000003-2.5z" fill="#4d4d4d"/><path d="m12.282346 55.136364c2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5-2.4810003 0-4.5000003 2.019-4.5000003 4.5 0 2.481 2.019 4.5 4.5000003 4.5zm0-7c1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5-1.378 0-2.5000003-1.121-2.5000003-2.5 0-1.379 1.1220003-2.5 2.5000003-2.5z" fill="#4d4d4d"/><circle cx="51.782345" cy="49.136364" fill="#4d4d4d" r="1"/><circle cx="47.782345" cy="49.136364" fill="#4d4d4d" r="1"/><circle cx="53.782345" cy="52.136364" fill="#4d4d4d" r="1"/><circle cx="49.782345" cy="52.136364" fill="#4d4d4d" r="1"/><circle cx="43.782345" cy="49.136364" fill="#4d4d4d" r="1"/><circle cx="45.782345" cy="52.136364" fill="#4d4d4d" r="1"/><circle cx="39.782345" cy="49.136364" fill="#4d4d4d" r="1"/><circle cx="41.782345" cy="52.136364" fill="#4d4d4d" r="1"/><circle cx="35.782345" cy="49.136364" fill="#4d4d4d" r="1"/><circle cx="37.782345" cy="52.136364" fill="#4d4d4d" r="1"/><path d="m55.259162 25.982267c-3.43602-3.117533-9.027423-3.11752-12.463424.000031-1.279445 1.160865-2.080605 2.593127-2.407764 4.094298l-20.57166.000051c-.304575.000001-.550727.223339-.550726.499685 0 .137819.06154.262916.161247.353382.09971.09047.237585.1463.389482.1463l3.344092-.000009.000015 5.154441c.000001.137819.06154.262916.161247.353382.09971.09047.237585.1463.389482.1463.304576-.000001.550728-.22334.550727-.499685l-.000016-5.15444 2.793365-.000007.000011 3.740909c.000001.137819.06155.262917.161247.353383.09971.09047.237584.146299.389482.146299.304575-.000001.550727-.223339.550726-.499685l-.000011-3.740909 2.793366-.000007.000014 5.154441c.000001.137819.06154.262917.161247.353382.09971.09047.237584.1463.389483.146299.304574 0 .550726-.223339.550725-.499684l-.000015-5.154441 8.196259-.00002c-.170976 2.230199.673038 4.513403 2.548009 6.214582 3.436019 3.117535 9.027423 3.117521 12.463423-.00003 3.436001-3.117551 3.435986-8.190714-.000033-11.308248zm-11.684428 10.601511c-3.006808-2.728107-3.006822-7.166594-.00003-9.894716 3.006794-2.728122 7.898687-2.728135 10.905496-.000027 3.006809 2.728107 3.006822 7.166594.00003 9.894716-3.006793 2.728122-7.898687 2.728135-10.905496.000027z" fill="#4d4d4d" stroke="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m12.282346 8.1363636c-2.4810003 0-4.5000003 2.0190004-4.5000003 4.5000004 0 2.481 2.019 4.5 4.5000003 4.5 2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5000004-4.5-4.5000004zm0 7.0000004c-1.378 0-2.5000003-1.121-2.5000003-2.5 0-1.379 1.1220003-2.5 2.5000003-2.5 1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5z" fill="#666"/><circle cx="51.782345" cy="11.136364" fill="#666" r="1"/><circle cx="47.782345" cy="11.136364" fill="#666" r="1"/><circle cx="53.782345" cy="14.136364" fill="#666" r="1"/><circle cx="49.782345" cy="14.136364" fill="#666" r="1"/><circle cx="43.782345" cy="11.136364" fill="#666" r="1"/><circle cx="45.782345" cy="14.136364" fill="#666" r="1"/><circle cx="39.782345" cy="11.136364" fill="#666" r="1"/><circle cx="41.782345" cy="14.136364" fill="#666" r="1"/><circle cx="35.782345" cy="11.136364" fill="#666" r="1"/><circle cx="37.782345" cy="14.136364" fill="#666" r="1"/><path d="m61.782346 18.528364v-11.7840004c0-2.541-2.067-4.608-4.608-4.608h-50.7840003c-2.541 0-4.608 2.067-4.608 4.608v11.7830004c0 1.469.703 2.764 1.777 3.608-1.074.845-1.777 2.141-1.777 3.609v11.783c0 1.469.703 2.764 1.777 3.608-1.074.845-1.777 2.141-1.777 3.609v11.783c0 2.542 2.067 4.609 4.608 4.609h50.7830003c2.541 0 4.608-2.067 4.608-4.608v-11.784c0-1.469-.703-2.764-1.777-3.608 1.075-.844 1.778-2.14 1.778-3.608v-11.784c0-1.469-.703-2.764-1.777-3.608 1.074-.844 1.777-2.14 1.777-3.608zm-2 26.216v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.7840003c-1.438.001-2.608-1.169-2.608-2.607v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.7830003c1.439 0 2.609 1.17 2.609 2.608zm0-19v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.7840003c-1.438.001-2.608-1.169-2.608-2.607v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.7830003c1.439 0 2.609 1.17 2.609 2.608zm-53.3920003-4.608c-1.438 0-2.608-1.17-2.608-2.608v-11.7840004c0-1.438 1.17-2.608 2.608-2.608h50.7830003c1.439 0 2.609 1.17 2.609 2.608v11.7830004c0 1.438-1.17 2.608-2.608 2.608h-50.7840003z" fill="#666"/><path d="m12.282346 36.136364c2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5-2.4810003 0-4.5000003 2.019-4.5000003 4.5 0 2.481 2.019 4.5 4.5000003 4.5zm0-7c1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5-1.378 0-2.5000003-1.121-2.5000003-2.5 0-1.379 1.1220003-2.5 2.5000003-2.5z" fill="#666"/><path d="m12.282346 55.136364c2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5-2.4810003 0-4.5000003 2.019-4.5000003 4.5 0 2.481 2.019 4.5 4.5000003 4.5zm0-7c1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5-1.378 0-2.5000003-1.121-2.5000003-2.5 0-1.379 1.1220003-2.5 2.5000003-2.5z" fill="#666"/><circle cx="51.782345" cy="49.136364" fill="#666" r="1"/><circle cx="47.782345" cy="49.136364" fill="#666" r="1"/><circle cx="53.782345" cy="52.136364" fill="#666" r="1"/><circle cx="49.782345" cy="52.136364" fill="#666" r="1"/><circle cx="43.782345" cy="49.136364" fill="#666" r="1"/><circle cx="45.782345" cy="52.136364" fill="#666" r="1"/><circle cx="39.782345" cy="49.136364" fill="#666" r="1"/><circle cx="41.782345" cy="52.136364" fill="#666" r="1"/><circle cx="35.782345" cy="49.136364" fill="#666" r="1"/><circle cx="37.782345" cy="52.136364" fill="#666" r="1"/><path d="m55.259162 25.982267c-3.43602-3.117533-9.027423-3.11752-12.463424.000031-1.279445 1.160865-2.080605 2.593127-2.407764 4.094298l-20.57166.000051c-.304575.000001-.550727.223339-.550726.499685 0 .137819.06154.262916.161247.353382.09971.09047.237585.1463.389482.1463l3.344092-.000009.000015 5.154441c.000001.137819.06154.262916.161247.353382.09971.09047.237585.1463.389482.1463.304576-.000001.550728-.22334.550727-.499685l-.000016-5.15444 2.793365-.000007.000011 3.740909c.000001.137819.06155.262917.161247.353383.09971.09047.237584.146299.389482.146299.304575-.000001.550727-.223339.550726-.499685l-.000011-3.740909 2.793366-.000007.000014 5.154441c.000001.137819.06154.262917.161247.353382.09971.09047.237584.1463.389483.146299.304574 0 .550726-.223339.550725-.499684l-.000015-5.154441 8.196259-.00002c-.170976 2.230199.673038 4.513403 2.548009 6.214582 3.436019 3.117535 9.027423 3.117521 12.463423-.00003 3.436001-3.117551 3.435986-8.190714-.000033-11.308248zm-11.684428 10.601511c-3.006808-2.728107-3.006822-7.166594-.00003-9.894716 3.006794-2.728122 7.898687-2.728135 10.905496-.000027 3.006809 2.728107 3.006822 7.166594.00003 9.894716-3.006793 2.728122-7.898687 2.728135-10.905496.000027z" fill="#666" stroke="#666"/></svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="translate(2.1459821 1.6363636)"><path d="m10.5 6.5c-2.481 0-4.5 2.019-4.5 4.5 0 2.481 2.019 4.5 4.5 4.5 2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5zm0 7c-1.378 0-2.5-1.121-2.5-2.5 0-1.379 1.122-2.5 2.5-2.5 1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5z"/><circle cx="50" cy="9.5" r="1"/><circle cx="46" cy="9.5" r="1"/><circle cx="52" cy="12.5" r="1"/><circle cx="48" cy="12.5" r="1"/><circle cx="42" cy="9.5" r="1"/><circle cx="44" cy="12.5" r="1"/><circle cx="38" cy="9.5" r="1"/><circle cx="40" cy="12.5" r="1"/><circle cx="34" cy="9.5" r="1"/><circle cx="36" cy="12.5" r="1"/><path d="m60 16.892v-11.784c0-2.541-2.067-4.608-4.608-4.608h-50.784c-2.541 0-4.608 2.067-4.608 4.608v11.783c0 1.469.703 2.764 1.777 3.608-1.074.845-1.777 2.141-1.777 3.609v11.783c0 1.469.703 2.764 1.777 3.608-1.074.845-1.777 2.141-1.777 3.609v11.783c0 2.542 2.067 4.609 4.608 4.609h50.783c2.541 0 4.608-2.067 4.608-4.608v-11.784c0-1.469-.703-2.764-1.777-3.608 1.075-.844 1.778-2.14 1.778-3.608v-11.784c0-1.469-.703-2.764-1.777-3.608 1.074-.844 1.777-2.14 1.777-3.608zm-2 26.216v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.784c-1.438.001-2.608-1.169-2.608-2.607v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.783c1.439 0 2.609 1.17 2.609 2.608zm0-19v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.784c-1.438.001-2.608-1.169-2.608-2.607v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.783c1.439 0 2.609 1.17 2.609 2.608zm-53.392-4.608c-1.438 0-2.608-1.17-2.608-2.608v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.783c1.439 0 2.609 1.17 2.609 2.608v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.784z"/><path d="m10.5 34.5c2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5-2.481 0-4.5 2.019-4.5 4.5 0 2.481 2.019 4.5 4.5 4.5zm0-7c1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5-1.378 0-2.5-1.121-2.5-2.5 0-1.379 1.122-2.5 2.5-2.5z"/><circle cx="50" cy="28.5" r="1"/><circle cx="46" cy="28.5" r="1"/><circle cx="52" cy="31.5" r="1"/><circle cx="48" cy="31.5" r="1"/><circle cx="42" cy="28.5" r="1"/><circle cx="44" cy="31.5" r="1"/><circle cx="38" cy="28.5" r="1"/><circle cx="40" cy="31.5" r="1"/><circle cx="34" cy="28.5" r="1"/><circle cx="36" cy="31.5" r="1"/><path d="m10.5 53.5c2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5-2.481 0-4.5 2.019-4.5 4.5 0 2.481 2.019 4.5 4.5 4.5zm0-7c1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5-1.378 0-2.5-1.121-2.5-2.5 0-1.379 1.122-2.5 2.5-2.5z"/><circle cx="50" cy="47.5" r="1"/><circle cx="46" cy="47.5" r="1"/><circle cx="52" cy="50.5" r="1"/><circle cx="48" cy="50.5" r="1"/><circle cx="42" cy="47.5" r="1"/><circle cx="44" cy="50.5" r="1"/><circle cx="38" cy="47.5" r="1"/><circle cx="40" cy="50.5" r="1"/><circle cx="34" cy="47.5" r="1"/><circle cx="36" cy="50.5" r="1"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="translate(2.1459821 1.6363636)"><path d="m10.5 6.5c-2.481 0-4.5 2.019-4.5 4.5 0 2.481 2.019 4.5 4.5 4.5 2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5zm0 7c-1.378 0-2.5-1.121-2.5-2.5 0-1.379 1.122-2.5 2.5-2.5 1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5z"/><circle cx="50" cy="9.5" r="1"/><circle cx="46" cy="9.5" r="1"/><circle cx="52" cy="12.5" r="1"/><circle cx="48" cy="12.5" r="1"/><circle cx="42" cy="9.5" r="1"/><circle cx="44" cy="12.5" r="1"/><circle cx="38" cy="9.5" r="1"/><circle cx="40" cy="12.5" r="1"/><circle cx="34" cy="9.5" r="1"/><circle cx="36" cy="12.5" r="1"/><path d="m60 16.892v-11.784c0-2.541-2.067-4.608-4.608-4.608h-50.784c-2.541 0-4.608 2.067-4.608 4.608v11.783c0 1.469.703 2.764 1.777 3.608-1.074.845-1.777 2.141-1.777 3.609v11.783c0 1.469.703 2.764 1.777 3.608-1.074.845-1.777 2.141-1.777 3.609v11.783c0 2.542 2.067 4.609 4.608 4.609h50.783c2.541 0 4.608-2.067 4.608-4.608v-11.784c0-1.469-.703-2.764-1.777-3.608 1.075-.844 1.778-2.14 1.778-3.608v-11.784c0-1.469-.703-2.764-1.777-3.608 1.074-.844 1.777-2.14 1.777-3.608zm-2 26.216v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.784c-1.438.001-2.608-1.169-2.608-2.607v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.783c1.439 0 2.609 1.17 2.609 2.608zm0-19v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.784c-1.438.001-2.608-1.169-2.608-2.607v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.783c1.439 0 2.609 1.17 2.609 2.608zm-53.392-4.608c-1.438 0-2.608-1.17-2.608-2.608v-11.784c0-1.438 1.17-2.608 2.608-2.608h50.783c1.439 0 2.609 1.17 2.609 2.608v11.783c0 1.438-1.17 2.608-2.608 2.608h-50.784z"/><path d="m10.5 34.5c2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5-2.481 0-4.5 2.019-4.5 4.5 0 2.481 2.019 4.5 4.5 4.5zm0-7c1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5-1.378 0-2.5-1.121-2.5-2.5 0-1.379 1.122-2.5 2.5-2.5z"/><circle cx="50" cy="28.5" r="1"/><circle cx="46" cy="28.5" r="1"/><circle cx="52" cy="31.5" r="1"/><circle cx="48" cy="31.5" r="1"/><circle cx="42" cy="28.5" r="1"/><circle cx="44" cy="31.5" r="1"/><circle cx="38" cy="28.5" r="1"/><circle cx="40" cy="31.5" r="1"/><circle cx="34" cy="28.5" r="1"/><circle cx="36" cy="31.5" r="1"/><path d="m10.5 53.5c2.481 0 4.5-2.019 4.5-4.5 0-2.481-2.019-4.5-4.5-4.5-2.481 0-4.5 2.019-4.5 4.5 0 2.481 2.019 4.5 4.5 4.5zm0-7c1.378 0 2.5 1.121 2.5 2.5 0 1.379-1.122 2.5-2.5 2.5-1.378 0-2.5-1.121-2.5-2.5 0-1.379 1.122-2.5 2.5-2.5z"/><circle cx="50" cy="47.5" r="1"/><circle cx="46" cy="47.5" r="1"/><circle cx="52" cy="50.5" r="1"/><circle cx="48" cy="50.5" r="1"/><circle cx="42" cy="47.5" r="1"/><circle cx="44" cy="50.5" r="1"/><circle cx="38" cy="47.5" r="1"/><circle cx="40" cy="50.5" r="1"/><circle cx="34" cy="47.5" r="1"/><circle cx="36" cy="50.5" r="1"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 13 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m59.032449 5.0055c-3.810323-3.7504242-10.007797-3.7504242-13.81812 0l-39.1475404 38.554105c-.018454.01818-.02931.04063-.045593.05987-.022797.02566-.042337.05346-.062963.08125-.057535.07911-.1020424.163573-.1356952.255517-.00977.02779-.023882.05238-.031481.08019-.00326.01069-.00977.02138-.013027.03208l-3.8374622 15.876213c-.01737.07163-.021711.144329-.023882.215959 0 .0139-.00434.02672-.00434.04063.00108.121878.028225.240549.070561.354943.00977.02672.020625.05025.032567.07591.053192.114395.1194118.224513.2127702.316456.103128.101569.2247113.17961.3560644.233065.1313529.05346.2713904.08019.411428.08019.083588 0 .1682621-.0096.2507647-.02887l16.1205955-3.7793c.02931-.0064.05537-.02245.08358-.03208.03691-.01176.07165-.02566.107471-.04169.07816-.03528.150893-.07911.218197-.131499.02605-.02032.05319-.03529.07816-.05774.0087-.0086.01954-.01283.02822-.02138l39.148635-38.55517c3.810323-3.752563 3.810323-9.8571583.0011-13.608652zm-1.534985 1.511716c2.700879 2.6610055 2.931017 6.839072.705615 9.768423l-10.624395-10.463342c2.975525-2.1916675 7.217901-1.965017 9.91878.694919zm-5.373533 15.876226l-10.747064-10.58415 1.534985-1.511717 10.747064 10.584151zm-44.826115 33.562448c-.4244548-.418021-1.1105301-.418021-1.5349848 0l-.8217705.809313 2.7725261-11.46937 4.8003552-.524931-.617685 5.475961c-.0043.04063.01086.07804.01086.117602 0 .04063-.0152.07698-.01086.117602.0043.03529.0228.06414.03039.09836.01302.06201.03148.118671.05427.176403.02823.06949.06188.13257.103132.193509.03365.04917.0673.09301.108555.135776.05211.05453.108557.100493.170434.14326.04885.03314.09553.06415.149807.0898.07165.03314.146551.05238.224711.07056.04125.0096.0749.03208.117242.03742.03907.0042.07816.0064.118326.0064 0 0 .0011 0 .0011 0 0 0 .0011 0 .0011 0h .0011c0 0 .0011 0 .0011 0 .03909 0 .07924-.0022.118326-.0064l5.560061-.608325-.533011 4.727588-11.6469964 2.730497.8217705-.809314c.4233694-.416951.4233694-1.093696 0-1.511716zm13.623805-5.857632l24.292708-23.925526c.424455-.418021.424455-1.093695 0-1.511716-.424454-.41802-1.110531-.41802-1.534985 0l-24.292708 23.925526-5.181388.566626.575348-5.102844 24.294879-23.924456c.424456-.41802.424456-1.093695 0-1.511716-.424454-.418021-1.11053-.418021-1.534984 0l-24.294879 23.924457-3.4553449.378463 30.0516159-29.596064 10.747064 10.58415-30.051615 29.596064zm34.272281-30.728248l-10.747065-10.5841504 1.53607-1.5127856 10.747064 10.58415z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m59.032449 5.0055c-3.810323-3.7504242-10.007797-3.7504242-13.81812 0l-39.1475404 38.554105c-.018454.01818-.02931.04063-.045593.05987-.022797.02566-.042337.05346-.062963.08125-.057535.07911-.1020424.163573-.1356952.255517-.00977.02779-.023882.05238-.031481.08019-.00326.01069-.00977.02138-.013027.03208l-3.8374622 15.876213c-.01737.07163-.021711.144329-.023882.215959 0 .0139-.00434.02672-.00434.04063.00108.121878.028225.240549.070561.354943.00977.02672.020625.05025.032567.07591.053192.114395.1194118.224513.2127702.316456.103128.101569.2247113.17961.3560644.233065.1313529.05346.2713904.08019.411428.08019.083588 0 .1682621-.0096.2507647-.02887l16.1205955-3.7793c.02931-.0064.05537-.02245.08358-.03208.03691-.01176.07165-.02566.107471-.04169.07816-.03528.150893-.07911.218197-.131499.02605-.02032.05319-.03529.07816-.05774.0087-.0086.01954-.01283.02822-.02138l39.148635-38.55517c3.810323-3.752563 3.810323-9.8571583.0011-13.608652zm-1.534985 1.511716c2.700879 2.6610055 2.931017 6.839072.705615 9.768423l-10.624395-10.463342c2.975525-2.1916675 7.217901-1.965017 9.91878.694919zm-5.373533 15.876226l-10.747064-10.58415 1.534985-1.511717 10.747064 10.584151zm-44.826115 33.562448c-.4244548-.418021-1.1105301-.418021-1.5349848 0l-.8217705.809313 2.7725261-11.46937 4.8003552-.524931-.617685 5.475961c-.0043.04063.01086.07804.01086.117602 0 .04063-.0152.07698-.01086.117602.0043.03529.0228.06414.03039.09836.01302.06201.03148.118671.05427.176403.02823.06949.06188.13257.103132.193509.03365.04917.0673.09301.108555.135776.05211.05453.108557.100493.170434.14326.04885.03314.09553.06415.149807.0898.07165.03314.146551.05238.224711.07056.04125.0096.0749.03208.117242.03742.03907.0042.07816.0064.118326.0064 0 0 .0011 0 .0011 0 0 0 .0011 0 .0011 0h .0011c0 0 .0011 0 .0011 0 .03909 0 .07924-.0022.118326-.0064l5.560061-.608325-.533011 4.727588-11.6469964 2.730497.8217705-.809314c.4233694-.416951.4233694-1.093696 0-1.511716zm13.623805-5.857632l24.292708-23.925526c.424455-.418021.424455-1.093695 0-1.511716-.424454-.41802-1.110531-.41802-1.534985 0l-24.292708 23.925526-5.181388.566626.575348-5.102844 24.294879-23.924456c.424456-.41802.424456-1.093695 0-1.511716-.424454-.418021-1.11053-.418021-1.534984 0l-24.294879 23.924457-3.4553449.378463 30.0516159-29.596064 10.747064 10.58415-30.051615 29.596064zm34.272281-30.728248l-10.747065-10.5841504 1.53607-1.5127856 10.747064 10.58415z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m53.264427 10.239364v-.02l-.31-.2950004c-.142-.135-.289-.262-.434-.394-.065-.06-.13-.119-.195-.177-.298-.269-.601-.531-.908-.787-.055-.046-.111-.092-.166-.137-.324-.266-.653-.524-.987-.776-.042-.032-.084-.063-.126-.094-.352-.262-.708-.516-1.069-.761-.029-.02-.058-.039-.087-.059-.374-.252-.753-.495-1.137-.729-.024-.015-.048-.03-.073-.044-.388-.235-.781-.461-1.179-.678-.027-.015-.053-.029-.08-.044-.394-.213-.792-.417-1.194-.612-.037-.018-.075-.036-.112-.054-.391-.188-.785-.366-1.184-.536-.055-.023-.109-.047-.164-.07-.38-.159-.763-.31-1.15-.454-.014-.005-.027-.011-.041-.016-.014-.006-.029-.011-.043-.017-.05-.019-.101-.036-.151-.054-.364-.132-.73-.255-1.099-.373-.104-.033-.208-.068-.313-.1-.345-.106-.693-.204-1.043-.297-.13-.035-.26-.072-.391-.105-.328-.083-.658-.157-.99-.229-.153-.033-.306-.069-.46-.1-.315-.063-.632-.117-.949-.17-.172-.029-.342-.061-.515-.086-.31-.046-.623-.083-.935-.119-.18-.021-.358-.046-.538-.064-.333-.033-.668-.055-1.003-.077-.161-.01-.32-.026-.481-.034-.494-.028-.992-.041-1.493-.041-.501 0-.999.013-1.496.038-.161.008-.32.024-.481.034-.335.022-.67.044-1.003.077-.181.018-.359.043-.538.064-.313.037-.625.073-.935.119-.173.026-.343.058-.515.086-.317.053-.634.107-.949.17-.154.031-.307.067-.46.1-.331.072-.662.146-.99.229-.131.033-.261.07-.391.105-.349.093-.697.191-1.043.297-.105.032-.208.066-.313.1-.369.117-.735.241-1.099.373-.05.018-.101.036-.151.054-.015.006-.029.011-.043.017-.014.005-.027.011-.041.016-.386.144-.77.295-1.15.454-.055.023-.109.047-.164.07-.398.17-.793.348-1.184.536-.037.018-.075.036-.112.054-.402.195-.8.399-1.194.612-.027.015-.054.029-.08.044-.398.217-.789999.443-1.178999.678-.024.015-.048.03-.073.044-.384.234-.763.477-1.137.729-.029.02-.058.039-.087.059-.361.245-.718.499-1.069.761-.042.031-.084.063-.126.094-.334.251-.662.51-.987.776-.056.045-.111.091-.166.137-.307.256-.609.518-.908.787-.065.059-.13.118-.195.177-.141.135-.289.262-.431.397l-.31.2950004v.02c-5.5490001 5.447-9.0000001 13.025-9.0000001 21.397 0 16.542 13.4580001 30 29.9999991 30 16.542 0 30-13.458 30-30 0-8.372-3.451-15.95-9-21.397zm-21.01 43.359l.006.008h-.016zm-7.98-11.52c2.076-2.197 4.945-3.442 7.99-3.442 3.045 0 5.914 1.245 7.99 3.442l-7.99 10.01zm17.231-1.567c-2.436-2.471-5.736-3.875-9.241-3.875-3.505 0-6.805 1.404-9.241 3.875l-9.353999-11.718 8.594999-6.877 9.014 7.212.002.097.304.148.54.399.154-.075.166.076.494-.396.326-.178v-.081l9-7.201 8.595 6.876zm-28.059999-29.591c.003-.003.006-.006.01-.008 1.653-1.5020004 3.486-2.8090004 5.461999-3.8850004.012-.006.024-.013.036-.019.377-.204.759-.4 1.146-.588.034-.016.067-.032.101-.048.35-.168.705-.328 1.064-.482v14.2660004l-7.999999 6.399v-15.462c.061-.057.12-.117.181-.173zm10.659999-6.0680004c.309-.094.621-.182.935-.266.133-.036.267-.072.401-.105.294-.074.59-.141.887-.205.153-.033.306-.068.461-.098.283-.056.568-.105.854-.153.167-.028.334-.058.502-.083.283-.042.569-.076.854-.109.17-.02.339-.043.509-.06.305-.03.613-.05.921-.07.151-.01.3-.024.452-.032.126-.006.255-.005.383-.01v22.8950004l-8-6.4v-15.0280004c.169-.058.337-.118.508-.172.11-.035.221-.07.333-.104zm9.994-1.149c.308.02.616.04.921.07.17.017.34.04.509.06.286.033.571.067.854.109.168.025.335.055.502.083.286.048.571.097.854.153.154.031.307.065.461.098.297.064.594.132.887.205.134.034.267.07.401.105.314.084.626.172.935.266.111.034.222.069.333.104.171.055.339.115.508.172v15.0280004l-8 6.4v-22.8950004c.128.004.257.003.384.01.151.007.301.022.451.032zm10.331 2.717c.387.188.769.383 1.146.588.012.006.024.013.036.019 1.976 1.076 3.809 2.383 5.462 3.8850004.003.003.006.005.01.008.06.056.119.116.18.173v15.462l-8-6.399v-14.2660004c.359.154.714.314 1.065.482.034.017.068.032.101.048zm-12.166 53.2160004c-15.438999 0-27.9999991-12.561-27.9999991-28 0-7.083 2.6479999-13.555 7.0000001-18.491v14.937.904l20.011999 25.07.005.201h.001v.011l.32.15.496.39.02-.009.007.005.154-.075.158.072.008-.006.018.008.468-.388.138-.076.195-.099v-.01-.189l20-25.055v-.904-14.937c4.352 4.936 7 11.408 7 18.491 0 15.439-12.561 28-28 28z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m53.264427 10.239364v-.02l-.31-.2950004c-.142-.135-.289-.262-.434-.394-.065-.06-.13-.119-.195-.177-.298-.269-.601-.531-.908-.787-.055-.046-.111-.092-.166-.137-.324-.266-.653-.524-.987-.776-.042-.032-.084-.063-.126-.094-.352-.262-.708-.516-1.069-.761-.029-.02-.058-.039-.087-.059-.374-.252-.753-.495-1.137-.729-.024-.015-.048-.03-.073-.044-.388-.235-.781-.461-1.179-.678-.027-.015-.053-.029-.08-.044-.394-.213-.792-.417-1.194-.612-.037-.018-.075-.036-.112-.054-.391-.188-.785-.366-1.184-.536-.055-.023-.109-.047-.164-.07-.38-.159-.763-.31-1.15-.454-.014-.005-.027-.011-.041-.016-.014-.006-.029-.011-.043-.017-.05-.019-.101-.036-.151-.054-.364-.132-.73-.255-1.099-.373-.104-.033-.208-.068-.313-.1-.345-.106-.693-.204-1.043-.297-.13-.035-.26-.072-.391-.105-.328-.083-.658-.157-.99-.229-.153-.033-.306-.069-.46-.1-.315-.063-.632-.117-.949-.17-.172-.029-.342-.061-.515-.086-.31-.046-.623-.083-.935-.119-.18-.021-.358-.046-.538-.064-.333-.033-.668-.055-1.003-.077-.161-.01-.32-.026-.481-.034-.494-.028-.992-.041-1.493-.041-.501 0-.999.013-1.496.038-.161.008-.32.024-.481.034-.335.022-.67.044-1.003.077-.181.018-.359.043-.538.064-.313.037-.625.073-.935.119-.173.026-.343.058-.515.086-.317.053-.634.107-.949.17-.154.031-.307.067-.46.1-.331.072-.662.146-.99.229-.131.033-.261.07-.391.105-.349.093-.697.191-1.043.297-.105.032-.208.066-.313.1-.369.117-.735.241-1.099.373-.05.018-.101.036-.151.054-.015.006-.029.011-.043.017-.014.005-.027.011-.041.016-.386.144-.77.295-1.15.454-.055.023-.109.047-.164.07-.398.17-.793.348-1.184.536-.037.018-.075.036-.112.054-.402.195-.8.399-1.194.612-.027.015-.054.029-.08.044-.398.217-.789999.443-1.178999.678-.024.015-.048.03-.073.044-.384.234-.763.477-1.137.729-.029.02-.058.039-.087.059-.361.245-.718.499-1.069.761-.042.031-.084.063-.126.094-.334.251-.662.51-.987.776-.056.045-.111.091-.166.137-.307.256-.609.518-.908.787-.065.059-.13.118-.195.177-.141.135-.289.262-.431.397l-.31.2950004v.02c-5.5490001 5.447-9.0000001 13.025-9.0000001 21.397 0 16.542 13.4580001 30 29.9999991 30 16.542 0 30-13.458 30-30 0-8.372-3.451-15.95-9-21.397zm-21.01 43.359l.006.008h-.016zm-7.98-11.52c2.076-2.197 4.945-3.442 7.99-3.442 3.045 0 5.914 1.245 7.99 3.442l-7.99 10.01zm17.231-1.567c-2.436-2.471-5.736-3.875-9.241-3.875-3.505 0-6.805 1.404-9.241 3.875l-9.353999-11.718 8.594999-6.877 9.014 7.212.002.097.304.148.54.399.154-.075.166.076.494-.396.326-.178v-.081l9-7.201 8.595 6.876zm-28.059999-29.591c.003-.003.006-.006.01-.008 1.653-1.5020004 3.486-2.8090004 5.461999-3.8850004.012-.006.024-.013.036-.019.377-.204.759-.4 1.146-.588.034-.016.067-.032.101-.048.35-.168.705-.328 1.064-.482v14.2660004l-7.999999 6.399v-15.462c.061-.057.12-.117.181-.173zm10.659999-6.0680004c.309-.094.621-.182.935-.266.133-.036.267-.072.401-.105.294-.074.59-.141.887-.205.153-.033.306-.068.461-.098.283-.056.568-.105.854-.153.167-.028.334-.058.502-.083.283-.042.569-.076.854-.109.17-.02.339-.043.509-.06.305-.03.613-.05.921-.07.151-.01.3-.024.452-.032.126-.006.255-.005.383-.01v22.8950004l-8-6.4v-15.0280004c.169-.058.337-.118.508-.172.11-.035.221-.07.333-.104zm9.994-1.149c.308.02.616.04.921.07.17.017.34.04.509.06.286.033.571.067.854.109.168.025.335.055.502.083.286.048.571.097.854.153.154.031.307.065.461.098.297.064.594.132.887.205.134.034.267.07.401.105.314.084.626.172.935.266.111.034.222.069.333.104.171.055.339.115.508.172v15.0280004l-8 6.4v-22.8950004c.128.004.257.003.384.01.151.007.301.022.451.032zm10.331 2.717c.387.188.769.383 1.146.588.012.006.024.013.036.019 1.976 1.076 3.809 2.383 5.462 3.8850004.003.003.006.005.01.008.06.056.119.116.18.173v15.462l-8-6.399v-14.2660004c.359.154.714.314 1.065.482.034.017.068.032.101.048zm-12.166 53.2160004c-15.438999 0-27.9999991-12.561-27.9999991-28 0-7.083 2.6479999-13.555 7.0000001-18.491v14.937.904l20.011999 25.07.005.201h.001v.011l.32.15.496.39.02-.009.007.005.154-.075.158.072.008-.006.018.008.468-.388.138-.076.195-.099v-.01-.189l20-25.055v-.904-14.937c4.352 4.936 7 11.408 7 18.491 0 15.439-12.561 28-28 28z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m56.732973 44.661727l-9.553-4.776c-.901-.451-1.461-1.357-1.461-2.365v-3.381c.229-.28.47-.599.719-.951 1.239-1.75 2.232-3.698 2.954-5.799 1.411-.647 2.327-2.042 2.327-3.617v-4c0-.963-.36-1.896-1-2.625v-5.319c.056-.55.276-3.8239997-2.092-6.5249997-2.054-2.343-5.387-3.531-9.908-3.531-4.521 0-7.854 1.188-9.908 3.53-1.435 1.637-1.918 3.481-2.064 4.8049997-1.714-.8859997-3.734-1.3349997-6.028-1.3349997-10.389 0-10.9939997 8.8549997-10.9999997 8.9999997v4.579c-.648.706-1 1.521-1 2.33v3.454c0 1.079.483 2.085 1.3109997 2.765.825 3.11 2.854 5.46 3.644 6.285v2.743c0 .787-.428 1.509-1.171 1.915l-6.6529997 4.173c-2.548 1.39-4.131 4.057-4.131 6.959v3.797h13.9999997 2 44v-4.043c0-3.438-1.911-6.53-4.986-8.068zm-41.014 7.873v2.238h-11.9999997v-1.797c0-2.17 1.184-4.164 3.141-5.233l6.6519997-4.173c1.333-.727 2.161-2.121 2.161-3.641v-3.591l-.318-.297c-.026-.024-2.683-2.534-3.468-5.955l-.091-.396-.342-.22c-.46-.298-.735-.797-.735-1.334v-3.454c0-.36.245-.788.671-1.174l.329-.297-.002-5.38c.018-.287.539-7.058 9.002-7.058 2.393 0 4.408.553 6 1.644v4.731c-.64.729-1 1.662-1 2.625v4c0 .304.035.603.101.893.027.116.081.222.118.334.055.168.099.341.176.5.001.002.002.003.003.005.256.528.629 1 1.099 1.377.005.019.011.036.016.054.06.229.123.457.191.68l.081.261c.014.046.031.093.046.139.035.108.069.215.105.321.06.175.123.356.196.553.031.082.065.156.097.237.082.209.164.411.25.611.021.048.039.1.06.147l.056.126c.026.058.053.11.079.167.098.214.194.421.294.621.016.032.031.067.047.099.063.125.126.243.189.363.108.206.214.4.32.588.052.092.103.182.154.269.144.246.281.472.414.682.029.045.057.092.085.135.242.375.452.679.626.916.046.063.086.117.125.17.022.029.052.071.071.097v3.309c0 .968-.528 1.856-1.377 2.32l-2.646 1.443-.461-.041-.188.395-5.626 3.069c-2.9 1.584-4.701 4.618-4.701 7.922zm44 2.238h-42v-2.238c0-2.571 1.402-4.934 3.659-6.164l8.921-4.866c1.493-.815 2.42-2.378 2.42-4.077v-4.018-.001l-.194-.232-.038-.045c-.002-.003-.064-.078-.165-.21-.006-.008-.012-.016-.019-.024-.053-.069-.115-.152-.186-.251-.001-.002-.002-.003-.003-.005-.149-.207-.336-.476-.544-.8-.005-.007-.009-.015-.014-.022-.098-.153-.202-.32-.308-.497-.008-.013-.016-.026-.024-.04-.226-.379-.466-.808-.705-1.283 0 0-.001-.001-.001-.002-.127-.255-.254-.523-.378-.802l0 0c-.017-.039-.035-.077-.052-.116l0 0c-.055-.125-.11-.256-.166-.391-.02-.049-.04-.1-.06-.15-.052-.131-.105-.263-.161-.414-.102-.272-.198-.556-.29-.849l-.055-.178c-.006-.02-.013-.04-.019-.061-.094-.316-.184-.639-.26-.971l-.091-.396-.341-.22c-.58-.374-.926-1.001-.926-1.677v-4c0-.561.238-1.084.67-1.475l.33-.297v-6.228-.354l-.027-.021c-.034-.722.009-2.9349997 1.623-4.7759997 1.657-1.891 4.485-2.849 8.404-2.849 3.905 0 6.727.951 8.386 2.828 1.947 2.201 1.625 5.0169997 1.623 5.0409997l-.009 6.359.33.298c.432.39.67.913.67 1.474v4c0 .873-.572 1.637-1.422 1.899l-.498.153-.16.495c-.669 2.081-1.622 4.003-2.834 5.713-.297.421-.586.794-.837 1.079l-.249.284v4.125c0 1.77.983 3.361 2.566 4.153l9.553 4.776c2.394 1.197 3.881 3.603 3.881 6.28z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m56.732973 44.661727l-9.553-4.776c-.901-.451-1.461-1.357-1.461-2.365v-3.381c.229-.28.47-.599.719-.951 1.239-1.75 2.232-3.698 2.954-5.799 1.411-.647 2.327-2.042 2.327-3.617v-4c0-.963-.36-1.896-1-2.625v-5.319c.056-.55.276-3.8239997-2.092-6.5249997-2.054-2.343-5.387-3.531-9.908-3.531-4.521 0-7.854 1.188-9.908 3.53-1.435 1.637-1.918 3.481-2.064 4.8049997-1.714-.8859997-3.734-1.3349997-6.028-1.3349997-10.389 0-10.9939997 8.8549997-10.9999997 8.9999997v4.579c-.648.706-1 1.521-1 2.33v3.454c0 1.079.483 2.085 1.3109997 2.765.825 3.11 2.854 5.46 3.644 6.285v2.743c0 .787-.428 1.509-1.171 1.915l-6.6529997 4.173c-2.548 1.39-4.131 4.057-4.131 6.959v3.797h13.9999997 2 44v-4.043c0-3.438-1.911-6.53-4.986-8.068zm-41.014 7.873v2.238h-11.9999997v-1.797c0-2.17 1.184-4.164 3.141-5.233l6.6519997-4.173c1.333-.727 2.161-2.121 2.161-3.641v-3.591l-.318-.297c-.026-.024-2.683-2.534-3.468-5.955l-.091-.396-.342-.22c-.46-.298-.735-.797-.735-1.334v-3.454c0-.36.245-.788.671-1.174l.329-.297-.002-5.38c.018-.287.539-7.058 9.002-7.058 2.393 0 4.408.553 6 1.644v4.731c-.64.729-1 1.662-1 2.625v4c0 .304.035.603.101.893.027.116.081.222.118.334.055.168.099.341.176.5.001.002.002.003.003.005.256.528.629 1 1.099 1.377.005.019.011.036.016.054.06.229.123.457.191.68l.081.261c.014.046.031.093.046.139.035.108.069.215.105.321.06.175.123.356.196.553.031.082.065.156.097.237.082.209.164.411.25.611.021.048.039.1.06.147l.056.126c.026.058.053.11.079.167.098.214.194.421.294.621.016.032.031.067.047.099.063.125.126.243.189.363.108.206.214.4.32.588.052.092.103.182.154.269.144.246.281.472.414.682.029.045.057.092.085.135.242.375.452.679.626.916.046.063.086.117.125.17.022.029.052.071.071.097v3.309c0 .968-.528 1.856-1.377 2.32l-2.646 1.443-.461-.041-.188.395-5.626 3.069c-2.9 1.584-4.701 4.618-4.701 7.922zm44 2.238h-42v-2.238c0-2.571 1.402-4.934 3.659-6.164l8.921-4.866c1.493-.815 2.42-2.378 2.42-4.077v-4.018-.001l-.194-.232-.038-.045c-.002-.003-.064-.078-.165-.21-.006-.008-.012-.016-.019-.024-.053-.069-.115-.152-.186-.251-.001-.002-.002-.003-.003-.005-.149-.207-.336-.476-.544-.8-.005-.007-.009-.015-.014-.022-.098-.153-.202-.32-.308-.497-.008-.013-.016-.026-.024-.04-.226-.379-.466-.808-.705-1.283 0 0-.001-.001-.001-.002-.127-.255-.254-.523-.378-.802l0 0c-.017-.039-.035-.077-.052-.116l0 0c-.055-.125-.11-.256-.166-.391-.02-.049-.04-.1-.06-.15-.052-.131-.105-.263-.161-.414-.102-.272-.198-.556-.29-.849l-.055-.178c-.006-.02-.013-.04-.019-.061-.094-.316-.184-.639-.26-.971l-.091-.396-.341-.22c-.58-.374-.926-1.001-.926-1.677v-4c0-.561.238-1.084.67-1.475l.33-.297v-6.228-.354l-.027-.021c-.034-.722.009-2.9349997 1.623-4.7759997 1.657-1.891 4.485-2.849 8.404-2.849 3.905 0 6.727.951 8.386 2.828 1.947 2.201 1.625 5.0169997 1.623 5.0409997l-.009 6.359.33.298c.432.39.67.913.67 1.474v4c0 .873-.572 1.637-1.422 1.899l-.498.153-.16.495c-.669 2.081-1.622 4.003-2.834 5.713-.297.421-.586.794-.837 1.079l-.249.284v4.125c0 1.77.983 3.361 2.566 4.153l9.553 4.776c2.394 1.197 3.881 3.603 3.881 6.28z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="matrix(1.1328671 0 0 1.1188811 2.6280642 3.0909091)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m26 10c-.552 0-1 .447-1 1v22c0 .553.448 1 1 1 .552 0 1-.447 1-1v-22c0-.553-.448-1-1-1z"/><path d="m26 37c-.552 0-1 .447-1 1v2c0 .553.448 1 1 1 .552 0 1-.447 1-1v-2c0-.553-.448-1-1-1z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1.1328671 0 0 1.1188811 2.6280642 3.0909091)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m26 10c-.552 0-1 .447-1 1v22c0 .553.448 1 1 1 .552 0 1-.447 1-1v-22c0-.553-.448-1-1-1z"/><path d="m26 37c-.552 0-1 .447-1 1v2c0 .553.448 1 1 1 .552 0 1-.447 1-1v-2c0-.553-.448-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 595 B

After

Width:  |  Height:  |  Size: 592 B

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="matrix(1.1328671 0 0 1.1223776 2.8098824 2.3636363)"><path d="m26 0c-14.337 0-26 11.663-26 26 0 14.337 11.663 26 26 26 14.337 0 26-11.663 26-26 0-14.337-11.663-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m26 37c-.553 0-1 .447-1 1v2c0 .553.447 1 1 1 .553 0 1-.447 1-1v-2c0-.553-.447-1-1-1z"/><path d="m26.113 9.001c-.038 0-.076-.001-.115-.001-2.116 0-4.106.815-5.615 2.304-1.536 1.515-2.383 3.538-2.383 5.696 0 .553.447 1 1 1 .553 0 1-.447 1-1 0-1.618.635-3.136 1.787-4.272 1.153-1.137 2.688-1.765 4.299-1.727 3.161.044 5.869 2.752 5.913 5.913.029 2.084-.999 4.002-2.751 5.132-2.66 1.716-4.248 4.748-4.248 8.112v2.842c0 .553.447 1 1 1 .553 0 1-.447 1-1v-2.842c0-2.642 1.276-5.105 3.332-6.432 2.335-1.506 3.706-4.063 3.667-6.84-.06-4.287-3.598-7.825-7.886-7.885z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1.1328671 0 0 1.1223776 2.8098824 2.3636363)"><path d="m26 0c-14.337 0-26 11.663-26 26 0 14.337 11.663 26 26 26 14.337 0 26-11.663 26-26 0-14.337-11.663-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m26 37c-.553 0-1 .447-1 1v2c0 .553.447 1 1 1 .553 0 1-.447 1-1v-2c0-.553-.447-1-1-1z"/><path d="m26.113 9.001c-.038 0-.076-.001-.115-.001-2.116 0-4.106.815-5.615 2.304-1.536 1.515-2.383 3.538-2.383 5.696 0 .553.447 1 1 1 .553 0 1-.447 1-1 0-1.618.635-3.136 1.787-4.272 1.153-1.137 2.688-1.765 4.299-1.727 3.161.044 5.869 2.752 5.913 5.913.029 2.084-.999 4.002-2.751 5.132-2.66 1.716-4.248 4.748-4.248 8.112v2.842c0 .553.447 1 1 1 .553 0 1-.447 1-1v-2.842c0-2.642 1.276-5.105 3.332-6.432 2.335-1.506 3.706-4.063 3.667-6.84-.06-4.287-3.598-7.825-7.886-7.885z"/></g></svg>

Before

Width:  |  Height:  |  Size: 969 B

After

Width:  |  Height:  |  Size: 966 B

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="matrix(.79165391 -.79068262 .7931535 .79412783 -9.1223834 31.637697)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m38.5 25h-11.5v-11c0-.553-.448-1-1-1-.552 0-1 .447-1 1v11h-11.5c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11.5v12c0 .553.448 1 1 1 .552 0 1-.447 1-1v-12h11.5c.552 0 1-.447 1-1 0-.553-.448-1-1-1z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(.79165391 -.79068262 .7931535 .79412783 -9.1223834 31.637697)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m38.5 25h-11.5v-11c0-.553-.448-1-1-1-.552 0-1 .447-1 1v11h-11.5c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11.5v12c0 .553.448 1 1 1 .552 0 1-.447 1-1v-12h11.5c.552 0 1-.447 1-1 0-.553-.448-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 618 B

After

Width:  |  Height:  |  Size: 615 B

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m61.8052 57.173415l-17.603347-17.657024c2.922031-3.911267 4.675472-8.748212 4.675472-14.000039 0-12.914877-10.473946-23.4207611-23.349562-23.4207611-12.875615 0-23.3495624 10.5058841-23.3495624 23.4207611 0 12.914878 10.4739474 23.420762 23.3495624 23.420762 5.235861 0 10.058102-1.758788 13.957479-4.689729l17.603346 17.657024zm-57.4032315-31.657063c0-11.684729 9.4765875-21.1902125 21.1257945-21.1902125 11.649208 0 21.125795 9.5054835 21.125795 21.1902125 0 11.68473-9.476587 21.190213-21.125795 21.190213-11.649207 0-21.1257945-9.505483-21.1257945-21.190213zm37.3226075 16.832836c.197915-.191827.392495-.387.583739-.585519.162335-.168406.338013-.323429.494788-.496297l15.857689 15.906043-1.573316 1.578113-15.856576-15.907158c.172342-.157254.325782-.333467.493676-.495182z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m61.8052 57.173415l-17.603347-17.657024c2.922031-3.911267 4.675472-8.748212 4.675472-14.000039 0-12.914877-10.473946-23.4207611-23.349562-23.4207611-12.875615 0-23.3495624 10.5058841-23.3495624 23.4207611 0 12.914878 10.4739474 23.420762 23.3495624 23.420762 5.235861 0 10.058102-1.758788 13.957479-4.689729l17.603346 17.657024zm-57.4032315-31.657063c0-11.684729 9.4765875-21.1902125 21.1257945-21.1902125 11.649208 0 21.125795 9.5054835 21.125795 21.1902125 0 11.68473-9.476587 21.190213-21.125795 21.190213-11.649207 0-21.1257945-9.505483-21.1257945-21.190213zm37.3226075 16.832836c.197915-.191827.392495-.387.583739-.585519.162335-.168406.338013-.323429.494788-.496297l15.857689 15.906043-1.573316 1.578113-15.856576-15.907158c.172342-.157254.325782-.333467.493676-.495182z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 892 B

After

Width:  |  Height:  |  Size: 889 B

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="matrix(-.74110141 -.6713931 .6713931 -.74110141 34.173859 74.374836)"><path d="m34.925 20l-8.513 6.191c-.447.324-.546.95-.221 1.396.195.27.5.412.81.412.204 0 .409-.063.587-.191l12.112-8.808-12.112-8.809c-.448-.325-1.073-.227-1.396.221-.325.446-.227 1.072.221 1.396l8.512 6.192h-11.925c-7.168 0-13 5.832-13 13 0 .553.447 1 1 1 .553 0 1-.447 1-1 0-6.065 4.935-11 11-11z"/><path d="m30 0c-16.542 0-30 13.458-30 30 0 16.542 13.458 30 30 30 16.542 0 30-13.458 30-30 0-16.542-13.458-30-30-30zm0 58c-15.439 0-28-12.561-28-28 0-15.439 12.561-28 28-28 15.439 0 28 12.561 28 28 0 15.439-12.561 28-28 28z"/><path d="m48 28c-.553 0-1 .447-1 1 0 6.065-4.935 11-11 11h-11.925l8.513-6.191c.447-.324.546-.95.221-1.396-.324-.447-.949-.546-1.396-.221l-12.113 8.808 12.112 8.809c.178.129.383.191.587.191.31 0 .614-.143.81-.412.325-.446.227-1.072-.221-1.396l-8.513-6.192h11.925c7.168 0 13-5.832 13-13 0-.553-.447-1-1-1z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(-.74110141 -.6713931 .6713931 -.74110141 34.173859 74.374836)"><path d="m34.925 20l-8.513 6.191c-.447.324-.546.95-.221 1.396.195.27.5.412.81.412.204 0 .409-.063.587-.191l12.112-8.808-12.112-8.809c-.448-.325-1.073-.227-1.396.221-.325.446-.227 1.072.221 1.396l8.512 6.192h-11.925c-7.168 0-13 5.832-13 13 0 .553.447 1 1 1 .553 0 1-.447 1-1 0-6.065 4.935-11 11-11z"/><path d="m30 0c-16.542 0-30 13.458-30 30 0 16.542 13.458 30 30 30 16.542 0 30-13.458 30-30 0-16.542-13.458-30-30-30zm0 58c-15.439 0-28-12.561-28-28 0-15.439 12.561-28 28-28 15.439 0 28 12.561 28 28 0 15.439-12.561 28-28 28z"/><path d="m48 28c-.553 0-1 .447-1 1 0 6.065-4.935 11-11 11h-11.925l8.513-6.191c.447-.324.546-.95.221-1.396-.324-.447-.949-.546-1.396-.221l-12.113 8.808 12.112 8.809c.178.129.383.191.587.191.31 0 .614-.143.81-.412.325-.446.227-1.072-.221-1.396l-8.513-6.192h11.925c7.168 0 13-5.832 13-13 0-.553-.447-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1021 B

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="matrix(1.0681818 0 0 1.0649351 1.9007915 2.4316092)"><path d="m28 23c-2.757 0-5 2.243-5 5 0 2.757 2.243 5 5 5 2.757 0 5-2.243 5-5 0-2.757-2.243-5-5-5zm0 8c-1.654 0-3-1.346-3-3 0-1.654 1.346-3 3-3 1.654 0 3 1.346 3 3 0 1.654-1.346 3-3 3z"/><path d="m55 27h-3.025c-.242-5.864-2.595-11.191-6.322-15.239l2.146-2.146c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0l-2.146 2.146c-4.048-3.726-9.375-6.08-15.239-6.322v-3.025c0-.553-.447-1-1-1-.553 0-1 .447-1 1v3.025c-5.864.242-11.191 2.595-15.239 6.322l-2.146-2.146c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2.146 2.146c-3.726 4.048-6.08 9.375-6.322 15.239h-3.025c-.553 0-1 .447-1 1 0 .553.447 1 1 1h3.025c.242 5.864 2.595 11.191 6.322 15.239l-2.146 2.146c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.146-2.146c4.048 3.726 9.375 6.08 15.239 6.322v3.025c0 .553.447 1 1 1 .553 0 1-.447 1-1v-3.025c5.864-.242 11.191-2.595 15.239-6.322l2.146 2.146c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-2.146-2.146c3.726-4.048 6.08-9.375 6.322-15.239h3.025c.553 0 1-.447 1-1 0-.553-.447-1-1-1zm-27 23c-12.131 0-22-9.869-22-22 0-12.131 9.869-22 22-22 12.131 0 22 9.869 22 22 0 12.131-9.869 22-22 22z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1.0681818 0 0 1.0649351 1.9007915 2.4316092)"><path d="m28 23c-2.757 0-5 2.243-5 5 0 2.757 2.243 5 5 5 2.757 0 5-2.243 5-5 0-2.757-2.243-5-5-5zm0 8c-1.654 0-3-1.346-3-3 0-1.654 1.346-3 3-3 1.654 0 3 1.346 3 3 0 1.654-1.346 3-3 3z"/><path d="m55 27h-3.025c-.242-5.864-2.595-11.191-6.322-15.239l2.146-2.146c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0l-2.146 2.146c-4.048-3.726-9.375-6.08-15.239-6.322v-3.025c0-.553-.447-1-1-1-.553 0-1 .447-1 1v3.025c-5.864.242-11.191 2.595-15.239 6.322l-2.146-2.146c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2.146 2.146c-3.726 4.048-6.08 9.375-6.322 15.239h-3.025c-.553 0-1 .447-1 1 0 .553.447 1 1 1h3.025c.242 5.864 2.595 11.191 6.322 15.239l-2.146 2.146c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.146-2.146c4.048 3.726 9.375 6.08 15.239 6.322v3.025c0 .553.447 1 1 1 .553 0 1-.447 1-1v-3.025c5.864-.242 11.191-2.595 15.239-6.322l2.146 2.146c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-2.146-2.146c3.726-4.048 6.08-9.375 6.322-15.239h3.025c.553 0 1-.447 1-1 0-.553-.447-1-1-1zm-27 23c-12.131 0-22-9.869-22-22 0-12.131 9.869-22 22-22 12.131 0 22 9.869 22 22 0 12.131-9.869 22-22 22z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m60.854473 5.972791l-2.85-2.851c-1.164-1.161-3.057-1.162-4.221.001l-3.126 3.126h-48.9469997v56h55.9999997v-48.91l.305-.305 0 0 2.839-2.839c1.164-1.164 1.164-3.058 0-4.222zm-39.097 33.028l3.22 3.22-4.428 1.208zm32.015-24.553l-4.242-4.242 1.414-1.414 4.243 4.242zm-1.414 1.414l-25.456 25.456-4.242-4.242 25.456-25.456zm3.352-.523v44.91h-51.9999997v-52h44.9469997l-28.118 28.12-.188.188-2.121 7.779-1.226 1.226c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l1.226-1.226 7.779-2.123 26.351-26.35 0 0 .447-.447zm3.73-6.558l-2.839 2.839-4.243-4.243 2.839-2.839c.384-.384 1.009-.383 1.393 0l2.85 2.85c.384.383.384 1.009 0 1.393z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m60.854473 5.972791l-2.85-2.851c-1.164-1.161-3.057-1.162-4.221.001l-3.126 3.126h-48.9469997v56h55.9999997v-48.91l.305-.305 0 0 2.839-2.839c1.164-1.164 1.164-3.058 0-4.222zm-39.097 33.028l3.22 3.22-4.428 1.208zm32.015-24.553l-4.242-4.242 1.414-1.414 4.243 4.242zm-1.414 1.414l-25.456 25.456-4.242-4.242 25.456-25.456zm3.352-.523v44.91h-51.9999997v-52h44.9469997l-28.118 28.12-.188.188-2.121 7.779-1.226 1.226c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l1.226-1.226 7.779-2.123 26.351-26.35 0 0 .447-.447zm3.73-6.558l-2.839 2.839-4.243-4.243 2.839-2.839c.384-.384 1.009-.383 1.393 0l2.85 2.85c.384.383.384 1.009 0 1.393z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 768 B

After

Width:  |  Height:  |  Size: 765 B

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m42.735093 2.7272728h-32.414v60.0000002h47v-45.414zm.586 3.414l10.586 10.5860002h-10.586zm-31 54.5860002v-56.0000002h29v14.0000002h14v42z" fill="#4d4d4d"/><path d="m20.321093 19.727273h9c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-9c-.553 0-1 .447-1 1 0 .553.447 1 1 1z" fill="#4d4d4d"/><path d="m20.321093 27.727273h5c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-5c-.553 0-1 .447-1 1 0 .553.447 1 1 1z" fill="#4d4d4d"/><path d="m35.321093 27.727273h7c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-7c-.553 0-1 .447-1 1 0 .553.447 1 1 1z" fill="#4d4d4d"/><path d="m29.611093 26.027273c-.19.18-.29.439-.29.7 0 .26.1.52.29.71.189.18.45.29.71.29.26 0 .52-.101.71-.3.18-.181.29-.44.29-.7 0-.261-.11-.521-.29-.71-.38-.37-1.05-.37-1.42.01z" fill="#4d4d4d"/><path d="m47.321093 27.727273c.26 0 .52-.11.71-.29.18-.19.29-.45.29-.71 0-.261-.11-.521-.29-.71-.38-.37-1.04-.37-1.42 0-.181.189-.29.449-.29.71 0 .26.109.52.29.71.189.18.45.29.71.29z" fill="#4d4d4d"/><path d="m32.321093 33.727273h-7c-.553 0-1 .447-1 1 0 .553.447 1 1 1h7c .553 0 1-.447 1-1 0-.553-.447-1-1-1z" fill="#4d4d4d"/><path d="m20.321093 35.727273c.26 0 .52-.11.71-.29.189-.19.29-.45.29-.71 0-.261-.101-.521-.29-.71-.38-.37-1.04-.37-1.42 0-.19.189-.29.439-.29.71 0 .26.109.52.29.71.189.18.45.29.71.29z" fill="#4d4d4d"/><path d="m23.466093 42.893273c-2.19 1.14-2.927 3.321-3.196 5.582-.414-.347-.828-.693-1.242-1.04-.98-.821-2.402.586-1.414 1.415.935.783 1.871 1.567 2.806 2.351.658.551 1.677.203 1.707-.707.073-2.166.175-4.742 2.348-5.873 1.142-.595.132-2.322-1.009-1.728z" fill="#f00"/><path d="m30.116093 46.882273c-1.385.321-2.961 2.083-3.936.106-.569-1.154-2.295-.142-1.727 1.009.517 1.049 1.5 1.784 2.669 1.932.594.075 1.131-.009 1.688-.226.409-.159 1.937-1.308 2.267-.717.628 1.124 2.356.116 1.727-1.009-.537-.962-1.624-1.342-2.688-1.095z" fill="#4d4d4d"/><path d="m50.566093 37.240273c-.233-.083-.336-.259-.377-.357-.04-.098-.093-.296.014-.52.485-1.022.282-2.199-.518-3-.801-.799-1.979-1.003-2.999-.518-.226.107-.424.054-.521.014-.099-.041-.274-.144-.357-.377-.379-1.067-1.355-1.755-2.487-1.755-1.132 0-2.108.688-2.487 1.755-.083.233-.259.336-.357.377-.097.04-.296.094-.52-.014-1.021-.483-2.198-.282-3 .518-.8.801-1.003 1.978-.518 2.999.106.225.054.423.014.521-.041.099-.144.274-.377.357-1.067.379-1.755 1.355-1.755 2.487 0 1.132.688 2.108 1.755 2.487.233.083.336.259.377.357.04.098.093.296-.014.52-.485 1.022-.282 2.199.518 3 .387.386.862.63 1.364.728v12.322l5-5 5 5v-12.323c.502-.097.978-.34 1.364-.727.8-.801 1.003-1.978.518-2.999-.106-.225-.054-.423-.014-.521.041-.099.144-.274.377-.357 1.067-.379 1.755-1.355 1.755-2.487 0-1.132-.688-2.108-1.755-2.487zm-7.245 14.073l-3 3v-7.758c.009.001.018.002.026.004.05.01.098.022.13.036.049.021.118.057.184.116.067.06.132.144.173.261.379 1.067 1.355 1.755 2.487 1.755 1.132 0 2.108-.688 2.487-1.755.041-.117.106-.201.173-.261.067-.06.135-.096.184-.116.032-.013.079-.026.129-.036.008-.001.017-.003.026-.004v7.757zm6.575-10.983c-.702.249-1.269.787-1.554 1.476-.286.689-.267 1.471.054 2.146.175.367-.029.63-.126.726-.079.081-.281.224-.561.17l-.22-.069c-.091-.041-.187-.063-.281-.092-.07-.022-.138-.052-.209-.069-.098-.022-.199-.028-.299-.039-.081-.009-.16-.026-.241-.028-.097-.002-.193.014-.289.022-.083.008-.167.006-.25.022-.177.033-.351.084-.52.154 0 0-.001 0-.002.001l0 0c-.044.018-.081.047-.124.067-.124.06-.249.119-.362.197-.135.093-.258.203-.373.319-.013.013-.03.023-.043.037-.252.265-.449.583-.574.934-.134.382-.465.423-.601.423-.136 0-.467-.041-.603-.425-.125-.352-.322-.669-.574-.934-.01-.011-.023-.018-.034-.029-.118-.12-.244-.231-.383-.327-.108-.075-.229-.131-.348-.189-.047-.023-.089-.055-.138-.075l0 0c-.001 0-.001-.001-.001-.001-.021-.009-.043-.011-.064-.019-.146-.056-.294-.103-.445-.132-.122-.024-.243-.029-.365-.036-.045-.002-.09-.013-.135-.013-.003 0-.005.001-.008.001-.374-.001-.737.072-1.047.223l-.227.071c-.287.065-.496-.083-.578-.166-.097-.096-.301-.358-.126-.727.32-.674.34-1.455.054-2.145-.285-.688-.852-1.227-1.554-1.476-.383-.134-.424-.465-.424-.601 0-.136.041-.467.425-.603.702-.249 1.269-.787 1.554-1.476.286-.689.267-1.471-.054-2.146-.175-.367.029-.63.126-.726.096-.097.357-.299.727-.126.673.32 1.455.342 2.145.054.688-.285 1.227-.852 1.476-1.554.134-.382.465-.423.601-.423.136 0 .467.041.603.425.25.702.787 1.269 1.476 1.554.688.288 1.471.267 2.146-.054.366-.177.631.029.726.126.097.096.301.358.126.727-.32.674-.34 1.455-.054 2.145.285.688.852 1.227 1.554 1.476.382.134.423.465.423.601 0 .136-.041.467-.425.603z" fill="#ff0"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m42.735093 2.7272728h-32.414v60.0000002h47v-45.414zm.586 3.414l10.586 10.5860002h-10.586zm-31 54.5860002v-56.0000002h29v14.0000002h14v42z" fill="#666"/><path d="m16.253296 11.59168h9c .553 0 1-.447 1-1 0-.553-.447-1.0000002-1-1.0000002h-9c-.553 0-1 .4470002-1 1.0000002 0 .553.447 1 1 1z" fill="#666"/><path d="m16.795669 17.422188h5c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-5c-.553 0-1 .447-1 1 0 .553.447 1 1 1z" fill="#666"/><path d="m16.880415 22.303544h7c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-7c-.553 0-1 .447-1 1 0 .553.447 1 1 1z" fill="#666"/><path d="m23.914313 25.320493h-7c-.553 0-1 .447-1 1 0 .553.447 1 1 1h7c .553 0 1-.447 1-1 0-.553-.447-1-1-1z" fill="#666"/><path d="m42.218339 52.50924c-2.139523-1.232129-4.374337-.679374-6.424679.310867.06962-.535685.138396-1.070831.208016-1.606516.164462-1.26783-1.786721-1.708984-1.95362-.430106-.156657 1.209451-.313618 2.420284-.471117 3.630273-.11022.851127.731535 1.522628 1.514625 1.058116 1.864783-1.104296 4.09072-2.404828 6.213508-1.182182 1.116128.64222 2.028014-1.138536.913267-1.780452z" fill="#666"/><path d="m46.929653 53.119562c-1.385.321-2.961 2.083-3.936.106-.569-1.154-2.295-.142-1.727 1.009.517 1.049 1.5 1.784 2.669 1.932.594.075 1.131-.009 1.688-.226.409-.159 1.937-1.308 2.267-.717.628 1.124 2.356.116 1.727-1.009-.537-.962-1.624-1.342-2.688-1.095z" fill="#666"/><path d="m30.22711 36.426713c-.233-.083-.336-.259-.377-.357-.04-.098-.093-.296.014-.52.485-1.022.282-2.199-.518-3-.801-.799-1.979-1.003-2.999-.518-.226.107-.424.054-.521.014-.099-.041-.274-.144-.357-.377-.379-1.067-1.355-1.755-2.487-1.755-1.132 0-2.108.688-2.487 1.755-.083.233-.259.336-.357.377-.097.04-.296.094-.52-.014-1.021-.483-2.198-.282-3 .518-.8.801-1.003 1.978-.518 2.999.106.225.054.423.014.521-.041.099-.144.274-.377.357-1.067.379-1.755 1.355-1.755 2.487 0 1.132.688 2.108 1.755 2.487.233.083.336.259.377.357.04.098.093.296-.014.52-.485 1.022-.282 2.199.518 3 .387.386.862.63 1.364.728v12.322l5-5 5 5v-12.323c.502-.097.978-.34 1.364-.727.8-.801 1.003-1.978.518-2.999-.106-.225-.054-.423-.014-.521.041-.099.144-.274.377-.357 1.067-.379 1.755-1.355 1.755-2.487 0-1.132-.688-2.108-1.755-2.487zm-7.245 14.073l-3 3v-7.758c.009.001.018.002.026.004.05.01.098.022.13.036.049.021.118.057.184.116.067.06.132.144.173.261.379 1.067 1.355 1.755 2.487 1.755 1.132 0 2.108-.688 2.487-1.755.041-.117.106-.201.173-.261.067-.06.135-.096.184-.116.032-.013.079-.026.129-.036.008-.001.017-.003.026-.004v7.757zm6.575-10.983c-.702.249-1.269.787-1.554 1.476-.286.689-.267 1.471.054 2.146.175.367-.029.63-.126.726-.079.081-.281.224-.561.17l-.22-.069c-.091-.041-.187-.063-.281-.092-.07-.022-.138-.052-.209-.069-.098-.022-.199-.028-.299-.039-.081-.009-.16-.026-.241-.028-.097-.002-.193.014-.289.022-.083.008-.167.006-.25.022-.177.033-.351.084-.52.154 0 0-.001 0-.002.001l0 0c-.044.018-.081.047-.124.067-.124.06-.249.119-.362.197-.135.093-.258.203-.373.319-.013.013-.03.023-.043.037-.252.265-.449.583-.574.934-.134.382-.465.423-.601.423-.136 0-.467-.041-.603-.425-.125-.352-.322-.669-.574-.934-.01-.011-.023-.018-.034-.029-.118-.12-.244-.231-.383-.327-.108-.075-.229-.131-.348-.189-.047-.023-.089-.055-.138-.075l0 0c-.001 0-.001-.001-.001-.001-.021-.009-.043-.011-.064-.019-.146-.056-.294-.103-.445-.132-.122-.024-.243-.029-.365-.036-.045-.002-.09-.013-.135-.013-.003 0-.005.001-.008.001-.374-.001-.737.072-1.047.223l-.227.071c-.287.065-.496-.083-.578-.166-.097-.096-.301-.358-.126-.727.32-.674.34-1.455.054-2.145-.285-.688-.852-1.227-1.554-1.476-.383-.134-.424-.465-.424-.601 0-.136.041-.467.425-.603.702-.249 1.269-.787 1.554-1.476.286-.689.267-1.471-.054-2.146-.175-.367.029-.63.126-.726.096-.097.357-.299.727-.126.673.32 1.455.342 2.145.054.688-.285 1.227-.852 1.476-1.554.134-.382.465-.423.601-.423.136 0 .467.041.603.425.25.702.787 1.269 1.476 1.554.688.288 1.471.267 2.146-.054.366-.177.631.029.726.126.097.096.301.358.126.727-.32.674-.34 1.455-.054 2.145.285.688.852 1.227 1.554 1.476.382.134.423.465.423.601 0 .136-.041.467-.425.603z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m32.082031 1.8183594c-4.521 0-7.854203 1.1872968-9.908203 3.5292968-2.368 2.7010001-2.147797 5.9773438-2.091797 6.5273438v5.318359c-.64.729-1 1.662-1 2.625v4c0 1.217.554047 2.352375 1.498047 3.109375.916 3.627 2.831953 6.359328 3.501953 7.236328v3.308594c0 .968-.527953 1.856313-1.376953 2.320313l-8.919922 4.867187c-2.901 1.583-4.7031248 4.615922-4.7031248 7.919922v3.238281c0 4.746 15.0449998 6 22.9999998 6 3.597846 0 8.63924-.262358 13.089844-.982421-.07211-.01833-.20262-.0538-.300781-.08203-.28687.0329-.432666-.02287-.476563-.142578-.05878-.02457-.130739-.07702-.09375-.06055.02844.01267.05586.02767.08398.04102-.02231-.08741.01344-.21104.07227-.349609-.02745-.34023.08486-.821471.242188-1.332032-3.293321.536151-7.521688.908203-12.617188.908203-13.588 0-21-2.643-21-4v-3.238281c0-2.571 1.403156-4.934062 3.660157-6.164062l8.919921-4.865235c1.493-.815 2.419922-2.379125 2.419922-4.078125v-4.017578l-.232422-.279297c-.024-.029-2.475156-2.993453-3.410156-7.064453l-.0918-.396484-.339844-.21875c-.579-.374-.925781-1.001735-.925781-1.677735v-4c0-.561.237922-1.083609.669922-1.474609l.330078-.296875v-6.228516l-.0078-.130859c-.003-.027-.344485-2.7994844 1.603515-5.0214844 1.657-1.89 4.485297-2.8476562 8.404297-2.8476562 3.905 0 6.727719.951125 8.386719 2.828125 1.947 2.201 1.625047 5.0170156 1.623047 5.0410156l-.0098 6.359375.330078.296875c.432.39.669922.913609.669922 1.474609v4c0 .873-.571875 1.636438-1.421875 1.898438l-.498047.154297-.160156.49414c-.669 2.081-1.621984 4.002891-2.833984 5.712891-.297.421-.584938.793125-.835938 1.078125l-.25.285156v4.125c0 1.77.983407 3.360344 2.566407 4.152344l5.613281 2.806641c.224948-.296508.424217-.488659.75-.72461-.000644.0012.0044-.003.0039-.002.0087-.01124.138071-.113991.195313-.15039.0059-.0042.0057-.0035.01172-.0078.0356-.02562-.0274.03392-.09375.08984-.0282.02937.03374-.0177-.11914.115234.36026-.214013.736911-.403369 1.082031-.640625l-.02344-.01172c-.09991.04283-.254794.114442-.347656.146485-.04258.01469.078-.04415.119141-.0625.07804-.0348.145093-.05649.21875-.08789l-6.515625-3.257812c-.901-.451-1.460938-1.357235-1.460938-2.365235v-3.380859c.229-.28.46975-.599172.71875-.951172 1.239-1.75 2.233078-3.697828 2.955078-5.798828 1.411-.647 2.326172-2.042188 2.326172-3.617188v-4c0-.963-.36-1.896-1-2.625v-5.318359c.056-.55.276203-3.8243906-2.091797-6.5253906-2.054-2.343-5.387203-3.53125-9.908203-3.53125zm12.375 58.4238286c.0082.101146.01603.200058.05078.271484.126932-.351632.336254-.787893.572266-1.251953-.27155.367024-.510255.714762-.623047.980469zm.05078.271484c-.01164.03225-.041.0809-.05078.111328 0 0 0 .002 0 .002.02256.01086.04572.02056.06836.03125.178489.04782.232763.06322.345703.0957.135944-.01559.296302-.0474.5-.105468.289337-.08248 1.166087-.296433.86914-.248047-.431583.07033-.841481.246458-1.273437.314453-.239964.03777-.382818-.04461-.458985-.201172zm10.095705-10.574219c.04208-.05082-.09085.07951-.150391.128906.0055.001.0084.000989.01367.002.04543-.03238.08988-.07429.136719-.130859z" fill="#4d4d4d"/><g fill="#4d4d4d" transform="matrix(.44055944 0 0 .42532468 40.311636 40)"><path d="m35.31 5.042c-.532-.155-1.085.15-1.24.68-.155.53.149 1.085.68 1.24 10.156 2.97 17.25 12.443 17.25 23.038 0 13.233-10.767 24-24 24-13.233 0-24-10.767-24-24 0-10.608 7.105-20.085 17.279-23.047.53-.154.835-.709.681-1.239-.153-.53-.708-.839-1.239-.681-11.023 3.208-18.721 13.475-18.721 24.967 0 14.337 11.663 26 26 26 14.337 0 26-11.663 26-26 0-11.478-7.686-21.74-18.69-24.958z"/><path d="m28 27c .553 0 1-.447 1-1v-25c0-.553-.447-1-1-1-.553 0-1 .447-1 1v25c0 .553.447 1 1 1z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m32.082031 1.8183594c-4.521 0-7.854203 1.1872968-9.908203 3.5292968-2.368 2.7010001-2.147797 5.9773438-2.091797 6.5273438v5.318359c-.64.729-1 1.662-1 2.625v4c0 1.217.554047 2.352375 1.498047 3.109375.916 3.627 2.831953 6.359328 3.501953 7.236328v3.308594c0 .968-.527953 1.856313-1.376953 2.320313l-8.919922 4.867187c-2.901 1.583-4.7031248 4.615922-4.7031248 7.919922v3.238281c0 4.746 15.0449998 6 22.9999998 6 3.597846 0 8.63924-.262358 13.089844-.982421-.07211-.01833-.20262-.0538-.300781-.08203-.28687.0329-.432666-.02287-.476563-.142578-.05878-.02457-.130739-.07702-.09375-.06055.02844.01267.05586.02767.08398.04102-.02231-.08741.01344-.21104.07227-.349609-.02745-.34023.08486-.821471.242188-1.332032-3.293321.536151-7.521688.908203-12.617188.908203-13.588 0-21-2.643-21-4v-3.238281c0-2.571 1.403156-4.934062 3.660157-6.164062l8.919921-4.865235c1.493-.815 2.419922-2.379125 2.419922-4.078125v-4.017578l-.232422-.279297c-.024-.029-2.475156-2.993453-3.410156-7.064453l-.0918-.396484-.339844-.21875c-.579-.374-.925781-1.001735-.925781-1.677735v-4c0-.561.237922-1.083609.669922-1.474609l.330078-.296875v-6.228516l-.0078-.130859c-.003-.027-.344485-2.7994844 1.603515-5.0214844 1.657-1.89 4.485297-2.8476562 8.404297-2.8476562 3.905 0 6.727719.951125 8.386719 2.828125 1.947 2.201 1.625047 5.0170156 1.623047 5.0410156l-.0098 6.359375.330078.296875c.432.39.669922.913609.669922 1.474609v4c0 .873-.571875 1.636438-1.421875 1.898438l-.498047.154297-.160156.49414c-.669 2.081-1.621984 4.002891-2.833984 5.712891-.297.421-.584938.793125-.835938 1.078125l-.25.285156v4.125c0 1.77.983407 3.360344 2.566407 4.152344l5.613281 2.806641c.224948-.296508.424217-.488659.75-.72461-.000644.0012.0044-.003.0039-.002.0087-.01124.138071-.113991.195313-.15039.0059-.0042.0057-.0035.01172-.0078.0356-.02562-.0274.03392-.09375.08984-.0282.02937.03374-.0177-.11914.115234.36026-.214013.736911-.403369 1.082031-.640625l-.02344-.01172c-.09991.04283-.254794.114442-.347656.146485-.04258.01469.078-.04415.119141-.0625.07804-.0348.145093-.05649.21875-.08789l-6.515625-3.257812c-.901-.451-1.460938-1.357235-1.460938-2.365235v-3.380859c.229-.28.46975-.599172.71875-.951172 1.239-1.75 2.233078-3.697828 2.955078-5.798828 1.411-.647 2.326172-2.042188 2.326172-3.617188v-4c0-.963-.36-1.896-1-2.625v-5.318359c.056-.55.276203-3.8243906-2.091797-6.5253906-2.054-2.343-5.387203-3.53125-9.908203-3.53125zm12.375 58.4238286c.0082.101146.01603.200058.05078.271484.126932-.351632.336254-.787893.572266-1.251953-.27155.367024-.510255.714762-.623047.980469zm.05078.271484c-.01164.03225-.041.0809-.05078.111328 0 0 0 .002 0 .002.02256.01086.04572.02056.06836.03125.178489.04782.232763.06322.345703.0957.135944-.01559.296302-.0474.5-.105468.289337-.08248 1.166087-.296433.86914-.248047-.431583.07033-.841481.246458-1.273437.314453-.239964.03777-.382818-.04461-.458985-.201172zm10.095705-10.574219c.04208-.05082-.09085.07951-.150391.128906.0055.001.0084.000989.01367.002.04543-.03238.08988-.07429.136719-.130859z" fill="#666"/><g fill="#666" stroke="#666" stroke-width="1.15506775" transform="matrix(.44055944 0 0 .42532468 40.311636 40)"><path d="m35.31 5.042c-.532-.155-1.085.15-1.24.68-.155.53.149 1.085.68 1.24 10.156 2.97 17.25 12.443 17.25 23.038 0 13.233-10.767 24-24 24-13.233 0-24-10.767-24-24 0-10.608 7.105-20.085 17.279-23.047.53-.154.835-.709.681-1.239-.153-.53-.708-.839-1.239-.681-11.023 3.208-18.721 13.475-18.721 24.967 0 14.337 11.663 26 26 26 14.337 0 26-11.663 26-26 0-11.478-7.686-21.74-18.69-24.958z"/><path d="m28 27c .553 0 1-.447 1-1v-25c0-.553-.447-1-1-1-.553 0-1 .447-1 1v25c0 .553.447 1 1 1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m50.380548 45.434454l-9.553-4.776c-.901-.451-1.461-1.357-1.461-2.365v-3.381c.229-.28.47-.599.719-.951 1.239-1.75 2.232-3.698 2.954-5.799 1.411-.647 2.327-2.042 2.327-3.617v-4c0-.963-.36-1.896-1-2.625v-5.319c.056-.55.276-3.8239997-2.092-6.5249997-2.054-2.343-5.387-3.5309997-9.908-3.5309997-4.521 0-7.854 1.1879997-9.908 3.5299997-2.368 2.701-2.148 5.9759997-2.092 6.5259997v5.319c-.64.729-1 1.662-1 2.625v4c0 1.217.553 2.352 1.497 3.109.916 3.627 2.833 6.36 3.503 7.237v3.309c0 .968-.528 1.856-1.377 2.32l-8.921 4.866c-2.901 1.583-4.7020003 4.617-4.7020003 7.921v3.238c0 4.746 15.0450003 6 23.0000003 6 7.955 0 23-1.254 23-6v-3.043c0-3.438-1.911-6.53-4.986-8.068zm2.986 11.111c0 1.357-7.412 4-21 4-13.588 0-21-2.643-21-4v-3.238c0-2.571 1.402-4.934 3.659-6.164l8.921-4.866c1.493-.815 2.42-2.378 2.42-4.077v-4.019l-.233-.278c-.024-.029-2.475-2.994-3.41-7.065l-.091-.396-.341-.22c-.579-.374-.925-1.001-.925-1.677v-4c0-.561.238-1.084.67-1.475l.33-.297v-6.228l-.009-.131c-.003-.027-.343-2.7989997 1.605-5.0209997 1.657-1.89 4.485-2.848 8.404-2.848 3.905 0 6.727.951 8.386 2.828 1.947 2.201 1.625 5.0169997 1.623 5.0409997l-.009 6.359.33.298c.432.39.67.913.67 1.474v4c0 .873-.572 1.637-1.422 1.899l-.498.153-.16.495c-.669 2.081-1.622 4.003-2.834 5.713-.297.421-.586.794-.837 1.079l-.249.284v4.125c0 1.77.983 3.361 2.566 4.153l9.553 4.776c2.394 1.197 3.881 3.603 3.881 6.28z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m50.380548 45.434454l-9.553-4.776c-.901-.451-1.461-1.357-1.461-2.365v-3.381c.229-.28.47-.599.719-.951 1.239-1.75 2.232-3.698 2.954-5.799 1.411-.647 2.327-2.042 2.327-3.617v-4c0-.963-.36-1.896-1-2.625v-5.319c.056-.55.276-3.8239997-2.092-6.5249997-2.054-2.343-5.387-3.5309997-9.908-3.5309997-4.521 0-7.854 1.1879997-9.908 3.5299997-2.368 2.701-2.148 5.9759997-2.092 6.5259997v5.319c-.64.729-1 1.662-1 2.625v4c0 1.217.553 2.352 1.497 3.109.916 3.627 2.833 6.36 3.503 7.237v3.309c0 .968-.528 1.856-1.377 2.32l-8.921 4.866c-2.901 1.583-4.7020003 4.617-4.7020003 7.921v3.238c0 4.746 15.0450003 6 23.0000003 6 7.955 0 23-1.254 23-6v-3.043c0-3.438-1.911-6.53-4.986-8.068zm2.986 11.111c0 1.357-7.412 4-21 4-13.588 0-21-2.643-21-4v-3.238c0-2.571 1.402-4.934 3.659-6.164l8.921-4.866c1.493-.815 2.42-2.378 2.42-4.077v-4.019l-.233-.278c-.024-.029-2.475-2.994-3.41-7.065l-.091-.396-.341-.22c-.579-.374-.925-1.001-.925-1.677v-4c0-.561.238-1.084.67-1.475l.33-.297v-6.228l-.009-.131c-.003-.027-.343-2.7989997 1.605-5.0209997 1.657-1.89 4.485-2.848 8.404-2.848 3.905 0 6.727.951 8.386 2.828 1.947 2.201 1.625 5.0169997 1.623 5.0409997l-.009 6.359.33.298c.432.39.67.913.67 1.474v4c0 .873-.572 1.637-1.422 1.899l-.498.153-.16.495c-.669 2.081-1.622 4.003-2.834 5.713-.297.421-.586.794-.837 1.079l-.249.284v4.125c0 1.77.983 3.361 2.566 4.153l9.553 4.776c2.394 1.197 3.881 3.603 3.881 6.28z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m1.3961392 14.230046l12.8341148-12.8339061 13.821193 13.8209681-12.834115 12.833906z" fill="none" stroke="#000" stroke-miterlimit="10" stroke-opacity=".63049853" stroke-width="1.97443902"/><path d="m12.682771 33.076298l20.249668-20.029054 29.893113 29.567436-20.249667 20.029054z" fill="none" stroke="#000" stroke-miterlimit="10" stroke-opacity=".65102635" stroke-width="1.91761029"/><path d="m7.3190146 13.242745l8.8851334 8.884989" fill="none" stroke="#000" stroke-miterlimit="10" stroke-opacity=".65689152" stroke-width="1.97445798"/><path d="m13.242437 7.3194191l8.885133 8.8849889" fill="none" stroke="#000" stroke-miterlimit="10" stroke-opacity=".68914956" stroke-width="1.97445798"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke="#666" stroke-miterlimit="10"><path d="m1.3961392 14.230046l12.8341148-12.8339061 13.821193 13.8209681-12.834115 12.833906z" stroke-width="1.97443902"/><path d="m12.682771 33.076298l20.249668-20.029054 29.893113 29.567436-20.249667 20.029054z" stroke-width="1.91761029"/><path d="m7.3190146 13.242745l8.8851334 8.884989" stroke-width="1.97445798"/><path d="m13.242437 7.3194191l8.885133 8.8849889" stroke-width="1.97445798"/></g></svg>

Before

Width:  |  Height:  |  Size: 788 B

After

Width:  |  Height:  |  Size: 540 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 8.0 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m59.748064 3.5561939c-.241412-.1983721-.559941-.2886366-.881824-.2529506l-34.647058 4.2098951c-.556589.068223-.973471.5121986-.973471 1.0401411v6.3153685 4.420862 26.642727c-2.040823-2.303844-5.283118-3.802655-8.941176-3.802655-6.1627061 0-11.1764708 4.237184-11.1764708 9.446287 0 5.209102 5.0137647 9.446287 11.1764708 9.446287 6.162705 0 11.17647-4.237185 11.17647-9.446287 0-.243504-.02124-.48281-.04359-.721067.01453-.06822.04359-.130149.04359-.201521v-30.441184l32.411765-3.939101v19.162317c-2.040824-2.302794-5.283118-3.801605-8.941177-3.801605-6.162705 0-11.17647 4.237184-11.17647 9.446287 0 5.209102 5.013765 9.446286 11.17647 9.446286 6.106824 0 11.079236-4.162663 11.168647-9.306691 0-.01364.0078-.02519.0078-.03883v-26.10219-4.419813-6.3143181c0-.3022812-.138588-.5898681-.38-.78824zm-45.443529 55.3667871c-4.9299414 0-8.9411767-3.296754-8.9411767-7.347112 0-4.050358 4.0112353-7.347112 8.9411767-7.347112 4.929941 0 8.941176 3.296754 8.941176 7.347112 0 4.050358-4.011235 7.347112-8.941176 7.347112zm34.647058-10.495874c-4.929941 0-8.941176-3.296755-8.941176-7.347112 0-4.050358 4.011235-7.347112 8.941176-7.347112 4.929942 0 8.941177 3.296754 8.941177 7.347112 0 4.050357-4.011235 7.347112-8.941177 7.347112zm-23.470588-30.332028v-3.226431-5.3927811l32.411765-3.9380521v5.1209372 3.497226z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m59.748064 3.5561939c-.241412-.1983721-.559941-.2886366-.881824-.2529506l-34.647058 4.2098951c-.556589.068223-.973471.5121986-.973471 1.0401411v6.3153685 4.420862 26.642727c-2.040823-2.303844-5.283118-3.802655-8.941176-3.802655-6.1627061 0-11.1764708 4.237184-11.1764708 9.446287 0 5.209102 5.0137647 9.446287 11.1764708 9.446287 6.162705 0 11.17647-4.237185 11.17647-9.446287 0-.243504-.02124-.48281-.04359-.721067.01453-.06822.04359-.130149.04359-.201521v-30.441184l32.411765-3.939101v19.162317c-2.040824-2.302794-5.283118-3.801605-8.941177-3.801605-6.162705 0-11.17647 4.237184-11.17647 9.446287 0 5.209102 5.013765 9.446286 11.17647 9.446286 6.106824 0 11.079236-4.162663 11.168647-9.306691 0-.01364.0078-.02519.0078-.03883v-26.10219-4.419813-6.3143181c0-.3022812-.138588-.5898681-.38-.78824zm-45.443529 55.3667871c-4.9299414 0-8.9411767-3.296754-8.9411767-7.347112 0-4.050358 4.0112353-7.347112 8.9411767-7.347112 4.929941 0 8.941176 3.296754 8.941176 7.347112 0 4.050358-4.011235 7.347112-8.941176 7.347112zm34.647058-10.495874c-4.929941 0-8.941176-3.296755-8.941176-7.347112 0-4.050358 4.011235-7.347112 8.941176-7.347112 4.929942 0 8.941177 3.296754 8.941177 7.347112 0 4.050357-4.011235 7.347112-8.941177 7.347112zm-23.470588-30.332028v-3.226431-5.3927811l32.411765-3.9380521v5.1209372 3.497226z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d"><g transform="matrix(1 0 0 1.1782531 1.7189733 -3.2796207)"><path d="m18.195 55.5h23.609l-11.804-18.887zm3.61-2l8.195-13.113 8.195 13.113z"/><path d="m0 4.5v40h22c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-20v-36h56v36h-20c-.553 0-1 .447-1 1 0 .553.447 1 1 1h22v-40z"/></g><g transform="matrix(.66083916 0 0 .62587413 14.446246 7.1588817)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m26 10c-.552 0-1 .447-1 1v22c0 .553.448 1 1 1 .552 0 1-.447 1-1v-22c0-.553-.448-1-1-1z"/><path d="m26 37c-.552 0-1 .447-1 1v2c0 .553.448 1 1 1 .552 0 1-.447 1-1v-2c0-.553-.448-1-1-1z"/></g></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1 0 0 1.1782531 1.7189733 -3.2796207)"><path d="m18.195 55.5h23.609l-11.804-18.887zm3.61-2l8.195-13.113 8.195 13.113z"/><path d="m0 4.5v40h22c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-20v-36h56v36h-20c-.553 0-1 .447-1 1 0 .553.447 1 1 1h22v-40z"/></g><g fill="#666" stroke="#666" stroke-width=".77746101" transform="matrix(.66083916 0 0 .62587413 14.446246 7.1588817)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m26 10c-.552 0-1 .447-1 1v22c0 .553.448 1 1 1 .552 0 1-.447 1-1v-22c0-.553-.448-1-1-1z"/><path d="m26 37c-.552 0-1 .447-1 1v2c0 .553.448 1 1 1 .552 0 1-.447 1-1v-2c0-.553-.448-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 870 B

After

Width:  |  Height:  |  Size: 911 B

@ -1 +1 @@
<svg enable-background="new 0 0 60 60" viewBox="0 0 60 60" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d"><path d="m38.914 0h-32.414v60h47v-45.414zm.586 3.414l10.586 10.586h-10.586zm-31 54.586v-56h29v14h14v42z"/><text x="18.559322" y="17.79661"><tspan x="18.559322" y="17.79661"/></text><text font-family="sans-serif" font-size="18" letter-spacing="0" line-height="125%" word-spacing="0" x="10.677965" xml:space="preserve" y="15.000001"><tspan x="10.677965" y="15.000001">ru</tspan></text><text font-family="sans-serif" font-size="18" letter-spacing="0" line-height="125%" word-spacing="0" x="10.677966" xml:space="preserve" y="27.457626"><tspan x="10.677966" y="27.457626">en</tspan></text><text font-family="sans-serif" font-size="18" letter-spacing="0" line-height="125%" word-spacing="0" x="10.932204" xml:space="preserve" y="42.711864"><tspan x="10.932204" y="42.711864">fr</tspan></text><text font-family="sans-serif" font-size="18" letter-spacing="0" line-height="125%" word-spacing="0" x="11.694915" xml:space="preserve" y="57.203388"><tspan x="11.694915" y="57.203388">de</tspan></text></g></svg>
<svg enable-background="new 0 0 60 60" viewBox="0 0 60 60" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g fill="#666"><path d="m38.914 0h-32.414v60h47v-45.414zm.586 3.414l10.586 10.586h-10.586zm-31 54.586v-56h29v14h14v42z"/><text x="18.559322" y="17.79661"><tspan fill="#666" x="18.559322" y="17.79661"/></text><text font-family="sans-serif" font-size="18" letter-spacing="0" line-height="125%" word-spacing="0" x="10.677965" xml:space="preserve" y="15.000001"><tspan fill="#666" x="10.677965" y="15.000001">ru</tspan></text><text font-family="sans-serif" font-size="18" letter-spacing="0" line-height="125%" word-spacing="0" x="10.677966" xml:space="preserve" y="27.457626"><tspan fill="#666" x="10.677966" y="27.457626">en</tspan></text><text font-family="sans-serif" font-size="18" letter-spacing="0" line-height="125%" word-spacing="0" x="10.932204" xml:space="preserve" y="42.711864"><tspan fill="#666" x="10.932204" y="42.711864">fr</tspan></text><text font-family="sans-serif" font-size="18" letter-spacing="0" line-height="125%" word-spacing="0" x="11.694915" xml:space="preserve" y="57.203388"><tspan fill="#666" x="11.694915" y="57.203388">de</tspan></text></g></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m49 0c-3.309 0-6 2.691-6 6 0 1.035.263 2.009.726 2.86l-9.829 9.829c-1.355-1.055-3.051-1.689-4.897-1.689-1.846 0-3.542.634-4.898 1.688l-7.669-7.669c.352-.595.567-1.279.567-2.019 0-2.206-1.794-4-4-4-2.206 0-4 1.794-4 4 0 2.206 1.794 4 4 4 .74 0 1.424-.215 2.019-.567l7.669 7.669c-1.054 1.356-1.688 3.052-1.688 4.898 0 1.846.634 3.542 1.688 4.897l-12.664 12.665c-1.066-.967-2.475-1.562-4.024-1.562-3.309 0-6 2.691-6 6 0 3.309 2.691 6 6 6 3.309 0 6-2.691 6-6 0-1.035-.263-2.009-.726-2.86l12.829-12.829c1.106.86 2.44 1.436 3.898 1.619v10.16c-2.833.478-5 2.942-5 5.91 0 3.309 2.691 6 6 6 3.309 0 6-2.691 6-6 0-2.967-2.167-5.431-5-5.91v-10.16c1.458-.183 2.792-.759 3.898-1.619l7.669 7.669c-.353.596-.568 1.28-.568 2.02 0 2.206 1.794 4 4 4 2.206 0 4-1.794 4-4 0-2.206-1.794-4-4-4-.74 0-1.424.215-2.019.567l-7.669-7.669c1.054-1.356 1.688-3.052 1.688-4.898 0-1.846-.634-3.542-1.688-4.897l9.665-9.665c1.065.967 2.474 1.562 4.023 1.562 3.309 0 6-2.691 6-6 0-3.309-2.691-6-6-6zm-38 9c0-1.103.897-2 2-2 1.103 0 2 .897 2 2 0 1.103-.897 2-2 2-1.103 0-2-.897-2-2zm-5 42c-2.206 0-4-1.794-4-4 0-2.206 1.794-4 4-4 2.206 0 4 1.794 4 4 0 2.206-1.794 4-4 4zm27-2c0 2.206-1.794 4-4 4-2.206 0-4-1.794-4-4 0-2.206 1.794-4 4-4 2.206 0 4 1.794 4 4zm-4-18c-3.309 0-6-2.691-6-6 0-3.309 2.691-6 6-6 3.309 0 6 2.691 6 6 0 3.309-2.691 6-6 6zm18 10c0 1.103-.897 2-2 2-1.103 0-2-.897-2-2 0-1.103.897-2 2-2 1.103 0 2 .897 2 2zm2-31c-2.206 0-4-1.794-4-4 0-2.206 1.794-4 4-4 2.206 0 4 1.794 4 4 0 2.206-1.794 4-4 4z" fill="#4d4d4d" transform="translate(4.1826328 4.5679728)"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m49 0c-3.309 0-6 2.691-6 6 0 1.035.263 2.009.726 2.86l-9.829 9.829c-1.355-1.055-3.051-1.689-4.897-1.689-1.846 0-3.542.634-4.898 1.688l-7.669-7.669c.352-.595.567-1.279.567-2.019 0-2.206-1.794-4-4-4-2.206 0-4 1.794-4 4 0 2.206 1.794 4 4 4 .74 0 1.424-.215 2.019-.567l7.669 7.669c-1.054 1.356-1.688 3.052-1.688 4.898 0 1.846.634 3.542 1.688 4.897l-12.664 12.665c-1.066-.967-2.475-1.562-4.024-1.562-3.309 0-6 2.691-6 6 0 3.309 2.691 6 6 6 3.309 0 6-2.691 6-6 0-1.035-.263-2.009-.726-2.86l12.829-12.829c1.106.86 2.44 1.436 3.898 1.619v10.16c-2.833.478-5 2.942-5 5.91 0 3.309 2.691 6 6 6 3.309 0 6-2.691 6-6 0-2.967-2.167-5.431-5-5.91v-10.16c1.458-.183 2.792-.759 3.898-1.619l7.669 7.669c-.353.596-.568 1.28-.568 2.02 0 2.206 1.794 4 4 4 2.206 0 4-1.794 4-4 0-2.206-1.794-4-4-4-.74 0-1.424.215-2.019.567l-7.669-7.669c1.054-1.356 1.688-3.052 1.688-4.898 0-1.846-.634-3.542-1.688-4.897l9.665-9.665c1.065.967 2.474 1.562 4.023 1.562 3.309 0 6-2.691 6-6 0-3.309-2.691-6-6-6zm-38 9c0-1.103.897-2 2-2 1.103 0 2 .897 2 2 0 1.103-.897 2-2 2-1.103 0-2-.897-2-2zm-5 42c-2.206 0-4-1.794-4-4 0-2.206 1.794-4 4-4 2.206 0 4 1.794 4 4 0 2.206-1.794 4-4 4zm27-2c0 2.206-1.794 4-4 4-2.206 0-4-1.794-4-4 0-2.206 1.794-4 4-4 2.206 0 4 1.794 4 4zm-4-18c-3.309 0-6-2.691-6-6 0-3.309 2.691-6 6-6 3.309 0 6 2.691 6 6 0 3.309-2.691 6-6 6zm18 10c0 1.103-.897 2-2 2-1.103 0-2-.897-2-2 0-1.103.897-2 2-2 1.103 0 2 .897 2 2zm2-31c-2.206 0-4-1.794-4-4 0-2.206 1.794-4 4-4 2.206 0 4 1.794 4 4 0 2.206-1.794 4-4 4z" fill="#666" transform="translate(4.1826328 4.5679728)"/></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="translate(2.0462691 2.4316092)"><path d="m55.783 8h-51.566c-2.325 0-4.217 1.892-4.217 4.217v35.566c0 2.325 1.892 4.217 4.217 4.217h51.566c2.325 0 4.217-1.892 4.217-4.217v-35.566c0-2.325-1.892-4.217-4.217-4.217zm2.217 39.783c0 1.223-.994 2.217-2.217 2.217h-51.566c-1.223 0-2.217-.994-2.217-2.217v-35.566c0-1.223.994-2.217 2.217-2.217h51.566c1.223 0 2.217.994 2.217 2.217z"/><path d="m22.638 36.246l-3.638-1.858v-.387c1.628-.889 2.773-2.353 3.412-4.364.969-.514 1.588-1.515 1.588-2.637v-1c0-.926-.431-1.785-1.151-2.349-.624-3.78-3.262-5.696-7.849-5.696-.217 0-.429.008-.636.024-.864.071-2.129-.004-3.224-.74-.409-.276-.718-.544-.915-.793-.336-.429-.901-.579-1.402-.373-.502.206-.797.708-.734 1.247.042.374.105.809.2 1.286.193.975.193.975-.078 1.558-.102.221-.228.49-.376.853-.331.811-.566 1.699-.701 2.647-.71.565-1.134 1.419-1.134 2.336v1c0 1.122.619 2.123 1.588 2.637.639 2.012 1.784 3.476 3.412 4.364v.376l-3.769 1.858c-1.376.75-2.231 2.19-2.231 3.758v1.325c0 .803 0 2.682 10 2.682 10 0 10-1.879 10-2.682v-1.245c0-1.631-.905-3.096-2.362-3.827zm.362 4.846c-.624.38-3.162.908-8 .908-4.838 0-7.376-.528-8-.908v-1.099c0-.835.455-1.603 1.152-1.982l3.857-1.901c.602-.294.99-.917.99-1.588v-1.803l-.604-.26c-1.517-.654-2.503-1.901-3.015-3.814l-.143-.533-.526-.164c-.418-.131-.711-.52-.711-.948v-1c0-.362.207-.698.541-.876l.469-.25.055-.529c.099-.938.308-1.803.622-2.57.133-.325.246-.568.338-.767.339-.728.462-1.104.377-1.875 1.176.672 2.589.958 4.122.841.155-.013.314-.019.477-.019 3.744 0 5.572 1.356 5.929 4.398l.062.522.465.246c.334.178.543.515.543.879v1c0 .428-.293.817-.712.947l-.526.164-.143.533c-.512 1.913-1.498 3.16-3.015 3.814l-.604.261v1.811c0 .669.37 1.272.964 1.575l3.775 1.929c.778.388 1.261 1.17 1.261 2.039z"/><path d="m30 23h10c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-10c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m44 23h1c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-1c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m31 38h-1c-.553 0-1 .447-1 1 0 .553.447 1 1 1h1c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m37 38h-2c-.553 0-1 .447-1 1 0 .553.447 1 1 1h2c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m42 38h-1c-.553 0-1 .447-1 1 0 .553.447 1 1 1h1c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m48 38h-2c-.553 0-1 .447-1 1 0 .553.447 1 1 1h2c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m51.29 38.29c-.181.189-.29.45-.29.71 0 .26.109.52.29.71.189.18.45.29.71.29.26 0 .52-.11.71-.29.18-.19.29-.45.29-.71 0-.26-.11-.521-.29-.71-.38-.37-1.05-.37-1.42 0z"/><path d="m52 27h-22c-.553 0-1 .447-1 1 0 .553.447 1 1 1h22c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m52 33h-22c-.553 0-1 .447-1 1 0 .553.447 1 1 1h22c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666"><path d="m57.829269 10.431609h-51.5659999c-2.325 0-4.217 1.892-4.217 4.217v35.566c0 2.325 1.892 4.217 4.217 4.217h51.5659999c2.325 0 4.217-1.892 4.217-4.217v-35.566c0-2.325-1.892-4.217-4.217-4.217zm2.217 39.783c0 1.223-.994 2.217-2.217 2.217h-51.5659999c-1.223 0-2.217-.994-2.217-2.217v-35.566c0-1.223.994-2.217 2.217-2.217h51.5659999c1.223 0 2.217.994 2.217 2.217z"/><path d="m9.4082691 38.677609l3.6379999-1.858v-.387c-1.628-.889-2.773-2.353-3.4119999-4.364-.969-.514-1.588-1.515-1.588-2.637v-1c0-.926.431-1.785 1.151-2.349.624-3.78 3.2619999-5.696 7.8489999-5.696.217 0 .429.008.636.024.864.071 2.129-.004 3.224-.74.409-.276.718-.544.915-.793.336-.429.901-.579 1.402-.373.502.206.797.708.734 1.247-.042.374-.105.809-.2 1.286-.193.975-.193.975.078 1.558.102.221.228.49.376.853.331.811.566 1.699.701 2.647.71.565 1.134 1.419 1.134 2.336v1c0 1.122-.619 2.123-1.588 2.637-.639 2.012-1.784 3.476-3.412 4.364v.376l3.769 1.858c1.376.75 2.231 2.19 2.231 3.758v1.325c0 .803 0 2.682-10 2.682-9.9999999 0-9.9999999-1.879-9.9999999-2.682v-1.245c0-1.631.905-3.096 2.362-3.827zm-.362 4.846c.624.38 3.1619999.908 7.9999999.908 4.838 0 7.376-.528 8-.908v-1.099c0-.835-.455-1.603-1.152-1.982l-3.857-1.901c-.602-.294-.99-.917-.99-1.588v-1.803l.604-.26c1.517-.654 2.503-1.901 3.015-3.814l.143-.533.526-.164c.418-.131.711-.52.711-.948v-1c0-.362-.207-.698-.541-.876l-.469-.25-.055-.529c-.099-.938-.308-1.803-.622-2.57-.133-.325-.246-.568-.338-.767-.339-.728-.462-1.104-.377-1.875-1.176.672-2.589.958-4.122.841-.155-.013-.314-.019-.477-.019-3.744 0-5.572 1.356-5.929 4.398l-.062.522-.465.246c-.334.178-.543.515-.543.879v1c0 .428.293.817.712.947l.526.164.143.533c.512 1.913 1.498 3.16 3.015 3.814l.604.261v1.811c0 .669-.37 1.272-.964 1.575l-3.775 1.929c-.7779999.388-1.2609999 1.17-1.2609999 2.039z"/><path d="m32.317455 31.940084h10c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-10c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m32.758133 25.973982h1c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-1c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m53.23271 37.024829h-22c-.553 0-1 .447-1 1 0 .553.447 1 1 1h22c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m53.23271 42.753642h-22c-.553 0-1 .447-1 1 0 .553.447 1 1 1h22c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d"><g transform="matrix(1.0121212 0 0 1.1996435 1.7189733 -3.921332)"><path d="m18.195 55.5h23.609l-11.804-18.887zm3.61-2l8.195-13.113 8.195 13.113z"/><path d="m0 4.5v40h22c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-20v-36h56v36h-20c-.553 0-1 .447-1 1 0 .553.447 1 1 1h22v-40z"/></g><g transform="matrix(.61212121 0 0 .60303031 13.718973 5.1588819)"><path d="m59 31c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-3.028c-.059-1.59-.259-3.183-.616-4.759l2.915-.781c.533-.143.85-.691.707-1.225-.143-.534-.689-.848-1.225-.707l-2.921.783c-.467-1.508-1.077-2.991-1.837-4.432l2.62-1.513c.479-.276.643-.888.366-1.366-.277-.479-.891-.644-1.366-.366l-2.62 1.513c-.868-1.379-1.848-2.649-2.92-3.807l2.138-2.138c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0l-2.133 2.133c-1.186-1.097-2.466-2.067-3.813-2.913l1.514-2.622c.276-.479.112-1.09-.367-1.366-.478-.276-1.09-.114-1.366.366l-1.516 2.626c-1.421-.746-2.905-1.36-4.432-1.832l.786-2.933c.143-.533-.174-1.082-.707-1.225-.53-.141-1.082.174-1.225.707l-.786 2.933c-1.558-.354-3.15-.564-4.754-.628v-3.034c0-.553-.447-1-1-1-.553 0-1 .447-1 1v3.029c-1.59.059-3.183.259-4.759.616l-.781-2.916c-.142-.534-.689-.849-1.225-.707-.533.143-.85.691-.707 1.225l.783 2.922c-1.508.467-2.991 1.076-4.432 1.837l-1.513-2.62c-.277-.481-.89-.643-1.366-.366-.479.276-.643.888-.366 1.366l1.513 2.62c-1.379.868-2.649 1.848-3.807 2.92l-2.138-2.138c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2.133 2.133c-1.097 1.186-2.067 2.466-2.913 3.813l-2.622-1.514c-.478-.278-1.09-.113-1.366.366-.276.479-.112 1.09.366 1.366l2.626 1.516c-.746 1.421-1.36 2.905-1.832 4.432l-2.932-.786c-.531-.14-1.082.174-1.225.707-.143.533.174 1.082.707 1.225l2.932.786c-.355 1.558-.565 3.15-.629 4.754h-3.033c-.553 0-1 .447-1 1 0 .553.447 1 1 1h3.028c.059 1.59.259 3.183.616 4.759l-2.915.781c-.533.143-.85.691-.707 1.225.119.447.523.741.965.741.086 0 .173-.011.26-.034l2.921-.783c.467 1.508 1.077 2.991 1.837 4.432l-2.62 1.513c-.478.276-.642.887-.365 1.366.186.321.521.5.867.5.17 0 .342-.043.499-.134l2.627-1.517c.868 1.379 1.844 2.651 2.915 3.809l-2.141 2.141c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.143-2.143c1.186 1.096 2.459 2.072 3.806 2.917l-1.517 2.627c-.276.479-.112 1.09.366 1.366.157.091.329.134.499.134.346 0 .682-.179.867-.5l1.52-2.632c1.421.746 2.903 1.359 4.43 1.832l-.788 2.939c-.143.533.174 1.082.707 1.225.087.023.174.034.26.034.441 0 .846-.294.965-.741l.788-2.941c1.558.355 3.148.567 4.752.632v3.038c0 .553.447 1 1 1 .553 0 1-.447 1-1v-3.035c1.589-.059 3.18-.264 4.756-.621l.784 2.927c.119.447.523.741.965.741.086 0 .173-.011.26-.034.533-.143.85-.691.707-1.225l-.784-2.926c1.507-.467 2.989-1.079 4.429-1.839l1.517 2.626c.186.321.521.5.867.5.17 0 .342-.043.499-.134.479-.276.643-.888.366-1.366l-1.513-2.62c1.379-.868 2.649-1.848 3.807-2.92l2.138 2.138c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-2.133-2.133c1.097-1.186 2.067-2.466 2.913-3.813l2.622 1.514c.157.091.329.134.499.134.346 0 .682-.179.867-.5.276-.479.112-1.09-.366-1.366l-2.626-1.516c.746-1.421 1.36-2.905 1.832-4.432l2.932.786c.087.023.174.034.26.034.441 0 .846-.294.965-.741.143-.533-.174-1.082-.707-1.225l-2.932-.786c.354-1.559.564-3.15.629-4.754zm-17 19.784c-11.17 6.448-25.421 2.866-32.262-7.931l11.296-6.522c2.111 2.991 5.498 4.665 8.986 4.665 1.864 0 3.753-.474 5.479-1.471 1.425-.823 2.586-1.925 3.476-3.19l11.284 6.516c-2.008 3.176-4.785 5.928-8.259 7.933zm-24-41.568c3.474-2.006 7.245-3.03 11-3.18v13.024c-1.54.138-3.074.593-4.499 1.415-4.96 2.864-6.84 9.032-4.482 14.133l-11.281 6.513c-5.93-11.324-1.908-25.457 9.262-31.905zm16.499 28.577c-4.298 2.48-9.812 1.002-12.292-3.294-2.48-4.297-1.003-9.811 3.294-12.292 4.295-2.482 9.811-1.004 12.292 3.294 2.48 4.297 1.003 9.811-3.294 12.292zm5.476-3.19c1.441-3.134 1.402-6.894-.449-10.102-1.853-3.208-5.09-5.121-8.525-5.441v-13.021c7.928.343 15.53 4.592 19.783 11.961 4.255 7.369 4.139 16.077.471 23.117z"/><path d="m31.553 24.205c-1.545-.415-3.164-.2-4.553.6-1.388.801-2.38 2.095-2.795 3.643-.414 1.548-.201 3.165.6 4.553.801 1.388 2.095 2.38 3.643 2.795.517.139 1.041.207 1.563.207 1.039 0 2.065-.273 2.99-.807 1.388-.801 2.38-2.095 2.795-3.643.414-1.548.201-3.165-.6-4.553-.801-1.388-2.095-2.38-3.643-2.795zm2.31 6.83c-.276 1.032-.938 1.894-1.863 2.428-.925.534-2.002.675-3.035.4-1.032-.276-1.894-.938-2.428-1.863-.534-.926-.677-2.003-.4-3.035.277-1.032.938-1.894 1.863-2.428.616-.356 1.301-.538 1.994-.538.347 0 .696.046 1.041.138 1.032.276 1.894.938 2.428 1.863.534.926.677 2.003.4 3.035z"/></g></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1.0121212 0 0 1.1996435 1.7189733 -3.921332)"><path d="m18.195 55.5h23.609l-11.804-18.887zm3.61-2l8.195-13.113 8.195 13.113z"/><path d="m0 4.5v40h22c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-20v-36h56v36h-20c-.553 0-1 .447-1 1 0 .553.447 1 1 1h22v-40z"/></g><g fill="#666" stroke="#666" stroke-width=".82296567" transform="matrix(.61212121 0 0 .60303031 13.718973 5.1588819)"><path d="m59 31c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-3.028c-.059-1.59-.259-3.183-.616-4.759l2.915-.781c.533-.143.85-.691.707-1.225-.143-.534-.689-.848-1.225-.707l-2.921.783c-.467-1.508-1.077-2.991-1.837-4.432l2.62-1.513c.479-.276.643-.888.366-1.366-.277-.479-.891-.644-1.366-.366l-2.62 1.513c-.868-1.379-1.848-2.649-2.92-3.807l2.138-2.138c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0l-2.133 2.133c-1.186-1.097-2.466-2.067-3.813-2.913l1.514-2.622c.276-.479.112-1.09-.367-1.366-.478-.276-1.09-.114-1.366.366l-1.516 2.626c-1.421-.746-2.905-1.36-4.432-1.832l.786-2.933c.143-.533-.174-1.082-.707-1.225-.53-.141-1.082.174-1.225.707l-.786 2.933c-1.558-.354-3.15-.564-4.754-.628v-3.034c0-.553-.447-1-1-1-.553 0-1 .447-1 1v3.029c-1.59.059-3.183.259-4.759.616l-.781-2.916c-.142-.534-.689-.849-1.225-.707-.533.143-.85.691-.707 1.225l.783 2.922c-1.508.467-2.991 1.076-4.432 1.837l-1.513-2.62c-.277-.481-.89-.643-1.366-.366-.479.276-.643.888-.366 1.366l1.513 2.62c-1.379.868-2.649 1.848-3.807 2.92l-2.138-2.138c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2.133 2.133c-1.097 1.186-2.067 2.466-2.913 3.813l-2.622-1.514c-.478-.278-1.09-.113-1.366.366-.276.479-.112 1.09.366 1.366l2.626 1.516c-.746 1.421-1.36 2.905-1.832 4.432l-2.932-.786c-.531-.14-1.082.174-1.225.707-.143.533.174 1.082.707 1.225l2.932.786c-.355 1.558-.565 3.15-.629 4.754h-3.033c-.553 0-1 .447-1 1 0 .553.447 1 1 1h3.028c.059 1.59.259 3.183.616 4.759l-2.915.781c-.533.143-.85.691-.707 1.225.119.447.523.741.965.741.086 0 .173-.011.26-.034l2.921-.783c.467 1.508 1.077 2.991 1.837 4.432l-2.62 1.513c-.478.276-.642.887-.365 1.366.186.321.521.5.867.5.17 0 .342-.043.499-.134l2.627-1.517c.868 1.379 1.844 2.651 2.915 3.809l-2.141 2.141c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.143-2.143c1.186 1.096 2.459 2.072 3.806 2.917l-1.517 2.627c-.276.479-.112 1.09.366 1.366.157.091.329.134.499.134.346 0 .682-.179.867-.5l1.52-2.632c1.421.746 2.903 1.359 4.43 1.832l-.788 2.939c-.143.533.174 1.082.707 1.225.087.023.174.034.26.034.441 0 .846-.294.965-.741l.788-2.941c1.558.355 3.148.567 4.752.632v3.038c0 .553.447 1 1 1 .553 0 1-.447 1-1v-3.035c1.589-.059 3.18-.264 4.756-.621l.784 2.927c.119.447.523.741.965.741.086 0 .173-.011.26-.034.533-.143.85-.691.707-1.225l-.784-2.926c1.507-.467 2.989-1.079 4.429-1.839l1.517 2.626c.186.321.521.5.867.5.17 0 .342-.043.499-.134.479-.276.643-.888.366-1.366l-1.513-2.62c1.379-.868 2.649-1.848 3.807-2.92l2.138 2.138c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-2.133-2.133c1.097-1.186 2.067-2.466 2.913-3.813l2.622 1.514c.157.091.329.134.499.134.346 0 .682-.179.867-.5.276-.479.112-1.09-.366-1.366l-2.626-1.516c.746-1.421 1.36-2.905 1.832-4.432l2.932.786c.087.023.174.034.26.034.441 0 .846-.294.965-.741.143-.533-.174-1.082-.707-1.225l-2.932-.786c.354-1.559.564-3.15.629-4.754zm-17 19.784c-11.17 6.448-25.421 2.866-32.262-7.931l11.296-6.522c2.111 2.991 5.498 4.665 8.986 4.665 1.864 0 3.753-.474 5.479-1.471 1.425-.823 2.586-1.925 3.476-3.19l11.284 6.516c-2.008 3.176-4.785 5.928-8.259 7.933zm-24-41.568c3.474-2.006 7.245-3.03 11-3.18v13.024c-1.54.138-3.074.593-4.499 1.415-4.96 2.864-6.84 9.032-4.482 14.133l-11.281 6.513c-5.93-11.324-1.908-25.457 9.262-31.905zm16.499 28.577c-4.298 2.48-9.812 1.002-12.292-3.294-2.48-4.297-1.003-9.811 3.294-12.292 4.295-2.482 9.811-1.004 12.292 3.294 2.48 4.297 1.003 9.811-3.294 12.292zm5.476-3.19c1.441-3.134 1.402-6.894-.449-10.102-1.853-3.208-5.09-5.121-8.525-5.441v-13.021c7.928.343 15.53 4.592 19.783 11.961 4.255 7.369 4.139 16.077.471 23.117z"/><path d="m31.553 24.205c-1.545-.415-3.164-.2-4.553.6-1.388.801-2.38 2.095-2.795 3.643-.414 1.548-.201 3.165.6 4.553.801 1.388 2.095 2.38 3.643 2.795.517.139 1.041.207 1.563.207 1.039 0 2.065-.273 2.99-.807 1.388-.801 2.38-2.095 2.795-3.643.414-1.548.201-3.165-.6-4.553-.801-1.388-2.095-2.38-3.643-2.795zm2.31 6.83c-.276 1.032-.938 1.894-1.863 2.428-.925.534-2.002.675-3.035.4-1.032-.276-1.894-.938-2.428-1.863-.534-.926-.677-2.003-.4-3.035.277-1.032.938-1.894 1.863-2.428.616-.356 1.301-.538 1.994-.538.347 0 .696.046 1.041.138 1.032.276 1.894.938 2.428 1.863.534.926.677 2.003.4 3.035z"/></g></svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d"><path d="m32.002914 9.8013468c-11.896459 0-21.574547 8.9098382-21.574547 19.8619532 0 8.309307 5.572578 15.669913 13.960001 18.576768v10.631987c0 .646098.567284 1.16835 1.269091 1.16835h1.269091v2.336701c0 .646097.567284 1.16835 1.269091 1.16835h7.614546c.701807 0 1.269091-.522253 1.269091-1.16835v-2.336701h1.269091c.701807 0 1.269091-.522252 1.269091-1.16835v-10.631987c8.387422-2.906855 13.960001-10.267461 13.960001-18.576768 0-10.952115-9.678088-19.8619532-21.574547-19.8619532zm3.807273 47.9023582c-.701807 0-1.269091.522253-1.269091 1.16835v2.336701h-5.076364v-2.336701c0-.646097-.567284-1.16835-1.269091-1.16835h-1.269091v-5.841751h10.152728v5.841751zm2.142226-11.400761c-.521597.157727-.873135.606374-.873135 1.109932v2.112378h-10.152728v-2.112378c0-.504727-.351538-.952205-.873135-1.109932-7.826484-2.369414-13.086866-9.057051-13.086866-16.639644 0-9.663424 8.539713-17.525253 19.036365-17.525253 10.496652 0 19.036365 7.861829 19.036365 17.525253 0 7.582593-5.260382 14.27023-13.086866 16.639644z"/><path d="m32.002914 15.643098c-8.397575 0-15.229092 6.289229-15.229092 14.020202 0 .646098.567284 1.16835 1.269091 1.16835.701807 0 1.269091-.522252 1.269091-1.16835 0-6.442283 5.693142-11.683502 12.69091-11.683502.701807 0 1.269091-.522252 1.269091-1.16835 0-.646098-.567284-1.16835-1.269091-1.16835z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666"><path d="m32.002914 9.8013468c-11.896459 0-21.574547 8.9098382-21.574547 19.8619532 0 8.309307 5.572578 15.669913 13.960001 18.576768v10.631987c0 .646098.567284 1.16835 1.269091 1.16835h1.269091v2.336701c0 .646097.567284 1.16835 1.269091 1.16835h7.614546c.701807 0 1.269091-.522253 1.269091-1.16835v-2.336701h1.269091c.701807 0 1.269091-.522252 1.269091-1.16835v-10.631987c8.387422-2.906855 13.960001-10.267461 13.960001-18.576768 0-10.952115-9.678088-19.8619532-21.574547-19.8619532zm3.807273 47.9023582c-.701807 0-1.269091.522253-1.269091 1.16835v2.336701h-5.076364v-2.336701c0-.646097-.567284-1.16835-1.269091-1.16835h-1.269091v-5.841751h10.152728v5.841751zm2.142226-11.400761c-.521597.157727-.873135.606374-.873135 1.109932v2.112378h-10.152728v-2.112378c0-.504727-.351538-.952205-.873135-1.109932-7.826484-2.369414-13.086866-9.057051-13.086866-16.639644 0-9.663424 8.539713-17.525253 19.036365-17.525253 10.496652 0 19.036365 7.861829 19.036365 17.525253 0 7.582593-5.260382 14.27023-13.086866 16.639644z"/><path d="m32.002914 15.643098c-8.397575 0-15.229092 6.289229-15.229092 14.020202 0 .646098.567284 1.16835 1.269091 1.16835.701807 0 1.269091-.522252 1.269091-1.16835 0-6.442283 5.693142-11.683502 12.69091-11.683502.701807 0 1.269091-.522252 1.269091-1.16835 0-.646098-.567284-1.16835-1.269091-1.16835z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m2.6378107 2.8183964h58.5483833v45.1488966h-58.5483833z" fill="none" stroke="#000" stroke-miterlimit="10" stroke-opacity=".65102635" stroke-width="2.03949785"/><path d="m22.468715 61.181604h18.886575" fill="none" stroke="#000" stroke-miterlimit="10" stroke-opacity=".65102635" stroke-width="2.03949785"/><path d="m31.912003 60.090695v-11.214311" fill="none" stroke="#000" stroke-miterlimit="10" stroke-opacity=".65102635" stroke-width="1.87882912"/><path d="m3.5469016 39.157752h56.5836214" fill="none" stroke="#000" stroke-miterlimit="10" stroke-opacity=".65102635" stroke-width="1.98900902"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m61.000001 6.9152542h-58.0000006c-.553 0-1 .4874068-1 1.0903955v41.4350283c0 .602988.447 1.090395 1 1.090395h26.0000006v3.271187h-5v5.451977h16v-5.451977h-5v-3.271187h26c .553 0 1-.487407 1-1.090395v-41.4350283c0-.6029887-.447-1.0903955-1-1.0903955zm-23 49.0677968v1.090395h-12v-1.090395h5v-5.451978h2v5.451978zm22-7.632769h-25-6-25.0000006v-39.2542367h56.0000006z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 692 B

After

Width:  |  Height:  |  Size: 477 B

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="matrix(-.73414897 -.67035545 .67595138 -.74490647 33.42856 74.162193)"><path d="m44.394 13.091l-35.761 16.412c-.399.184-.632.605-.574 1.041.058.436.393.782.826.854l15.833 2.653 1.809 14.95c.054.438.389.791.824.865.057.01.113.015.169.015.375 0 .726-.211.896-.556l17.291-34.882c.188-.38.117-.837-.178-1.141-.295-.304-.753-.388-1.135-.211zm-16.284 32.347l-1.496-12.369c-.054-.44-.391-.793-.828-.866l-13.362-2.239 30.236-13.877z"/><path d="m30 0c-16.542 0-30 13.458-30 30 0 16.542 13.458 30 30 30 16.542 0 30-13.458 30-30 0-16.542-13.458-30-30-30zm0 58c-15.439 0-28-12.561-28-28 0-15.439 12.561-28 28-28 15.439 0 28 12.561 28 28 0 15.439-12.561 28-28 28z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(-.73414897 -.67035545 .67595138 -.74490647 33.42856 74.162193)"><path d="m44.394 13.091l-35.761 16.412c-.399.184-.632.605-.574 1.041.058.436.393.782.826.854l15.833 2.653 1.809 14.95c.054.438.389.791.824.865.057.01.113.015.169.015.375 0 .726-.211.896-.556l17.291-34.882c.188-.38.117-.837-.178-1.141-.295-.304-.753-.388-1.135-.211zm-16.284 32.347l-1.496-12.369c-.054-.44-.391-.793-.828-.866l-13.362-2.239 30.236-13.877z"/><path d="m30 0c-16.542 0-30 13.458-30 30 0 16.542 13.458 30 30 30 16.542 0 30-13.458 30-30 0-16.542-13.458-30-30-30zm0 58c-15.439 0-28-12.561-28-28 0-15.439 12.561-28 28-28 15.439 0 28 12.561 28 28 0 15.439-12.561 28-28 28z"/></g></svg>

Before

Width:  |  Height:  |  Size: 775 B

After

Width:  |  Height:  |  Size: 772 B

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="translate(2.2280873 2.4030111)"><path d="m38.914 0h-32.414v60h47v-45.414zm.586 3.414l10.586 10.586h-10.586zm-31 54.586v-56h29v14h14v42z"/><path d="m16.5 17h9c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-9c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m16.5 25h5c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-5c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m31.5 25h7c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-7c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m25.79 23.3c-.19.18-.29.439-.29.7 0 .26.1.52.29.71.189.18.45.29.71.29.26 0 .52-.101.71-.3.18-.181.29-.44.29-.7 0-.261-.11-.521-.29-.71-.38-.37-1.05-.37-1.42.01z"/><path d="m43.5 25c .26 0 .52-.11.71-.29.18-.19.29-.45.29-.71 0-.261-.11-.521-.29-.71-.38-.37-1.04-.37-1.42 0-.181.189-.29.449-.29.71 0 .26.109.52.29.71.189.18.45.29.71.29z"/><path d="m28.5 31h-7c-.553 0-1 .447-1 1 0 .553.447 1 1 1h7c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m16.5 33c .26 0 .52-.11.71-.29.189-.19.29-.45.29-.71 0-.261-.101-.521-.29-.71-.38-.37-1.04-.37-1.42 0-.19.189-.29.439-.29.71 0 .26.109.52.29.71.189.18.45.29.71.29z"/><path d="m19.645 40.166c-2.19 1.14-2.927 3.321-3.196 5.582-.414-.347-.828-.693-1.242-1.04-.98-.821-2.402.586-1.414 1.415.935.783 1.871 1.567 2.806 2.351.658.551 1.677.203 1.707-.707.073-2.166.175-4.742 2.348-5.873 1.142-.595.132-2.322-1.009-1.728z"/><path d="m26.295 44.155c-1.385.321-2.961 2.083-3.936.106-.569-1.154-2.295-.142-1.727 1.009.517 1.049 1.5 1.784 2.669 1.932.594.075 1.131-.009 1.688-.226.409-.159 1.937-1.308 2.267-.717.628 1.124 2.356.116 1.727-1.009-.537-.962-1.624-1.342-2.688-1.095z"/><path d="m46.745 34.513c-.233-.083-.336-.259-.377-.357-.04-.098-.093-.296.014-.52.485-1.022.282-2.199-.518-3-.801-.799-1.979-1.003-2.999-.518-.226.107-.424.054-.521.014-.099-.041-.274-.144-.357-.377-.379-1.067-1.355-1.755-2.487-1.755-1.132 0-2.108.688-2.487 1.755-.083.233-.259.336-.357.377-.097.04-.296.094-.52-.014-1.021-.483-2.198-.282-3 .518-.8.801-1.003 1.978-.518 2.999.106.225.054.423.014.521-.041.099-.144.274-.377.357-1.067.379-1.755 1.355-1.755 2.487 0 1.132.688 2.108 1.755 2.487.233.083.336.259.377.357.04.098.093.296-.014.52-.485 1.022-.282 2.199.518 3 .387.386.862.63 1.364.728v12.322l5-5 5 5v-12.323c.502-.097.978-.34 1.364-.727.8-.801 1.003-1.978.518-2.999-.106-.225-.054-.423-.014-.521.041-.099.144-.274.377-.357 1.067-.379 1.755-1.355 1.755-2.487 0-1.132-.688-2.108-1.755-2.487zm-7.245 14.073l-3 3v-7.758c.009.001.018.002.026.004.05.01.098.022.13.036.049.021.118.057.184.116.067.06.132.144.173.261.379 1.067 1.355 1.755 2.487 1.755 1.132 0 2.108-.688 2.487-1.755.041-.117.106-.201.173-.261.067-.06.135-.096.184-.116.032-.013.079-.026.129-.036.008-.001.017-.003.026-.004v7.757zm6.575-10.983c-.702.249-1.269.787-1.554 1.476-.286.689-.267 1.471.054 2.146.175.367-.029.63-.126.726-.079.081-.281.224-.561.17l-.22-.069c-.091-.041-.187-.063-.281-.092-.07-.022-.138-.052-.209-.069-.098-.022-.199-.028-.299-.039-.081-.009-.16-.026-.241-.028-.097-.002-.193.014-.289.022-.083.008-.167.006-.25.022-.177.033-.351.084-.52.154 0 0-.001 0-.002.001l0 0c-.044.018-.081.047-.124.067-.124.06-.249.119-.362.197-.135.093-.258.203-.373.319-.013.013-.03.023-.043.037-.252.265-.449.583-.574.934-.134.382-.465.423-.601.423-.136 0-.467-.041-.603-.425-.125-.352-.322-.669-.574-.934-.01-.011-.023-.018-.034-.029-.118-.12-.244-.231-.383-.327-.108-.075-.229-.131-.348-.189-.047-.023-.089-.055-.138-.075l0 0c-.001 0-.001-.001-.001-.001-.021-.009-.043-.011-.064-.019-.146-.056-.294-.103-.445-.132-.122-.024-.243-.029-.365-.036-.045-.002-.09-.013-.135-.013-.003 0-.005.001-.008.001-.374-.001-.737.072-1.047.223l-.227.071c-.287.065-.496-.083-.578-.166-.097-.096-.301-.358-.126-.727.32-.674.34-1.455.054-2.145-.285-.688-.852-1.227-1.554-1.476-.383-.134-.424-.465-.424-.601 0-.136.041-.467.425-.603.702-.249 1.269-.787 1.554-1.476.286-.689.267-1.471-.054-2.146-.175-.367.029-.63.126-.726.096-.097.357-.299.727-.126.673.32 1.455.342 2.145.054.688-.285 1.227-.852 1.476-1.554.134-.382.465-.423.601-.423.136 0 .467.041.603.425.25.702.787 1.269 1.476 1.554.688.288 1.471.267 2.146-.054.366-.177.631.029.726.126.097.096.301.358.126.727-.32.674-.34 1.455-.054 2.145.285.688.852 1.227 1.554 1.476.382.134.423.465.423.601 0 .136-.041.467-.425.603z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666"><path d="m41.142087 2.4030111h-32.4139997v59.9999999h46.9999997v-45.414zm.586 3.414l10.586 10.5859999h-10.586zm-31 54.5859999v-55.9999999h29v13.9999999h14v42z"/><path d="m18.728087 19.403011h9c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-9c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m18.999273 22.521655h5c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-5c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m19.084019 26.047079h7c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-7c-.553 0-1 .447-1 1 0 .553.447 1 1 1z"/><path d="m26.389104 27.708096h-7c-.553 0-1 .447-1 1 0 .553.447 1 1 1h7c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m24.343002 46.347069c-2.175175-1.168038-4.392585-.549149-6.412611.501554.05368-.537516.106529-1.074469.160207-1.611986.126733-1.272155-1.836693-1.655161-1.965532-.37189-.120665 1.213571-.241593 2.428532-.363083 3.642665-.08489.854025.776437 1.500228 1.545384 1.012662 1.831161-1.159196 4.017487-2.525269 6.175653-1.366214 1.134712.608786 1.993304-1.198269.859982-1.806791z"/><path d="m28.523087 46.558011c-1.385.321-2.961 2.083-3.936.106-.569-1.154-2.295-.142-1.727 1.009.517 1.049 1.5 1.784 2.669 1.932.594.075 1.131-.009 1.688-.226.409-.159 1.937-1.308 2.267-.717.628 1.124 2.356.116 1.727-1.009-.537-.962-1.624-1.342-2.688-1.095z"/><path d="m48.973087 36.916011c-.233-.083-.336-.259-.377-.357-.04-.098-.093-.296.014-.52.485-1.022.282-2.199-.518-3-.801-.799-1.979-1.003-2.999-.518-.226.107-.424.054-.521.014-.099-.041-.274-.144-.357-.377-.379-1.067-1.355-1.755-2.487-1.755-1.132 0-2.108.688-2.487 1.755-.083.233-.259.336-.357.377-.097.04-.296.094-.52-.014-1.021-.483-2.198-.282-3 .518-.8.801-1.003 1.978-.518 2.999.106.225.054.423.014.521-.041.099-.144.274-.377.357-1.067.379-1.755 1.355-1.755 2.487 0 1.132.688 2.108 1.755 2.487.233.083.336.259.377.357.04.098.093.296-.014.52-.485 1.022-.282 2.199.518 3 .387.386.862.63 1.364.728v12.322l5-5 5 5v-12.323c.502-.097.978-.34 1.364-.727.8-.801 1.003-1.978.518-2.999-.106-.225-.054-.423-.014-.521.041-.099.144-.274.377-.357 1.067-.379 1.755-1.355 1.755-2.487 0-1.132-.688-2.108-1.755-2.487zm-7.245 14.073l-3 3v-7.758c.009.001.018.002.026.004.05.01.098.022.13.036.049.021.118.057.184.116.067.06.132.144.173.261.379 1.067 1.355 1.755 2.487 1.755 1.132 0 2.108-.688 2.487-1.755.041-.117.106-.201.173-.261.067-.06.135-.096.184-.116.032-.013.079-.026.129-.036.008-.001.017-.003.026-.004v7.757zm6.575-10.983c-.702.249-1.269.787-1.554 1.476-.286.689-.267 1.471.054 2.146.175.367-.029.63-.126.726-.079.081-.281.224-.561.17l-.22-.069c-.091-.041-.187-.063-.281-.092-.07-.022-.138-.052-.209-.069-.098-.022-.199-.028-.299-.039-.081-.009-.16-.026-.241-.028-.097-.002-.193.014-.289.022-.083.008-.167.006-.25.022-.177.033-.351.084-.52.154 0 0-.001 0-.002.001l0 0c-.044.018-.081.047-.124.067-.124.06-.249.119-.362.197-.135.093-.258.203-.373.319-.013.013-.03.023-.043.037-.252.265-.449.583-.574.934-.134.382-.465.423-.601.423-.136 0-.467-.041-.603-.425-.125-.352-.322-.669-.574-.934-.01-.011-.023-.018-.034-.029-.118-.12-.244-.231-.383-.327-.108-.075-.229-.131-.348-.189-.047-.023-.089-.055-.138-.075l0 0c-.001 0-.001-.001-.001-.001-.021-.009-.043-.011-.064-.019-.146-.056-.294-.103-.445-.132-.122-.024-.243-.029-.365-.036-.045-.002-.09-.013-.135-.013-.003 0-.005.001-.008.001-.374-.001-.737.072-1.047.223l-.227.071c-.287.065-.496-.083-.578-.166-.097-.096-.301-.358-.126-.727.32-.674.34-1.455.054-2.145-.285-.688-.852-1.227-1.554-1.476-.383-.134-.424-.465-.424-.601 0-.136.041-.467.425-.603.702-.249 1.269-.787 1.554-1.476.286-.689.267-1.471-.054-2.146-.175-.367.029-.63.126-.726.096-.097.357-.299.727-.126.673.32 1.455.342 2.145.054.688-.285 1.227-.852 1.476-1.554.134-.382.465-.423.601-.423.136 0 .467.041.603.425.25.702.787 1.269 1.476 1.554.688.288 1.471.267 2.146-.054.366-.177.631.029.726.126.097.096.301.358.126.727-.32.674-.34 1.455-.054 2.145.285.688.852 1.227 1.554 1.476.382.134.423.465.423.601 0 .136-.041.467-.425.603z"/></g></svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="matrix(1.0995512 0 0 1.0995361 2.65028 2.825602)"><path d="m49.467 3.51c-4.677-4.679-12.291-4.681-16.97 0l-9.192 9.192c-.391.391-.391 1.023 0 1.414.391.391 1.023.391 1.414 0l9.192-9.192c1.88-1.88 4.391-2.915 7.07-2.915 2.681 0 5.191 1.036 7.071 2.916 1.88 1.88 2.916 4.391 2.916 7.071 0 2.68-1.036 5.19-2.916 7.07l-12.019 12.022c-3.898 3.898-10.244 3.898-14.143 0-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414 2.34 2.339 5.412 3.509 8.485 3.509 3.073 0 6.146-1.17 8.485-3.509l12.021-12.022c2.258-2.258 3.502-5.271 3.502-8.485 0-3.214-1.244-6.227-3.502-8.485z"/><path d="m26.84 40.279l-7.778 7.778c-1.88 1.88-4.391 2.916-7.071 2.916-2.68 0-5.19-1.036-7.071-2.916-3.898-3.898-3.898-10.243 0-14.142l11.314-11.314c3.899-3.898 10.244-3.896 14.142 0 .391.391 1.023.391 1.414 0 .391-.391.391-1.023 0-1.414-4.677-4.679-12.291-4.681-16.97 0l-11.315 11.315c-2.258 2.258-3.501 5.271-3.501 8.485 0 3.214 1.244 6.227 3.502 8.484 2.258 2.257 5.271 3.502 8.484 3.502 3.215 0 6.228-1.244 8.485-3.502l7.778-7.778c.391-.391.391-1.023 0-1.414-.391-.391-1.022-.39-1.413 0z"/><path d="m33.969 44.009c-.553 0-1 .447-1 1v6c0 .553.447 1 1 1 .553 0 1-.447 1-1v-6c0-.553-.447-1-1-1z"/><path d="m38.433 42.302c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l4.243 4.242c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414z"/><path d="m44.969 38.009h-6c-.553 0-1 .447-1 1 0 .553.447 1 1 1h6c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m15.969 11.009c.553 0 1-.447 1-1v-6c0-.553-.447-1-1-1-.553 0-1 .447-1 1v6c0 .553.448 1 1 1z"/><path d="m11.504 12.716c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-4.242-4.242c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414z"/><path d="m4.969 17.009h6c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-6c-.553 0-1 .447-1 1 0 .553.448 1 1 1z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m57.041779 6.6849737c-5.142601-5.1447294-13.514584-5.1469285-18.659384 0l-10.107074 10.1069363c-.429925.429918-.429925 1.124825 0 1.554744.429924.429918 1.124841.429918 1.554765 0l10.107075-10.1069362c2.067156-2.0671279 4.828129-3.2051478 7.773827-3.2051478 2.947896 0 5.70777 1.1391194 7.774926 3.2062473 2.067157 2.0671277 3.206292 4.8280627 3.206292 7.7748197 0 2.946757-1.139135 5.706592-3.206292 7.77372l-13.215506 13.218623c-4.28605 4.285992-11.263802 4.285992-15.550952 0-.429925-.429918-1.124841-.429918-1.554766 0-.429924.429919-.429924 1.124826 0 1.554744 2.57295 2.571815 5.950771 3.858272 9.329692 3.858272 3.378921 0 6.757842-1.286457 9.329692-3.858272l13.217705-13.218623c2.482787-2.482752 3.850629-5.795654 3.850629-9.329563 0-3.53391-1.367842-6.8468118-3.850629-9.3295643z" fill="#666"/><path d="m32.162234 47.113817l-8.552309 8.552191c-2.067156 2.067128-4.828129 3.206248-7.774927 3.206248-2.946797 0-5.70667-1.13912-7.7749261-3.206248-4.2860506-4.285991-4.2860506-11.262548 0-15.549639l12.4403221-12.440152c4.28715-4.285991 11.263803-4.283792 15.549853 0 .429925.429919 1.124841.429919 1.554766 0 .429924-.429918.429924-1.124825 0-1.554744-5.142601-5.144729-13.514584-5.146928-18.659384 0l-12.441422 12.441251c-2.4827867 2.482753-3.8495288 5.795655-3.8495288 9.329564 0 3.533909 1.3678417 6.846811 3.8506283 9.328464 2.4827866 2.481653 5.7957345 3.850576 9.3285925 3.850576 3.535057 0 6.848005-1.367823 9.329692-3.850576l8.552309-8.552191c.429925-.429919.429925-1.124826 0-1.554744-.429924-.429919-1.123741-.42882-1.553666 0z" fill="#666"/><path d="m32.136528 36.299832c-.608052 0-1.099551.491493-1.099551 1.099536v6.597217c0 .608043.491499 1.099536 1.099551 1.099536.608052 0 1.099551-.491493 1.099551-1.099536v-6.597217c0-.608043-.491499-1.099536-1.099551-1.099536z" fill="#666"/><path d="m36.231364 34.694111c-.429924-.429919-1.124841-.429919-1.554765 0-.429925.429919-.429925 1.124826 0 1.554744l4.665396 4.664232c.214412.21441.495897.322164.777382.322164.281485 0 .562971-.107754.777383-.322164.429925-.429918.429925-1.124825 0-1.554744z" fill="#666"/><path d="m43.960405 30.516176h-6.597307c-.608052 0-1.099551.491492-1.099551 1.099536 0 .608043.491499 1.099536 1.099551 1.099536h6.597307c.608052 0 1.099551-.491493 1.099551-1.099536 0-.608044-.491499-1.099536-1.099551-1.099536z" fill="#666"/><path d="m31.327656 28.489718c.608052 0 1.099551-.491493 1.099551-1.099536v-6.597217c0-.608044-.491499-1.099536-1.099551-1.099536-.608052 0-1.099551.491492-1.099551 1.099536v6.597217c0 .608043.492599 1.099536 1.099551 1.099536z" fill="#666"/><path d="m26.960534 29.540337c.214412.222882.495898.334893.777383.334893.281485 0 .56297-.112011.777382-.334893.429925-.446905.429925-1.169267 0-1.616173l-4.664296-4.84852c-.429924-.446906-1.124841-.446906-1.554765 0-.429925.446904-.429925 1.169268 0 1.616173z" fill="#666"/><path d="m19.774967 33.459816h6.597307c.608052 0 1.099551-.491493 1.099551-1.099537 0-.608043-.491499-1.099536-1.099551-1.099536h-6.597307c-.608052 0-1.099551.491493-1.099551 1.099536 0 .608044.492599 1.099537 1.099551 1.099537z" fill="#666"/><path d="m22.789684 40.211367c-.212903.224324-.311999.510611-.299201.791805.0128.281194.137492.557295.369892.761352.46599.409161 1.187605.376317 1.614502-.07348l4.631433-4.87992c.426897-.449799.395301-1.143997-.07069-1.553157-.465989-.409161-1.187606-.376318-1.614502.07348z" fill="#666"/><path d="m34.450701 27.194417c-.212903.224324-.311999.510611-.299201.791805.0128.281194.137492.557295.369892.761352.46599.409161 1.187605.376317 1.614502-.07348l4.631433-4.87992c.426897-.449799.395301-1.143997-.07069-1.553157-.465989-.409161-1.187606-.376318-1.614502.07348z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="matrix(1.1270136 0 0 1.1235621 1.9228974 2.0983293)"><path d="m49.467 3.51c-4.677-4.679-12.291-4.681-16.97 0l-9.192 9.192c-.391.391-.391 1.023 0 1.414.391.391 1.023.391 1.414 0l9.192-9.192c1.88-1.88 4.391-2.915 7.07-2.915 2.681 0 5.191 1.036 7.071 2.916 1.88 1.88 2.916 4.391 2.916 7.071 0 2.68-1.036 5.19-2.916 7.07l-12.019 12.022c-3.898 3.898-10.244 3.898-14.143 0-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414 2.34 2.339 5.412 3.509 8.485 3.509 3.073 0 6.146-1.17 8.485-3.509l12.021-12.022c2.258-2.258 3.502-5.271 3.502-8.485 0-3.214-1.244-6.227-3.502-8.485z"/><path d="m26.84 40.279l-7.778 7.778c-1.88 1.88-4.391 2.916-7.071 2.916-2.68 0-5.19-1.036-7.071-2.916-3.898-3.898-3.898-10.243 0-14.142l11.314-11.314c3.899-3.898 10.244-3.896 14.142 0 .391.391 1.023.391 1.414 0 .391-.391.391-1.023 0-1.414-4.677-4.679-12.291-4.681-16.97 0l-11.315 11.315c-2.258 2.258-3.501 5.271-3.501 8.485 0 3.214 1.244 6.227 3.502 8.484 2.258 2.257 5.271 3.502 8.484 3.502 3.215 0 6.228-1.244 8.485-3.502l7.778-7.778c.391-.391.391-1.023 0-1.414-.391-.391-1.022-.39-1.413 0z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1.1270136 0 0 1.1235621 1.9228974 2.0983293)"><path d="m49.467 3.51c-4.677-4.679-12.291-4.681-16.97 0l-9.192 9.192c-.391.391-.391 1.023 0 1.414.391.391 1.023.391 1.414 0l9.192-9.192c1.88-1.88 4.391-2.915 7.07-2.915 2.681 0 5.191 1.036 7.071 2.916 1.88 1.88 2.916 4.391 2.916 7.071 0 2.68-1.036 5.19-2.916 7.07l-12.019 12.022c-3.898 3.898-10.244 3.898-14.143 0-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414 2.34 2.339 5.412 3.509 8.485 3.509 3.073 0 6.146-1.17 8.485-3.509l12.021-12.022c2.258-2.258 3.502-5.271 3.502-8.485 0-3.214-1.244-6.227-3.502-8.485z"/><path d="m26.84 40.279l-7.778 7.778c-1.88 1.88-4.391 2.916-7.071 2.916-2.68 0-5.19-1.036-7.071-2.916-3.898-3.898-3.898-10.243 0-14.142l11.314-11.314c3.899-3.898 10.244-3.896 14.142 0 .391.391 1.023.391 1.414 0 .391-.391.391-1.023 0-1.414-4.677-4.679-12.291-4.681-16.97 0l-11.315 11.315c-2.258 2.258-3.501 5.271-3.501 8.485 0 3.214 1.244 6.227 3.502 8.484 2.258 2.257 5.271 3.502 8.484 3.502 3.215 0 6.228-1.244 8.485-3.502l7.778-7.778c.391-.391.391-1.023 0-1.414-.391-.391-1.022-.39-1.413 0z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m13.772026 61.380671c-.223842 0-.447684-.07099-.635841-.211876-.333059-.248482-.499589-.668905-.4293-1.084891l3.342488-19.987289-14.1561034-14.153503c-.2941303-.295073-.4001037-.735463-.2735844-1.135919.1276006-.401565.4660668-.694419.87374-.75543l19.5618298-2.916338 8.749295-18.1846844c.181669-.3793791.557983-.618987.9689-.618987l0 0c .411999 0 .788313.2396079.9689.618987l8.748215 18.1846844 19.562911 2.916338c.407673.06101.745058.352756.87374.75543.126519.400456.02163.841956-.273585 1.135919l-14.156103 14.155722 3.341407 19.98618c.06921.415985-.09732.836408-.429301 1.084891-.333059.250701-.775336.28287-1.139755.08431l-17.496429-9.435673-17.498591 9.435669c-.157879.08431-.330897.12646-.502833.12646zm-8.8001202-35.457526l12.9936392 12.99318c.25412.254028.370907.622314.310351.981726l-3.067822 18.345532 16.062543-8.661381c.314676-.170831.689909-.170831 1.006748 0l16.060381 8.661381-3.066741-18.345532c-.06056-.359412.05623-.726588.31035-.981726l12.99364-12.99318-17.956008-2.676731c-.352523-.052137-.656386-.279542-.814265-.606784l-8.031272-16.6904633-8.031271 16.6915723c-.157879.327242-.461742.554648-.814266.606785z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m13.772026 61.380671c-.223842 0-.447684-.07099-.635841-.211876-.333059-.248482-.499589-.668905-.4293-1.084891l3.342488-19.987289-14.1561034-14.153503c-.2941303-.295073-.4001037-.735463-.2735844-1.135919.1276006-.401565.4660668-.694419.87374-.75543l19.5618298-2.916338 8.749295-18.1846844c.181669-.3793791.557983-.618987.9689-.618987l0 0c .411999 0 .788313.2396079.9689.618987l8.748215 18.1846844 19.562911 2.916338c.407673.06101.745058.352756.87374.75543.126519.400456.02163.841956-.273585 1.135919l-14.156103 14.155722 3.341407 19.98618c.06921.415985-.09732.836408-.429301 1.084891-.333059.250701-.775336.28287-1.139755.08431l-17.496429-9.435673-17.498591 9.435669c-.157879.08431-.330897.12646-.502833.12646zm-8.8001202-35.457526l12.9936392 12.99318c.25412.254028.370907.622314.310351.981726l-3.067822 18.345532 16.062543-8.661381c.314676-.170831.689909-.170831 1.006748 0l16.060381 8.661381-3.066741-18.345532c-.06056-.359412.05623-.726588.31035-.981726l12.99364-12.99318-17.956008-2.676731c-.352523-.052137-.656386-.279542-.814265-.606784l-8.031272-16.6904633-8.031271 16.6915723c-.157879.327242-.461742.554648-.814266.606785z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="translate(1.8646011 1.8575565)"><path d="m59 16h-2.05c-.221-3.108-1.455-5.934-3.381-8.154l1.139-1.139c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0l-1.139 1.139c-2.22-1.926-5.047-3.16-8.154-3.381v-2.051c0-.553-.448-1-1-1-.552 0-1 .447-1 1v2.051c-3.108.221-5.934 1.455-8.154 3.381l-1.139-1.139c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l1.139 1.139c-1.926 2.22-3.16 5.047-3.381 8.154h-2.052c-.552 0-1 .447-1 1 0 .553.448 1 1 1h2.051c.221 3.108 1.455 5.934 3.381 8.154l-1.139 1.139c-.112.112-.183.246-.23.386-1.16-1.052-2.452-1.956-3.856-2.68l.708-1.593c.224-.505-.003-1.096-.508-1.32-.506-.223-1.095.004-1.32.508l-.709 1.595c-1.986-.756-4.13-1.189-6.378-1.189-1.948 0-3.82.321-5.579.896l-.489-1.258c-.2-.515-.781-.771-1.294-.569-.515.199-.77.779-.57 1.294l.492 1.267c-3.69 1.684-6.71 4.571-8.561 8.165l-1.593-.708c-.505-.223-1.095.004-1.32.508-.224.505.003 1.096.508 1.32l1.595.708c-.756 1.986-1.189 4.13-1.189 6.377 0 1.948.321 3.821.896 5.579l-1.258.489c-.515.2-.77.779-.57 1.294.154.396.532.638.933.638.12 0 .243-.021.362-.068l1.267-.492c1.684 3.69 4.571 6.711 8.165 8.562l-.708 1.593c-.224.505.003 1.096.508 1.32.131.058.269.085.405.085.383 0 .749-.222.915-.594l.709-1.595c1.985.757 4.129 1.189 6.376 1.189 1.948 0 3.82-.321 5.579-.896l.489 1.258c.154.396.532.638.932.638.121 0 .243-.021.362-.068.515-.199.77-.779.57-1.294l-.492-1.267c3.69-1.684 6.71-4.571 8.561-8.165l1.593.708c.132.059.27.086.406.086.383 0 .749-.222.915-.594.224-.505-.003-1.096-.508-1.32l-1.595-.708c.756-1.986 1.188-4.13 1.188-6.378 0-1.948-.321-3.821-.896-5.579l1.258-.489c.515-.2.77-.779.57-1.294-.199-.515-.775-.772-1.294-.569l-1.267.492c-.776-1.701-1.809-3.255-3.05-4.623.14-.048.274-.119.386-.23l1.139-1.139c2.22 1.926 5.047 3.16 8.154 3.381v2.05c0 .553.448 1 1 1 .552 0 1-.447 1-1v-2.051c3.108-.221 5.934-1.455 8.154-3.381l1.198 1.198c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-1.198-1.198c1.926-2.22 3.16-5.047 3.381-8.154h2.051c.552 0 1-.447 1-1 0-.553-.447-1-1-1zm-40 9c1.959 0 3.828.371 5.565 1.018l-4.91 11.048c-.214-.035-.431-.066-.655-.066-2.206 0-4 1.794-4 4 0 .159.029.31.047.465l-11.289 4.39c-.489-1.532-.758-3.162-.758-4.855 0-8.822 7.178-16 16-16zm-1.856 16.732c-.001-.003 0-.006-.002-.009-.001-.001-.002-.002-.003-.004-.086-.224-.139-.465-.139-.719 0-1.103.897-2 2-2 .279 0 .544.058.786.162.009.004.015.013.024.017.004.002.008.001.012.002.693.315 1.178 1.01 1.178 1.819 0 1.103-.897 2-2 2-.844 0-1.563-.527-1.856-1.268zm-12.647 5.981l11.267-4.382c.727 1.007 1.903 1.669 3.236 1.669.159 0 .31-.029.465-.047l4.39 11.289c-1.532.489-3.162.758-4.855.758-6.423 0-11.959-3.813-14.503-9.287zm21.217 7.791l-4.382-11.267c1.006-.728 1.668-1.903 1.668-3.237 0-1.265-.602-2.381-1.521-3.115l4.916-11.06c5.107 2.676 8.605 8.021 8.605 14.175 0 6.423-3.812 11.959-9.286 14.504zm17.286-26.504c-6.617 0-12-5.383-12-12 0-6.617 5.384-12 12-12 6.616 0 12 5.383 12 12 0 6.617-5.383 12-12 12z"/><path d="m43 13c-2.206 0-4 1.794-4 4 0 2.206 1.794 4 4 4 2.206 0 4-1.794 4-4 0-2.206-1.794-4-4-4zm0 6c-1.103 0-2-.897-2-2 0-1.103.897-2 2-2 1.103 0 2 .897 2 2 0 1.103-.897 2-2 2z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="translate(1.8646011 1.8575565)"><path d="m59 16h-2.05c-.221-3.108-1.455-5.934-3.381-8.154l1.139-1.139c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0l-1.139 1.139c-2.22-1.926-5.047-3.16-8.154-3.381v-2.051c0-.553-.448-1-1-1-.552 0-1 .447-1 1v2.051c-3.108.221-5.934 1.455-8.154 3.381l-1.139-1.139c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l1.139 1.139c-1.926 2.22-3.16 5.047-3.381 8.154h-2.052c-.552 0-1 .447-1 1 0 .553.448 1 1 1h2.051c.221 3.108 1.455 5.934 3.381 8.154l-1.139 1.139c-.112.112-.183.246-.23.386-1.16-1.052-2.452-1.956-3.856-2.68l.708-1.593c.224-.505-.003-1.096-.508-1.32-.506-.223-1.095.004-1.32.508l-.709 1.595c-1.986-.756-4.13-1.189-6.378-1.189-1.948 0-3.82.321-5.579.896l-.489-1.258c-.2-.515-.781-.771-1.294-.569-.515.199-.77.779-.57 1.294l.492 1.267c-3.69 1.684-6.71 4.571-8.561 8.165l-1.593-.708c-.505-.223-1.095.004-1.32.508-.224.505.003 1.096.508 1.32l1.595.708c-.756 1.986-1.189 4.13-1.189 6.377 0 1.948.321 3.821.896 5.579l-1.258.489c-.515.2-.77.779-.57 1.294.154.396.532.638.933.638.12 0 .243-.021.362-.068l1.267-.492c1.684 3.69 4.571 6.711 8.165 8.562l-.708 1.593c-.224.505.003 1.096.508 1.32.131.058.269.085.405.085.383 0 .749-.222.915-.594l.709-1.595c1.985.757 4.129 1.189 6.376 1.189 1.948 0 3.82-.321 5.579-.896l.489 1.258c.154.396.532.638.932.638.121 0 .243-.021.362-.068.515-.199.77-.779.57-1.294l-.492-1.267c3.69-1.684 6.71-4.571 8.561-8.165l1.593.708c.132.059.27.086.406.086.383 0 .749-.222.915-.594.224-.505-.003-1.096-.508-1.32l-1.595-.708c.756-1.986 1.188-4.13 1.188-6.378 0-1.948-.321-3.821-.896-5.579l1.258-.489c.515-.2.77-.779.57-1.294-.199-.515-.775-.772-1.294-.569l-1.267.492c-.776-1.701-1.809-3.255-3.05-4.623.14-.048.274-.119.386-.23l1.139-1.139c2.22 1.926 5.047 3.16 8.154 3.381v2.05c0 .553.448 1 1 1 .552 0 1-.447 1-1v-2.051c3.108-.221 5.934-1.455 8.154-3.381l1.198 1.198c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-1.198-1.198c1.926-2.22 3.16-5.047 3.381-8.154h2.051c.552 0 1-.447 1-1 0-.553-.447-1-1-1zm-40 9c1.959 0 3.828.371 5.565 1.018l-4.91 11.048c-.214-.035-.431-.066-.655-.066-2.206 0-4 1.794-4 4 0 .159.029.31.047.465l-11.289 4.39c-.489-1.532-.758-3.162-.758-4.855 0-8.822 7.178-16 16-16zm-1.856 16.732c-.001-.003 0-.006-.002-.009-.001-.001-.002-.002-.003-.004-.086-.224-.139-.465-.139-.719 0-1.103.897-2 2-2 .279 0 .544.058.786.162.009.004.015.013.024.017.004.002.008.001.012.002.693.315 1.178 1.01 1.178 1.819 0 1.103-.897 2-2 2-.844 0-1.563-.527-1.856-1.268zm-12.647 5.981l11.267-4.382c.727 1.007 1.903 1.669 3.236 1.669.159 0 .31-.029.465-.047l4.39 11.289c-1.532.489-3.162.758-4.855.758-6.423 0-11.959-3.813-14.503-9.287zm21.217 7.791l-4.382-11.267c1.006-.728 1.668-1.903 1.668-3.237 0-1.265-.602-2.381-1.521-3.115l4.916-11.06c5.107 2.676 8.605 8.021 8.605 14.175 0 6.423-3.812 11.959-9.286 14.504zm17.286-26.504c-6.617 0-12-5.383-12-12 0-6.617 5.384-12 12-12 6.616 0 12 5.383 12 12 0 6.617-5.383 12-12 12z"/><path d="m43 13c-2.206 0-4 1.794-4 4 0 2.206 1.794 4 4 4 2.206 0 4-1.794 4-4 0-2.206-1.794-4-4-4zm0 6c-1.103 0-2-.897-2-2 0-1.103.897-2 2-2 1.103 0 2 .897 2 2 0 1.103-.897 2-2 2z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m58.138022 6.2335378c-4.869735-4.7664901-12.790602-4.7664901-17.659296 0l-9.441747 9.2415702c-3.61951 3.542772-4.542866 8.735169-2.780475 13.12466-1.437603-.551234-2.981386-.846719-4.576177-.846719-3.343649 0-6.480141 1.266513-8.828607 3.566206l-9.4427883 9.241571c-4.86869403 4.765471-4.86869403 12.519424 0 17.284895 2.4338267 2.383245 5.6317373 3.574358 8.8296473 3.574358 3.197911 0 6.395821-1.191113 8.829648-3.574358l9.441748-9.24157c3.61951-3.542772 4.542865-8.735169 2.780475-13.12466 1.437602.551233 2.981385.846719 4.576176.846719 3.34469 0 6.480141-1.266513 8.829648-3.566207l9.442789-9.24157c4.867653-4.765472 4.867653-12.519424-.001-17.2848952zm-27.101043 40.9298652l-9.441748 9.24157c-4.056725 3.969698-10.65762 3.969698-14.7153852 0-4.0556837-3.970716-4.0556837-10.431664 0-14.4034l9.4427882-9.24157c1.956014-1.914544 4.56889-2.969122 7.356652-2.969122 2.435908 0 4.73753.804944 6.58424 2.285429l-8.941034 8.751472c-.407025.398396-.407025 1.042351 0 1.440747.202993.198689.469485.298543.735978.298543.266492 0 .532985-.09985.735977-.298543l8.939993-8.750452c3.342607 3.996189 3.110467 9.917112-.697461 13.645326zm25.629088-25.085718l-9.442789 9.24157c-1.956014 1.914544-4.56889 2.969122-7.357693 2.969122-2.435908 0-4.736488-.804943-6.584239-2.285429l8.941033-8.751471c.407026-.398397.407026-1.042352 0-1.440748-.407026-.398396-1.064929-.398396-1.471955 0l-8.939992 8.750453c-3.341567-3.997209-3.109427-9.918131.698502-13.646345l9.441747-9.2415705c2.028883-1.9838299 4.693809-2.9762544 7.357693-2.9762544 2.664926 0 5.329851.9934434 7.357693 2.9782922 4.057765 3.9707167 4.057765 10.4316647 0 14.4023807z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m58.138022 6.2335378c-4.869735-4.7664901-12.790602-4.7664901-17.659296 0l-9.441747 9.2415702c-3.61951 3.542772-4.542866 8.735169-2.780475 13.12466-1.437603-.551234-2.981386-.846719-4.576177-.846719-3.343649 0-6.480141 1.266513-8.828607 3.566206l-9.4427883 9.241571c-4.86869403 4.765471-4.86869403 12.519424 0 17.284895 2.4338267 2.383245 5.6317373 3.574358 8.8296473 3.574358 3.197911 0 6.395821-1.191113 8.829648-3.574358l9.441748-9.24157c3.61951-3.542772 4.542865-8.735169 2.780475-13.12466 1.437602.551233 2.981385.846719 4.576176.846719 3.34469 0 6.480141-1.266513 8.829648-3.566207l9.442789-9.24157c4.867653-4.765472 4.867653-12.519424-.001-17.2848952zm-27.101043 40.9298652l-9.441748 9.24157c-4.056725 3.969698-10.65762 3.969698-14.7153852 0-4.0556837-3.970716-4.0556837-10.431664 0-14.4034l9.4427882-9.24157c1.956014-1.914544 4.56889-2.969122 7.356652-2.969122 2.435908 0 4.73753.804944 6.58424 2.285429l-8.941034 8.751472c-.407025.398396-.407025 1.042351 0 1.440747.202993.198689.469485.298543.735978.298543.266492 0 .532985-.09985.735977-.298543l8.939993-8.750452c3.342607 3.996189 3.110467 9.917112-.697461 13.645326zm25.629088-25.085718l-9.442789 9.24157c-1.956014 1.914544-4.56889 2.969122-7.357693 2.969122-2.435908 0-4.736488-.804943-6.584239-2.285429l8.941033-8.751471c.407026-.398397.407026-1.042352 0-1.440748-.407026-.398396-1.064929-.398396-1.471955 0l-8.939992 8.750453c-3.341567-3.997209-3.109427-9.918131.698502-13.646345l9.441747-9.2415705c2.028883-1.9838299 4.693809-2.9762544 7.357693-2.9762544 2.664926 0 5.329851.9934434 7.357693 2.9782922 4.057765 3.9707167 4.057765 10.4316647 0 14.4023807z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="translate(1.8644509 2.4030111)"><path d="m59 31c .553 0 1-.447 1-1 0-.553-.447-1-1-1h-3.028c-.059-1.59-.259-3.183-.616-4.759l2.915-.781c.533-.143.85-.691.707-1.225-.143-.534-.689-.848-1.225-.707l-2.921.783c-.467-1.508-1.077-2.991-1.837-4.432l2.62-1.513c.479-.276.643-.888.366-1.366-.277-.479-.891-.644-1.366-.366l-2.62 1.513c-.868-1.379-1.848-2.649-2.92-3.807l2.138-2.138c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0l-2.133 2.133c-1.186-1.097-2.466-2.067-3.813-2.913l1.514-2.622c.276-.479.112-1.09-.367-1.366-.478-.276-1.09-.114-1.366.366l-1.516 2.626c-1.421-.746-2.905-1.36-4.432-1.832l.786-2.933c.143-.533-.174-1.082-.707-1.225-.53-.141-1.082.174-1.225.707l-.786 2.933c-1.558-.354-3.15-.564-4.754-.628v-3.034c0-.553-.447-1-1-1-.553 0-1 .447-1 1v3.029c-1.59.059-3.183.259-4.759.616l-.781-2.916c-.142-.534-.689-.849-1.225-.707-.533.143-.85.691-.707 1.225l.783 2.922c-1.508.467-2.991 1.076-4.432 1.837l-1.513-2.62c-.277-.481-.89-.643-1.366-.366-.479.276-.643.888-.366 1.366l1.513 2.62c-1.379.868-2.649 1.848-3.807 2.92l-2.138-2.138c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2.133 2.133c-1.097 1.186-2.067 2.466-2.913 3.813l-2.622-1.514c-.478-.278-1.09-.113-1.366.366-.276.479-.112 1.09.366 1.366l2.626 1.516c-.746 1.421-1.36 2.905-1.832 4.432l-2.932-.786c-.531-.14-1.082.174-1.225.707-.143.533.174 1.082.707 1.225l2.932.786c-.355 1.558-.565 3.15-.629 4.754h-3.033c-.553 0-1 .447-1 1 0 .553.447 1 1 1h3.028c.059 1.59.259 3.183.616 4.759l-2.915.781c-.533.143-.85.691-.707 1.225.119.447.523.741.965.741.086 0 .173-.011.26-.034l2.921-.783c.467 1.508 1.077 2.991 1.837 4.432l-2.62 1.513c-.478.276-.642.887-.365 1.366.186.321.521.5.867.5.17 0 .342-.043.499-.134l2.627-1.517c.868 1.379 1.844 2.651 2.915 3.809l-2.141 2.141c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.143-2.143c1.186 1.096 2.459 2.072 3.806 2.917l-1.517 2.627c-.276.479-.112 1.09.366 1.366.157.091.329.134.499.134.346 0 .682-.179.867-.5l1.52-2.632c1.421.746 2.903 1.359 4.43 1.832l-.788 2.939c-.143.533.174 1.082.707 1.225.087.023.174.034.26.034.441 0 .846-.294.965-.741l.788-2.941c1.558.355 3.148.567 4.752.632v3.038c0 .553.447 1 1 1 .553 0 1-.447 1-1v-3.035c1.589-.059 3.18-.264 4.756-.621l.784 2.927c.119.447.523.741.965.741.086 0 .173-.011.26-.034.533-.143.85-.691.707-1.225l-.784-2.926c1.507-.467 2.989-1.079 4.429-1.839l1.517 2.626c.186.321.521.5.867.5.17 0 .342-.043.499-.134.479-.276.643-.888.366-1.366l-1.513-2.62c1.379-.868 2.649-1.848 3.807-2.92l2.138 2.138c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-2.133-2.133c1.097-1.186 2.067-2.466 2.913-3.813l2.622 1.514c.157.091.329.134.499.134.346 0 .682-.179.867-.5.276-.479.112-1.09-.366-1.366l-2.626-1.516c.746-1.421 1.36-2.905 1.832-4.432l2.932.786c.087.023.174.034.26.034.441 0 .846-.294.965-.741.143-.533-.174-1.082-.707-1.225l-2.932-.786c.354-1.559.564-3.15.629-4.754zm-17 19.784c-11.17 6.448-25.421 2.866-32.262-7.931l11.296-6.522c2.111 2.991 5.498 4.665 8.986 4.665 1.864 0 3.753-.474 5.479-1.471 1.425-.823 2.586-1.925 3.476-3.19l11.284 6.516c-2.008 3.176-4.785 5.928-8.259 7.933zm-24-41.568c3.474-2.006 7.245-3.03 11-3.18v13.024c-1.54.138-3.074.593-4.499 1.415-4.96 2.864-6.84 9.032-4.482 14.133l-11.281 6.513c-5.93-11.324-1.908-25.457 9.262-31.905zm16.499 28.577c-4.298 2.48-9.812 1.002-12.292-3.294-2.48-4.297-1.003-9.811 3.294-12.292 4.295-2.482 9.811-1.004 12.292 3.294 2.48 4.297 1.003 9.811-3.294 12.292zm5.476-3.19c1.441-3.134 1.402-6.894-.449-10.102-1.853-3.208-5.09-5.121-8.525-5.441v-13.021c7.928.343 15.53 4.592 19.783 11.961 4.255 7.369 4.139 16.077.471 23.117z"/><path d="m31.553 24.205c-1.545-.415-3.164-.2-4.553.6-1.388.801-2.38 2.095-2.795 3.643-.414 1.548-.201 3.165.6 4.553.801 1.388 2.095 2.38 3.643 2.795.517.139 1.041.207 1.563.207 1.039 0 2.065-.273 2.99-.807 1.388-.801 2.38-2.095 2.795-3.643.414-1.548.201-3.165-.6-4.553-.801-1.388-2.095-2.38-3.643-2.795zm2.31 6.83c-.276 1.032-.938 1.894-1.863 2.428-.925.534-2.002.675-3.035.4-1.032-.276-1.894-.938-2.428-1.863-.534-.926-.677-2.003-.4-3.035.277-1.032.938-1.894 1.863-2.428.616-.356 1.301-.538 1.994-.538.347 0 .696.046 1.041.138 1.032.276 1.894.938 2.428 1.863.534.926.677 2.003.4 3.035z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m60.864451 33.403011c.553 0 1-.447 1-1 0-.553-.447-1-1-1h-3.028c-.059-1.59-.259-3.183-.616-4.759l2.915-.781c.533-.143.85-.691.707-1.225-.143-.534-.689-.848-1.225-.707l-2.921.783c-.467-1.508-1.077-2.991-1.837-4.432l2.62-1.513c.479-.276.643-.888.366-1.366-.277-.479-.891-.644-1.366-.366l-2.62 1.513c-.868-1.379-1.848-2.649-2.92-3.807l2.138-2.138c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0l-2.133 2.133c-1.186-1.097-2.466-2.067-3.813-2.913l1.514-2.6219999c.276-.479.112-1.09-.367-1.366-.478-.276-1.09-.114-1.366.366l-1.516 2.626c-1.421-.746-2.905-1.36-4.432-1.832l.786-2.933c.143-.533-.174-1.082-.707-1.225-.53-.141-1.082.174-1.225.707l-.786 2.933c-1.558-.354-3.15-.564-4.754-.628v-3.034c0-.553-.447-1-1-1-.553 0-1 .447-1 1v3.029c-1.59.059-3.183.259-4.759.616l-.781-2.916c-.142-.534-.689-.849-1.225-.707-.533.143-.85.691-.707 1.225l.783 2.922c-1.508.467-2.991 1.076-4.432 1.837l-1.513-2.62c-.277-.481-.89-.643-1.366-.366-.479.276-.643.888-.366 1.366l1.513 2.6199999c-1.379.868-2.649 1.848-3.807 2.92l-2.138-2.138c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2.133 2.133c-1.097 1.186-2.067 2.466-2.9130001 3.813l-2.622-1.514c-.478-.278-1.09-.113-1.366.366-.276.479-.112 1.09.366 1.366l2.626 1.516c-.746 1.421-1.36 2.905-1.832 4.432l-2.932-.786c-.531-.14-1.082.174-1.225.707-.143.533.174 1.082.707 1.225l2.932.786c-.355 1.558-.565 3.15-.629 4.754h-3.033c-.553 0-1 .447-1 1 0 .553.447 1 1 1h3.028c.059 1.59.259 3.183.616 4.759l-2.915.781c-.533.143-.85.691-.707 1.225.119.447.523.741.965.741.086 0 .173-.011.26-.034l2.921-.783c.467 1.508 1.077 2.991 1.837 4.432l-2.62 1.513c-.478.276-.642.887-.365 1.366.186.321.521.5.867.5.17 0 .342-.043.499-.134l2.627-1.517c.8680001 1.379 1.8440001 2.651 2.9150001 3.809l-2.141 2.141c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.143-2.143c1.186 1.096 2.459 2.072 3.806 2.917l-1.517 2.627c-.276.479-.112 1.09.366 1.366.157.091.329.134.499.134.346 0 .682-.179.867-.5l1.52-2.632c1.421.746 2.903 1.359 4.43 1.832l-.788 2.939c-.143.533.174 1.082.707 1.225.087.023.174.034.26.034.441 0 .846-.294.965-.741l.788-2.941c1.558.355 3.148.567 4.752.632v3.038c0 .553.447 1 1 1 .553 0 1-.447 1-1v-3.035c1.589-.059 3.18-.264 4.756-.621l.784 2.927c.119.447.523.741.965.741.086 0 .173-.011.26-.034.533-.143.85-.691.707-1.225l-.784-2.926c1.507-.467 2.989-1.079 4.429-1.839l1.517 2.626c.186.321.521.5.867.5.17 0 .342-.043.499-.134.479-.276.643-.888.366-1.366l-1.513-2.62c1.379-.868 2.649-1.848 3.807-2.92l2.138 2.138c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-2.133-2.133c1.097-1.186 2.067-2.466 2.913-3.813l2.622 1.514c.157.091.329.134.499.134.346 0 .682-.179.867-.5.276-.479.112-1.09-.366-1.366l-2.626-1.516c.746-1.421 1.36-2.905 1.832-4.432l2.932.786c.087.023.174.034.26.034.441 0 .846-.294.965-.741.143-.533-.174-1.082-.707-1.225l-2.932-.786c.354-1.559.564-3.15.629-4.754zm-17 19.784c-11.17 6.448-25.421 2.866-32.262-7.931l11.296-6.522c2.111 2.991 5.498 4.665 8.986 4.665 1.864 0 3.753-.474 5.479-1.471 1.425-.823 2.586-1.925 3.476-3.19l11.284 6.516c-2.008 3.176-4.785 5.928-8.259 7.933zm-24-41.568c3.474-2.0059999 7.245-3.0299999 11-3.1799999v13.0239999c-1.54.138-3.074.593-4.499 1.415-4.96 2.864-6.84 9.032-4.482 14.133l-11.281 6.513c-5.9300001-11.324-1.9080001-25.457 9.262-31.905zm16.499 28.577c-4.298 2.48-9.812 1.002-12.292-3.294-2.48-4.297-1.003-9.811 3.294-12.292 4.295-2.482 9.811-1.004 12.292 3.294 2.48 4.297 1.003 9.811-3.294 12.292zm5.476-3.19c1.441-3.134 1.402-6.894-.449-10.102-1.853-3.208-5.09-5.121-8.525-5.441v-13.0209999c7.928.343 15.53 4.5919999 19.783 11.9609999 4.255 7.369 4.139 16.077.471 23.117z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m57.781427 45.640909l-9.773-4.233c-.23-.115-.485-.396-.704-.771l6.525-.005c.114.011 2.804.257 4.961-.67.817-.352 1.425-1.047 1.669-1.907.246-.868.09-1.787-.426-2.523-1.865-2.654-6.218-9.589-6.354-16.623-.003-.121-.397-12.0830002-12.21-12.1800002-1.739.014-3.347.309-4.81.853-.319-.813-.789-1.661-1.488-2.459-2.053-2.344-5.386-3.532-9.907-3.532-4.521 0-7.853999 1.188-9.907999 3.53-2.368 2.701-2.148 5.9760002-2.092 6.5250002v5.319c-.64.729-1 1.662-1 2.625v4c0 1.217.553 2.352 1.497 3.109.916 3.627 2.833 6.36 3.503 7.237v3.309c0 .968-.528 1.856-1.377 2.32l-8.9210002 4.866c-2.9009999 1.584-4.7019999 4.618-4.7019999 7.922v4.238h43.9999991 2 14v-3.697c0-3.092-1.718-5.87-4.483-7.253zm-11.517 8.95h-41.9999991v-2.238c0-2.571 1.402-4.934 3.6589999-6.164l8.9210002-4.866c1.492999-.815 2.419999-2.378 2.419999-4.077v-4.019l-.233-.278c-.024-.029-2.474999-2.994-3.409999-7.065l-.091-.396-.341-.22c-.579-.374-.925-1.001-.925-1.677v-4c0-.561.238-1.084.67-1.475l.33-.297v-6.228l-.009-.131c-.003-.027-.343-2.7990002 1.605-5.0210002 1.656999-1.89 4.484999-2.848 8.403999-2.848 3.905 0 6.727.951 8.386 2.828.825.932 1.24 1.973 1.447 2.867.016.07.031.139.045.208.014.071.029.142.04.21.013.078.024.152.035.226.008.053.016.1070002.022.1580002.015.124.027.244.035.355.001.009.001.017.001.026.007.108.012.21.015.303 0 .018 0 .033.001.051.002.083.002.162.001.231 0 .01 0 .02 0 .03-.004.235-.02.375-.02.378l-.008 6.357.33.298c.432.39.67.913.67 1.474v4c0 .873-.572 1.637-1.422 1.899l-.498.153-.16.495c-.669 2.081-1.622 4.003-2.834 5.713-.297.421-.586.794-.837 1.079l-.249.284v4.125c0 .253.025.501.064.745.008.052.022.102.032.154.039.201.091.398.155.59.015.045.031.088.048.133.078.209.169.411.275.605.012.022.023.045.035.067.145.256.312.499.504.723l.228.281h.039c.343.338.737.632 1.185.856l9.553 4.776c2.395 1.196 3.882 3.602 3.882 6.279zm14 0h-12v-2.043c0-3.439-1.911-6.53-4.986-8.068l-6.858-3.43c.169-.386.191-.828.043-1.254-.245-.705-.885-1.16-1.63-1.16h-2.217c-.046-.081-.076-.17-.113-.256-.05-.115-.109-.228-.142-.349-.061-.222-.097-.454-.097-.692v-3.381c.229-.28.47-.599.719-.951 1.239-1.75 2.232-3.698 2.954-5.799 1.411-.647 2.327-2.042 2.327-3.617v-4c0-.963-.36-1.896-1-2.625v-5.319c.026-.25.082-1.069-.084-2.1390002 1.288-.506 2.731-.767 4.29-.78 9.841.081 10.2 9.8110002 10.21 10.2210002.147 7.583 4.746 14.927 6.717 17.732.169.24.22.542.139.827-.046.164-.178.462-.535.615-1.68.723-3.959.518-4.076.513h-6.883c-.643 0-1.229.327-1.568.874-.338.545-.37 1.211-.086 1.783.313.631.866 1.474 1.775 1.927l9.747 4.222c2.069 1.045 3.354 3.131 3.354 5.452z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m57.781427 45.640909l-9.773-4.233c-.23-.115-.485-.396-.704-.771l6.525-.005c.114.011 2.804.257 4.961-.67.817-.352 1.425-1.047 1.669-1.907.246-.868.09-1.787-.426-2.523-1.865-2.654-6.218-9.589-6.354-16.623-.003-.121-.397-12.0830002-12.21-12.1800002-1.739.014-3.347.309-4.81.853-.319-.813-.789-1.661-1.488-2.459-2.053-2.344-5.386-3.532-9.907-3.532-4.521 0-7.853999 1.188-9.907999 3.53-2.368 2.701-2.148 5.9760002-2.092 6.5250002v5.319c-.64.729-1 1.662-1 2.625v4c0 1.217.553 2.352 1.497 3.109.916 3.627 2.833 6.36 3.503 7.237v3.309c0 .968-.528 1.856-1.377 2.32l-8.9210002 4.866c-2.9009999 1.584-4.7019999 4.618-4.7019999 7.922v4.238h43.9999991 2 14v-3.697c0-3.092-1.718-5.87-4.483-7.253zm-11.517 8.95h-41.9999991v-2.238c0-2.571 1.402-4.934 3.6589999-6.164l8.9210002-4.866c1.492999-.815 2.419999-2.378 2.419999-4.077v-4.019l-.233-.278c-.024-.029-2.474999-2.994-3.409999-7.065l-.091-.396-.341-.22c-.579-.374-.925-1.001-.925-1.677v-4c0-.561.238-1.084.67-1.475l.33-.297v-6.228l-.009-.131c-.003-.027-.343-2.7990002 1.605-5.0210002 1.656999-1.89 4.484999-2.848 8.403999-2.848 3.905 0 6.727.951 8.386 2.828.825.932 1.24 1.973 1.447 2.867.016.07.031.139.045.208.014.071.029.142.04.21.013.078.024.152.035.226.008.053.016.1070002.022.1580002.015.124.027.244.035.355.001.009.001.017.001.026.007.108.012.21.015.303 0 .018 0 .033.001.051.002.083.002.162.001.231 0 .01 0 .02 0 .03-.004.235-.02.375-.02.378l-.008 6.357.33.298c.432.39.67.913.67 1.474v4c0 .873-.572 1.637-1.422 1.899l-.498.153-.16.495c-.669 2.081-1.622 4.003-2.834 5.713-.297.421-.586.794-.837 1.079l-.249.284v4.125c0 .253.025.501.064.745.008.052.022.102.032.154.039.201.091.398.155.59.015.045.031.088.048.133.078.209.169.411.275.605.012.022.023.045.035.067.145.256.312.499.504.723l.228.281h.039c.343.338.737.632 1.185.856l9.553 4.776c2.395 1.196 3.882 3.602 3.882 6.279zm14 0h-12v-2.043c0-3.439-1.911-6.53-4.986-8.068l-6.858-3.43c.169-.386.191-.828.043-1.254-.245-.705-.885-1.16-1.63-1.16h-2.217c-.046-.081-.076-.17-.113-.256-.05-.115-.109-.228-.142-.349-.061-.222-.097-.454-.097-.692v-3.381c.229-.28.47-.599.719-.951 1.239-1.75 2.232-3.698 2.954-5.799 1.411-.647 2.327-2.042 2.327-3.617v-4c0-.963-.36-1.896-1-2.625v-5.319c.026-.25.082-1.069-.084-2.1390002 1.288-.506 2.731-.767 4.29-.78 9.841.081 10.2 9.8110002 10.21 10.2210002.147 7.583 4.746 14.927 6.717 17.732.169.24.22.542.139.827-.046.164-.178.462-.535.615-1.68.723-3.959.518-4.076.513h-6.883c-.643 0-1.229.327-1.568.874-.338.545-.37 1.211-.086 1.783.313.631.866 1.474 1.775 1.927l9.747 4.222c2.069 1.045 3.354 3.131 3.354 5.452z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m50.380548 45.434454l-9.553-4.776c-.901-.451-1.461-1.357-1.461-2.365v-3.381c.229-.28.47-.599.719-.951 1.239-1.75 2.232-3.698 2.954-5.799 1.411-.647 2.327-2.042 2.327-3.617v-4c0-.963-.36-1.896-1-2.625v-5.319c.056-.55.276-3.8239997-2.092-6.5249997-2.054-2.343-5.387-3.5309997-9.908-3.5309997-4.521 0-7.854 1.1879997-9.908 3.5299997-2.368 2.701-2.148 5.9759997-2.092 6.5259997v5.319c-.64.729-1 1.662-1 2.625v4c0 1.217.553 2.352 1.497 3.109.916 3.627 2.833 6.36 3.503 7.237v3.309c0 .968-.528 1.856-1.377 2.32l-8.921 4.866c-2.901 1.583-4.7020003 4.617-4.7020003 7.921v3.238c0 4.746 15.0450003 6 23.0000003 6 7.955 0 23-1.254 23-6v-3.043c0-3.438-1.911-6.53-4.986-8.068zm2.986 11.111c0 1.357-7.412 4-21 4-13.588 0-21-2.643-21-4v-3.238c0-2.571 1.402-4.934 3.659-6.164l8.921-4.866c1.493-.815 2.42-2.378 2.42-4.077v-4.019l-.233-.278c-.024-.029-2.475-2.994-3.41-7.065l-.091-.396-.341-.22c-.579-.374-.925-1.001-.925-1.677v-4c0-.561.238-1.084.67-1.475l.33-.297v-6.228l-.009-.131c-.003-.027-.343-2.7989997 1.605-5.0209997 1.657-1.89 4.485-2.848 8.404-2.848 3.905 0 6.727.951 8.386 2.828 1.947 2.201 1.625 5.0169997 1.623 5.0409997l-.009 6.359.33.298c.432.39.67.913.67 1.474v4c0 .873-.572 1.637-1.422 1.899l-.498.153-.16.495c-.669 2.081-1.622 4.003-2.834 5.713-.297.421-.586.794-.837 1.079l-.249.284v4.125c0 1.77.983 3.361 2.566 4.153l9.553 4.776c2.394 1.197 3.881 3.603 3.881 6.28z" fill="#4d4d4d"/></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m50.380548 45.434454l-9.553-4.776c-.901-.451-1.461-1.357-1.461-2.365v-3.381c.229-.28.47-.599.719-.951 1.239-1.75 2.232-3.698 2.954-5.799 1.411-.647 2.327-2.042 2.327-3.617v-4c0-.963-.36-1.896-1-2.625v-5.319c.056-.55.276-3.8239997-2.092-6.5249997-2.054-2.343-5.387-3.5309997-9.908-3.5309997-4.521 0-7.854 1.1879997-9.908 3.5299997-2.368 2.701-2.148 5.9759997-2.092 6.5259997v5.319c-.64.729-1 1.662-1 2.625v4c0 1.217.553 2.352 1.497 3.109.916 3.627 2.833 6.36 3.503 7.237v3.309c0 .968-.528 1.856-1.377 2.32l-8.921 4.866c-2.901 1.583-4.7020003 4.617-4.7020003 7.921v3.238c0 4.746 15.0450003 6 23.0000003 6 7.955 0 23-1.254 23-6v-3.043c0-3.438-1.911-6.53-4.986-8.068zm2.986 11.111c0 1.357-7.412 4-21 4-13.588 0-21-2.643-21-4v-3.238c0-2.571 1.402-4.934 3.659-6.164l8.921-4.866c1.493-.815 2.42-2.378 2.42-4.077v-4.019l-.233-.278c-.024-.029-2.475-2.994-3.41-7.065l-.091-.396-.341-.22c-.579-.374-.925-1.001-.925-1.677v-4c0-.561.238-1.084.67-1.475l.33-.297v-6.228l-.009-.131c-.003-.027-.343-2.7989997 1.605-5.0209997 1.657-1.89 4.485-2.848 8.404-2.848 3.905 0 6.727.951 8.386 2.828 1.947 2.201 1.625 5.0169997 1.623 5.0409997l-.009 6.359.33.298c.432.39.67.913.67 1.474v4c0 .873-.572 1.637-1.422 1.899l-.498.153-.16.495c-.669 2.081-1.622 4.003-2.834 5.713-.297.421-.586.794-.837 1.079l-.249.284v4.125c0 1.77.983 3.361 2.566 4.153l9.553 4.776c2.394 1.197 3.881 3.603 3.881 6.28z" fill="#666"/></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d"><path d="m32.082031 1.8183594c-4.521 0-7.854203 1.1872968-9.908203 3.5292968-2.368 2.7010001-2.147797 5.9773438-2.091797 6.5273438v5.318359c-.64.729-1 1.662-1 2.625v4c0 1.217.554047 2.352375 1.498047 3.109375.916 3.627 2.831953 6.359328 3.501953 7.236328v3.308594c0 .968-.527953 1.856313-1.376953 2.320313l-8.919922 4.867187c-2.901 1.583-4.7031248 4.615922-4.7031248 7.919922v3.238281c0 4.746 15.0449998 6 22.9999998 6 3.597846 0 8.63924-.262358 13.089844-.982421-.072115-.018329-.20262-.0538-.300781-.082032-.28687.032899-.432666-.022869-.476563-.142578-.05878-.024574-.130739-.07702-.09375-.060547.028439.012668.055857.027671.083985.041016-.022306-.087408.013443-.21104.072265-.349609-.027448-.34023.08486-.821471.242188-1.332032-3.293321.536151-7.521688.908203-12.617188.908203-13.588 0-21-2.643-21-4v-3.238281c0-2.571 1.403156-4.934062 3.660157-6.164062l8.919921-4.865235c1.493-.815 2.419922-2.379125 2.419922-4.078125v-4.017578l-.232422-.279297c-.024-.029-2.475156-2.993453-3.410156-7.064453l-.091797-.396484-.339844-.21875c-.579-.374-.925781-1.001735-.925781-1.677735v-4c0-.561.237922-1.083609.669922-1.474609l.330078-.296875v-6.228516l-.007812-.130859c-.003-.027-.344485-2.7994844 1.603515-5.0214844 1.657-1.89 4.485297-2.8476562 8.404297-2.8476562 3.905 0 6.727719.951125 8.386719 2.828125 1.947 2.201 1.625047 5.0170156 1.623047 5.0410156l-.009766 6.359375.330078.296875c.432.39.669922.913609.669922 1.474609v4c0 .873-.571875 1.636438-1.421875 1.898438l-.498047.154297-.160156.49414c-.669 2.081-1.621984 4.002891-2.833984 5.712891-.297.421-.584938.793125-.835938 1.078125l-.25.285156v4.125c0 1.77.983407 3.360344 2.566407 4.152344l5.613281 2.806641c.224948-.296508.424217-.488659.75-.72461-.000644.001241.004369-.00301.003906-.001953.008683-.011239.138071-.113991.195313-.15039.005865-.004218.005744-.003515.011718-.007813.035605-.025615-.027403.033915-.09375.089844-.028199.02937.033735-.017705-.11914.115234.36026-.214013.736911-.403369 1.082031-.640625l-.023438-.011719c-.099909.042825-.254794.114442-.347656.146485-.04258.01469.077996-.04415.119141-.0625.078039-.034802.145093-.056495.21875-.087891l-6.515625-3.257812c-.901-.451-1.460938-1.357235-1.460938-2.365235v-3.380859c.229-.28.46975-.599172.71875-.951172 1.239-1.75 2.233078-3.697828 2.955078-5.798828 1.411-.647 2.326172-2.042188 2.326172-3.617188v-4c0-.963-.36-1.896-1-2.625v-5.318359c.056-.55.276203-3.8243906-2.091797-6.5253906-2.054-2.343-5.387203-3.53125-9.908203-3.53125zm12.375 58.4238286c.00816.101146.016033.200058.050781.271484.126932-.351632.336254-.787893.572266-1.251953-.27155.367024-.510255.714762-.623047.980469zm.050781.271484c-.011642.032252-.041003.080904-.050781.111328 0 0 0 .001953 0 .001953.022559.010858.045724.020559.06836.03125.178489.047821.232763.063221.345703.095703.135944-.01559.296302-.047403.5-.105468.289337-.08248 1.166087-.296433.86914-.248047-.431583.07033-.841481.246458-1.273437.314453-.239964.037773-.382818-.044611-.458985-.201172zm10.095704-10.574219c.042079-.050819-.090847.079511-.150391.128906.005501.001007.008413.000989.013672.001953.045435-.032378.089879-.074293.136719-.130859z"/><g transform="matrix(.44055944 0 0 .43706294 41.173519 41.272727)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m38.5 25h-11.5v-11c0-.553-.448-1-1-1-.552 0-1 .447-1 1v11h-11.5c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11.5v12c0 .553.448 1 1 1 .552 0 1-.447 1-1v-12h11.5c.552 0 1-.447 1-1 0-.553-.448-1-1-1z"/></g></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m32.082031 1.8183594c-4.521 0-7.854203 1.1872968-9.908203 3.5292968-2.368 2.7010001-2.147797 5.9773438-2.091797 6.5273438v5.318359c-.64.729-1 1.662-1 2.625v4c0 1.217.554047 2.352375 1.498047 3.109375.916 3.627 2.831953 6.359328 3.501953 7.236328v3.308594c0 .968-.527953 1.856313-1.376953 2.320313l-8.919922 4.867187c-2.901 1.583-4.7031248 4.615922-4.7031248 7.919922v3.238281c0 4.746 15.0449998 6 22.9999998 6 3.597846 0 8.63924-.262358 13.089844-.982421-.07211-.01833-.20262-.0538-.300781-.08203-.28687.0329-.432666-.02287-.476563-.142578-.05878-.02457-.130739-.07702-.09375-.06055.02844.01267.05586.02767.08398.04102-.02231-.08741.01344-.21104.07227-.349609-.02745-.34023.08486-.821471.242188-1.332032-3.293321.536151-7.521688.908203-12.617188.908203-13.588 0-21-2.643-21-4v-3.238281c0-2.571 1.403156-4.934062 3.660157-6.164062l8.919921-4.865235c1.493-.815 2.419922-2.379125 2.419922-4.078125v-4.017578l-.232422-.279297c-.024-.029-2.475156-2.993453-3.410156-7.064453l-.0918-.396484-.339844-.21875c-.579-.374-.925781-1.001735-.925781-1.677735v-4c0-.561.237922-1.083609.669922-1.474609l.330078-.296875v-6.228516l-.0078-.130859c-.003-.027-.344485-2.7994844 1.603515-5.0214844 1.657-1.89 4.485297-2.8476562 8.404297-2.8476562 3.905 0 6.727719.951125 8.386719 2.828125 1.947 2.201 1.625047 5.0170156 1.623047 5.0410156l-.0098 6.359375.330078.296875c.432.39.669922.913609.669922 1.474609v4c0 .873-.571875 1.636438-1.421875 1.898438l-.498047.154297-.160156.49414c-.669 2.081-1.621984 4.002891-2.833984 5.712891-.297.421-.584938.793125-.835938 1.078125l-.25.285156v4.125c0 1.77.983407 3.360344 2.566407 4.152344l5.613281 2.806641c.224948-.296508.424217-.488659.75-.72461-.000644.0012.0044-.003.0039-.002.0087-.01124.138071-.113991.195313-.15039.0059-.0042.0057-.0035.01172-.0078.0356-.02562-.0274.03392-.09375.08984-.0282.02937.03374-.0177-.11914.115234.36026-.214013.736911-.403369 1.082031-.640625l-.02344-.01172c-.09991.04283-.254794.114442-.347656.146485-.04258.01469.078-.04415.119141-.0625.07804-.0348.145093-.05649.21875-.08789l-6.515625-3.257812c-.901-.451-1.460938-1.357235-1.460938-2.365235v-3.380859c.229-.28.46975-.599172.71875-.951172 1.239-1.75 2.233078-3.697828 2.955078-5.798828 1.411-.647 2.326172-2.042188 2.326172-3.617188v-4c0-.963-.36-1.896-1-2.625v-5.318359c.056-.55.276203-3.8243906-2.091797-6.5253906-2.054-2.343-5.387203-3.53125-9.908203-3.53125zm12.375 58.4238286c.0082.101146.01603.200058.05078.271484.126932-.351632.336254-.787893.572266-1.251953-.27155.367024-.510255.714762-.623047.980469zm.05078.271484c-.01164.03225-.041.0809-.05078.111328 0 0 0 .002 0 .002.02256.01086.04572.02056.06836.03125.178489.04782.232763.06322.345703.0957.135944-.01559.296302-.0474.5-.105468.289337-.08248 1.166087-.296433.86914-.248047-.431583.07033-.841481.246458-1.273437.314453-.239964.03777-.382818-.04461-.458985-.201172zm10.095705-10.574219c.04208-.05082-.09085.07951-.150391.128906.0055.001.0084.000989.01367.002.04543-.03238.08988-.07429.136719-.130859z" fill="#666"/><g fill="#666" stroke="#666" stroke-width="1.13945127" transform="matrix(.44055944 0 0 .43706294 41.173519 41.272727)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m38.5 25h-11.5v-11c0-.553-.448-1-1-1-.552 0-1 .447-1 1v11h-11.5c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11.5v12c0 .553.448 1 1 1 .552 0 1-.447 1-1v-12h11.5c.552 0 1-.447 1-1 0-.553-.448-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m32.082031 1.8183594c-4.521 0-7.854203 1.1872968-9.908203 3.5292968-2.368 2.7010001-2.147797 5.9773438-2.091797 6.5273438v5.318359c-.64.729-1 1.662-1 2.625v4c0 1.217.554047 2.352375 1.498047 3.109375.916 3.627 2.831953 6.359328 3.501953 7.236328v3.308594c0 .968-.527953 1.856313-1.376953 2.320313l-8.919922 4.867187c-2.901 1.583-4.7031248 4.615922-4.7031248 7.919922v3.238281c0 4.746 15.0449998 6 22.9999998 6 3.597846 0 8.63924-.262358 13.089844-.982421-.07211-.01833-.20262-.0538-.300781-.08203-.28687.0329-.432666-.02287-.476563-.142578-.05878-.02457-.130739-.07702-.09375-.06055.02844.01267.05586.02767.08398.04102-.02231-.08741.01344-.21104.07227-.349609-.02745-.34023.08486-.821471.242188-1.332032-3.293321.536151-7.521688.908203-12.617188.908203-13.588 0-21-2.643-21-4v-3.238281c0-2.571 1.403156-4.934062 3.660157-6.164062l8.919921-4.865235c1.493-.815 2.419922-2.379125 2.419922-4.078125v-4.017578l-.232422-.279297c-.024-.029-2.475156-2.993453-3.410156-7.064453l-.0918-.396484-.339844-.21875c-.579-.374-.925781-1.001735-.925781-1.677735v-4c0-.561.237922-1.083609.669922-1.474609l.330078-.296875v-6.228516l-.0078-.130859c-.003-.027-.344485-2.7994844 1.603515-5.0214844 1.657-1.89 4.485297-2.8476562 8.404297-2.8476562 3.905 0 6.727719.951125 8.386719 2.828125 1.947 2.201 1.625047 5.0170156 1.623047 5.0410156l-.0098 6.359375.330078.296875c.432.39.669922.913609.669922 1.474609v4c0 .873-.571875 1.636438-1.421875 1.898438l-.498047.154297-.160156.49414c-.669 2.081-1.621984 4.002891-2.833984 5.712891-.297.421-.584938.793125-.835938 1.078125l-.25.285156v4.125c0 1.77.983407 3.360344 2.566407 4.152344l5.613281 2.806641c.224948-.296508.424217-.488659.75-.72461-.000644.0012.0044-.003.0039-.002.0087-.01124.138071-.113991.195313-.15039.0059-.0042.0057-.0035.01172-.0078.0356-.02562-.0274.03392-.09375.08984-.0282.02937.03374-.0177-.11914.115234.36026-.214013.736911-.403369 1.082031-.640625l-.02344-.01172c-.09991.04283-.254794.114442-.347656.146485-.04258.01469.078-.04415.119141-.0625.07804-.0348.145093-.05649.21875-.08789l-6.515625-3.257812c-.901-.451-1.460938-1.357235-1.460938-2.365235v-3.380859c.229-.28.46975-.599172.71875-.951172 1.239-1.75 2.233078-3.697828 2.955078-5.798828 1.411-.647 2.326172-2.042188 2.326172-3.617188v-4c0-.963-.36-1.896-1-2.625v-5.318359c.056-.55.276203-3.8243906-2.091797-6.5253906-2.054-2.343-5.387203-3.53125-9.908203-3.53125zm12.375 58.4238286c.0082.101146.01603.200058.05078.271484.126932-.351632.336254-.787893.572266-1.251953-.27155.367024-.510255.714762-.623047.980469zm.05078.271484c-.01164.03225-.041.0809-.05078.111328 0 0 0 .002 0 .002.02256.01086.04572.02056.06836.03125.178489.04782.232763.06322.345703.0957.135944-.01559.296302-.0474.5-.105468.289337-.08248 1.166087-.296433.86914-.248047-.431583.07033-.841481.246458-1.273437.314453-.239964.03777-.382818-.04461-.458985-.201172zm10.095705-10.574219c.04208-.05082-.09085.07951-.150391.128906.0055.001.0084.000989.01367.002.04543-.03238.08988-.07429.136719-.130859z" fill="#4d4d4d"/><g fill="#4d4d4d" transform="matrix(.30925367 -.31377505 .31128478 .30679928 36.559388 52.723357)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m38.5 25h-11.5v-11c0-.553-.448-1-1-1-.552 0-1 .447-1 1v11h-11.5c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11.5v12c0 .553.448 1 1 1 .552 0 1-.447 1-1v-12h11.5c.552 0 1-.447 1-1 0-.553-.448-1-1-1z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m32.082031 1.8183594c-4.521 0-7.854203 1.1872968-9.908203 3.5292968-2.368 2.7010001-2.147797 5.9773438-2.091797 6.5273438v5.318359c-.64.729-1 1.662-1 2.625v4c0 1.217.554047 2.352375 1.498047 3.109375.916 3.627 2.831953 6.359328 3.501953 7.236328v3.308594c0 .968-.527953 1.856313-1.376953 2.320313l-8.919922 4.867187c-2.901 1.583-4.7031248 4.615922-4.7031248 7.919922v3.238281c0 4.746 15.0449998 6 22.9999998 6 3.597846 0 8.63924-.262358 13.089844-.982421-.07211-.01833-.20262-.0538-.300781-.08203-.28687.0329-.432666-.02287-.476563-.142578-.05878-.02457-.130739-.07702-.09375-.06055.02844.01267.05586.02767.08398.04102-.02231-.08741.01344-.21104.07227-.349609-.02745-.34023.08486-.821471.242188-1.332032-3.293321.536151-7.521688.908203-12.617188.908203-13.588 0-21-2.643-21-4v-3.238281c0-2.571 1.403156-4.934062 3.660157-6.164062l8.919921-4.865235c1.493-.815 2.419922-2.379125 2.419922-4.078125v-4.017578l-.232422-.279297c-.024-.029-2.475156-2.993453-3.410156-7.064453l-.0918-.396484-.339844-.21875c-.579-.374-.925781-1.001735-.925781-1.677735v-4c0-.561.237922-1.083609.669922-1.474609l.330078-.296875v-6.228516l-.0078-.130859c-.003-.027-.344485-2.7994844 1.603515-5.0214844 1.657-1.89 4.485297-2.8476562 8.404297-2.8476562 3.905 0 6.727719.951125 8.386719 2.828125 1.947 2.201 1.625047 5.0170156 1.623047 5.0410156l-.0098 6.359375.330078.296875c.432.39.669922.913609.669922 1.474609v4c0 .873-.571875 1.636438-1.421875 1.898438l-.498047.154297-.160156.49414c-.669 2.081-1.621984 4.002891-2.833984 5.712891-.297.421-.584938.793125-.835938 1.078125l-.25.285156v4.125c0 1.77.983407 3.360344 2.566407 4.152344l5.613281 2.806641c.224948-.296508.424217-.488659.75-.72461-.000644.0012.0044-.003.0039-.002.0087-.01124.138071-.113991.195313-.15039.0059-.0042.0057-.0035.01172-.0078.0356-.02562-.0274.03392-.09375.08984-.0282.02937.03374-.0177-.11914.115234.36026-.214013.736911-.403369 1.082031-.640625l-.02344-.01172c-.09991.04283-.254794.114442-.347656.146485-.04258.01469.078-.04415.119141-.0625.07804-.0348.145093-.05649.21875-.08789l-6.515625-3.257812c-.901-.451-1.460938-1.357235-1.460938-2.365235v-3.380859c.229-.28.46975-.599172.71875-.951172 1.239-1.75 2.233078-3.697828 2.955078-5.798828 1.411-.647 2.326172-2.042188 2.326172-3.617188v-4c0-.963-.36-1.896-1-2.625v-5.318359c.056-.55.276203-3.8243906-2.091797-6.5253906-2.054-2.343-5.387203-3.53125-9.908203-3.53125zm12.375 58.4238286c.0082.101146.01603.200058.05078.271484.126932-.351632.336254-.787893.572266-1.251953-.27155.367024-.510255.714762-.623047.980469zm.05078.271484c-.01164.03225-.041.0809-.05078.111328 0 0 0 .002 0 .002.02256.01086.04572.02056.06836.03125.178489.04782.232763.06322.345703.0957.135944-.01559.296302-.0474.5-.105468.289337-.08248 1.166087-.296433.86914-.248047-.431583.07033-.841481.246458-1.273437.314453-.239964.03777-.382818-.04461-.458985-.201172zm10.095705-10.574219c.04208-.05082-.09085.07951-.150391.128906.0055.001.0084.000989.01367.002.04543-.03238.08988-.07429.136719-.130859z" fill="#666"/><g fill="#666" stroke="#666" stroke-width="1.13945128" transform="matrix(.30925367 -.31377505 .31128478 .30679928 36.559388 52.723357)"><path d="m26 0c-14.336 0-26 11.663-26 26 0 14.337 11.664 26 26 26 14.336 0 26-11.663 26-26 0-14.337-11.664-26-26-26zm0 50c-13.233 0-24-10.767-24-24 0-13.233 10.767-24 24-24 13.233 0 24 10.767 24 24 0 13.233-10.767 24-24 24z"/><path d="m38.5 25h-11.5v-11c0-.553-.448-1-1-1-.552 0-1 .447-1 1v11h-11.5c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11.5v12c0 .553.448 1 1 1 .552 0 1-.447 1-1v-12h11.5c.552 0 1-.447 1-1 0-.553-.448-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 10 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d"><path d="m31.900391 2.5449219c-4.521 0-7.854203 1.18925-9.908203 3.53125-2.368 2.701-2.147797 5.9753931-2.091797 6.5253901v5.31836c-.64.729-1 1.662-1 2.625v4c0 1.217.554047 2.352375 1.498047 3.109375.916 3.627 2.831953 6.359328 3.501953 7.236328v3.310547c0 .968-.527953 1.854359-1.376953 2.318359l-8.919922 4.867188c-2.901 1.583-4.7031254 4.615922-4.7031254 7.919922v3.238281c0 4.746 15.0450004 6 23.0000004 6 7.803436 0 22.420121-1.20853 22.974609-5.734375-.10786.258089-.033911-.042665-.84375.808594.003648.002042.003128.009054.003906.013671.052327-.029653.26748-.204178.384766-.28125.01268-.008299-.014145.025793-.021484.039063l-.535157.464844c-.007768.007916-.015461.015682-.023437.023437.383793-.315041-.014152.072494-.244141.232422-.026626.021646-.052152.044241-.078125.066406-.087976.085291-.173068.173251-.259766.259766 1.033978-.979221-.12715.155131-.21289.203125-.258331.144606-.550388.222255-.841797.283203-.188079.064411-.376581.118268-.589844.171875-.035992.015569-.082032.035121-.111328.046875-.179245.175404-.377529.415231-.626953.408203-.723734-.02039-1.410069-.32803-2.115234-.492187-.114089-.07661.097109.102835.068359.082031-.160728-.116284-.292289-.219197-.40625-.322266-3.535304.936827-9.099342 1.726563-16.521484 1.726563-13.588 0-21-2.643-21-4v-3.238281c0-2.571 1.403156-4.934063 3.660156-6.164063l8.919922-4.865234c1.493-.815 2.419922-2.377172 2.419922-4.076172v-4.019531l-.232422-.277344c-.024-.029-2.475157-2.995406-3.410157-7.066406l-.091796-.394532-.339844-.220703c-.579-.374-.925781-1.001734-.925781-1.677734v-4c0-.561.237921-1.083609.669921-1.47461l.330079-.296874v-6.228516l-.007813-.13086c-.003-.026997-.344484-2.7994839 1.603516-5.0214839 1.657-1.89 4.485297-2.8476562 8.404297-2.8476562 3.905 0 6.727718.951125 8.386718 2.828125 1.947 2.201 1.625047 5.0170171 1.623047 5.0410151l-.009765 6.359376.330078.298828c.432.39.669922.911656.669922 1.472656v4c0 .873-.571875 1.63839-1.421875 1.90039l-.498047.152344-.160157.494141c-.668998 2.081-1.621984 4.002889-2.833984 5.712891-.297.420999-.584937.795078-.835937 1.080078l-.25.283203v4.125c0 1.77.983406 3.362297 2.566406 4.154297l4.181641 2.089843c.113144-.186717.24203-.36346.408203-.505859.20768-.177968.463659-.29015.695312-.435547.174828-.061696.271894-.08846.34375-.101562.158183-.102817.336416-.163234.521485-.208985l-5.25586-2.626953c-.901-.451-1.460937-1.357234-1.460937-2.365234v-3.38086c.229-.28.46975-.599171.71875-.951171 1.239-1.75 2.233078-3.697829 2.955078-5.798829 1.411-.647 2.326172-2.042187 2.326172-3.617187v-4c0-.963-.36-1.896-1-2.625v-5.31836c.056-.549998.276203-3.8243901-2.091797-6.5253901-2.054-2.343-5.387203-3.53125-9.908203-3.53125zm22.992187 54.0761721c-.037133.055995-.077545.109876-.111328.167968-.027403.047123.052913-.060274.107422-.123046.000836-.015085.003379-.029766.003906-.044922zm-4.689453 1.65625c-.183784.064699-.370014.129092-.572266.193359.444446.163535.760551.224423.626953-.099609-.01431-.034713-.037885-.061166-.054687-.09375z"/><path d="m63.8052 62.456632l-6.814236-6.760559c1.131115-1.497554 1.80987-3.349534 1.80987-5.360364 0-4.944876-4.054453-8.967391-9.038589-8.967391-4.984136 0-9.038589 4.022515-9.038589 8.967391 0 4.944875 4.054453 8.967391 9.038589 8.967391 2.026796 0 3.89348-.673409 5.402924-1.795614l6.814236 6.760559zm-22.220726-12.120923c0-4.473874 3.668376-8.113354 8.177771-8.113354 4.509395 0 8.177771 3.63948 8.177771 8.113354 0 4.473874-3.668376 8.113353-8.177771 8.113353-4.509395 0-8.177771-3.639479-8.177771-8.113353zm14.447539 6.444992c.07661-.07345.151934-.148176.225965-.224185.06284-.06448.130844-.123836.191532-.190023l6.138493 6.090139-.609029.604231-6.138063-6.090566c.06671-.06021.12611-.127679.191102-.189596z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><path d="m31.900391 2.5449219c-4.521 0-7.854203 1.18925-9.908203 3.53125-2.368 2.701-2.147797 5.9753931-2.091797 6.5253901v5.31836c-.64.729-1 1.662-1 2.625v4c0 1.217.554047 2.352375 1.498047 3.109375.916 3.627 2.831953 6.359328 3.501953 7.236328v3.310547c0 .968-.527953 1.854359-1.376953 2.318359l-8.919922 4.867188c-2.901 1.583-4.7031254 4.615922-4.7031254 7.919922v3.238281c0 4.746 15.0450004 6 23.0000004 6 7.803436 0 22.420121-1.20853 22.974609-5.734375-.10786.258089-.03391-.04266-.84375.808594.0036.002.0031.0091.0039.01367.05233-.02965.26748-.204178.384766-.28125.01268-.0083-.01414.02579-.02148.03906l-.535157.464844c-.0078.0079-.01546.01568-.02344.02344.383793-.315041-.01415.07249-.244141.232422-.02663.02165-.05215.04424-.07813.06641-.08798.08529-.173068.173251-.259766.259766 1.033978-.979221-.12715.155131-.21289.203125-.258331.144606-.550388.222255-.841797.283203-.188079.06441-.376581.118268-.589844.171875-.03599.01557-.08203.03512-.111328.04687-.179245.175404-.377529.415231-.626953.408203-.723734-.02039-1.410069-.32803-2.115234-.492187-.114089-.07661.09711.102835.06836.08203-.160728-.116284-.292289-.219197-.40625-.322266-3.535304.936827-9.099342 1.726563-16.521484 1.726563-13.588 0-21-2.643-21-4v-3.238281c0-2.571 1.403156-4.934063 3.660156-6.164063l8.919922-4.865234c1.493-.815 2.419922-2.377172 2.419922-4.076172v-4.019531l-.232422-.277344c-.024-.029-2.475157-2.995406-3.410157-7.066406l-.0918-.394532-.339844-.220703c-.579-.374-.925781-1.001734-.925781-1.677734v-4c0-.561.237921-1.083609.669921-1.47461l.330079-.296874v-6.228516l-.0078-.13086c-.003-.027-.344484-2.7994839 1.603516-5.0214839 1.657-1.89 4.485297-2.8476562 8.404297-2.8476562 3.905 0 6.727718.951125 8.386718 2.828125 1.947 2.201 1.625047 5.0170171 1.623047 5.0410151l-.0098 6.359376.330078.298828c.432.39.669922.911656.669922 1.472656v4c0 .873-.571875 1.63839-1.421875 1.90039l-.498047.152344-.160157.494141c-.668998 2.081-1.621984 4.002889-2.833984 5.712891-.297.420999-.584937.795078-.835937 1.080078l-.25.283203v4.125c0 1.77.983406 3.362297 2.566406 4.154297l4.181641 2.089843c.113144-.186717.24203-.36346.408203-.505859.20768-.177968.463659-.29015.695312-.435547.174828-.0617.271894-.08846.34375-.101562.158183-.102817.336416-.163234.521485-.208985l-5.25586-2.626953c-.901-.451-1.460937-1.357234-1.460937-2.365234v-3.38086c.229-.28.46975-.599171.71875-.951171 1.239-1.75 2.233078-3.697829 2.955078-5.798829 1.411-.647 2.326172-2.042187 2.326172-3.617187v-4c0-.963-.36-1.896-1-2.625v-5.31836c.056-.549998.276203-3.8243901-2.091797-6.5253901-2.054-2.343-5.387203-3.53125-9.908203-3.53125zm22.992187 54.0761721c-.03713.056-.07755.109876-.111328.167968-.0274.04712.05291-.06027.107422-.123046.000836-.01508.0034-.02977.0039-.04492zm-4.689453 1.65625c-.183784.0647-.370014.129092-.572266.193359.444446.163535.760551.224423.626953-.09961-.01431-.03471-.03789-.06117-.05469-.09375z" fill="#666"/><path d="m63.8052 62.456632l-6.814236-6.760559c1.131115-1.497554 1.80987-3.349534 1.80987-5.360364 0-4.944876-4.054453-8.967391-9.038589-8.967391-4.984136 0-9.038589 4.022515-9.038589 8.967391 0 4.944875 4.054453 8.967391 9.038589 8.967391 2.026796 0 3.89348-.673409 5.402924-1.795614l6.814236 6.760559zm-22.220726-12.120923c0-4.473874 3.668376-8.113354 8.177771-8.113354 4.509395 0 8.177771 3.63948 8.177771 8.113354 0 4.473874-3.668376 8.113353-8.177771 8.113353-4.509395 0-8.177771-3.639479-8.177771-8.113353zm14.447539 6.444992c.07661-.07345.151934-.148176.225965-.224185.06284-.06448.130844-.123836.191532-.190023l6.138493 6.090139-.609029.604231-6.138063-6.090566c.06671-.06021.12611-.127679.191102-.189596z" fill="#666" stroke="#666" stroke-width=".5"/></svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="matrix(1.2690909 0 0 1.1750842 -2.4443613 .45454515)"><path d="m27 8c-9.374 0-17 7.626-17 17 0 7.112 4.391 13.412 11 15.9v9.1c0 .553.447 1 1 1h1v2c0 .553.447 1 1 1h6c .553 0 1-.447 1-1v-2h1c .553 0 1-.447 1-1v-9.1c6.609-2.488 11-8.788 11-15.9 0-9.374-7.626-17-17-17zm3 41c-.553 0-1 .447-1 1v2h-4v-2c0-.553-.447-1-1-1h-1v-5h8v5zm1.688-9.758c-.411.135-.688.519-.688.95v1.808h-8v-1.808c0-.432-.277-.815-.688-.95-6.167-2.028-10.312-7.752-10.312-14.242 0-8.271 6.729-15 15-15 8.271 0 15 6.729 15 15 0 6.49-4.145 12.214-10.312 14.242z"/><path d="m27 6c .553 0 1-.447 1-1v-4c0-.553-.447-1-1-1-.553 0-1 .447-1 1v4c0 .553.447 1 1 1z"/><path d="m51 24h-4c-.553 0-1 .447-1 1 0 .553.447 1 1 1h4c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m7 24h-4c-.553 0-1 .447-1 1 0 .553.447 1 1 1h4c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m43.264 7.322l-2.828 2.828c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.828-2.828c.391-.391.391-1.023 0-1.414-.391-.391-1.024-.39-1.414 0z"/><path d="m12.15 38.436l-2.828 2.828c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.828-2.828c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0z"/><path d="m41.85 38.436c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2.828 2.828c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414z"/><path d="m12.15 11.564c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-2.828-2.828c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414z"/><path d="m27 13c-6.617 0-12 5.383-12 12 0 .553.447 1 1 1 .553 0 1-.447 1-1 0-5.514 4.486-10 10-10 .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="matrix(1.2690909 0 0 1.1750842 -2.4443613 .45454515)"><path d="m27 8c-9.374 0-17 7.626-17 17 0 7.112 4.391 13.412 11 15.9v9.1c0 .553.447 1 1 1h1v2c0 .553.447 1 1 1h6c .553 0 1-.447 1-1v-2h1c .553 0 1-.447 1-1v-9.1c6.609-2.488 11-8.788 11-15.9 0-9.374-7.626-17-17-17zm3 41c-.553 0-1 .447-1 1v2h-4v-2c0-.553-.447-1-1-1h-1v-5h8v5zm1.688-9.758c-.411.135-.688.519-.688.95v1.808h-8v-1.808c0-.432-.277-.815-.688-.95-6.167-2.028-10.312-7.752-10.312-14.242 0-8.271 6.729-15 15-15 8.271 0 15 6.729 15 15 0 6.49-4.145 12.214-10.312 14.242z"/><path d="m27 6c .553 0 1-.447 1-1v-4c0-.553-.447-1-1-1-.553 0-1 .447-1 1v4c0 .553.447 1 1 1z"/><path d="m51 24h-4c-.553 0-1 .447-1 1 0 .553.447 1 1 1h4c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m7 24h-4c-.553 0-1 .447-1 1 0 .553.447 1 1 1h4c .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/><path d="m43.264 7.322l-2.828 2.828c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.828-2.828c.391-.391.391-1.023 0-1.414-.391-.391-1.024-.39-1.414 0z"/><path d="m12.15 38.436l-2.828 2.828c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293.256 0 .512-.098.707-.293l2.828-2.828c.391-.391.391-1.023 0-1.414-.391-.391-1.023-.391-1.414 0z"/><path d="m41.85 38.436c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414l2.828 2.828c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414z"/><path d="m12.15 11.564c.195.195.451.293.707.293.256 0 .512-.098.707-.293.391-.391.391-1.023 0-1.414l-2.828-2.828c-.391-.391-1.023-.391-1.414 0-.391.391-.391 1.023 0 1.414z"/><path d="m27 13c-6.617 0-12 5.383-12 12 0 .553.447 1 1 1 .553 0 1-.447 1-1 0-5.514 4.486-10 10-10 .553 0 1-.447 1-1 0-.553-.447-1-1-1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

@ -1 +1 @@
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#4d4d4d" transform="translate(2.0826097 1.7043365)"><path d="m23.429 17h23.571c.552 0 1-.447 1-1 0-.553-.448-1-1-1h-23.571c-.552 0-1 .447-1 1 0 .553.448 1 1 1z"/><path d="m23.429 32h23.571c.552 0 1-.447 1-1 0-.553-.448-1-1-1h-23.571c-.552 0-1 .447-1 1 0 .553.448 1 1 1z"/><path d="m23.429 47h23.571c.552 0 1-.447 1-1 0-.553-.448-1-1-1h-23.571c-.552 0-1 .447-1 1 0 .553.448 1 1 1z"/><path d="m59 0h-58c-.552 0-1 .447-1 1v58c0 .553.448 1 1 1h58c .552 0 1-.447 1-1v-58c0-.553-.448-1-1-1zm-1 58h-56v-56h56z"/><path d="m12.501 18.474l2.428-1.277 2.428 1.277-.463-2.704 1.964-1.916-2.715-.394-1.214-2.46-1.214 2.46-2.715.394 1.965 1.916z"/><path d="m12.501 33.557l2.428-1.277 2.428 1.277-.463-2.704 1.964-1.915-2.715-.395-1.214-2.46-1.214 2.46-2.715.395 1.965 1.915z"/><path d="m12.501 49l2.428-1.277 2.428 1.277-.463-2.704 1.964-1.915-2.715-.395-1.214-2.46-1.214 2.46-2.715.395 1.965 1.915z"/></g></svg>
<svg height="64" viewBox="0 0 64 64" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#666" transform="translate(2.0826097 1.7043365)"><path d="m23.429 17h23.571c.552 0 1-.447 1-1 0-.553-.448-1-1-1h-23.571c-.552 0-1 .447-1 1 0 .553.448 1 1 1z"/><path d="m23.429 32h23.571c.552 0 1-.447 1-1 0-.553-.448-1-1-1h-23.571c-.552 0-1 .447-1 1 0 .553.448 1 1 1z"/><path d="m23.429 47h23.571c.552 0 1-.447 1-1 0-.553-.448-1-1-1h-23.571c-.552 0-1 .447-1 1 0 .553.448 1 1 1z"/><path d="m59 0h-58c-.552 0-1 .447-1 1v58c0 .553.448 1 1 1h58c .552 0 1-.447 1-1v-58c0-.553-.448-1-1-1zm-1 58h-56v-56h56z"/><path d="m12.501 18.474l2.428-1.277 2.428 1.277-.463-2.704 1.964-1.916-2.715-.394-1.214-2.46-1.214 2.46-2.715.394 1.965 1.916z"/><path d="m12.501 33.557l2.428-1.277 2.428 1.277-.463-2.704 1.964-1.915-2.715-.395-1.214-2.46-1.214 2.46-2.715.395 1.965 1.915z"/><path d="m12.501 49l2.428-1.277 2.428 1.277-.463-2.704 1.964-1.915-2.715-.395-1.214-2.46-1.214 2.46-2.715.395 1.965 1.915z"/></g></svg>

Before

Width:  |  Height:  |  Size: 990 B

After

Width:  |  Height:  |  Size: 987 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save