Qt: Icon updates

This commit is contained in:
KamFretoZ 2024-02-05 20:34:34 +07:00 committed by Connor McLaughlin
parent 0e6a9f637b
commit 1f6636f62b
43 changed files with 3119 additions and 1934 deletions

Binary file not shown.

View File

@ -329,3 +329,12 @@
#define ICON_PF_ACHIEVEMENTS_PROGRESSION "\xE2\x8E\xB2"
#define ICON_PF_ACHIEVEMENTS_MISSABLE "\xE2\x8E\xB3"
#define ICON_PF_ACHIEVEMENTS_WIN "\xE2\x8E\xB4"
#define ICON_PF_MICROCHIP "\xE2\x8D\x9E"
#define ICON_PF_INFINITY "\xeE\x8D\x9F"
#define ICON_PF_GAMEPAD_ALT "\xE2\x8D\xA0"
#define ICON_PF_KEYBOARD_ALT "\xE2\x8D\xA1"
#define ICON_PF_DOWNLOAD "\xE2\x8D\xA2"
#define ICON_PF_UPLOAD "\xE2\x8D\xA3"
#define ICON_PF_MEMORY_CARD "\xE2\x8D\xA4"
#define ICON_PF_SOUND "\xE2\x8D\xA5"
#define ICON_PF_PICTURE "\xE2\x8D\xA6"

File diff suppressed because it is too large Load Diff

View File

@ -36,6 +36,7 @@
#include "common/threading.h"
#include "IconsFontAwesome5.h"
#include "IconsPromptFont.h"
#include "fmt/chrono.h"
#include "fmt/format.h"
#include "imgui.h"
@ -1120,7 +1121,7 @@ void FullscreenUI::DrawLandingWindow()
DoStartFile();
}
if (MenuButton(FSUI_ICONSTR(ICON_FA_TOOLBOX, "Start BIOS"),
if (MenuButton(FSUI_ICONSTR(ICON_FA_MICROCHIP, "Start BIOS"),
FSUI_CSTR("Start the console without any disc inserted.")))
{
DoStartBIOS();
@ -1131,7 +1132,7 @@ void FullscreenUI::DrawLandingWindow()
OpenSaveStateSelector(true);
}
if (MenuButton(FSUI_ICONSTR(ICON_FA_SLIDERS_H, "Settings"), FSUI_CSTR("Change settings for the emulator.")))
if (MenuButton(FSUI_ICONSTR(ICON_FA_TOOLBOX, "Settings"), FSUI_CSTR("Change settings for the emulator.")))
SwitchToSettings();
if (MenuButton(FSUI_ICONSTR(ICON_FA_SIGN_OUT_ALT, "Exit"), FSUI_CSTR("Exits the program.")))
@ -2466,13 +2467,13 @@ void FullscreenUI::DrawSettingsWindow()
static constexpr float ITEM_WIDTH = 25.0f;
static constexpr const char* global_icons[] = {
ICON_FA_WINDOW_MAXIMIZE, ICON_FA_HDD, ICON_FA_SLIDERS_H, ICON_FA_MICROCHIP,
ICON_FA_MAGIC, ICON_FA_PAINT_ROLLER, ICON_FA_HEADPHONES, ICON_FA_GAMEPAD,
ICON_FA_KEYBOARD, ICON_FA_SD_CARD, ICON_FA_TROPHY, ICON_FA_EXCLAMATION_TRIANGLE};
ICON_FA_TV, ICON_FA_DICE_D20, ICON_FA_COGS, ICON_PF_MICROCHIP,
ICON_PF_PICTURE, ICON_FA_MAGIC, ICON_PF_SOUND, ICON_PF_GAMEPAD_ALT,
ICON_PF_KEYBOARD_ALT, ICON_PF_MEMORY_CARD, ICON_FA_TROPHY, ICON_FA_EXCLAMATION_TRIANGLE};
static constexpr const char* per_game_icons[] = {
ICON_FA_PARAGRAPH, ICON_FA_HDD, ICON_FA_SLIDERS_H,
ICON_FA_MAGIC, ICON_FA_HEADPHONES, ICON_FA_GAMEPAD,
ICON_FA_SD_CARD, ICON_FA_TROPHY, ICON_FA_EXCLAMATION_TRIANGLE};
ICON_FA_PARAGRAPH, ICON_FA_HDD, ICON_FA_COGS,
ICON_PF_PICTURE, ICON_PF_SOUND, ICON_PF_GAMEPAD_ALT,
ICON_PF_MEMORY_CARD, ICON_FA_TROPHY, ICON_FA_EXCLAMATION_TRIANGLE};
static constexpr SettingsPage global_pages[] = {
SettingsPage::Interface, SettingsPage::Console, SettingsPage::Emulation, SettingsPage::BIOS,
SettingsPage::Display, SettingsPage::PostProcessing, SettingsPage::Audio, SettingsPage::Controller,
@ -2696,7 +2697,7 @@ void FullscreenUI::DrawInterfaceSettingsPage()
FSUI_CSTR("Automatically saves the emulator state when powering down or exiting. You can then "
"resume directly from where you left off next time."),
"Main", "SaveStateOnExit", true);
DrawToggleSetting(bsi, FSUI_ICONSTR(ICON_FA_TV, "Start Fullscreen"),
DrawToggleSetting(bsi, FSUI_ICONSTR(ICON_FA_WINDOW_MAXIMIZE, "Start Fullscreen"),
FSUI_CSTR("Automatically switches to fullscreen mode when the program is started."), "Main",
"StartFullscreen", false);
DrawToggleSetting(bsi, FSUI_ICONSTR(ICON_FA_MOUSE, "Double-Click Toggles Fullscreen"),
@ -3238,7 +3239,7 @@ void FullscreenUI::DrawControllerSettingsPage()
}
else
{
if (MenuButton(FSUI_ICONSTR(ICON_FA_FOLDER_MINUS, "Reset Settings"),
if (MenuButton(FSUI_ICONSTR(ICON_FA_DUMPSTER_FIRE, "Reset Settings"),
FSUI_CSTR("Resets all configuration to defaults (including bindings).")))
{
ResetControllerSettings();

View File

@ -251,10 +251,10 @@ void DebuggerWindow::onCodeViewContextMenuRequested(const QPoint& pt)
menu.addAction(QStringLiteral("0x%1").arg(static_cast<uint>(address), 8, 16, QChar('0')))->setEnabled(false);
menu.addSeparator();
QAction* action = menu.addAction(QIcon(":/icons/media-record@2x.png"), tr("Toggle &Breakpoint"));
QAction* action = menu.addAction(QIcon::fromTheme("debug-toggle-breakpoint"), tr("Toggle &Breakpoint"));
connect(action, &QAction::triggered, this, [this, address]() { toggleBreakpoint(address); });
action = menu.addAction(QIcon(":/icons/debug-run-cursor.png"), tr("&Run To Cursor"));
action = menu.addAction(QIcon::fromTheme("debugger-go-to-cursor"), tr("&Run To Cursor"));
connect(action, &QAction::triggered, this, [address]() {
Host::RunOnCPUThread([address]() {
CPU::AddBreakpoint(address, true, true);
@ -263,10 +263,10 @@ void DebuggerWindow::onCodeViewContextMenuRequested(const QPoint& pt)
});
menu.addSeparator();
action = menu.addAction(QIcon(":/icons/antialias-icon.png"), tr("View in &Dump"));
action = menu.addAction(QIcon::fromTheme("debugger-go-to-address"), tr("View in &Dump"));
connect(action, &QAction::triggered, this, [this, address]() { scrollToMemoryAddress(address); });
action = menu.addAction(QIcon(":/icons/debug-trace.png"), tr("Follow Load/Store"));
action = menu.addAction(QIcon::fromTheme("debug-trace-line"), tr("Follow Load/Store"));
connect(action, &QAction::triggered, this, [this, address]() { tryFollowLoadStore(address); });
menu.exec(m_ui.codeView->mapToGlobal(pt));

View File

@ -23,7 +23,7 @@
<x>0</x>
<y>0</y>
<width>1210</width>
<height>21</height>
<height>30</height>
</rect>
</property>
<widget class="QMenu" name="menu_Debugger">
@ -36,15 +36,14 @@
<addaction name="actionGoToPC"/>
<addaction name="actionGoToAddress"/>
<addaction name="actionDumpAddress"/>
<addaction name="separator"/>
<addaction name="actionTrace"/>
<addaction name="separator"/>
<addaction name="actionTrace"/>
<addaction name="separator"/>
<addaction name="actionStepInto"/>
<addaction name="actionStepOver"/>
<addaction name="actionStepOut"/>
<addaction name="separator"/>
<addaction name="actionClose"/>
</widget>
<widget class="QMenu" name="menuBreakpoints">
<property name="title">
@ -82,7 +81,7 @@
<addaction name="actionStepInto"/>
<addaction name="actionStepOver"/>
<addaction name="actionStepOut"/>
<addaction name="separator"/>
<addaction name="separator"/>
<addaction name="actionTrace"/>
</widget>
<widget class="QDockWidget" name="dockWidget_2">
@ -301,14 +300,13 @@
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="resources/resources.qrc">
<normaloff>:/icons/media-playback-pause.png</normaloff>:/icons/media-playback-pause.png</iconset>
<iconset theme="pause-line"/>
</property>
<property name="text">
<string>Pause/Continue</string>
<string>&amp;Pause/Continue</string>
</property>
<property name="toolTip">
<string>&amp;Pause/Continue</string>
<string>Pause/Continue</string>
</property>
<property name="shortcut">
<string>F5</string>
@ -316,14 +314,13 @@
</action>
<action name="actionStepInto">
<property name="icon">
<iconset resource="resources/resources.qrc">
<normaloff>:/icons/debug-step-into-instruction.png</normaloff>:/icons/debug-step-into-instruction.png</iconset>
<iconset theme="debug-step-into-line"/>
</property>
<property name="text">
<string>Step Into</string>
<string>&amp;Step Into</string>
</property>
<property name="toolTip">
<string>&amp;Step Into</string>
<string>Step Into</string>
</property>
<property name="shortcut">
<string>F11</string>
@ -331,14 +328,13 @@
</action>
<action name="actionStepOver">
<property name="icon">
<iconset resource="resources/resources.qrc">
<normaloff>:/icons/debug-step-over.png</normaloff>:/icons/debug-step-over.png</iconset>
<iconset theme="debug-step-over-line"/>
</property>
<property name="text">
<string>Step Over</string>
<string>Step &amp;Over</string>
</property>
<property name="toolTip">
<string>Step &amp;Over</string>
<string>Step Over</string>
</property>
<property name="shortcut">
<string>F10</string>
@ -346,14 +342,13 @@
</action>
<action name="actionToggleBreakpoint">
<property name="icon">
<iconset resource="resources/resources.qrc">
<normaloff>:/icons/media-record@2x.png</normaloff>:/icons/media-record@2x.png</iconset>
<iconset theme="debug-toggle-breakpoint"/>
</property>
<property name="text">
<string>Toggle Breakpoint</string>
<string>Toggle B&amp;reakpoint</string>
</property>
<property name="toolTip">
<string>Toggle &amp;Breakpoint</string>
<string>Toggle Breakpoint</string>
</property>
<property name="shortcut">
<string>F9</string>
@ -366,14 +361,13 @@
</action>
<action name="actionStepOut">
<property name="icon">
<iconset resource="resources/resources.qrc">
<normaloff>:/icons/debug-step-out.png</normaloff>:/icons/debug-step-out.png</iconset>
<iconset theme="debug-step-out-line"/>
</property>
<property name="text">
<string>Step Out</string>
<string>Step O&amp;ut</string>
</property>
<property name="toolTip">
<string>Step O&amp;ut</string>
<string>Step Out</string>
</property>
<property name="shortcut">
<string>Ctrl+F11</string>
@ -381,14 +375,13 @@
</action>
<action name="actionRunToCursor">
<property name="icon">
<iconset resource="resources/resources.qrc">
<normaloff>:/icons/debug-run-cursor.png</normaloff>:/icons/debug-run-cursor.png</iconset>
<iconset theme="debugger-go-to-cursor"/>
</property>
<property name="text">
<string>Run To Cursor</string>
<string>&amp;Run To Cursor</string>
</property>
<property name="toolTip">
<string>&amp;Run To Cursor</string>
<string>Run To Cursor</string>
</property>
<property name="shortcut">
<string>Ctrl+F10</string>
@ -396,14 +389,13 @@
</action>
<action name="actionClearBreakpoints">
<property name="icon">
<iconset resource="resources/resources.qrc">
<normaloff>:/icons/edit-clear-16.png</normaloff>:/icons/edit-clear-16.png</iconset>
<iconset theme="debugger-clear-breakpoint"/>
</property>
<property name="text">
<string>Clear Breakpoints</string>
<string>&amp;Clear Breakpoints</string>
</property>
<property name="toolTip">
<string>&amp;Clear Breakpoints</string>
<string>Clear Breakpoints</string>
</property>
<property name="shortcut">
<string>Ctrl+Del</string>
@ -411,14 +403,13 @@
</action>
<action name="actionAddBreakpoint">
<property name="icon">
<iconset resource="resources/resources.qrc">
<normaloff>:/icons/list-add.png</normaloff>:/icons/list-add.png</iconset>
<iconset theme="add-line"/>
</property>
<property name="text">
<string>Add Breakpoint</string>
<string>Add &amp;Breakpoint</string>
</property>
<property name="toolTip">
<string>Add &amp;Breakpoint</string>
<string>Add Breakpoint</string>
</property>
<property name="shortcut">
<string>Ctrl+F9</string>
@ -426,14 +417,13 @@
</action>
<action name="actionGoToPC">
<property name="icon">
<iconset resource="resources/resources.qrc">
<normaloff>:/icons/document-open.png</normaloff>:/icons/document-open.png</iconset>
<iconset theme="debugger-go-to-pc"/>
</property>
<property name="text">
<string>Go To PC</string>
<string>&amp;Go To PC</string>
</property>
<property name="toolTip">
<string>&amp;Go To PC</string>
<string>Go To PC</string>
</property>
<property name="shortcut">
<string>Ctrl+P</string>
@ -441,14 +431,13 @@
</action>
<action name="actionGoToAddress">
<property name="icon">
<iconset resource="resources/resources.qrc">
<normaloff>:/icons/applications-system.png</normaloff>:/icons/applications-system.png</iconset>
<iconset theme="debugger-go-to-address"/>
</property>
<property name="text">
<string>Go To Address</string>
<string>Go To &amp;Address</string>
</property>
<property name="toolTip">
<string>Go To &amp;Address</string>
<string>Go To Address</string>
</property>
<property name="shortcut">
<string>Ctrl+G</string>
@ -456,8 +445,7 @@
</action>
<action name="actionDumpAddress">
<property name="icon">
<iconset resource="resources/resources.qrc">
<normaloff>:/icons/antialias-icon.png</normaloff>:/icons/antialias-icon.png</iconset>
<iconset theme="debugger-dump-address"/>
</property>
<property name="text">
<string>&amp;Dump Address</string>
@ -468,21 +456,18 @@
</action>
<action name="actionTrace">
<property name="icon">
<iconset resource="resources/resources.qrc">
<normaloff>:/icons/debug-trace.png</normaloff>:/icons/debug-trace.png</iconset>
<iconset theme="debug-trace-line"/>
</property>
<property name="text">
<string>Trace</string>
<string>&amp;Trace</string>
</property>
<property name="toolTip">
<string>&amp;Trace</string>
<string>Trace</string>
</property>
<property name="shortcut">
<string>Ctrl+T</string>
</property>
</action>
</widget>
<customwidgets>
<customwidget>

View File

@ -598,7 +598,7 @@
</action>
<action name="actionAdvancedSettings">
<property name="icon">
<iconset theme="tools-line">
<iconset theme="alert-line">
<normaloff>.</normaloff>.</iconset>
</property>
<property name="text">

2
src/duckstation-qt/resources/generate.sh Normal file → Executable file
View File

@ -5,7 +5,7 @@ IFS="
printf "<RCC>\n"
printf "\t<qresource>\n"
for i in $(find . -not -iname '*.sh' -not -iname '*.qrc' -type f | cut -d'/' -f2-99); do
for i in $(find . -not -iname '*.sh' -not -iname '*.qrc' -type f | cut -d'/' -f2-99 | sort); do
printf "\t\t<file>%s</file>\n" "$i"
done
printf "\t</qresource>\n"

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Alerta_-_PCSX2" data-name="Alerta - PCSX2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
<defs>
<style>
.cls-1 {
fill: none;
stroke: #000;
stroke-linecap: round;
stroke-miterlimit: 10;
stroke-width: 12px;
}
</style>
</defs>
<g id="Alerta">
<path id="tri" class="cls-1" d="m72.16,20.41L14.16,120.87c-1.26,2.19.32,4.92,2.84,4.92h115.99c2.52,0,4.1-2.73,2.84-4.92L77.84,20.41c-1.26-2.19-4.42-2.19-5.68,0Z"/>
<path id="bol" d="m75,114.39c-3.89,0-8.07-3.56-8.07-7.93s4.18-7.93,8.07-7.93,8.07,3.56,8.07,7.93-4.18,7.93-8.07,7.93Z"/>
<path id="up" d="m75,93.73c-3.64,0-7.61-2.95-7.61-6.6v-29.25c0-3.64,3.97-6.6,7.61-6.6s7.61,2.95,7.61,6.6v29.25c0,3.64-3.97,6.6-7.61,6.6Z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 816 B

View File

@ -1 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="cheats" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:none;}</style></defs><path class="cls-1" d="M0,0H24V24H0V0Z"/><g id="by_maxihplay"><path d="M14.38,5.18c.73,0,1.32,.26,1.87,.82,2.15,3.05-.83,6.31-5.25,10.57-.43,.41-.85,.82-1.25,1.22l-1.88-1.93-2.39-2.46c-.39-.4-.78-.8-1.18-1.13l.04-.04c-1.85-1.78-1.93-3.85-1.39-5.18,.22-.55,.92-1.83,2.53-1.83,.9,0,1.94,.41,3,1.17l1.22,.88,1.26-.81c1.29-.83,2.48-1.27,3.43-1.27m0-2.2c-1.49,0-3.08,.63-4.62,1.62-1.55-1.12-3.01-1.59-4.29-1.59-4.76,0-7.07,6.54-2.67,10.8,0,0,6.96,7.16,6.96,7.16,3.41-4.03,12.75-10.19,8.18-16.37-1.05-1.14-2.27-1.62-3.57-1.62h0Z"/><path d="M20.93,16.35c.72,0,1.34,.27,1.85,.8,.51,.53,.77,1.17,.77,1.92s-.26,1.39-.77,1.92-1.13,.8-1.85,.8c-.84,0-1.61-.45-2.34-1.34-.72,.9-1.5,1.34-2.34,1.34-.72,0-1.34-.27-1.85-.8s-.77-1.17-.77-1.92,.26-1.39,.77-1.92c.51-.53,1.13-.8,1.85-.8,.84,0,1.61,.45,2.34,1.34,.72-.9,1.5-1.34,2.34-1.34Zm-4.67,3.81c.48,0,.97-.36,1.45-1.09-.48-.73-.97-1.09-1.45-1.09-.21,0-.39,.05-.56,.14s-.31,.23-.41,.4-.15,.35-.15,.54c0,.3,.11,.55,.33,.77,.22,.22,.49,.32,.8,.32Zm4.67,0c.12,0,.24-.02,.36-.05s.22-.09,.31-.15,.18-.15,.25-.24,.13-.19,.16-.31,.05-.23,.05-.34c0-.3-.11-.55-.33-.77-.22-.22-.49-.32-.8-.32-.48,0-.97,.36-1.45,1.09,.48,.73,.97,1.09,1.45,1.09Z"/></g></svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Camada_3" data-name="Camada 3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
<g id="Cheats">
<g id="By_Maxihplay" data-name="By Maxihplay">
<path d="m105.8,87.35c-3.75-3.8-8.31-5.73-13.6-5.73-6.17,0-11.91,3.15-17.2,9.6-5.37-6.37-11.02-9.6-17.2-9.6-5.29,0-9.85,1.93-13.6,5.73-3.75,3.8-5.66,8.38-5.66,13.75s1.91,9.96,5.66,13.75c3.75,3.8,8.31,5.73,13.6,5.73,6.17,0,11.91-3.15,17.2-9.6,5.37,6.37,11.02,9.6,17.2,9.6,5.29,0,9.85-1.93,13.6-5.73,3.75-3.8,5.66-8.38,5.66-13.75s-1.91-9.96-5.66-13.75Zm-47.92,21.56l.07-.07c-2.28,0-4.26-.72-5.88-2.29-1.62-1.58-2.43-3.37-2.43-5.52,0-1.36.37-2.65,1.1-3.87.73-1.22,1.76-2.22,3.01-2.87,1.25-.64,2.57-1,4.12-1,3.53,0,7.13,2.58,10.66,7.81-3.53,5.23-7.13,7.81-10.66,7.81Zm42.26-5.37c-.22.86-.66,1.58-1.18,2.22-.51.64-1.18,1.29-1.84,1.72-.66.43-1.4.86-2.28,1.07-.88.21-1.76.36-2.65.36-3.53,0-7.13-2.58-10.66-7.81,3.53-5.23,7.13-7.81,10.66-7.81,2.28,0,4.26.72,5.88,2.29,1.62,1.58,2.43,3.37,2.43,5.52,0,.79-.15,1.58-.37,2.44Z"/>
<path d="m51.73,69.93h-15V25.8c0-10.83,9.16-19.64,20.41-19.64h35.72c11.25,0,20.41,8.81,20.41,19.64v22.5h-15v-22.5c0-2.39-2.48-4.4-5.41-4.4h-35.72c-2.93,0-5.41,2.02-5.41,4.4v44.13Z"/>
<path d="m115.49,143.67H34.51c-9.8,0-17.78-7.98-17.78-17.78v-49.56c0-9.8,7.98-17.78,17.78-17.78h80.98c9.8,0,17.78,7.98,17.78,17.78v49.56c0,9.8-7.98,17.78-17.78,17.78ZM34.51,70.55c-3.19,0-5.78,2.59-5.78,5.78v49.56c0,3.19,2.59,5.78,5.78,5.78h80.98c3.19,0,5.78-2.59,5.78-5.78v-49.56c0-3.19-2.59-5.78-5.78-5.78H34.51Z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,84 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Bios_-_Pcsx2" data-name="Bios - Pcsx2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
<defs>
<style>
.cls-1 {
stroke-linejoin: round;
}
<svg
width="512"
height="512"
viewBox="0 0 512 512"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="chip-line-black.svg"
inkscape:export-filename="bios_exported.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#505050"
bordercolor="#ffffff"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:deskcolor="#505050"
inkscape:document-units="px"
showgrid="false"
inkscape:zoom="1.3037281"
inkscape:cx="212.85113"
inkscape:cy="209.39949"
inkscape:window-width="1920"
inkscape:window-height="956"
inkscape:window-x="0"
inkscape:window-y="42"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:40;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect344"
width="185.14862"
height="370.29724"
x="163.42569"
y="70.222984" />
<path
style="fill:none;stroke:#000000;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="m 348.89389,151.29966 h 89.90694 z"
id="path1501" />
<path
style="fill:none;stroke:#000000;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 59.357612,151.29966 H 149.26455 Z"
id="path1501-3" />
<path
style="fill:none;stroke:#000000;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="m 353.80737,255.09921 h 87.10216 z"
id="path1503" />
<path
style="fill:none;stroke:#000000;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="m 360.30926,364.32434 h 82.77189 z"
id="path1505" />
<path
style="fill:none;stroke:#000000;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 60.167703,255.35899 H 150.07464 Z"
id="path1501-6" />
<path
style="fill:none;stroke:#000000;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 60.167703,364.32434 H 150.07464 Z"
id="path1501-7" />
<ellipse
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:24.4372;stroke-linecap:round;stroke-linejoin:round"
id="path792"
cx="225.70091"
cy="130.64618"
rx="9.3720798"
ry="8.4348745" />
.cls-1, .cls-2 {
fill: none;
stroke: #000;
stroke-linecap: round;
stroke-width: 12px;
}
.cls-2 {
stroke-miterlimit: 10;
}
</style>
</defs>
<g id="paletas">
<g id="B">
<line class="cls-2" x1="129.96" y1="105.62" x2="105.25" y2="105.62"/>
<line class="cls-2" x1="130.32" y1="75" x2="105.61" y2="75"/>
<line class="cls-2" x1="129.6" y1="44.38" x2="104.88" y2="44.38"/>
</g>
<g id="A">
<line class="cls-2" x1="20.04" y1="44.38" x2="44.75" y2="44.38"/>
<line class="cls-2" x1="19.68" y1="75" x2="44.39" y2="75"/>
<line class="cls-2" x1="20.4" y1="105.62" x2="45.12" y2="105.62"/>
</g>
</g>
</svg>
<g id="By_Kam" data-name="By Kam">
<path id="chip" class="cls-1" d="m52,20.94h46c2.8,0,5.07,2.19,5.07,4.88v98.36c0,2.7-2.27,4.88-5.07,4.88h-46c-2.8,0-5.07-2.19-5.07-4.88V25.82c0-2.7,2.27-4.88,5.07-4.88Z"/>
<g id="ball">
<path d="m66.46,45.81c-3.48,0-6.31-2.81-6.31-6.26s2.83-6.26,6.31-6.26,6.31,2.81,6.31,6.26-2.83,6.26-6.31,6.26Z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="black" d="M12 22a2 2 0 0 1-2-2a2 2 0 0 1 2-2a2 2 0 0 1 2 2a2 2 0 0 1-2 2m1-20v11l4.5-4.5l1.42 1.42L12 16.84L5.08 9.92L6.5 8.5L11 13V2h2Z"/></svg>

After

Width:  |  Height:  |  Size: 242 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="black" d="M12 22a2 2 0 0 1-2-2a2 2 0 0 1 2-2a2 2 0 0 1 2 2a2 2 0 0 1-2 2m1-6h-2V6l-4.5 4.5l-1.42-1.42L12 2.16l6.92 6.92l-1.42 1.42L13 6v10Z"/></svg>

After

Width:  |  Height:  |  Size: 245 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="black" d="M12 14a2 2 0 0 1 2 2a2 2 0 0 1-2 2a2 2 0 0 1-2-2a2 2 0 0 1 2-2m11.46-5.14l-1.59 6.89L15 14.16l3.8-2.38A7.972 7.972 0 0 0 12 8c-3.95 0-7.23 2.86-7.88 6.63l-1.97-.35C2.96 9.58 7.06 6 12 6c3.58 0 6.73 1.89 8.5 4.72l2.96-1.86Z"/></svg>

After

Width:  |  Height:  |  Size: 338 B

View File

@ -0,0 +1,10 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="-9.6 -9.6 83.20 83.20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--emojione-monotone" preserveAspectRatio="xMidYMid meet" fill="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier">
<path d="M44.426 2H19.574L2 19.574v24.852L19.574 62h24.852L62 44.426V19.574L44.426 2zM60 43.598L43.598 60H20.402L4 43.598V20.402L20.402 4h23.195L60 20.402v23.196z" fill="#000000"/>
<path d="M22.473 9L9 22.474v19.051L22.473 55h19.052L55 41.525V22.474L41.525 9z" fill="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 903 B

View File

@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg version="1.1" id="_x32_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="800px" height="800px" viewBox="-76.8 -76.8 665.60 665.60" xml:space="preserve" fill="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <style type="text/css"> .st0{fill:#000000;} </style> <g> <path class="st0" d="M449.803,62.197C408.443,20.807,353.85-0.037,299.646-0.006C245.428-0.037,190.85,20.807,149.49,62.197 C108.1,103.557,87.24,158.15,87.303,212.338c-0.047,37.859,10.359,75.766,30.547,109.359L15.021,424.525 c-20.016,20.016-20.016,52.453,0,72.469c20,20.016,52.453,20.016,72.453,0L190.318,394.15 c33.578,20.203,71.5,30.594,109.328,30.547c54.203,0.047,108.797-20.797,150.156-62.188 c41.375-41.359,62.234-95.938,62.188-150.172C512.053,158.15,491.178,103.557,449.803,62.197z M391.818,304.541 c-25.547,25.531-58.672,38.125-92.172,38.188c-33.5-0.063-66.609-12.656-92.188-38.188c-25.531-25.578-38.125-58.688-38.188-92.203 c0.063-33.484,12.656-66.609,38.188-92.172c25.578-25.531,58.688-38.125,92.188-38.188c33.5,0.063,66.625,12.656,92.188,38.188 c25.531,25.563,38.125,58.688,38.188,92.172C429.959,245.854,417.365,278.963,391.818,304.541z"/> </g> </g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg version="1.1" id="_x32_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve" width="800px" height="800px" fill="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <style type="text/css"> .st0{fill:#000000;} </style> <g> <path class="st0" d="M332.571,140.81l-16.665,16.648c-41.547-24.17-95.688-18.468-131.288,17.116l153.521,153.52 c35.583-35.592,41.294-89.732,17.115-131.278l16.666-16.657L332.571,140.81z"/> <path class="st0" d="M0,299.943c0,0,9.585,18.251,28.989,45.303c14.864-9,51.042-31.664,90.012-61.833l6.324,6.332 c0,0-42.7,39.908-82.445,74.058c5.748,7.405,12.09,15.206,19.026,23.278c21.441-18.549,45.223-39.781,62.447-57.014l8.756,4.865 c0,0-29.692,31.691-60.914,63.788c6.558,7.279,13.584,14.701,21.079,22.196c18.954,18.954,37.494,34.692,54.158,47.448 c16.576-19.124,44.934-52.032,53.69-63.482l9.712,11.665c0,0-26.052,39.42-40.502,68.401 c26.269,17.935,43.907,26.331,43.907,26.331c31.331-54.654,114.695-169.502,114.695-169.502L172.997,185.825 C172.997,185.825,98.372,248.208,0,299.943z"/> <rect x="334.304" y="62.854" transform="matrix(0.7071 -0.7071 0.7071 0.7071 67.7361 328.4017)" class="st0" width="191.963" height="39.163"/> </g> </g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg fill="#000000" width="800px" height="800px" viewBox="-6.5 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" stroke="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <title>save</title> <path d="M12.188 4.469v4.656h2.438l-4.875 5.875-4.875-5.875h2.563v-4.656h4.75zM16.313 12l2.844 4.5c0.156 0.375 0.344 1.094 0.344 1.531v8.656c0 0.469-0.375 0.813-0.813 0.813h-17.844c-0.469 0-0.844-0.344-0.844-0.813v-8.656c0-0.438 0.156-1.156 0.313-1.531l2.844-4.5c0.156-0.406 0.719-0.75 1.125-0.75h1.281l1.313 1.594h-2.625l-2.531 4.625c-0.031 0-0.031 0.031-0.031 0.063 0 0.063 0 0.094-0.031 0.125h16.156v-0.125c0-0.031-0.031-0.063-0.031-0.094l-2.531-4.594h-2.625l1.313-1.594h1.25c0.438 0 0.969 0.344 1.125 0.75zM7.469 21.031h4.594c0.406 0 0.781-0.375 0.781-0.813 0-0.406-0.375-0.781-0.781-0.781h-4.594c-0.438 0-0.813 0.375-0.813 0.781 0 0.438 0.375 0.813 0.813 0.813z"/> </g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
<defs>
<style>
.cls-1 {
stroke: #000;
stroke-miterlimit: 10;
stroke-width: 2px;
}
.cls-2 {
fill: none;
}
</style>
</defs>
<g id="Camada_3" data-name="Camada 3">
<g id="codigos">
<g id="By_Maxihplay" data-name="By Maxihplay">
<g id="baixo">
<path class="cls-1" d="m20.57,127.29v-7.95h12.21v-30.79l-10.63,5.87-2.93-7.29,15.21-8.03h7.51v40.25h10.52v7.95h-31.89Z"/>
<path class="cls-1" d="m95.6,103.13c0,3.94-.43,7.45-1.28,10.56-.86,3.1-2.11,5.73-3.76,7.86-1.65,2.14-3.66,3.77-6.03,4.89-2.37,1.12-5.08,1.69-8.14,1.69-2.64,0-5.07-.47-7.3-1.39-2.22-.93-4.14-2.39-5.76-4.38-1.61-1.99-2.87-4.54-3.78-7.64-.9-3.1-1.36-6.82-1.36-11.14,0-3.93.43-7.45,1.3-10.56.87-3.1,2.12-5.72,3.76-7.86,1.64-2.14,3.65-3.77,6.05-4.89,2.4-1.12,5.11-1.69,8.14-1.69,2.64,0,5.07.47,7.3,1.39,2.22.93,4.14,2.38,5.74,4.36,1.6,1.98,2.85,4.52,3.76,7.62.9,3.1,1.36,6.83,1.36,11.18Zm-28.37.15v1.37c0,.43.02.86.07,1.3l17.96-12.98c-.86-2.42-1.98-4.21-3.39-5.37s-3.06-1.74-4.97-1.74c-1.37,0-2.64.35-3.81,1.05s-2.19,1.77-3.06,3.21c-.87,1.44-1.55,3.25-2.05,5.43-.5,2.18-.75,4.75-.75,7.74Zm19.36.15c0-.42-.01-.84-.04-1.26-.02-.43-.04-.84-.04-1.23l-17.85,12.9c.78,2.37,1.88,4.13,3.3,5.28,1.42,1.15,3.07,1.72,4.95,1.72,1.37,0,2.64-.35,3.83-1.06s2.21-1.78,3.08-3.21c.87-1.43,1.55-3.24,2.03-5.43.49-2.19.73-4.76.73-7.72Z"/>
<path class="cls-1" d="m103.12,127.29v-7.95h12.21v-30.79l-10.63,5.87-2.93-7.29,15.21-8.03h7.51v40.25h10.52v7.95h-31.89Z"/>
</g>
<g id="cima">
<path class="cls-1" d="m52.38,46.43c0,3.94-.43,7.45-1.28,10.56-.86,3.1-2.11,5.73-3.76,7.86-1.65,2.14-3.66,3.77-6.03,4.89-2.37,1.12-5.08,1.69-8.14,1.69-2.64,0-5.07-.47-7.3-1.39-2.22-.93-4.14-2.39-5.76-4.38-1.61-1.99-2.87-4.54-3.78-7.64-.9-3.1-1.36-6.82-1.36-11.14,0-3.93.43-7.45,1.3-10.56.87-3.1,2.12-5.72,3.76-7.86,1.64-2.14,3.65-3.77,6.05-4.89,2.4-1.12,5.11-1.69,8.14-1.69,2.64,0,5.07.47,7.3,1.39,2.22.93,4.14,2.38,5.74,4.36,1.6,1.98,2.85,4.52,3.76,7.62.9,3.1,1.36,6.83,1.36,11.18Zm-28.37.15v1.37c0,.43.02.86.07,1.3l17.96-12.98c-.86-2.42-1.98-4.21-3.39-5.37s-3.06-1.74-4.97-1.74c-1.37,0-2.64.35-3.81,1.05s-2.19,1.77-3.06,3.21c-.87,1.44-1.55,3.25-2.05,5.43-.5,2.18-.75,4.75-.75,7.74Zm19.36.15c0-.42-.01-.84-.04-1.26-.02-.43-.04-.84-.04-1.23l-17.85,12.9c.78,2.37,1.88,4.13,3.3,5.28,1.42,1.15,3.07,1.72,4.95,1.72,1.37,0,2.64-.35,3.83-1.06s2.21-1.78,3.08-3.21c.87-1.43,1.55-3.24,2.03-5.43.49-2.19.73-4.76.73-7.72Z"/>
<path class="cls-1" d="m59.89,70.58v-7.95h12.21v-30.79l-10.63,5.87-2.93-7.29,15.21-8.03h7.51v40.25h10.52v7.95h-31.89Z"/>
<path class="cls-1" d="m134.93,46.43c0,3.94-.43,7.45-1.28,10.56-.86,3.1-2.11,5.73-3.76,7.86-1.65,2.14-3.66,3.77-6.03,4.89-2.37,1.12-5.08,1.69-8.14,1.69-2.64,0-5.07-.47-7.3-1.39-2.22-.93-4.14-2.39-5.76-4.38-1.61-1.99-2.87-4.54-3.78-7.64-.9-3.1-1.36-6.82-1.36-11.14,0-3.93.43-7.45,1.3-10.56.87-3.1,2.12-5.72,3.76-7.86,1.64-2.14,3.65-3.77,6.05-4.89,2.4-1.12,5.11-1.69,8.14-1.69,2.64,0,5.07.47,7.3,1.39,2.22.93,4.14,2.38,5.74,4.36,1.6,1.98,2.85,4.52,3.76,7.62.9,3.1,1.36,6.83,1.36,11.18Zm-28.37.15v1.37c0,.43.02.86.07,1.3l17.96-12.98c-.86-2.42-1.98-4.21-3.39-5.37-1.41-1.16-3.06-1.74-4.97-1.74-1.37,0-2.64.35-3.81,1.05s-2.19,1.77-3.06,3.21c-.87,1.44-1.55,3.25-2.05,5.43-.5,2.18-.75,4.75-.75,7.74Zm19.36.15c0-.42-.01-.84-.04-1.26-.02-.43-.04-.84-.04-1.23l-17.85,12.9c.78,2.37,1.88,4.13,3.3,5.28,1.42,1.15,3.07,1.72,4.95,1.72,1.37,0,2.64-.35,3.83-1.06s2.21-1.78,3.08-3.21c.87-1.43,1.55-3.24,2.03-5.43.49-2.19.73-4.76.73-7.72Z"/>
</g>
</g>
</g>
</g>
<g id="Camada_2" data-name="Camada 2">
<path class="cls-2" d="m-3.8-.03h154.06v152.06H-3.8V-.03Z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg fill="#000000" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 511.997 511.997" xml:space="preserve" width="800px" height="800px">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <g> <g> <rect x="56.211" y="36.231" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -28.8553 71.5159)" width="31.377" height="68.716"/> </g> </g> <g> <g> <rect x="22.642" y="100.857" transform="matrix(0.3423 -0.9396 0.9396 0.3423 -101.8377 124.9477)" width="31.378" height="68.718"/> </g> </g> <g> <g> <rect x="120.22" y="3.295" transform="matrix(0.9396 -0.3423 0.3423 0.9396 -4.6787 48.7958)" width="31.378" height="68.718"/> </g> </g> <g> <g> <path d="M376.944,316.704l74.821-53.211L133.809,133.089l130.426,318.013l51.946-73.327l134.222,134.222l60.917-60.915 L376.944,316.704z M450.402,467.622L312.073,329.293l-40.458,57.112l-80.311-195.821l195.878,80.336l-58.671,41.727 l138.434,138.434L450.402,467.622z"/> </g> </g> </g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <title>counter_2_line</title> <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <g id="Device" transform="translate(-432.000000, -192.000000)"> <g id="counter_2_line" transform="translate(432.000000, 192.000000)"> <path d="M24,0 L24,24 L0,24 L0,0 L24,0 Z M12.5934901,23.257841 L12.5819402,23.2595131 L12.5108777,23.2950439 L12.4918791,23.2987469 L12.4918791,23.2987469 L12.4767152,23.2950439 L12.4056548,23.2595131 C12.3958229,23.2563662 12.3870493,23.2590235 12.3821421,23.2649074 L12.3780323,23.275831 L12.360941,23.7031097 L12.3658947,23.7234994 L12.3769048,23.7357139 L12.4804777,23.8096931 L12.4953491,23.8136134 L12.4953491,23.8136134 L12.5071152,23.8096931 L12.6106902,23.7357139 L12.6232938,23.7196733 L12.6232938,23.7196733 L12.6266527,23.7031097 L12.609561,23.275831 C12.6075724,23.2657013 12.6010112,23.2592993 12.5934901,23.257841 L12.5934901,23.257841 Z M12.8583906,23.1452862 L12.8445485,23.1473072 L12.6598443,23.2396597 L12.6498822,23.2499052 L12.6498822,23.2499052 L12.6471943,23.2611114 L12.6650943,23.6906389 L12.6699349,23.7034178 L12.6699349,23.7034178 L12.678386,23.7104931 L12.8793402,23.8032389 C12.8914285,23.8068999 12.9022333,23.8029875 12.9078286,23.7952264 L12.9118235,23.7811639 L12.8776777,23.1665331 C12.8752882,23.1545897 12.8674102,23.1470016 12.8583906,23.1452862 L12.8583906,23.1452862 Z M12.1430473,23.1473072 C12.1332178,23.1423925 12.1221763,23.1452606 12.1156365,23.1525954 L12.1099173,23.1665331 L12.0757714,23.7811639 C12.0751323,23.7926639 12.0828099,23.8018602 12.0926481,23.8045676 L12.108256,23.8032389 L12.3092106,23.7104931 L12.3186497,23.7024347 L12.3186497,23.7024347 L12.3225043,23.6906389 L12.340401,23.2611114 L12.337245,23.2485176 L12.337245,23.2485176 L12.3277531,23.2396597 L12.1430473,23.1473072 Z" id="MingCute" fill-rule="nonzero"> </path> <path d="M18,3 C19.0543909,3 19.9181678,3.81587733 19.9945144,4.85073759 L20,5 L20,20 C20,21.0543909 19.18415,21.9181678 18.1492661,21.9945144 L18,22 L6,22 C4.94563773,22 4.08183483,21.18415 4.00548573,20.1492661 L4,20 L4,5 C4,3.94563773 4.81587733,3.08183483 5.85073759,3.00548573 L6,3 L18,3 Z M18,5 L6,5 L6,20 L18,20 L18,5 Z M9.5,16 C10.3284,16 11,16.6716 11,17.5 C11,18.3284 10.3284,19 9.5,19 C8.67157,19 8,18.3284 8,17.5 C8,16.6716 8.67157,16 9.5,16 Z M14.5,16 C15.3284,16 16,16.6716 16,17.5 C16,18.3284 15.3284,19 14.5,19 C13.6716,19 13,18.3284 13,17.5 C13,16.6716 13.6716,16 14.5,16 Z M9.5,12 C10.3284,12 11,12.6716 11,13.5 C11,14.3284 10.3284,15 9.5,15 C8.67157,15 8,14.3284 8,13.5 C8,12.6716 8.67157,12 9.5,12 Z M14.5,12 C15.3284,12 16,12.6716 16,13.5 C16,14.3284 15.3284,15 14.5,15 C13.6716,15 13,14.3284 13,13.5 C13,12.6716 13.6716,12 14.5,12 Z M15.5,6 C16.2796706,6 16.9204457,6.59488554 16.9931332,7.35553954 L17,7.5 L17,9.5 C17,10.2796706 16.4050879,10.9204457 15.6444558,10.9931332 L15.5,11 L8.5,11 C7.72030118,11 7.079551,10.4050879 7.00686655,9.64445577 L7,9.5 L7,7.5 C7,6.72030118 7.59488554,6.079551 8.35553954,6.00686655 L8.5,6 L15.5,6 Z M15,8 L9,8 L9,9 L15,9 L15,8 Z" id="形状" fill="#000000"> </path> </g> </g> </g> </g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -1 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1{fill:#fff;}.cls-2{stroke:#fff;}.cls-2,.cls-3{stroke-width:9px;}.cls-2,.cls-3,.cls-4{fill:none;}.cls-3{stroke:#000;}.cls-5{fill-rule:evenodd;}</style></defs><g id="Memory_Card_-_Pcsx2_W"><g id="tela"><rect id="tela-2" class="cls-4" x="0" width="150" height="150"/></g><g id="By_Maxihplay"><g id="Formato"><path class="cls-1" d="M145.26,129.29H23.78c-10.53,0-19.09-8.56-19.09-19.09V39.8c0-10.53,8.56-19.09,19.09-19.09h121.53l-.05,108.59ZM23.78,32.71c-3.91,0-7.09,3.18-7.09,7.09V110.2c0,3.91,3.18,7.09,7.09,7.09h109.48l.04-84.59H23.78Z"/></g><g id="seta"><polygon class="cls-5" points="111.66 67.01 119.89 75.72 111.66 83.64 111.66 67.01"/><polygon points="107.66 56.95 107.66 93.05 125.51 75.85 107.66 56.95 107.66 56.95"/></g><path id="etiqueta" class="cls-2" d="M63.7,49.76v50.49c0,2.65-2.15,4.81-4.81,4.81h-21.6c-2.65,0-4.81-2.15-4.81-4.81h0V49.76c0-2.65,2.15-4.81,4.81-4.81h21.6c2.65,0,4.81,2.15,4.81,4.81Z"/></g></g><g id="Memory_Card_-_Pcsx2_B"><g id="By_Maxihplay-2"><g id="Formato-2"><path d="M145.26,129.29H23.78c-10.53,0-19.09-8.56-19.09-19.09V39.8c0-10.53,8.56-19.09,19.09-19.09h121.53l-.05,108.59ZM23.78,32.71c-3.91,0-7.09,3.18-7.09,7.09V110.2c0,3.91,3.18,7.09,7.09,7.09h109.48l.04-84.59H23.78Z"/></g><path id="etiqueta-2" class="cls-3" d="M63.7,49.76v50.49c0,2.65-2.15,4.81-4.81,4.81h-21.6c-2.65,0-4.81-2.15-4.81-4.81h0V49.76c0-2.65,2.15-4.81,4.81-4.81h21.6c2.65,0,4.81,2.15,4.81,4.81Z"/></g></g></svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg id="memory_card_-_PCSX2" data-name="memory card - PCSX2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
<defs>
<style>
.cls-1 {
stroke: #000;
stroke-width: 9px;
}
.cls-2 {
fill-rule: evenodd;
}
</style>
</defs>
<g id="by_Maxihplay" data-name="by Maxihplay">
<g id="seta">
<polygon class="cls-2" points="111.66 67.01 119.89 75.72 111.66 83.64 111.66 67.01"/>
<polygon points="106.66 57.97 106.66 92.03 124.51 75.8 106.66 57.97 106.66 57.97"/>
</g>
<g id="Formato-2">
<path d="m145.26,129.28H23.78c-10.53,0-19.09-8.56-19.09-19.09V39.8c0-10.53,8.56-19.09,19.09-19.09h121.53l-.05,108.59h0v-.02h0ZM23.78,33.71c-3.91,0-7.09,3.18-7.09,7.09v68.4c0,3.91,3.18,7.09,7.09,7.09h109.48l.04-82.59H23.78Z"/>
</g>
<path id="etiqueta-2" class="cls-1" d="m59.28,53.8v42.4c0,2.23-1.76,4.04-3.94,4.04h-17.68c-2.17,0-3.94-1.81-3.94-4.04h0v-42.4c0-2.23,1.76-4.04,3.94-4.04h17.68c2.17,0,3.94,1.81,3.94,4.04Z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"/><path d="M5.33 3.271a3.5 3.5 0 0 1 4.254 4.963l10.709 10.71-1.414 1.414-10.71-10.71a3.502 3.502 0 0 1-4.962-4.255L5.444 7.63a1.5 1.5 0 1 0 2.121-2.121L5.329 3.27zm10.367 1.884l3.182-1.768 1.414 1.414-1.768 3.182-1.768.354-2.12 2.121-1.415-1.414 2.121-2.121.354-1.768zm-6.718 8.132l1.414 1.414-5.303 5.303a1 1 0 0 1-1.492-1.327l.078-.087 5.303-5.303z" fill="#000000"/></svg>

Before

Width:  |  Height:  |  Size: 493 B

View File

@ -1 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M135.2 17.7L128 32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320l-7.2-14.3C307.4 6.8 296.3 0 284.2 0H163.8c-12.1 0-23.2 6.8-28.6 17.7zM416 128H32L53.2 467c1.6 25.3 22.6 45 47.9 45H346.9c25.3 0 46.3-19.7 47.9-45L416 128z"/></svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg id="svg1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
<path id="path1" d="m52.64,15l-1.81,3.6h-24.17c-4.46,0-8.06,3.6-8.06,8.06s3.6,8.06,8.06,8.06h96.68c4.46,0,8.06-3.6,8.06-8.06s-3.6-8.06-8.06-8.06h-24.17l-1.81-3.6c-1.36-2.74-4.15-4.46-7.2-4.46h-30.31c-3.05,0-5.84,1.71-7.2,4.46Zm70.7,34.47H26.66l5.34,78.65c.4,6.37,5.69,11.33,12.06,11.33h61.89c6.37,0,11.66-4.96,12.06-11.33l5.34-78.65Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 502 B

After

Width:  |  Height:  |  Size: 457 B

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Alerta_-_PCSX2" data-name="Alerta - PCSX2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
<defs>
<style>
.cls-1 {
fill: #fff;
}
.cls-2 {
fill: none;
stroke: #fff;
stroke-linecap: round;
stroke-miterlimit: 10;
stroke-width: 12px;
}
</style>
</defs>
<g id="Alerta">
<path id="tri" class="cls-2" d="m72.16,20.41L14.16,120.87c-1.26,2.19.32,4.92,2.84,4.92h115.99c2.52,0,4.1-2.73,2.84-4.92L77.84,20.41c-1.26-2.19-4.42-2.19-5.68,0Z"/>
<path id="bol" class="cls-1" d="m75,114.39c-3.89,0-8.07-3.56-8.07-7.93s4.18-7.93,8.07-7.93,8.07,3.56,8.07,7.93-4.18,7.93-8.07,7.93Z"/>
<path id="up" class="cls-1" d="m75,93.73c-3.64,0-7.61-2.95-7.61-6.6v-29.25c0-3.64,3.97-6.6,7.61-6.6s7.61,2.95,7.61,6.6v29.25c0,3.64-3.97,6.6-7.61,6.6Z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 888 B

View File

@ -1 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="cheats" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:none;}</style></defs><path class="cls-2" d="M0,0H24V24H0V0Z"/><g id="by_maxihplay"><path class="cls-1" d="M14.38,5.18c.73,0,1.32,.26,1.87,.82,2.15,3.05-.83,6.31-5.25,10.57-.43,.41-.85,.82-1.25,1.22l-1.88-1.93-2.39-2.46c-.39-.4-.78-.8-1.18-1.13l.04-.04c-1.85-1.78-1.93-3.85-1.39-5.18,.22-.55,.92-1.83,2.53-1.83,.9,0,1.94,.41,3,1.17l1.22,.88,1.26-.81c1.29-.83,2.48-1.27,3.43-1.27m0-2.2c-1.49,0-3.08,.63-4.62,1.62-1.55-1.12-3.01-1.59-4.29-1.59-4.76,0-7.07,6.54-2.67,10.8,0,0,6.96,7.16,6.96,7.16,3.41-4.03,12.75-10.19,8.18-16.37-1.05-1.14-2.27-1.62-3.57-1.62h0Z"/><path class="cls-1" d="M20.93,16.35c.72,0,1.34,.27,1.85,.8,.51,.53,.77,1.17,.77,1.92s-.26,1.39-.77,1.92-1.13,.8-1.85,.8c-.84,0-1.61-.45-2.34-1.34-.72,.9-1.5,1.34-2.34,1.34-.72,0-1.34-.27-1.85-.8s-.77-1.17-.77-1.92,.26-1.39,.77-1.92c.51-.53,1.13-.8,1.85-.8,.84,0,1.61,.45,2.34,1.34,.72-.9,1.5-1.34,2.34-1.34Zm-4.67,3.81c.48,0,.97-.36,1.45-1.09-.48-.73-.97-1.09-1.45-1.09-.21,0-.39,.05-.56,.14s-.31,.23-.41,.4-.15,.35-.15,.54c0,.3,.11,.55,.33,.77,.22,.22,.49,.32,.8,.32Zm4.67,0c.12,0,.24-.02,.36-.05s.22-.09,.31-.15,.18-.15,.25-.24,.13-.19,.16-.31,.05-.23,.05-.34c0-.3-.11-.55-.33-.77-.22-.22-.49-.32-.8-.32-.48,0-.97,.36-1.45,1.09,.48,.73,.97,1.09,1.45,1.09Z"/></g></svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Camada_3" data-name="Camada 3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
<defs>
<style>
.cls-1 {
fill: #fff;
}
</style>
</defs>
<g id="Cheats">
<g id="By_Maxihplay" data-name="By Maxihplay">
<path class="cls-1" d="m105.8,87.35c-3.75-3.8-8.31-5.73-13.6-5.73-6.17,0-11.91,3.15-17.2,9.6-5.37-6.37-11.02-9.6-17.2-9.6-5.29,0-9.85,1.93-13.6,5.73-3.75,3.8-5.66,8.38-5.66,13.75s1.91,9.96,5.66,13.75c3.75,3.8,8.31,5.73,13.6,5.73,6.17,0,11.91-3.15,17.2-9.6,5.37,6.37,11.02,9.6,17.2,9.6,5.29,0,9.85-1.93,13.6-5.73,3.75-3.8,5.66-8.38,5.66-13.75s-1.91-9.96-5.66-13.75Zm-47.92,21.56l.07-.07c-2.28,0-4.26-.72-5.88-2.29-1.62-1.58-2.43-3.37-2.43-5.52,0-1.36.37-2.65,1.1-3.87.73-1.22,1.76-2.22,3.01-2.87,1.25-.64,2.57-1,4.12-1,3.53,0,7.13,2.58,10.66,7.81-3.53,5.23-7.13,7.81-10.66,7.81Zm42.26-5.37c-.22.86-.66,1.58-1.18,2.22-.51.64-1.18,1.29-1.84,1.72-.66.43-1.4.86-2.28,1.07-.88.21-1.76.36-2.65.36-3.53,0-7.13-2.58-10.66-7.81,3.53-5.23,7.13-7.81,10.66-7.81,2.28,0,4.26.72,5.88,2.29,1.62,1.58,2.43,3.37,2.43,5.52,0,.79-.15,1.58-.37,2.44Z"/>
<path class="cls-1" d="m51.73,69.93h-15V25.8c0-10.83,9.16-19.64,20.41-19.64h35.72c11.25,0,20.41,8.81,20.41,19.64v22.5h-15v-22.5c0-2.39-2.48-4.4-5.41-4.4h-35.72c-2.93,0-5.41,2.02-5.41,4.4v44.13Z"/>
<path class="cls-1" d="m115.49,143.67H34.51c-9.8,0-17.78-7.98-17.78-17.78v-49.56c0-9.8,7.98-17.78,17.78-17.78h80.98c9.8,0,17.78,7.98,17.78,17.78v49.56c0,9.8-7.98,17.78-17.78,17.78ZM34.51,70.55c-3.19,0-5.78,2.59-5.78,5.78v49.56c0,3.19,2.59,5.78,5.78,5.78h80.98c3.19,0,5.78-2.59,5.78-5.78v-49.56c0-3.19-2.59-5.78-5.78-5.78H34.51Z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,84 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Bios_-_Pcsx2" data-name="Bios - Pcsx2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
<defs>
<style>
.cls-1 {
fill: #fff;
}
<svg
width="512"
height="512"
viewBox="0 0 512 512"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="chip-line.svg"
inkscape:export-filename="bios_exported.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#505050"
bordercolor="#ffffff"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:deskcolor="#505050"
inkscape:document-units="px"
showgrid="false"
inkscape:zoom="1.3037281"
inkscape:cx="212.0841"
inkscape:cy="209.39949"
inkscape:window-width="1920"
inkscape:window-height="956"
inkscape:window-x="0"
inkscape:window-y="42"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:40;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect344"
width="185.14862"
height="370.29724"
x="163.42569"
y="70.222984" />
<path
style="fill:none;stroke:#ffffff;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="m 348.89389,151.29966 h 89.90694 z"
id="path1501" />
<path
style="fill:none;stroke:#ffffff;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 59.357612,151.29966 H 149.26455 Z"
id="path1501-3" />
<path
style="fill:none;stroke:#ffffff;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="m 353.80737,255.09921 h 87.10216 z"
id="path1503" />
<path
style="fill:none;stroke:#ffffff;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="m 360.30926,364.32434 h 82.77189 z"
id="path1505" />
<path
style="fill:none;stroke:#ffffff;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 60.167703,255.35899 H 150.07464 Z"
id="path1501-6" />
<path
style="fill:none;stroke:#ffffff;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 60.167703,364.32434 H 150.07464 Z"
id="path1501-7" />
<ellipse
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:24.4372;stroke-linecap:round;stroke-linejoin:round"
id="path792"
cx="225.70091"
cy="130.64618"
rx="9.3720798"
ry="8.4348745" />
.cls-2 {
stroke-miterlimit: 10;
}
.cls-2, .cls-3 {
fill: none;
stroke: #fff;
stroke-linecap: round;
stroke-width: 12px;
}
.cls-3 {
stroke-linejoin: round;
}
</style>
</defs>
<g id="paletas">
<g id="B">
<line class="cls-2" x1="129.96" y1="105.62" x2="105.25" y2="105.62"/>
<line class="cls-2" x1="130.32" y1="75" x2="105.61" y2="75"/>
<line class="cls-2" x1="129.6" y1="44.38" x2="104.88" y2="44.38"/>
</g>
<g id="A">
<line class="cls-2" x1="20.04" y1="44.38" x2="44.75" y2="44.38"/>
<line class="cls-2" x1="19.68" y1="75" x2="44.39" y2="75"/>
<line class="cls-2" x1="20.4" y1="105.62" x2="45.12" y2="105.62"/>
</g>
</g>
</svg>
<g id="By_Kam" data-name="By Kam">
<path id="chip" class="cls-3" d="m52,20.94h46c2.8,0,5.07,2.19,5.07,4.88v98.36c0,2.7-2.27,4.88-5.07,4.88h-46c-2.8,0-5.07-2.19-5.07-4.88V25.82c0-2.7,2.27-4.88,5.07-4.88Z"/>
<g id="ball">
<path class="cls-1" d="m66.46,45.81c-3.48,0-6.31-2.81-6.31-6.26s2.83-6.26,6.31-6.26,6.31,2.81,6.31,6.26-2.83,6.26-6.31,6.26Z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="white" d="M12 22a2 2 0 0 1-2-2a2 2 0 0 1 2-2a2 2 0 0 1 2 2a2 2 0 0 1-2 2m1-20v11l4.5-4.5l1.42 1.42L12 16.84L5.08 9.92L6.5 8.5L11 13V2h2Z"/></svg>

After

Width:  |  Height:  |  Size: 242 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="white" d="M12 22a2 2 0 0 1-2-2a2 2 0 0 1 2-2a2 2 0 0 1 2 2a2 2 0 0 1-2 2m1-6h-2V6l-4.5 4.5l-1.42-1.42L12 2.16l6.92 6.92l-1.42 1.42L13 6v10Z"/></svg>

After

Width:  |  Height:  |  Size: 245 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="white" d="M12 14a2 2 0 0 1 2 2a2 2 0 0 1-2 2a2 2 0 0 1-2-2a2 2 0 0 1 2-2m11.46-5.14l-1.59 6.89L15 14.16l3.8-2.38A7.972 7.972 0 0 0 12 8c-3.95 0-7.23 2.86-7.88 6.63l-1.97-.35C2.96 9.58 7.06 6 12 6c3.58 0 6.73 1.89 8.5 4.72l2.96-1.86Z"/></svg>

After

Width:  |  Height:  |  Size: 338 B

View File

@ -0,0 +1,10 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="-9.6 -9.6 83.20 83.20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--emojione-monotone" preserveAspectRatio="xMidYMid meet" fill="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier">
<path d="M44.426 2H19.574L2 19.574v24.852L19.574 62h24.852L62 44.426V19.574L44.426 2zM60 43.598L43.598 60H20.402L4 43.598V20.402L20.402 4h23.195L60 20.402v23.196z" fill="#ffffff"/>
<path d="M22.473 9L9 22.474v19.051L22.473 55h19.052L55 41.525V22.474L41.525 9z" fill="#ffffff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 903 B

View File

@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg version="1.1" id="_x32_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="800px" height="800px" viewBox="-76.8 -76.8 665.60 665.60" xml:space="preserve" fill="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <style type="text/css"> .st0{fill:#ffffff;} </style> <g> <path class="st0" d="M449.803,62.197C408.443,20.807,353.85-0.037,299.646-0.006C245.428-0.037,190.85,20.807,149.49,62.197 C108.1,103.557,87.24,158.15,87.303,212.338c-0.047,37.859,10.359,75.766,30.547,109.359L15.021,424.525 c-20.016,20.016-20.016,52.453,0,72.469c20,20.016,52.453,20.016,72.453,0L190.318,394.15 c33.578,20.203,71.5,30.594,109.328,30.547c54.203,0.047,108.797-20.797,150.156-62.188 c41.375-41.359,62.234-95.938,62.188-150.172C512.053,158.15,491.178,103.557,449.803,62.197z M391.818,304.541 c-25.547,25.531-58.672,38.125-92.172,38.188c-33.5-0.063-66.609-12.656-92.188-38.188c-25.531-25.578-38.125-58.688-38.188-92.203 c0.063-33.484,12.656-66.609,38.188-92.172c25.578-25.531,58.688-38.125,92.188-38.188c33.5,0.063,66.625,12.656,92.188,38.188 c25.531,25.563,38.125,58.688,38.188,92.172C429.959,245.854,417.365,278.963,391.818,304.541z"/> </g> </g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg version="1.1" id="_x32_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve" width="800px" height="800px" fill="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <style type="text/css"> .st0{fill:#ffffff;} </style> <g> <path class="st0" d="M332.571,140.81l-16.665,16.648c-41.547-24.17-95.688-18.468-131.288,17.116l153.521,153.52 c35.583-35.592,41.294-89.732,17.115-131.278l16.666-16.657L332.571,140.81z"/> <path class="st0" d="M0,299.943c0,0,9.585,18.251,28.989,45.303c14.864-9,51.042-31.664,90.012-61.833l6.324,6.332 c0,0-42.7,39.908-82.445,74.058c5.748,7.405,12.09,15.206,19.026,23.278c21.441-18.549,45.223-39.781,62.447-57.014l8.756,4.865 c0,0-29.692,31.691-60.914,63.788c6.558,7.279,13.584,14.701,21.079,22.196c18.954,18.954,37.494,34.692,54.158,47.448 c16.576-19.124,44.934-52.032,53.69-63.482l9.712,11.665c0,0-26.052,39.42-40.502,68.401 c26.269,17.935,43.907,26.331,43.907,26.331c31.331-54.654,114.695-169.502,114.695-169.502L172.997,185.825 C172.997,185.825,98.372,248.208,0,299.943z"/> <rect x="334.304" y="62.854" transform="matrix(0.7071 -0.7071 0.7071 0.7071 67.7361 328.4017)" class="st0" width="191.963" height="39.163"/> </g> </g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg fill="#ffffff" width="800px" height="800px" viewBox="-6.5 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <title>save</title> <path d="M12.188 4.469v4.656h2.438l-4.875 5.875-4.875-5.875h2.563v-4.656h4.75zM16.313 12l2.844 4.5c0.156 0.375 0.344 1.094 0.344 1.531v8.656c0 0.469-0.375 0.813-0.813 0.813h-17.844c-0.469 0-0.844-0.344-0.844-0.813v-8.656c0-0.438 0.156-1.156 0.313-1.531l2.844-4.5c0.156-0.406 0.719-0.75 1.125-0.75h1.281l1.313 1.594h-2.625l-2.531 4.625c-0.031 0-0.031 0.031-0.031 0.063 0 0.063 0 0.094-0.031 0.125h16.156v-0.125c0-0.031-0.031-0.063-0.031-0.094l-2.531-4.594h-2.625l1.313-1.594h1.25c0.438 0 0.969 0.344 1.125 0.75zM7.469 21.031h4.594c0.406 0 0.781-0.375 0.781-0.813 0-0.406-0.375-0.781-0.781-0.781h-4.594c-0.438 0-0.813 0.375-0.813 0.781 0 0.438 0.375 0.813 0.813 0.813z"/> </g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
<defs>
<style>
.cls-1 {
fill: #fff;
stroke: #fff;
stroke-miterlimit: 10;
stroke-width: 2px;
}
.cls-2 {
fill: none;
}
</style>
</defs>
<g id="Camada_3" data-name="Camada 3">
<g id="codigos">
<g id="By_Maxihplay" data-name="By Maxihplay">
<g id="baixo">
<path class="cls-1" d="m20.57,127.29v-7.95h12.21v-30.79l-10.63,5.87-2.93-7.29,15.21-8.03h7.51v40.25h10.52v7.95h-31.89Z"/>
<path class="cls-1" d="m95.6,103.13c0,3.94-.43,7.45-1.28,10.56-.86,3.1-2.11,5.73-3.76,7.86-1.65,2.14-3.66,3.77-6.03,4.89-2.37,1.12-5.08,1.69-8.14,1.69-2.64,0-5.07-.47-7.3-1.39-2.22-.93-4.14-2.39-5.76-4.38-1.61-1.99-2.87-4.54-3.78-7.64-.9-3.1-1.36-6.82-1.36-11.14,0-3.93.43-7.45,1.3-10.56.87-3.1,2.12-5.72,3.76-7.86,1.64-2.14,3.65-3.77,6.05-4.89,2.4-1.12,5.11-1.69,8.14-1.69,2.64,0,5.07.47,7.3,1.39,2.22.93,4.14,2.38,5.74,4.36,1.6,1.98,2.85,4.52,3.76,7.62.9,3.1,1.36,6.83,1.36,11.18Zm-28.37.15v1.37c0,.43.02.86.07,1.3l17.96-12.98c-.86-2.42-1.98-4.21-3.39-5.37s-3.06-1.74-4.97-1.74c-1.37,0-2.64.35-3.81,1.05s-2.19,1.77-3.06,3.21c-.87,1.44-1.55,3.25-2.05,5.43-.5,2.18-.75,4.75-.75,7.74Zm19.36.15c0-.42-.01-.84-.04-1.26-.02-.43-.04-.84-.04-1.23l-17.85,12.9c.78,2.37,1.88,4.13,3.3,5.28,1.42,1.15,3.07,1.72,4.95,1.72,1.37,0,2.64-.35,3.83-1.06s2.21-1.78,3.08-3.21c.87-1.43,1.55-3.24,2.03-5.43.49-2.19.73-4.76.73-7.72Z"/>
<path class="cls-1" d="m103.12,127.29v-7.95h12.21v-30.79l-10.63,5.87-2.93-7.29,15.21-8.03h7.51v40.25h10.52v7.95h-31.89Z"/>
</g>
<g id="cima">
<path class="cls-1" d="m52.38,46.43c0,3.94-.43,7.45-1.28,10.56-.86,3.1-2.11,5.73-3.76,7.86-1.65,2.14-3.66,3.77-6.03,4.89-2.37,1.12-5.08,1.69-8.14,1.69-2.64,0-5.07-.47-7.3-1.39-2.22-.93-4.14-2.39-5.76-4.38-1.61-1.99-2.87-4.54-3.78-7.64-.9-3.1-1.36-6.82-1.36-11.14,0-3.93.43-7.45,1.3-10.56.87-3.1,2.12-5.72,3.76-7.86,1.64-2.14,3.65-3.77,6.05-4.89,2.4-1.12,5.11-1.69,8.14-1.69,2.64,0,5.07.47,7.3,1.39,2.22.93,4.14,2.38,5.74,4.36,1.6,1.98,2.85,4.52,3.76,7.62.9,3.1,1.36,6.83,1.36,11.18Zm-28.37.15v1.37c0,.43.02.86.07,1.3l17.96-12.98c-.86-2.42-1.98-4.21-3.39-5.37s-3.06-1.74-4.97-1.74c-1.37,0-2.64.35-3.81,1.05s-2.19,1.77-3.06,3.21c-.87,1.44-1.55,3.25-2.05,5.43-.5,2.18-.75,4.75-.75,7.74Zm19.36.15c0-.42-.01-.84-.04-1.26-.02-.43-.04-.84-.04-1.23l-17.85,12.9c.78,2.37,1.88,4.13,3.3,5.28,1.42,1.15,3.07,1.72,4.95,1.72,1.37,0,2.64-.35,3.83-1.06s2.21-1.78,3.08-3.21c.87-1.43,1.55-3.24,2.03-5.43.49-2.19.73-4.76.73-7.72Z"/>
<path class="cls-1" d="m59.89,70.58v-7.95h12.21v-30.79l-10.63,5.87-2.93-7.29,15.21-8.03h7.51v40.25h10.52v7.95h-31.89Z"/>
<path class="cls-1" d="m134.93,46.43c0,3.94-.43,7.45-1.28,10.56-.86,3.1-2.11,5.73-3.76,7.86-1.65,2.14-3.66,3.77-6.03,4.89-2.37,1.12-5.08,1.69-8.14,1.69-2.64,0-5.07-.47-7.3-1.39-2.22-.93-4.14-2.39-5.76-4.38-1.61-1.99-2.87-4.54-3.78-7.64-.9-3.1-1.36-6.82-1.36-11.14,0-3.93.43-7.45,1.3-10.56.87-3.1,2.12-5.72,3.76-7.86,1.64-2.14,3.65-3.77,6.05-4.89,2.4-1.12,5.11-1.69,8.14-1.69,2.64,0,5.07.47,7.3,1.39,2.22.93,4.14,2.38,5.74,4.36,1.6,1.98,2.85,4.52,3.76,7.62.9,3.1,1.36,6.83,1.36,11.18Zm-28.37.15v1.37c0,.43.02.86.07,1.3l17.96-12.98c-.86-2.42-1.98-4.21-3.39-5.37-1.41-1.16-3.06-1.74-4.97-1.74-1.37,0-2.64.35-3.81,1.05s-2.19,1.77-3.06,3.21c-.87,1.44-1.55,3.25-2.05,5.43-.5,2.18-.75,4.75-.75,7.74Zm19.36.15c0-.42-.01-.84-.04-1.26-.02-.43-.04-.84-.04-1.23l-17.85,12.9c.78,2.37,1.88,4.13,3.3,5.28,1.42,1.15,3.07,1.72,4.95,1.72,1.37,0,2.64-.35,3.83-1.06,1.19-.71,2.21-1.78,3.08-3.21.87-1.43,1.55-3.24,2.03-5.43.49-2.19.73-4.76.73-7.72Z"/>
</g>
</g>
</g>
</g>
<g id="Camada_2" data-name="Camada 2">
<path class="cls-2" d="m-3.8-.03h154.06v152.06H-3.8V-.03Z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg fill="#ffffff" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 511.997 511.997" xml:space="preserve" width="800px" height="800px">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <g> <g> <rect x="56.211" y="36.231" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -28.8553 71.5159)" width="31.377" height="68.716"/> </g> </g> <g> <g> <rect x="22.642" y="100.857" transform="matrix(0.3423 -0.9396 0.9396 0.3423 -101.8377 124.9477)" width="31.378" height="68.718"/> </g> </g> <g> <g> <rect x="120.22" y="3.295" transform="matrix(0.9396 -0.3423 0.3423 0.9396 -4.6787 48.7958)" width="31.378" height="68.718"/> </g> </g> <g> <g> <path d="M376.944,316.704l74.821-53.211L133.809,133.089l130.426,318.013l51.946-73.327l134.222,134.222l60.917-60.915 L376.944,316.704z M450.402,467.622L312.073,329.293l-40.458,57.112l-80.311-195.821l195.878,80.336l-58.671,41.727 l138.434,138.434L450.402,467.622z"/> </g> </g> </g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <title>counter_2_line</title> <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <g id="Device" transform="translate(-432.000000, -192.000000)"> <g id="counter_2_line" transform="translate(432.000000, 192.000000)"> <path d="M24,0 L24,24 L0,24 L0,0 L24,0 Z M12.5934901,23.257841 L12.5819402,23.2595131 L12.5108777,23.2950439 L12.4918791,23.2987469 L12.4918791,23.2987469 L12.4767152,23.2950439 L12.4056548,23.2595131 C12.3958229,23.2563662 12.3870493,23.2590235 12.3821421,23.2649074 L12.3780323,23.275831 L12.360941,23.7031097 L12.3658947,23.7234994 L12.3769048,23.7357139 L12.4804777,23.8096931 L12.4953491,23.8136134 L12.4953491,23.8136134 L12.5071152,23.8096931 L12.6106902,23.7357139 L12.6232938,23.7196733 L12.6232938,23.7196733 L12.6266527,23.7031097 L12.609561,23.275831 C12.6075724,23.2657013 12.6010112,23.2592993 12.5934901,23.257841 L12.5934901,23.257841 Z M12.8583906,23.1452862 L12.8445485,23.1473072 L12.6598443,23.2396597 L12.6498822,23.2499052 L12.6498822,23.2499052 L12.6471943,23.2611114 L12.6650943,23.6906389 L12.6699349,23.7034178 L12.6699349,23.7034178 L12.678386,23.7104931 L12.8793402,23.8032389 C12.8914285,23.8068999 12.9022333,23.8029875 12.9078286,23.7952264 L12.9118235,23.7811639 L12.8776777,23.1665331 C12.8752882,23.1545897 12.8674102,23.1470016 12.8583906,23.1452862 L12.8583906,23.1452862 Z M12.1430473,23.1473072 C12.1332178,23.1423925 12.1221763,23.1452606 12.1156365,23.1525954 L12.1099173,23.1665331 L12.0757714,23.7811639 C12.0751323,23.7926639 12.0828099,23.8018602 12.0926481,23.8045676 L12.108256,23.8032389 L12.3092106,23.7104931 L12.3186497,23.7024347 L12.3186497,23.7024347 L12.3225043,23.6906389 L12.340401,23.2611114 L12.337245,23.2485176 L12.337245,23.2485176 L12.3277531,23.2396597 L12.1430473,23.1473072 Z" id="MingCute" fill-rule="nonzero"> </path> <path d="M18,3 C19.0543909,3 19.9181678,3.81587733 19.9945144,4.85073759 L20,5 L20,20 C20,21.0543909 19.18415,21.9181678 18.1492661,21.9945144 L18,22 L6,22 C4.94563773,22 4.08183483,21.18415 4.00548573,20.1492661 L4,20 L4,5 C4,3.94563773 4.81587733,3.08183483 5.85073759,3.00548573 L6,3 L18,3 Z M18,5 L6,5 L6,20 L18,20 L18,5 Z M9.5,16 C10.3284,16 11,16.6716 11,17.5 C11,18.3284 10.3284,19 9.5,19 C8.67157,19 8,18.3284 8,17.5 C8,16.6716 8.67157,16 9.5,16 Z M14.5,16 C15.3284,16 16,16.6716 16,17.5 C16,18.3284 15.3284,19 14.5,19 C13.6716,19 13,18.3284 13,17.5 C13,16.6716 13.6716,16 14.5,16 Z M9.5,12 C10.3284,12 11,12.6716 11,13.5 C11,14.3284 10.3284,15 9.5,15 C8.67157,15 8,14.3284 8,13.5 C8,12.6716 8.67157,12 9.5,12 Z M14.5,12 C15.3284,12 16,12.6716 16,13.5 C16,14.3284 15.3284,15 14.5,15 C13.6716,15 13,14.3284 13,13.5 C13,12.6716 13.6716,12 14.5,12 Z M15.5,6 C16.2796706,6 16.9204457,6.59488554 16.9931332,7.35553954 L17,7.5 L17,9.5 C17,10.2796706 16.4050879,10.9204457 15.6444558,10.9931332 L15.5,11 L8.5,11 C7.72030118,11 7.079551,10.4050879 7.00686655,9.64445577 L7,9.5 L7,7.5 C7,6.72030118 7.59488554,6.079551 8.35553954,6.00686655 L8.5,6 L15.5,6 Z M15,8 L9,8 L9,9 L15,9 L15,8 Z" id="形状" fill="#ffffff"> </path> </g> </g> </g> </g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -1 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Memory_Card_-_Pcsx2_W" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1,.cls-2{fill:#fff;}.cls-3{stroke:#fff;stroke-width:9px;}.cls-3,.cls-4{fill:none;}.cls-2{fill-rule:evenodd;}</style></defs><g id="tela"><rect id="tela-2" class="cls-4" x="0" width="150" height="150"/></g><g id="By_Maxihplay"><g id="Formato"><path class="cls-1" d="M145.26,129.29H23.78c-10.53,0-19.09-8.56-19.09-19.09V39.8c0-10.53,8.56-19.09,19.09-19.09h121.53l-.05,108.59ZM23.78,32.71c-3.91,0-7.09,3.18-7.09,7.09V110.2c0,3.91,3.18,7.09,7.09,7.09h109.48l.04-84.59H23.78Z"/></g><g id="seta"><polygon class="cls-2" points="111.66 67.01 119.89 75.72 111.66 83.64 111.66 67.01"/><polygon class="cls-1" points="107.66 56.95 107.66 93.05 125.51 75.85 107.66 56.95 107.66 56.95"/></g><path id="etiqueta" class="cls-3" d="M63.7,49.76v50.49c0,2.65-2.15,4.81-4.81,4.81h-21.6c-2.65,0-4.81-2.15-4.81-4.81h0V49.76c0-2.65,2.15-4.81,4.81-4.81h21.6c2.65,0,4.81,2.15,4.81,4.81Z"/></g></svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg id="memory_card_-_PCSX2" data-name="memory card - PCSX2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
<defs>
<style>
.cls-1, .cls-2, .cls-3 {
fill: #fff;
}
.cls-2 {
fill-rule: evenodd;
}
.cls-3 {
stroke: #fff;
stroke-width: 9px;
}
</style>
</defs>
<g id="by_Maxihplay" data-name="by Maxihplay">
<g id="seta">
<polygon class="cls-2" points="111.66 67.01 119.89 75.72 111.66 83.64 111.66 67.01"/>
<polygon class="cls-1" points="106.66 57.97 106.66 92.03 124.51 75.8 106.66 57.97 106.66 57.97"/>
</g>
<g id="Formato-2">
<path class="cls-1" d="m145.26,129.28H23.78c-10.53,0-19.09-8.56-19.09-19.09V39.8c0-10.53,8.56-19.09,19.09-19.09h121.53l-.05,108.59h0v-.02h0ZM23.78,33.71c-3.91,0-7.09,3.18-7.09,7.09v68.4c0,3.91,3.18,7.09,7.09,7.09h109.48l.04-82.59H23.78Z"/>
</g>
<path id="etiqueta-2" class="cls-3" d="m59.28,53.8v42.4c0,2.23-1.76,4.04-3.94,4.04h-17.68c-2.17,0-3.94-1.81-3.94-4.04h0v-42.4c0-2.23,1.76-4.04,3.94-4.04h17.68c2.17,0,3.94,1.81,3.94,4.04Z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1017 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"/><path d="M5.33 3.271a3.5 3.5 0 0 1 4.254 4.963l10.709 10.71-1.414 1.414-10.71-10.71a3.502 3.502 0 0 1-4.962-4.255L5.444 7.63a1.5 1.5 0 1 0 2.121-2.121L5.329 3.27zm10.367 1.884l3.182-1.768 1.414 1.414-1.768 3.182-1.768.354-2.12 2.121-1.415-1.414 2.121-2.121.354-1.768zm-6.718 8.132l1.414 1.414-5.303 5.303a1 1 0 0 1-1.492-1.327l.078-.087 5.303-5.303z" fill="#ffffff"/></svg>

Before

Width:  |  Height:  |  Size: 493 B

View File

@ -1,37 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 448 512"
version="1.1"
id="svg1"
sodipodi:docname="trash-fill-w.svg"
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs1" />
<sodipodi:namedview
id="namedview1"
pagecolor="#505050"
bordercolor="#ffffff"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="1.6386719"
inkscape:cx="223.96186"
inkscape:cy="256"
inkscape:window-width="1920"
inkscape:window-height="990"
inkscape:window-x="0"
inkscape:window-y="42"
inkscape:window-maximized="1"
inkscape:current-layer="svg1" />
<!--! Font Awesome Pro 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M135.2 17.7L128 32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320l-7.2-14.3C307.4 6.8 296.3 0 284.2 0H163.8c-12.1 0-23.2 6.8-28.6 17.7zM416 128H32L53.2 467c1.6 25.3 22.6 45 47.9 45H346.9c25.3 0 46.3-19.7 47.9-45L416 128z"
id="path1"
style="fill:#ffffff;fill-opacity:1" />
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg id="svg1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150">
<defs>
<style>
.cls-1 {
fill: #fff;
}
</style>
</defs>
<path id="path1" class="cls-1" d="m52.64,15l-1.81,3.6h-24.17c-4.46,0-8.06,3.6-8.06,8.06s3.6,8.06,8.06,8.06h96.68c4.46,0,8.06-3.6,8.06-8.06s-3.6-8.06-8.06-8.06h-24.17l-1.81-3.6c-1.36-2.74-4.15-4.46-7.2-4.46h-30.31c-3.05,0-5.84,1.71-7.2,4.46Zm70.7,34.47H26.66l5.34,78.65c.4,6.37,5.69,11.33,12.06,11.33h61.89c6.37,0,11.66-4.96,12.06-11.33l5.34-78.65Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 558 B

File diff suppressed because it is too large Load Diff

View File

@ -164,7 +164,7 @@ void SettingsWindow::addPages()
}
addWidget(m_advanced_settings = new AdvancedSettingsWidget(this, m_ui.settingsContainer), tr("Advanced"),
QStringLiteral("tools-line"),
QStringLiteral("alert-line"),
tr("<strong>Advanced Settings</strong><hr>These options control logging and internal behavior of the "
"emulator. Mouse over an option for additional information, and Shift+Wheel to scroll this panel."));

View File

@ -555,25 +555,8 @@ ImFont* ImGuiManager::AddFixedFont(float size)
bool ImGuiManager::AddIconFonts(float size)
{
static constexpr ImWchar range_fa[] = {
0xf002, 0xf002, 0xf005, 0xf005, 0xf007, 0xf007, 0xf00c, 0xf00e, 0xf011, 0xf011, 0xf013, 0xf013, 0xf017, 0xf017,
0xf019, 0xf019, 0xf01c, 0xf01c, 0xf021, 0xf021, 0xf023, 0xf023, 0xf025, 0xf025, 0xf027, 0xf028, 0xf02e, 0xf02e,
0xf030, 0xf030, 0xf03a, 0xf03a, 0xf03d, 0xf03d, 0xf049, 0xf04c, 0xf050, 0xf050, 0xf059, 0xf059, 0xf05e, 0xf05e,
0xf062, 0xf063, 0xf065, 0xf065, 0xf067, 0xf067, 0xf071, 0xf071, 0xf075, 0xf075, 0xf077, 0xf078, 0xf07b, 0xf07c,
0xf084, 0xf085, 0xf091, 0xf091, 0xf0a0, 0xf0a0, 0xf0ac, 0xf0ad, 0xf0c5, 0xf0c5, 0xf0c7, 0xf0c9, 0xf0cb, 0xf0cb,
0xf0d0, 0xf0d0, 0xf0dc, 0xf0dc, 0xf0e2, 0xf0e2, 0xf0eb, 0xf0eb, 0xf0f1, 0xf0f1, 0xf0f3, 0xf0f3, 0xf0fe, 0xf0fe,
0xf110, 0xf110, 0xf119, 0xf119, 0xf11b, 0xf11c, 0xf140, 0xf140, 0xf144, 0xf144, 0xf14a, 0xf14a, 0xf15b, 0xf15b,
0xf15d, 0xf15d, 0xf188, 0xf188, 0xf191, 0xf192, 0xf1ab, 0xf1ab, 0xf1dd, 0xf1de, 0xf1e6, 0xf1e6, 0xf1eb, 0xf1eb,
0xf1f8, 0xf1f8, 0xf1fc, 0xf1fc, 0xf242, 0xf242, 0xf245, 0xf245, 0xf26c, 0xf26c, 0xf279, 0xf279, 0xf2d0, 0xf2d0,
0xf2db, 0xf2db, 0xf2f2, 0xf2f2, 0xf2f5, 0xf2f5, 0xf3c1, 0xf3c1, 0xf410, 0xf410, 0xf466, 0xf466, 0xf500, 0xf500,
0xf51f, 0xf51f, 0xf545, 0xf545, 0xf547, 0xf548, 0xf552, 0xf552, 0xf57a, 0xf57a, 0xf5a2, 0xf5a2, 0xf5aa, 0xf5aa,
0xf5e7, 0xf5e7, 0xf65d, 0xf65e, 0xf6a9, 0xf6a9, 0xf7c2, 0xf7c2, 0xf807, 0xf807, 0xf815, 0xf815, 0xf818, 0xf818,
0xf84c, 0xf84c, 0xf8cc, 0xf8cc, 0x0, 0x0};
static constexpr ImWchar range_pf[] = {0x2196, 0x2199, 0x219e, 0x21a1, 0x21b0, 0x21b3, 0x21ba, 0x21c3, 0x21c7, 0x21ca,
0x21d0, 0x21d4, 0x21dc, 0x21dd, 0x21e0, 0x21e3, 0x21ed, 0x21ee, 0x21f7, 0x21f8,
0x21fa, 0x21fb, 0x227a, 0x227d, 0x23b2, 0x23b4, 0x23f4, 0x23f7, 0x2427, 0x243a,
0x243c, 0x243c, 0x243e, 0x243e, 0x2460, 0x246b, 0x24f5, 0x24fd, 0x24ff, 0x24ff,
0x278a, 0x278e, 0x27fc, 0x27fc, 0xe001, 0xe001, 0xff21, 0xff3a, 0x0, 0x0};
static constexpr ImWchar range_fa[] = { 0xf002,0xf002,0xf005,0xf005,0xf007,0xf007,0xf00c,0xf00e,0xf011,0xf011,0xf013,0xf013,0xf017,0xf017,0xf019,0xf019,0xf01c,0xf01c,0xf021,0xf021,0xf023,0xf023,0xf025,0xf025,0xf027,0xf028,0xf02e,0xf02e,0xf030,0xf030,0xf03a,0xf03a,0xf03d,0xf03d,0xf049,0xf04c,0xf050,0xf050,0xf059,0xf059,0xf05e,0xf05e,0xf062,0xf063,0xf065,0xf065,0xf067,0xf067,0xf071,0xf071,0xf075,0xf075,0xf077,0xf078,0xf07b,0xf07c,0xf084,0xf085,0xf091,0xf091,0xf0a0,0xf0a0,0xf0ac,0xf0ad,0xf0c5,0xf0c5,0xf0c7,0xf0c9,0xf0cb,0xf0cb,0xf0d0,0xf0d0,0xf0dc,0xf0dc,0xf0e2,0xf0e2,0xf0eb,0xf0eb,0xf0f1,0xf0f1,0xf0f3,0xf0f3,0xf0fe,0xf0fe,0xf110,0xf110,0xf119,0xf119,0xf11b,0xf11c,0xf140,0xf140,0xf144,0xf144,0xf14a,0xf14a,0xf15b,0xf15b,0xf15d,0xf15d,0xf188,0xf188,0xf191,0xf192,0xf1ab,0xf1ab,0xf1dd,0xf1de,0xf1e6,0xf1e6,0xf1eb,0xf1eb,0xf1f8,0xf1f8,0xf1fc,0xf1fc,0xf242,0xf242,0xf245,0xf245,0xf26c,0xf26c,0xf279,0xf279,0xf2d0,0xf2d0,0xf2db,0xf2db,0xf2f2,0xf2f2,0xf2f5,0xf2f5,0xf3c1,0xf3c1,0xf410,0xf410,0xf466,0xf466,0xf500,0xf500,0xf51f,0xf51f,0xf545,0xf545,0xf547,0xf548,0xf552,0xf552,0xf57a,0xf57a,0xf5a2,0xf5a2,0xf5aa,0xf5aa,0xf5e7,0xf5e7,0xf65d,0xf65e,0xf6a9,0xf6a9,0xf6cf,0xf6cf,0xf794,0xf794,0xf7c2,0xf7c2,0xf807,0xf807,0xf815,0xf815,0xf818,0xf818,0xf84c,0xf84c,0xf8cc,0xf8cc,0x0,0x0 };
static constexpr ImWchar range_pf[] = { 0x2196,0x2199,0x219e,0x21a1,0x21b0,0x21b3,0x21ba,0x21c3,0x21c7,0x21ca,0x21d0,0x21d4,0x21dc,0x21dd,0x21e0,0x21e3,0x21ed,0x21ee,0x21f7,0x21f8,0x21fa,0x21fb,0x227a,0x227d,0x235e,0x235e,0x2360,0x2361,0x2364,0x2366,0x23b2,0x23b4,0x23f4,0x23f7,0x2427,0x243a,0x243c,0x243c,0x243e,0x243e,0x2460,0x246b,0x24f5,0x24fd,0x24ff,0x24ff,0x278a,0x278e,0x27fc,0x27fc,0xe001,0xe001,0xff21,0xff3a,0x0,0x0 };
{
ImFontConfig cfg;